diff --git a/CHANGELOG.md b/CHANGELOG.md index 02b7bdd71..e9728e37f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ ### Dependencies: +- build(deps): `github.com/fastly/go-fastly/v15` from 15.0.3 to 16 ([#1841](https://github.com/fastly/cli/pull/1841)) + ## [v15.3.0](https://github.com/fastly/cli/releases/tag/v15.3.0) (2026-06-26) ### Enhancements: diff --git a/go.mod b/go.mod index 185123ec7..04fa087ad 100644 --- a/go.mod +++ b/go.mod @@ -90,7 +90,7 @@ require ( require ( 4d63.com/optional v0.2.0 github.com/creack/pty v1.1.24 - github.com/fastly/go-fastly/v15 v15.0.3 + github.com/fastly/go-fastly/v16 v16.0.0 github.com/mholt/archives v0.1.5 github.com/mitchellh/go-ps v1.0.0 ) diff --git a/go.sum b/go.sum index e4614e022..c6320f4f7 100644 --- a/go.sum +++ b/go.sum @@ -36,8 +36,8 @@ github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707/go.mod h1:qssHWj6 github.com/dsnet/golib v0.0.0-20171103203638-1ea166775780/go.mod h1:Lj+Z9rebOhdfkVLjJ8T6VcRQv3SXugXy999NBtR9aFY= github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0 h1:aYo8nnk3ojoQkP5iErif5Xxv0Mo0Ga/FR5+ffl/7+Nk= github.com/dustinkirkland/golang-petname v0.0.0-20240428194347-eebcea082ee0/go.mod h1:8AuBTZBRSFqEYBPYULd+NN474/zZBLP+6WeT5S9xlAc= -github.com/fastly/go-fastly/v15 v15.0.3 h1:eSeviq6rSbwJfV+uyV5m5H2nWePtYsrEaKPCLH8gFes= -github.com/fastly/go-fastly/v15 v15.0.3/go.mod h1:ZwzEo1cN3adPpQc3dg83+siO8CUYCsSBSEJJzUjxkQo= +github.com/fastly/go-fastly/v16 v16.0.0 h1:Uy5d1clGaTNt8HYHQQiiPhi11+9HPbXO7oIfXwVB6WA= +github.com/fastly/go-fastly/v16 v16.0.0/go.mod h1:1t41QyBKGsJVePO1SOdVHbuIRygkgD6/SNhzw3tS4Bk= github.com/fastly/kingpin v2.1.12-0.20191105091915-95d230a53780+incompatible h1:FhrXlfhgGCS+uc6YwyiFUt04alnjpoX7vgDKJxS6Qbk= github.com/fastly/kingpin v2.1.12-0.20191105091915-95d230a53780+incompatible/go.mod h1:U8UynVoU1SQaqD2I4ZqgYd5lx3A1ipQYn4aSt2Y5h6c= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= diff --git a/pkg/api/interface.go b/pkg/api/interface.go index 50673c8e8..2df8105e2 100644 --- a/pkg/api/interface.go +++ b/pkg/api/interface.go @@ -5,7 +5,7 @@ import ( "crypto/ed25519" "net/http" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // HTTPClient models a concrete http.Client. It's a consumer contract for some diff --git a/pkg/app/run.go b/pkg/app/run.go index 4f869362b..bfc715d57 100644 --- a/pkg/app/run.go +++ b/pkg/app/run.go @@ -16,7 +16,7 @@ import ( "github.com/hashicorp/cap/oidc" "github.com/skratchdot/open-golang/open" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/kingpin" diff --git a/pkg/app/run_test.go b/pkg/app/run_test.go index 655f11def..aea4ab576 100644 --- a/pkg/app/run_test.go +++ b/pkg/app/run_test.go @@ -11,7 +11,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/argparser/cmd.go b/pkg/argparser/cmd.go index bcf75a3df..859352524 100644 --- a/pkg/argparser/cmd.go +++ b/pkg/argparser/cmd.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/kingpin" diff --git a/pkg/argparser/flags.go b/pkg/argparser/flags.go index 13e4e4240..ed8eb3272 100644 --- a/pkg/argparser/flags.go +++ b/pkg/argparser/flags.go @@ -13,7 +13,7 @@ import ( "strconv" "strings" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/kingpin" diff --git a/pkg/argparser/flags_test.go b/pkg/argparser/flags_test.go index 508f7c7cb..5fe31aae2 100644 --- a/pkg/argparser/flags_test.go +++ b/pkg/argparser/flags_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/manifest" diff --git a/pkg/commands/apisecurity/discoveredoperations/discoveredoperations_test.go b/pkg/commands/apisecurity/discoveredoperations/discoveredoperations_test.go index cd797e234..fd6656e40 100644 --- a/pkg/commands/apisecurity/discoveredoperations/discoveredoperations_test.go +++ b/pkg/commands/apisecurity/discoveredoperations/discoveredoperations_test.go @@ -13,7 +13,7 @@ import ( apisecurity "github.com/fastly/cli/pkg/commands/apisecurity" root "github.com/fastly/cli/pkg/commands/apisecurity/discoveredoperations" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" ) const ( diff --git a/pkg/commands/apisecurity/discoveredoperations/list.go b/pkg/commands/apisecurity/discoveredoperations/list.go index 99737bb9a..b33415e04 100644 --- a/pkg/commands/apisecurity/discoveredoperations/list.go +++ b/pkg/commands/apisecurity/discoveredoperations/list.go @@ -7,8 +7,8 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/apisecurity/discoveredoperations/update.go b/pkg/commands/apisecurity/discoveredoperations/update.go index fc9b07de2..f03c735cf 100644 --- a/pkg/commands/apisecurity/discoveredoperations/update.go +++ b/pkg/commands/apisecurity/discoveredoperations/update.go @@ -10,8 +10,8 @@ import ( "path/filepath" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/apisecurity/operations/addtags.go b/pkg/commands/apisecurity/operations/addtags.go index 9ca7f386f..d6378a505 100644 --- a/pkg/commands/apisecurity/operations/addtags.go +++ b/pkg/commands/apisecurity/operations/addtags.go @@ -9,8 +9,8 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/kingpin" diff --git a/pkg/commands/apisecurity/operations/create.go b/pkg/commands/apisecurity/operations/create.go index 9e6ad27d9..28b11d016 100644 --- a/pkg/commands/apisecurity/operations/create.go +++ b/pkg/commands/apisecurity/operations/create.go @@ -10,8 +10,8 @@ import ( "path/filepath" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/kingpin" diff --git a/pkg/commands/apisecurity/operations/delete.go b/pkg/commands/apisecurity/operations/delete.go index fc669fd4a..bef2a6e59 100644 --- a/pkg/commands/apisecurity/operations/delete.go +++ b/pkg/commands/apisecurity/operations/delete.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/apisecurity/operations/describe.go b/pkg/commands/apisecurity/operations/describe.go index de64b171f..e3c790869 100644 --- a/pkg/commands/apisecurity/operations/describe.go +++ b/pkg/commands/apisecurity/operations/describe.go @@ -7,8 +7,8 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/apisecurity/operations/list.go b/pkg/commands/apisecurity/operations/list.go index 8c904e091..068bdc173 100644 --- a/pkg/commands/apisecurity/operations/list.go +++ b/pkg/commands/apisecurity/operations/list.go @@ -7,8 +7,8 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/apisecurity/operations/operations_test.go b/pkg/commands/apisecurity/operations/operations_test.go index f0a682740..8949c99ff 100644 --- a/pkg/commands/apisecurity/operations/operations_test.go +++ b/pkg/commands/apisecurity/operations/operations_test.go @@ -8,7 +8,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" apisecurity "github.com/fastly/cli/pkg/commands/apisecurity" root "github.com/fastly/cli/pkg/commands/apisecurity/operations" diff --git a/pkg/commands/apisecurity/operations/update.go b/pkg/commands/apisecurity/operations/update.go index 4797c3a71..447dd3393 100644 --- a/pkg/commands/apisecurity/operations/update.go +++ b/pkg/commands/apisecurity/operations/update.go @@ -7,8 +7,8 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/kingpin" diff --git a/pkg/commands/apisecurity/tags/create.go b/pkg/commands/apisecurity/tags/create.go index 1447d4eb4..e9d46894d 100644 --- a/pkg/commands/apisecurity/tags/create.go +++ b/pkg/commands/apisecurity/tags/create.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/apisecurity/tags/delete.go b/pkg/commands/apisecurity/tags/delete.go index f80659a21..a2bdcd5f0 100644 --- a/pkg/commands/apisecurity/tags/delete.go +++ b/pkg/commands/apisecurity/tags/delete.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/apisecurity/tags/get.go b/pkg/commands/apisecurity/tags/get.go index 6d3705445..73b927f79 100644 --- a/pkg/commands/apisecurity/tags/get.go +++ b/pkg/commands/apisecurity/tags/get.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/apisecurity/tags/list.go b/pkg/commands/apisecurity/tags/list.go index 8d8e162a1..98e0209b0 100644 --- a/pkg/commands/apisecurity/tags/list.go +++ b/pkg/commands/apisecurity/tags/list.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" ) // ListCommand calls the Fastly API to list all operation tags. diff --git a/pkg/commands/apisecurity/tags/tags_test.go b/pkg/commands/apisecurity/tags/tags_test.go index bcee5cdf5..a00da2647 100644 --- a/pkg/commands/apisecurity/tags/tags_test.go +++ b/pkg/commands/apisecurity/tags/tags_test.go @@ -12,7 +12,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/apisecurity/tags" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" ) const ( diff --git a/pkg/commands/apisecurity/tags/update.go b/pkg/commands/apisecurity/tags/update.go index b34f4e81f..65f6d75d0 100644 --- a/pkg/commands/apisecurity/tags/update.go +++ b/pkg/commands/apisecurity/tags/update.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/auth/metadata.go b/pkg/commands/auth/metadata.go index 62124415f..0bb3242a6 100644 --- a/pkg/commands/auth/metadata.go +++ b/pkg/commands/auth/metadata.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/config" diff --git a/pkg/commands/auth/metadata_test.go b/pkg/commands/auth/metadata_test.go index 3dc5a3ae3..6b009ebb6 100644 --- a/pkg/commands/auth/metadata_test.go +++ b/pkg/commands/auth/metadata_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" authcmd "github.com/fastly/cli/pkg/commands/auth" "github.com/fastly/cli/pkg/config" diff --git a/pkg/commands/auth/revoke.go b/pkg/commands/auth/revoke.go index 344e81556..457e8e0dd 100644 --- a/pkg/commands/auth/revoke.go +++ b/pkg/commands/auth/revoke.go @@ -11,7 +11,7 @@ import ( "path/filepath" "strings" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/argparser" diff --git a/pkg/commands/auth/revoke_test.go b/pkg/commands/auth/revoke_test.go index cdab21d5f..6bb531f75 100644 --- a/pkg/commands/auth/revoke_test.go +++ b/pkg/commands/auth/revoke_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/config" diff --git a/pkg/commands/auth/sso_test.go b/pkg/commands/auth/sso_test.go index 1a9345d3d..3ea212724 100644 --- a/pkg/commands/auth/sso_test.go +++ b/pkg/commands/auth/sso_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/auth" authcmd "github.com/fastly/cli/pkg/commands/auth" diff --git a/pkg/commands/authtoken/authtoken_test.go b/pkg/commands/authtoken/authtoken_test.go index d294fa8b9..f80167da2 100644 --- a/pkg/commands/authtoken/authtoken_test.go +++ b/pkg/commands/authtoken/authtoken_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/authtoken" "github.com/fastly/cli/pkg/mock" diff --git a/pkg/commands/authtoken/create.go b/pkg/commands/authtoken/create.go index 9fdcf6df1..25b5e3bec 100644 --- a/pkg/commands/authtoken/create.go +++ b/pkg/commands/authtoken/create.go @@ -6,7 +6,7 @@ import ( "strings" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/kingpin" diff --git a/pkg/commands/authtoken/delete.go b/pkg/commands/authtoken/delete.go index 0917563db..9a31bfc4d 100644 --- a/pkg/commands/authtoken/delete.go +++ b/pkg/commands/authtoken/delete.go @@ -8,7 +8,7 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/authtoken/describe.go b/pkg/commands/authtoken/describe.go index e750e8825..bec2690e9 100644 --- a/pkg/commands/authtoken/describe.go +++ b/pkg/commands/authtoken/describe.go @@ -6,7 +6,7 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/authtoken/list.go b/pkg/commands/authtoken/list.go index 05ff81c6a..8aa4e7eb0 100644 --- a/pkg/commands/authtoken/list.go +++ b/pkg/commands/authtoken/list.go @@ -6,7 +6,7 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/compute_mocks_test.go b/pkg/commands/compute/compute_mocks_test.go index deee35385..3897c405f 100644 --- a/pkg/commands/compute/compute_mocks_test.go +++ b/pkg/commands/compute/compute_mocks_test.go @@ -7,7 +7,7 @@ package compute_test import ( "context" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/testutil" ) diff --git a/pkg/commands/compute/computeacl/computeacl_test.go b/pkg/commands/compute/computeacl/computeacl_test.go index e1f4b0afc..086ceba17 100644 --- a/pkg/commands/compute/computeacl/computeacl_test.go +++ b/pkg/commands/compute/computeacl/computeacl_test.go @@ -12,7 +12,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/compute/computeacl" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/computeacls" + "github.com/fastly/go-fastly/v16/fastly/computeacls" ) func TestComputeACLCreate(t *testing.T) { diff --git a/pkg/commands/compute/computeacl/create.go b/pkg/commands/compute/computeacl/create.go index b91aa7261..e751d42ac 100644 --- a/pkg/commands/compute/computeacl/create.go +++ b/pkg/commands/compute/computeacl/create.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/computeacls" + "github.com/fastly/go-fastly/v16/fastly/computeacls" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/computeacl/delete.go b/pkg/commands/compute/computeacl/delete.go index 6f16db3be..a54e13ac6 100644 --- a/pkg/commands/compute/computeacl/delete.go +++ b/pkg/commands/compute/computeacl/delete.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/computeacls" + "github.com/fastly/go-fastly/v16/fastly/computeacls" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/computeacl/describe.go b/pkg/commands/compute/computeacl/describe.go index 83228e194..79af505ed 100644 --- a/pkg/commands/compute/computeacl/describe.go +++ b/pkg/commands/compute/computeacl/describe.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/computeacls" + "github.com/fastly/go-fastly/v16/fastly/computeacls" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/computeacl/listacls.go b/pkg/commands/compute/computeacl/listacls.go index 8722cd599..699162078 100644 --- a/pkg/commands/compute/computeacl/listacls.go +++ b/pkg/commands/compute/computeacl/listacls.go @@ -9,9 +9,9 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/computeacls" + "github.com/fastly/go-fastly/v16/fastly/computeacls" ) // ListCommand calls the Fastly API to list all compute ACLs. diff --git a/pkg/commands/compute/computeacl/listentries.go b/pkg/commands/compute/computeacl/listentries.go index 909abb495..6003bccac 100644 --- a/pkg/commands/compute/computeacl/listentries.go +++ b/pkg/commands/compute/computeacl/listentries.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/computeacls" + "github.com/fastly/go-fastly/v16/fastly/computeacls" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/computeacl/lookup.go b/pkg/commands/compute/computeacl/lookup.go index cf08f5fa2..3ac37314c 100644 --- a/pkg/commands/compute/computeacl/lookup.go +++ b/pkg/commands/compute/computeacl/lookup.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/computeacls" + "github.com/fastly/go-fastly/v16/fastly/computeacls" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/computeacl/update.go b/pkg/commands/compute/computeacl/update.go index 7b94f9ebd..d1a55d675 100644 --- a/pkg/commands/compute/computeacl/update.go +++ b/pkg/commands/compute/computeacl/update.go @@ -7,9 +7,9 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/computeacls" + "github.com/fastly/go-fastly/v16/fastly/computeacls" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/deploy.go b/pkg/commands/compute/deploy.go index b87e9fcf1..1181db1ac 100644 --- a/pkg/commands/compute/deploy.go +++ b/pkg/commands/compute/deploy.go @@ -16,7 +16,7 @@ import ( "github.com/kennygrant/sanitize" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/argparser" diff --git a/pkg/commands/compute/deploy_test.go b/pkg/commands/compute/deploy_test.go index a8eb8a0c2..a25bac92d 100644 --- a/pkg/commands/compute/deploy_test.go +++ b/pkg/commands/compute/deploy_test.go @@ -11,7 +11,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" "github.com/fastly/cli/pkg/commands/compute" diff --git a/pkg/commands/compute/init.go b/pkg/commands/compute/init.go index c75f7a2ef..c504c2013 100644 --- a/pkg/commands/compute/init.go +++ b/pkg/commands/compute/init.go @@ -19,7 +19,7 @@ import ( cp "github.com/otiai10/copy" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/config" diff --git a/pkg/commands/compute/init_test.go b/pkg/commands/compute/init_test.go index fc46c0ff3..9fcaf31d6 100644 --- a/pkg/commands/compute/init_test.go +++ b/pkg/commands/compute/init_test.go @@ -10,7 +10,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" "github.com/fastly/cli/pkg/config" diff --git a/pkg/commands/compute/setup/backend.go b/pkg/commands/compute/setup/backend.go index b22db9250..4c2637a77 100644 --- a/pkg/commands/compute/setup/backend.go +++ b/pkg/commands/compute/setup/backend.go @@ -7,7 +7,7 @@ import ( "net" "strconv" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/commands/service/backend" diff --git a/pkg/commands/compute/setup/config_store.go b/pkg/commands/compute/setup/config_store.go index 885bda143..0296a8c29 100644 --- a/pkg/commands/compute/setup/config_store.go +++ b/pkg/commands/compute/setup/config_store.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/setup/domain.go b/pkg/commands/compute/setup/domain.go index b47d5db27..00f982f09 100644 --- a/pkg/commands/compute/setup/domain.go +++ b/pkg/commands/compute/setup/domain.go @@ -10,7 +10,7 @@ import ( petname "github.com/dustinkirkland/golang-petname" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/setup/kv_store.go b/pkg/commands/compute/setup/kv_store.go index ec08bbdc0..000599164 100644 --- a/pkg/commands/compute/setup/kv_store.go +++ b/pkg/commands/compute/setup/kv_store.go @@ -8,7 +8,7 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/setup/products.go b/pkg/commands/compute/setup/products.go index 7950f0362..f7e372465 100644 --- a/pkg/commands/compute/setup/products.go +++ b/pkg/commands/compute/setup/products.go @@ -12,18 +12,18 @@ import ( fsterrors "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/manifest" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/products/apidiscovery" - "github.com/fastly/go-fastly/v15/fastly/products/botmanagement" - "github.com/fastly/go-fastly/v15/fastly/products/brotlicompression" - "github.com/fastly/go-fastly/v15/fastly/products/ddosprotection" - "github.com/fastly/go-fastly/v15/fastly/products/domaininspector" - "github.com/fastly/go-fastly/v15/fastly/products/fanout" - "github.com/fastly/go-fastly/v15/fastly/products/imageoptimizer" - "github.com/fastly/go-fastly/v15/fastly/products/logexplorerinsights" - "github.com/fastly/go-fastly/v15/fastly/products/ngwaf" - "github.com/fastly/go-fastly/v15/fastly/products/origininspector" - "github.com/fastly/go-fastly/v15/fastly/products/websockets" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/products/apidiscovery" + "github.com/fastly/go-fastly/v16/fastly/products/botmanagement" + "github.com/fastly/go-fastly/v16/fastly/products/brotlicompression" + "github.com/fastly/go-fastly/v16/fastly/products/ddosprotection" + "github.com/fastly/go-fastly/v16/fastly/products/domaininspector" + "github.com/fastly/go-fastly/v16/fastly/products/fanout" + "github.com/fastly/go-fastly/v16/fastly/products/imageoptimizer" + "github.com/fastly/go-fastly/v16/fastly/products/logexplorerinsights" + "github.com/fastly/go-fastly/v16/fastly/products/ngwaf" + "github.com/fastly/go-fastly/v16/fastly/products/origininspector" + "github.com/fastly/go-fastly/v16/fastly/products/websockets" ) // Products represents the service state related to Products defined diff --git a/pkg/commands/compute/setup/secret_store.go b/pkg/commands/compute/setup/secret_store.go index da208cb4e..7cf243633 100644 --- a/pkg/commands/compute/setup/secret_store.go +++ b/pkg/commands/compute/setup/secret_store.go @@ -6,7 +6,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" fsterrors "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/update.go b/pkg/commands/compute/update.go index 8362706a1..f89992f18 100644 --- a/pkg/commands/compute/update.go +++ b/pkg/commands/compute/update.go @@ -8,7 +8,7 @@ import ( "github.com/kennygrant/sanitize" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstore/configstore_test.go b/pkg/commands/configstore/configstore_test.go index b6613f860..eaafdb77a 100644 --- a/pkg/commands/configstore/configstore_test.go +++ b/pkg/commands/configstore/configstore_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/configstore" fstfmt "github.com/fastly/cli/pkg/fmt" diff --git a/pkg/commands/configstore/create.go b/pkg/commands/configstore/create.go index 4cd87a041..96d31620e 100644 --- a/pkg/commands/configstore/create.go +++ b/pkg/commands/configstore/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstore/delete.go b/pkg/commands/configstore/delete.go index b8624f320..96d9fe634 100644 --- a/pkg/commands/configstore/delete.go +++ b/pkg/commands/configstore/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstore/describe.go b/pkg/commands/configstore/describe.go index 76848e6aa..bd801484c 100644 --- a/pkg/commands/configstore/describe.go +++ b/pkg/commands/configstore/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstore/helper_test.go b/pkg/commands/configstore/helper_test.go index bcbbdb541..45607c598 100644 --- a/pkg/commands/configstore/helper_test.go +++ b/pkg/commands/configstore/helper_test.go @@ -4,7 +4,7 @@ import ( "bytes" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) func fmtStore(cs *fastly.ConfigStore, csm *fastly.ConfigStoreMetadata) string { diff --git a/pkg/commands/configstore/list.go b/pkg/commands/configstore/list.go index 35a6f35fd..e0cb876b5 100644 --- a/pkg/commands/configstore/list.go +++ b/pkg/commands/configstore/list.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstore/list_services.go b/pkg/commands/configstore/list_services.go index 352c8707b..7801ce0e3 100644 --- a/pkg/commands/configstore/list_services.go +++ b/pkg/commands/configstore/list_services.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstore/update.go b/pkg/commands/configstore/update.go index 4c734c98d..0e5c57ac2 100644 --- a/pkg/commands/configstore/update.go +++ b/pkg/commands/configstore/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstoreentry/configstoreentry_test.go b/pkg/commands/configstoreentry/configstoreentry_test.go index ec4d9c324..cc08c9543 100644 --- a/pkg/commands/configstoreentry/configstoreentry_test.go +++ b/pkg/commands/configstoreentry/configstoreentry_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/configstoreentry" fstfmt "github.com/fastly/cli/pkg/fmt" diff --git a/pkg/commands/configstoreentry/create.go b/pkg/commands/configstoreentry/create.go index 9e737fde1..0e4318ce4 100644 --- a/pkg/commands/configstoreentry/create.go +++ b/pkg/commands/configstoreentry/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstoreentry/delete.go b/pkg/commands/configstoreentry/delete.go index 72372458c..e6dae76f2 100644 --- a/pkg/commands/configstoreentry/delete.go +++ b/pkg/commands/configstoreentry/delete.go @@ -7,7 +7,7 @@ import ( "strings" "sync" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstoreentry/describe.go b/pkg/commands/configstoreentry/describe.go index b9cd57d16..ecf2ed6fd 100644 --- a/pkg/commands/configstoreentry/describe.go +++ b/pkg/commands/configstoreentry/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstoreentry/list.go b/pkg/commands/configstoreentry/list.go index d53a72262..d0b61e56c 100644 --- a/pkg/commands/configstoreentry/list.go +++ b/pkg/commands/configstoreentry/list.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/configstoreentry/update.go b/pkg/commands/configstoreentry/update.go index aab15a92a..1733c505a 100644 --- a/pkg/commands/configstoreentry/update.go +++ b/pkg/commands/configstoreentry/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dashboard/create.go b/pkg/commands/dashboard/create.go index ad3ff9409..e85e8eb34 100644 --- a/pkg/commands/dashboard/create.go +++ b/pkg/commands/dashboard/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dashboard/dashboard_test.go b/pkg/commands/dashboard/dashboard_test.go index c2873c45f..cc4e7531c 100644 --- a/pkg/commands/dashboard/dashboard_test.go +++ b/pkg/commands/dashboard/dashboard_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/dashboard" "github.com/fastly/cli/pkg/mock" diff --git a/pkg/commands/dashboard/delete.go b/pkg/commands/dashboard/delete.go index db5037636..791d1b8db 100644 --- a/pkg/commands/dashboard/delete.go +++ b/pkg/commands/dashboard/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dashboard/describe.go b/pkg/commands/dashboard/describe.go index 9fa6303bb..1ada2bb87 100644 --- a/pkg/commands/dashboard/describe.go +++ b/pkg/commands/dashboard/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/dashboard/printer" diff --git a/pkg/commands/dashboard/item/create.go b/pkg/commands/dashboard/item/create.go index 50bca893a..90823e83a 100644 --- a/pkg/commands/dashboard/item/create.go +++ b/pkg/commands/dashboard/item/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/dashboard/printer" diff --git a/pkg/commands/dashboard/item/delete.go b/pkg/commands/dashboard/item/delete.go index 8d345c956..d9b27edb5 100644 --- a/pkg/commands/dashboard/item/delete.go +++ b/pkg/commands/dashboard/item/delete.go @@ -5,7 +5,7 @@ import ( "io" "slices" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dashboard/item/describe.go b/pkg/commands/dashboard/item/describe.go index 781a8c6a6..3192b1891 100644 --- a/pkg/commands/dashboard/item/describe.go +++ b/pkg/commands/dashboard/item/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/dashboard/printer" diff --git a/pkg/commands/dashboard/item/item_test.go b/pkg/commands/dashboard/item/item_test.go index 482225e48..1d89053a8 100644 --- a/pkg/commands/dashboard/item/item_test.go +++ b/pkg/commands/dashboard/item/item_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/dashboard" sub "github.com/fastly/cli/pkg/commands/dashboard/item" diff --git a/pkg/commands/dashboard/item/update.go b/pkg/commands/dashboard/item/update.go index 196b42e21..1971b2a2e 100644 --- a/pkg/commands/dashboard/item/update.go +++ b/pkg/commands/dashboard/item/update.go @@ -6,7 +6,7 @@ import ( "io" "slices" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dashboard/list.go b/pkg/commands/dashboard/list.go index d1102f753..ac9954072 100644 --- a/pkg/commands/dashboard/list.go +++ b/pkg/commands/dashboard/list.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/dashboard/printer" diff --git a/pkg/commands/dashboard/printer/print.go b/pkg/commands/dashboard/printer/print.go index 1f6e5ff11..c07a147ec 100644 --- a/pkg/commands/dashboard/printer/print.go +++ b/pkg/commands/dashboard/printer/print.go @@ -6,7 +6,7 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/text" ) diff --git a/pkg/commands/dashboard/update.go b/pkg/commands/dashboard/update.go index 5ecd55a45..d6bebc3e3 100644 --- a/pkg/commands/dashboard/update.go +++ b/pkg/commands/dashboard/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/tsigkey/create.go b/pkg/commands/dns/tsigkey/create.go index c02c5c35c..28f9d82a6 100644 --- a/pkg/commands/dns/tsigkey/create.go +++ b/pkg/commands/dns/tsigkey/create.go @@ -7,8 +7,8 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/tsigkeys" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/tsigkeys" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/tsigkey/delete.go b/pkg/commands/dns/tsigkey/delete.go index 846ce8512..a61f274ae 100644 --- a/pkg/commands/dns/tsigkey/delete.go +++ b/pkg/commands/dns/tsigkey/delete.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/tsigkeys" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/tsigkeys" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/tsigkey/describe.go b/pkg/commands/dns/tsigkey/describe.go index 607040d66..0ca893199 100644 --- a/pkg/commands/dns/tsigkey/describe.go +++ b/pkg/commands/dns/tsigkey/describe.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/tsigkeys" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/tsigkeys" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/tsigkey/list.go b/pkg/commands/dns/tsigkey/list.go index 752704c09..0810e5710 100644 --- a/pkg/commands/dns/tsigkey/list.go +++ b/pkg/commands/dns/tsigkey/list.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/tsigkeys" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/tsigkeys" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/tsigkey/tsigkey_test.go b/pkg/commands/dns/tsigkey/tsigkey_test.go index 6978de27a..92b1ce99a 100644 --- a/pkg/commands/dns/tsigkey/tsigkey_test.go +++ b/pkg/commands/dns/tsigkey/tsigkey_test.go @@ -8,8 +8,8 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/tsigkeys" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/tsigkeys" dnsroot "github.com/fastly/cli/pkg/commands/dns" root "github.com/fastly/cli/pkg/commands/dns/tsigkey" diff --git a/pkg/commands/dns/tsigkey/update.go b/pkg/commands/dns/tsigkey/update.go index 090610d79..a1cb72eee 100644 --- a/pkg/commands/dns/tsigkey/update.go +++ b/pkg/commands/dns/tsigkey/update.go @@ -7,8 +7,8 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/tsigkeys" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/tsigkeys" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/zone/create.go b/pkg/commands/dns/zone/create.go index 482c8298a..49d4123b7 100644 --- a/pkg/commands/dns/zone/create.go +++ b/pkg/commands/dns/zone/create.go @@ -7,8 +7,8 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/dnszones" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/dnszones" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/zone/delete.go b/pkg/commands/dns/zone/delete.go index 0ef1cfa69..e04d7bf53 100644 --- a/pkg/commands/dns/zone/delete.go +++ b/pkg/commands/dns/zone/delete.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/dnszones" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/dnszones" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/zone/describe.go b/pkg/commands/dns/zone/describe.go index 708c14fd0..15566234f 100644 --- a/pkg/commands/dns/zone/describe.go +++ b/pkg/commands/dns/zone/describe.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/dnszones" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/dnszones" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/zone/list.go b/pkg/commands/dns/zone/list.go index 3f2122033..8077dd3dd 100644 --- a/pkg/commands/dns/zone/list.go +++ b/pkg/commands/dns/zone/list.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/dnszones" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/dnszones" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/zone/update.go b/pkg/commands/dns/zone/update.go index 3f7b588e4..613532608 100644 --- a/pkg/commands/dns/zone/update.go +++ b/pkg/commands/dns/zone/update.go @@ -7,8 +7,8 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/dnszones" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/dnszones" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/dns/zone/zone_test.go b/pkg/commands/dns/zone/zone_test.go index 6670e751a..55adcd99d 100644 --- a/pkg/commands/dns/zone/zone_test.go +++ b/pkg/commands/dns/zone/zone_test.go @@ -8,8 +8,8 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/dnszones" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/dnszones" dnsroot "github.com/fastly/cli/pkg/commands/dns" root "github.com/fastly/cli/pkg/commands/dns/zone" diff --git a/pkg/commands/domain/common.go b/pkg/commands/domain/common.go index fede002a9..8faceab12 100644 --- a/pkg/commands/domain/common.go +++ b/pkg/commands/domain/common.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/domains" "github.com/fastly/cli/pkg/text" ) diff --git a/pkg/commands/domain/create.go b/pkg/commands/domain/create.go index fc8db8c3b..260970d61 100644 --- a/pkg/commands/domain/create.go +++ b/pkg/commands/domain/create.go @@ -6,8 +6,8 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/domains" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/domain/delete.go b/pkg/commands/domain/delete.go index da4893d80..6d665172f 100644 --- a/pkg/commands/domain/delete.go +++ b/pkg/commands/domain/delete.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/domains" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/domain/describe.go b/pkg/commands/domain/describe.go index 21dcb4578..2f7a122c3 100644 --- a/pkg/commands/domain/describe.go +++ b/pkg/commands/domain/describe.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/domains" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/domain/domain_test.go b/pkg/commands/domain/domain_test.go index 731831e39..257904422 100644 --- a/pkg/commands/domain/domain_test.go +++ b/pkg/commands/domain/domain_test.go @@ -8,7 +8,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/domains" root "github.com/fastly/cli/pkg/commands/domain" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/domain/list.go b/pkg/commands/domain/list.go index 96dca454c..a137bcdfc 100644 --- a/pkg/commands/domain/list.go +++ b/pkg/commands/domain/list.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/domains" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/domain/update.go b/pkg/commands/domain/update.go index 9b39e8114..3ec94a1b3 100644 --- a/pkg/commands/domain/update.go +++ b/pkg/commands/domain/update.go @@ -6,8 +6,8 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/domains" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/ip/ip_test.go b/pkg/commands/ip/ip_test.go index 96a6a06b6..8b4766f02 100644 --- a/pkg/commands/ip/ip_test.go +++ b/pkg/commands/ip/ip_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/ip" "github.com/fastly/cli/pkg/mock" diff --git a/pkg/commands/kvstore/create.go b/pkg/commands/kvstore/create.go index 854d495d7..f5c749e70 100644 --- a/pkg/commands/kvstore/create.go +++ b/pkg/commands/kvstore/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/kvstore/delete.go b/pkg/commands/kvstore/delete.go index 87defd0e8..5868fee91 100644 --- a/pkg/commands/kvstore/delete.go +++ b/pkg/commands/kvstore/delete.go @@ -6,7 +6,7 @@ import ( "io" "strconv" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/kvstoreentry" diff --git a/pkg/commands/kvstore/describe.go b/pkg/commands/kvstore/describe.go index 7f45a74ee..17a65e8ea 100644 --- a/pkg/commands/kvstore/describe.go +++ b/pkg/commands/kvstore/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/kvstore/kvstore_test.go b/pkg/commands/kvstore/kvstore_test.go index 42a88b31f..0466753c3 100644 --- a/pkg/commands/kvstore/kvstore_test.go +++ b/pkg/commands/kvstore/kvstore_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/kvstore" fstfmt "github.com/fastly/cli/pkg/fmt" diff --git a/pkg/commands/kvstore/list.go b/pkg/commands/kvstore/list.go index 1f0c556da..2da0f182f 100644 --- a/pkg/commands/kvstore/list.go +++ b/pkg/commands/kvstore/list.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/kvstoreentry/create.go b/pkg/commands/kvstoreentry/create.go index 3a12486b0..26390be60 100644 --- a/pkg/commands/kvstoreentry/create.go +++ b/pkg/commands/kvstoreentry/create.go @@ -13,7 +13,7 @@ import ( "sync" "sync/atomic" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/argparser" diff --git a/pkg/commands/kvstoreentry/delete.go b/pkg/commands/kvstoreentry/delete.go index a6d39060b..787acdb57 100644 --- a/pkg/commands/kvstoreentry/delete.go +++ b/pkg/commands/kvstoreentry/delete.go @@ -8,7 +8,7 @@ import ( "sync" "sync/atomic" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/kvstoreentry/describe.go b/pkg/commands/kvstoreentry/describe.go index 908d86bdf..f506af473 100644 --- a/pkg/commands/kvstoreentry/describe.go +++ b/pkg/commands/kvstoreentry/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/kvstoreentry/get.go b/pkg/commands/kvstoreentry/get.go index 1cbd66424..e55447abc 100644 --- a/pkg/commands/kvstoreentry/get.go +++ b/pkg/commands/kvstoreentry/get.go @@ -7,7 +7,7 @@ import ( "io" "strconv" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/kvstoreentry/kvstoreentry_test.go b/pkg/commands/kvstoreentry/kvstoreentry_test.go index 2b46eff3f..c3901569d 100644 --- a/pkg/commands/kvstoreentry/kvstoreentry_test.go +++ b/pkg/commands/kvstoreentry/kvstoreentry_test.go @@ -10,7 +10,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/kvstoreentry" fstfmt "github.com/fastly/cli/pkg/fmt" diff --git a/pkg/commands/kvstoreentry/list.go b/pkg/commands/kvstoreentry/list.go index 5526fdf53..6f6a8eafa 100644 --- a/pkg/commands/kvstoreentry/list.go +++ b/pkg/commands/kvstoreentry/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/logtail/root.go b/pkg/commands/logtail/root.go index 4de6ed8ae..9331f05ee 100644 --- a/pkg/commands/logtail/root.go +++ b/pkg/commands/logtail/root.go @@ -19,7 +19,7 @@ import ( "github.com/tomnomnom/linkheader" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/debug" diff --git a/pkg/commands/ngwaf/countrylist/countrylist_test.go b/pkg/commands/ngwaf/countrylist/countrylist_test.go index 7fc7e1dbd..742e9f7da 100644 --- a/pkg/commands/ngwaf/countrylist/countrylist_test.go +++ b/pkg/commands/ngwaf/countrylist/countrylist_test.go @@ -12,8 +12,8 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/countrylist" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/countrylist/create.go b/pkg/commands/ngwaf/countrylist/create.go index 7bf78ac69..aa36e09e1 100644 --- a/pkg/commands/ngwaf/countrylist/create.go +++ b/pkg/commands/ngwaf/countrylist/create.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/countrylist/delete.go b/pkg/commands/ngwaf/countrylist/delete.go index ab49292ee..5bf615397 100644 --- a/pkg/commands/ngwaf/countrylist/delete.go +++ b/pkg/commands/ngwaf/countrylist/delete.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/countrylist/get.go b/pkg/commands/ngwaf/countrylist/get.go index d476f4e5b..dc6b0cf8c 100644 --- a/pkg/commands/ngwaf/countrylist/get.go +++ b/pkg/commands/ngwaf/countrylist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // GetCommand calls the Fastly API to get an account-level country list. diff --git a/pkg/commands/ngwaf/countrylist/list.go b/pkg/commands/ngwaf/countrylist/list.go index f1f74b00a..64af19a9e 100644 --- a/pkg/commands/ngwaf/countrylist/list.go +++ b/pkg/commands/ngwaf/countrylist/list.go @@ -10,8 +10,8 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all country lists for your API token. diff --git a/pkg/commands/ngwaf/countrylist/update.go b/pkg/commands/ngwaf/countrylist/update.go index d83c8b53f..18868e705 100644 --- a/pkg/commands/ngwaf/countrylist/update.go +++ b/pkg/commands/ngwaf/countrylist/update.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/customsignal/create.go b/pkg/commands/ngwaf/customsignal/create.go index d74b13ef0..99af5e09f 100644 --- a/pkg/commands/ngwaf/customsignal/create.go +++ b/pkg/commands/ngwaf/customsignal/create.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/customsignal/customsignal_test.go b/pkg/commands/ngwaf/customsignal/customsignal_test.go index 36a8ade67..f1cc2efe2 100644 --- a/pkg/commands/ngwaf/customsignal/customsignal_test.go +++ b/pkg/commands/ngwaf/customsignal/customsignal_test.go @@ -12,8 +12,8 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/customsignal" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" ) const ( diff --git a/pkg/commands/ngwaf/customsignal/delete.go b/pkg/commands/ngwaf/customsignal/delete.go index c3ba367fa..7f19cc5dd 100644 --- a/pkg/commands/ngwaf/customsignal/delete.go +++ b/pkg/commands/ngwaf/customsignal/delete.go @@ -5,10 +5,10 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/customsignal/get.go b/pkg/commands/ngwaf/customsignal/get.go index ec86f6b51..c0a32b04b 100644 --- a/pkg/commands/ngwaf/customsignal/get.go +++ b/pkg/commands/ngwaf/customsignal/get.go @@ -5,10 +5,10 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/customsignal/list.go b/pkg/commands/ngwaf/customsignal/list.go index 2701f6d6d..3847b34e7 100644 --- a/pkg/commands/ngwaf/customsignal/list.go +++ b/pkg/commands/ngwaf/customsignal/list.go @@ -9,10 +9,10 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" ) // ListCommand calls the Fastly API to list all account-level custom signals for your API token. diff --git a/pkg/commands/ngwaf/customsignal/update.go b/pkg/commands/ngwaf/customsignal/update.go index 1440a033a..3ec9dd0ca 100644 --- a/pkg/commands/ngwaf/customsignal/update.go +++ b/pkg/commands/ngwaf/customsignal/update.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/iplist/create.go b/pkg/commands/ngwaf/iplist/create.go index a5f6d5b3f..e28b5f45e 100644 --- a/pkg/commands/ngwaf/iplist/create.go +++ b/pkg/commands/ngwaf/iplist/create.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/iplist/delete.go b/pkg/commands/ngwaf/iplist/delete.go index 87236e714..577f496fd 100644 --- a/pkg/commands/ngwaf/iplist/delete.go +++ b/pkg/commands/ngwaf/iplist/delete.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/iplist/get.go b/pkg/commands/ngwaf/iplist/get.go index 7652e3463..7366fa59b 100644 --- a/pkg/commands/ngwaf/iplist/get.go +++ b/pkg/commands/ngwaf/iplist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // GetCommand calls the Fastly API to get an account-level ip list. diff --git a/pkg/commands/ngwaf/iplist/iplist_test.go b/pkg/commands/ngwaf/iplist/iplist_test.go index 5f0bb7a40..e54c552bc 100644 --- a/pkg/commands/ngwaf/iplist/iplist_test.go +++ b/pkg/commands/ngwaf/iplist/iplist_test.go @@ -12,8 +12,8 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/iplist" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/iplist/list.go b/pkg/commands/ngwaf/iplist/list.go index 7adb15439..ec6939f84 100644 --- a/pkg/commands/ngwaf/iplist/list.go +++ b/pkg/commands/ngwaf/iplist/list.go @@ -10,8 +10,8 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all ip lists for your API token. diff --git a/pkg/commands/ngwaf/iplist/update.go b/pkg/commands/ngwaf/iplist/update.go index 455429179..a9771b92e 100644 --- a/pkg/commands/ngwaf/iplist/update.go +++ b/pkg/commands/ngwaf/iplist/update.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/ngwaflist/api.go b/pkg/commands/ngwaf/ngwaflist/api.go index 79493d7a0..b5741d27a 100644 --- a/pkg/commands/ngwaf/ngwaflist/api.go +++ b/pkg/commands/ngwaf/ngwaflist/api.go @@ -7,9 +7,9 @@ import ( "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf" fsterr "github.com/fastly/cli/pkg/errors" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) type ListCreateInput struct { diff --git a/pkg/commands/ngwaf/root.go b/pkg/commands/ngwaf/root.go index c6561708d..e86c7b073 100644 --- a/pkg/commands/ngwaf/root.go +++ b/pkg/commands/ngwaf/root.go @@ -5,7 +5,7 @@ import ( "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // RootCommand is the parent command for all subcommands in this package. diff --git a/pkg/commands/ngwaf/rule/create.go b/pkg/commands/ngwaf/rule/create.go index 3ddf8ba45..6853013cd 100644 --- a/pkg/commands/ngwaf/rule/create.go +++ b/pkg/commands/ngwaf/rule/create.go @@ -9,9 +9,9 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/rule/delete.go b/pkg/commands/ngwaf/rule/delete.go index 3bb68057d..b2b8e1486 100644 --- a/pkg/commands/ngwaf/rule/delete.go +++ b/pkg/commands/ngwaf/rule/delete.go @@ -5,10 +5,10 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/rule/get.go b/pkg/commands/ngwaf/rule/get.go index 24b666646..bbecacde6 100644 --- a/pkg/commands/ngwaf/rule/get.go +++ b/pkg/commands/ngwaf/rule/get.go @@ -5,10 +5,10 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/rule/list.go b/pkg/commands/ngwaf/rule/list.go index 9a56e665d..0a1b9aead 100644 --- a/pkg/commands/ngwaf/rule/list.go +++ b/pkg/commands/ngwaf/rule/list.go @@ -10,10 +10,10 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all account-level rules for your API token. diff --git a/pkg/commands/ngwaf/rule/rule_test.go b/pkg/commands/ngwaf/rule/rule_test.go index 730f0a9de..60e2fa95a 100644 --- a/pkg/commands/ngwaf/rule/rule_test.go +++ b/pkg/commands/ngwaf/rule/rule_test.go @@ -12,8 +12,8 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/rule" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/rule/update.go b/pkg/commands/ngwaf/rule/update.go index a54842113..5e5616d92 100644 --- a/pkg/commands/ngwaf/rule/update.go +++ b/pkg/commands/ngwaf/rule/update.go @@ -9,9 +9,9 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/signallist/create.go b/pkg/commands/ngwaf/signallist/create.go index 0526b6a60..33cf9b602 100644 --- a/pkg/commands/ngwaf/signallist/create.go +++ b/pkg/commands/ngwaf/signallist/create.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/signallist/delete.go b/pkg/commands/ngwaf/signallist/delete.go index ee7dbf7c3..d6ad83d46 100644 --- a/pkg/commands/ngwaf/signallist/delete.go +++ b/pkg/commands/ngwaf/signallist/delete.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/signallist/get.go b/pkg/commands/ngwaf/signallist/get.go index 3a4dc5a85..93ed6999f 100644 --- a/pkg/commands/ngwaf/signallist/get.go +++ b/pkg/commands/ngwaf/signallist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // GetCommand calls the Fastly API to get an account-level signal list. diff --git a/pkg/commands/ngwaf/signallist/list.go b/pkg/commands/ngwaf/signallist/list.go index 932b1ecf8..5c5a6e191 100644 --- a/pkg/commands/ngwaf/signallist/list.go +++ b/pkg/commands/ngwaf/signallist/list.go @@ -10,8 +10,8 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all signal lists for your API token. diff --git a/pkg/commands/ngwaf/signallist/signallist_test.go b/pkg/commands/ngwaf/signallist/signallist_test.go index 9c508046e..58a1c2e1c 100644 --- a/pkg/commands/ngwaf/signallist/signallist_test.go +++ b/pkg/commands/ngwaf/signallist/signallist_test.go @@ -12,8 +12,8 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/signallist" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/signallist/update.go b/pkg/commands/ngwaf/signallist/update.go index ee74c5e4f..ae5b33dfd 100644 --- a/pkg/commands/ngwaf/signallist/update.go +++ b/pkg/commands/ngwaf/signallist/update.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/stringlist/create.go b/pkg/commands/ngwaf/stringlist/create.go index 9357e9ccc..d28b8234d 100644 --- a/pkg/commands/ngwaf/stringlist/create.go +++ b/pkg/commands/ngwaf/stringlist/create.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/stringlist/delete.go b/pkg/commands/ngwaf/stringlist/delete.go index d43259985..5262d0ec8 100644 --- a/pkg/commands/ngwaf/stringlist/delete.go +++ b/pkg/commands/ngwaf/stringlist/delete.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/stringlist/get.go b/pkg/commands/ngwaf/stringlist/get.go index 52a282c0d..ef6708096 100644 --- a/pkg/commands/ngwaf/stringlist/get.go +++ b/pkg/commands/ngwaf/stringlist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // GetCommand calls the Fastly API to get an account-level string list. diff --git a/pkg/commands/ngwaf/stringlist/list.go b/pkg/commands/ngwaf/stringlist/list.go index b2f342e4d..edf85ff01 100644 --- a/pkg/commands/ngwaf/stringlist/list.go +++ b/pkg/commands/ngwaf/stringlist/list.go @@ -10,8 +10,8 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all string lists for your API token. diff --git a/pkg/commands/ngwaf/stringlist/stringlist_test.go b/pkg/commands/ngwaf/stringlist/stringlist_test.go index e5ad19f23..1379cbcaf 100644 --- a/pkg/commands/ngwaf/stringlist/stringlist_test.go +++ b/pkg/commands/ngwaf/stringlist/stringlist_test.go @@ -12,8 +12,8 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/stringlist" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/stringlist/update.go b/pkg/commands/ngwaf/stringlist/update.go index d6987845e..929a24563 100644 --- a/pkg/commands/ngwaf/stringlist/update.go +++ b/pkg/commands/ngwaf/stringlist/update.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/wildcardlist/create.go b/pkg/commands/ngwaf/wildcardlist/create.go index cf1c72498..452e99620 100644 --- a/pkg/commands/ngwaf/wildcardlist/create.go +++ b/pkg/commands/ngwaf/wildcardlist/create.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/wildcardlist/delete.go b/pkg/commands/ngwaf/wildcardlist/delete.go index 02289e833..108d8fea8 100644 --- a/pkg/commands/ngwaf/wildcardlist/delete.go +++ b/pkg/commands/ngwaf/wildcardlist/delete.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/wildcardlist/get.go b/pkg/commands/ngwaf/wildcardlist/get.go index 33bcd798f..58e1c51a6 100644 --- a/pkg/commands/ngwaf/wildcardlist/get.go +++ b/pkg/commands/ngwaf/wildcardlist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // GetCommand calls the Fastly API to get an account-level wildcard list. diff --git a/pkg/commands/ngwaf/wildcardlist/list.go b/pkg/commands/ngwaf/wildcardlist/list.go index f8140441f..139895dc0 100644 --- a/pkg/commands/ngwaf/wildcardlist/list.go +++ b/pkg/commands/ngwaf/wildcardlist/list.go @@ -10,8 +10,8 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all wildcard lists for your API token. diff --git a/pkg/commands/ngwaf/wildcardlist/update.go b/pkg/commands/ngwaf/wildcardlist/update.go index 3dfcb4248..e4ccf077c 100644 --- a/pkg/commands/ngwaf/wildcardlist/update.go +++ b/pkg/commands/ngwaf/wildcardlist/update.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/wildcardlist/wildcardlist_test.go b/pkg/commands/ngwaf/wildcardlist/wildcardlist_test.go index caf61160a..5f4120ac2 100644 --- a/pkg/commands/ngwaf/wildcardlist/wildcardlist_test.go +++ b/pkg/commands/ngwaf/wildcardlist/wildcardlist_test.go @@ -12,8 +12,8 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/wildcardlist" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/alert/datadog/create.go b/pkg/commands/ngwaf/workspace/alert/datadog/create.go index 2bfb0ef59..f1e0760af 100644 --- a/pkg/commands/ngwaf/workspace/alert/datadog/create.go +++ b/pkg/commands/ngwaf/workspace/alert/datadog/create.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/datadog" ) // CreateCommand calls the Fastly API to create Datadog alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/datadog/datadog_test.go b/pkg/commands/ngwaf/workspace/alert/datadog/datadog_test.go index 9435600c8..fe3f48cd8 100644 --- a/pkg/commands/ngwaf/workspace/alert/datadog/datadog_test.go +++ b/pkg/commands/ngwaf/workspace/alert/datadog/datadog_test.go @@ -14,7 +14,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/alert/datadog" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/datadog" ) const ( diff --git a/pkg/commands/ngwaf/workspace/alert/datadog/delete.go b/pkg/commands/ngwaf/workspace/alert/datadog/delete.go index b20ec40f9..1cab8d307 100644 --- a/pkg/commands/ngwaf/workspace/alert/datadog/delete.go +++ b/pkg/commands/ngwaf/workspace/alert/datadog/delete.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/datadog" ) // DeleteCommand calls the Fastly API to delete Datadog alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/datadog/get.go b/pkg/commands/ngwaf/workspace/alert/datadog/get.go index e420c3256..4e46ba08e 100644 --- a/pkg/commands/ngwaf/workspace/alert/datadog/get.go +++ b/pkg/commands/ngwaf/workspace/alert/datadog/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/datadog" ) // GetCommand calls the Fastly API to get Datadog alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/datadog/list.go b/pkg/commands/ngwaf/workspace/alert/datadog/list.go index cf5a5cebe..8fc736e34 100644 --- a/pkg/commands/ngwaf/workspace/alert/datadog/list.go +++ b/pkg/commands/ngwaf/workspace/alert/datadog/list.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/datadog" ) // ListCommand calls the Fastly API to list Datadog alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/datadog/update.go b/pkg/commands/ngwaf/workspace/alert/datadog/update.go index 8add8681c..b8561e91b 100644 --- a/pkg/commands/ngwaf/workspace/alert/datadog/update.go +++ b/pkg/commands/ngwaf/workspace/alert/datadog/update.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/datadog" ) // UpdateCommand calls the Fastly API to update Datadog alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/jira/create.go b/pkg/commands/ngwaf/workspace/alert/jira/create.go index 8faaef909..0a881925a 100644 --- a/pkg/commands/ngwaf/workspace/alert/jira/create.go +++ b/pkg/commands/ngwaf/workspace/alert/jira/create.go @@ -10,8 +10,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/jira" ) // CreateCommand calls the Fastly API to create Jira alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/jira/delete.go b/pkg/commands/ngwaf/workspace/alert/jira/delete.go index 185d1e11d..a534fd07f 100644 --- a/pkg/commands/ngwaf/workspace/alert/jira/delete.go +++ b/pkg/commands/ngwaf/workspace/alert/jira/delete.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/jira" ) // DeleteCommand calls the Fastly API to delete Jira alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/jira/get.go b/pkg/commands/ngwaf/workspace/alert/jira/get.go index a35f65456..55bf21115 100644 --- a/pkg/commands/ngwaf/workspace/alert/jira/get.go +++ b/pkg/commands/ngwaf/workspace/alert/jira/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/jira" ) // GetCommand calls the Fastly API to get Jira alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/jira/jira_test.go b/pkg/commands/ngwaf/workspace/alert/jira/jira_test.go index 453f59af6..d78361ec7 100644 --- a/pkg/commands/ngwaf/workspace/alert/jira/jira_test.go +++ b/pkg/commands/ngwaf/workspace/alert/jira/jira_test.go @@ -14,7 +14,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/alert/jira" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/jira" ) const ( diff --git a/pkg/commands/ngwaf/workspace/alert/jira/list.go b/pkg/commands/ngwaf/workspace/alert/jira/list.go index 8dd76a0d3..082c72b1b 100644 --- a/pkg/commands/ngwaf/workspace/alert/jira/list.go +++ b/pkg/commands/ngwaf/workspace/alert/jira/list.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/jira" ) // ListCommand calls the Fastly API to list Jira alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/jira/update.go b/pkg/commands/ngwaf/workspace/alert/jira/update.go index f1da6a234..e9217f2bd 100644 --- a/pkg/commands/ngwaf/workspace/alert/jira/update.go +++ b/pkg/commands/ngwaf/workspace/alert/jira/update.go @@ -10,8 +10,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/jira" ) // UpdateCommand calls the Fastly API to update Jira alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/mailinglist/create.go b/pkg/commands/ngwaf/workspace/alert/mailinglist/create.go index 4fd349bea..87a7ec39e 100644 --- a/pkg/commands/ngwaf/workspace/alert/mailinglist/create.go +++ b/pkg/commands/ngwaf/workspace/alert/mailinglist/create.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/mailinglist" ) // CreateCommand calls the Fastly API to create Mailing List alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/mailinglist/delete.go b/pkg/commands/ngwaf/workspace/alert/mailinglist/delete.go index 44c944587..ba83ebc04 100644 --- a/pkg/commands/ngwaf/workspace/alert/mailinglist/delete.go +++ b/pkg/commands/ngwaf/workspace/alert/mailinglist/delete.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/mailinglist" ) // DeleteCommand calls the Fastly API to delete Mailing List alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/mailinglist/get.go b/pkg/commands/ngwaf/workspace/alert/mailinglist/get.go index fc22d8a8c..87910632f 100644 --- a/pkg/commands/ngwaf/workspace/alert/mailinglist/get.go +++ b/pkg/commands/ngwaf/workspace/alert/mailinglist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/mailinglist" ) // GetCommand calls the Fastly API to get Mailing List alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/mailinglist/list.go b/pkg/commands/ngwaf/workspace/alert/mailinglist/list.go index 1f8660f22..41fa27a2c 100644 --- a/pkg/commands/ngwaf/workspace/alert/mailinglist/list.go +++ b/pkg/commands/ngwaf/workspace/alert/mailinglist/list.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/mailinglist" ) // ListCommand calls the Fastly API to list Mailing List alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/mailinglist/mailinglist_test.go b/pkg/commands/ngwaf/workspace/alert/mailinglist/mailinglist_test.go index ea9a9ee22..b26409546 100644 --- a/pkg/commands/ngwaf/workspace/alert/mailinglist/mailinglist_test.go +++ b/pkg/commands/ngwaf/workspace/alert/mailinglist/mailinglist_test.go @@ -14,7 +14,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/alert/mailinglist" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/mailinglist" ) const ( diff --git a/pkg/commands/ngwaf/workspace/alert/mailinglist/update.go b/pkg/commands/ngwaf/workspace/alert/mailinglist/update.go index e748e9d05..739442676 100644 --- a/pkg/commands/ngwaf/workspace/alert/mailinglist/update.go +++ b/pkg/commands/ngwaf/workspace/alert/mailinglist/update.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/mailinglist" ) // UpdateCommand calls the Fastly API to update Mailing List alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/microsoftteams/create.go b/pkg/commands/ngwaf/workspace/alert/microsoftteams/create.go index 2baf41202..453c08407 100644 --- a/pkg/commands/ngwaf/workspace/alert/microsoftteams/create.go +++ b/pkg/commands/ngwaf/workspace/alert/microsoftteams/create.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" ) // CreateCommand calls the Fastly API to create Microsoft Teams alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/microsoftteams/delete.go b/pkg/commands/ngwaf/workspace/alert/microsoftteams/delete.go index 4527be08f..c1698e4d8 100644 --- a/pkg/commands/ngwaf/workspace/alert/microsoftteams/delete.go +++ b/pkg/commands/ngwaf/workspace/alert/microsoftteams/delete.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" ) // DeleteCommand calls the Fastly API to delete Microsoft Teams alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/microsoftteams/get.go b/pkg/commands/ngwaf/workspace/alert/microsoftteams/get.go index c661571fd..65387938f 100644 --- a/pkg/commands/ngwaf/workspace/alert/microsoftteams/get.go +++ b/pkg/commands/ngwaf/workspace/alert/microsoftteams/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" ) // GetCommand calls the Fastly API to get Microsoft Teams alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/microsoftteams/list.go b/pkg/commands/ngwaf/workspace/alert/microsoftteams/list.go index 730a0178f..85e8db70d 100644 --- a/pkg/commands/ngwaf/workspace/alert/microsoftteams/list.go +++ b/pkg/commands/ngwaf/workspace/alert/microsoftteams/list.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" ) // ListCommand calls the Fastly API to list Microsoft Teams alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/microsoftteams/microsoftteams_test.go b/pkg/commands/ngwaf/workspace/alert/microsoftteams/microsoftteams_test.go index 124858af6..f1eac007a 100644 --- a/pkg/commands/ngwaf/workspace/alert/microsoftteams/microsoftteams_test.go +++ b/pkg/commands/ngwaf/workspace/alert/microsoftteams/microsoftteams_test.go @@ -14,7 +14,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/alert/microsoftteams" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" ) const ( diff --git a/pkg/commands/ngwaf/workspace/alert/microsoftteams/update.go b/pkg/commands/ngwaf/workspace/alert/microsoftteams/update.go index eda2f119d..d456fc093 100644 --- a/pkg/commands/ngwaf/workspace/alert/microsoftteams/update.go +++ b/pkg/commands/ngwaf/workspace/alert/microsoftteams/update.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" ) // UpdateCommand calls the Fastly API to update Microsoft Teams alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/opsgenie/create.go b/pkg/commands/ngwaf/workspace/alert/opsgenie/create.go index e6d3f7229..ba5883a9b 100644 --- a/pkg/commands/ngwaf/workspace/alert/opsgenie/create.go +++ b/pkg/commands/ngwaf/workspace/alert/opsgenie/create.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/opsgenie" ) // CreateCommand calls the Fastly API to create Opsgenie alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/opsgenie/delete.go b/pkg/commands/ngwaf/workspace/alert/opsgenie/delete.go index db38de211..4006b9f3b 100644 --- a/pkg/commands/ngwaf/workspace/alert/opsgenie/delete.go +++ b/pkg/commands/ngwaf/workspace/alert/opsgenie/delete.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/opsgenie" ) // DeleteCommand calls the Fastly API to delete Opsgenie alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/opsgenie/get.go b/pkg/commands/ngwaf/workspace/alert/opsgenie/get.go index b6363df0c..060b5b2bf 100644 --- a/pkg/commands/ngwaf/workspace/alert/opsgenie/get.go +++ b/pkg/commands/ngwaf/workspace/alert/opsgenie/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/opsgenie" ) // GetCommand calls the Fastly API to get Opsgenie alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/opsgenie/list.go b/pkg/commands/ngwaf/workspace/alert/opsgenie/list.go index 6c4787805..5d3573a2b 100644 --- a/pkg/commands/ngwaf/workspace/alert/opsgenie/list.go +++ b/pkg/commands/ngwaf/workspace/alert/opsgenie/list.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/opsgenie" ) // ListCommand calls the Fastly API to list Opsgenie alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/opsgenie/opsgenie_test.go b/pkg/commands/ngwaf/workspace/alert/opsgenie/opsgenie_test.go index 9e1808d40..bc3e481db 100644 --- a/pkg/commands/ngwaf/workspace/alert/opsgenie/opsgenie_test.go +++ b/pkg/commands/ngwaf/workspace/alert/opsgenie/opsgenie_test.go @@ -14,7 +14,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/alert/opsgenie" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/opsgenie" ) const ( diff --git a/pkg/commands/ngwaf/workspace/alert/opsgenie/update.go b/pkg/commands/ngwaf/workspace/alert/opsgenie/update.go index fa232332e..c930bc337 100644 --- a/pkg/commands/ngwaf/workspace/alert/opsgenie/update.go +++ b/pkg/commands/ngwaf/workspace/alert/opsgenie/update.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/opsgenie" ) // UpdateCommand calls the Fastly API to update Opsgenie alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/pagerduty/create.go b/pkg/commands/ngwaf/workspace/alert/pagerduty/create.go index 85318c682..3cc37fee0 100644 --- a/pkg/commands/ngwaf/workspace/alert/pagerduty/create.go +++ b/pkg/commands/ngwaf/workspace/alert/pagerduty/create.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/pagerduty" ) // CreateCommand calls the Fastly API to create PagerDuty alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/pagerduty/delete.go b/pkg/commands/ngwaf/workspace/alert/pagerduty/delete.go index a3f96f52b..c5d5ad59a 100644 --- a/pkg/commands/ngwaf/workspace/alert/pagerduty/delete.go +++ b/pkg/commands/ngwaf/workspace/alert/pagerduty/delete.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/pagerduty" ) // DeleteCommand calls the Fastly API to delete PagerDuty alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/pagerduty/get.go b/pkg/commands/ngwaf/workspace/alert/pagerduty/get.go index 66cee236d..b507234b5 100644 --- a/pkg/commands/ngwaf/workspace/alert/pagerduty/get.go +++ b/pkg/commands/ngwaf/workspace/alert/pagerduty/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/pagerduty" ) // GetCommand calls the Fastly API to get PagerDuty alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/pagerduty/list.go b/pkg/commands/ngwaf/workspace/alert/pagerduty/list.go index ffdf3f458..9f8fcb9a4 100644 --- a/pkg/commands/ngwaf/workspace/alert/pagerduty/list.go +++ b/pkg/commands/ngwaf/workspace/alert/pagerduty/list.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/pagerduty" ) // ListCommand calls the Fastly API to list PagerDuty alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/pagerduty/pagerduty_test.go b/pkg/commands/ngwaf/workspace/alert/pagerduty/pagerduty_test.go index 7b51a83c3..9b3ee9615 100644 --- a/pkg/commands/ngwaf/workspace/alert/pagerduty/pagerduty_test.go +++ b/pkg/commands/ngwaf/workspace/alert/pagerduty/pagerduty_test.go @@ -14,7 +14,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/alert/pagerduty" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/pagerduty" ) const ( diff --git a/pkg/commands/ngwaf/workspace/alert/pagerduty/update.go b/pkg/commands/ngwaf/workspace/alert/pagerduty/update.go index 647d70e3f..89d04ed1f 100644 --- a/pkg/commands/ngwaf/workspace/alert/pagerduty/update.go +++ b/pkg/commands/ngwaf/workspace/alert/pagerduty/update.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/pagerduty" ) // UpdateCommand calls the Fastly API to update PagerDuty alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/slack/create.go b/pkg/commands/ngwaf/workspace/alert/slack/create.go index c1ca05609..d3ff21701 100644 --- a/pkg/commands/ngwaf/workspace/alert/slack/create.go +++ b/pkg/commands/ngwaf/workspace/alert/slack/create.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/slack" ) // CreateCommand calls the Fastly API to create Slack alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/slack/delete.go b/pkg/commands/ngwaf/workspace/alert/slack/delete.go index 865ba4480..b33e5f49d 100644 --- a/pkg/commands/ngwaf/workspace/alert/slack/delete.go +++ b/pkg/commands/ngwaf/workspace/alert/slack/delete.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/slack" ) // DeleteCommand calls the Fastly API to delete Slack alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/slack/get.go b/pkg/commands/ngwaf/workspace/alert/slack/get.go index 6de4e0fe1..0392fea0a 100644 --- a/pkg/commands/ngwaf/workspace/alert/slack/get.go +++ b/pkg/commands/ngwaf/workspace/alert/slack/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/slack" ) // GetCommand calls the Fastly API to get Slack alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/slack/list.go b/pkg/commands/ngwaf/workspace/alert/slack/list.go index f54333669..55366e44e 100644 --- a/pkg/commands/ngwaf/workspace/alert/slack/list.go +++ b/pkg/commands/ngwaf/workspace/alert/slack/list.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/slack" ) // ListCommand calls the Fastly API to list Slack alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/slack/slack_test.go b/pkg/commands/ngwaf/workspace/alert/slack/slack_test.go index 795366874..2afed3513 100644 --- a/pkg/commands/ngwaf/workspace/alert/slack/slack_test.go +++ b/pkg/commands/ngwaf/workspace/alert/slack/slack_test.go @@ -14,7 +14,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/alert/slack" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/slack" ) const ( diff --git a/pkg/commands/ngwaf/workspace/alert/slack/update.go b/pkg/commands/ngwaf/workspace/alert/slack/update.go index ffb880dc7..209b9dc7f 100644 --- a/pkg/commands/ngwaf/workspace/alert/slack/update.go +++ b/pkg/commands/ngwaf/workspace/alert/slack/update.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/slack" ) // UpdateCommand calls the Fastly API to update Slack alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/webhook/create.go b/pkg/commands/ngwaf/workspace/alert/webhook/create.go index 0e754180d..fab495635 100644 --- a/pkg/commands/ngwaf/workspace/alert/webhook/create.go +++ b/pkg/commands/ngwaf/workspace/alert/webhook/create.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/webhook" ) // CreateCommand calls the Fastly API to create Webhook alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/webhook/delete.go b/pkg/commands/ngwaf/workspace/alert/webhook/delete.go index cc880eede..b26be5aa4 100644 --- a/pkg/commands/ngwaf/workspace/alert/webhook/delete.go +++ b/pkg/commands/ngwaf/workspace/alert/webhook/delete.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/webhook" ) // DeleteCommand calls the Fastly API to delete Webhook alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/webhook/get-signing-key.go b/pkg/commands/ngwaf/workspace/alert/webhook/get-signing-key.go index ccd924627..84a00cf03 100644 --- a/pkg/commands/ngwaf/workspace/alert/webhook/get-signing-key.go +++ b/pkg/commands/ngwaf/workspace/alert/webhook/get-signing-key.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/webhook" ) // GetSigningKeyCommand calls the Fastly API to get Webhook alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/webhook/get.go b/pkg/commands/ngwaf/workspace/alert/webhook/get.go index 15cb1d289..da2a1f8e2 100644 --- a/pkg/commands/ngwaf/workspace/alert/webhook/get.go +++ b/pkg/commands/ngwaf/workspace/alert/webhook/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/webhook" ) // GetCommand calls the Fastly API to get Webhook alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/webhook/list.go b/pkg/commands/ngwaf/workspace/alert/webhook/list.go index 4eb6a9860..283dc848e 100644 --- a/pkg/commands/ngwaf/workspace/alert/webhook/list.go +++ b/pkg/commands/ngwaf/workspace/alert/webhook/list.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/webhook" ) // ListCommand calls the Fastly API to list Webhook alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/webhook/rotate-signing-key.go b/pkg/commands/ngwaf/workspace/alert/webhook/rotate-signing-key.go index 604f2a2cb..da11dba21 100644 --- a/pkg/commands/ngwaf/workspace/alert/webhook/rotate-signing-key.go +++ b/pkg/commands/ngwaf/workspace/alert/webhook/rotate-signing-key.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/webhook" ) // RotateSigningKeyCommand calls the Fastly API to get Webhook alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/webhook/update.go b/pkg/commands/ngwaf/workspace/alert/webhook/update.go index bf3dd2fa9..982f9cc4b 100644 --- a/pkg/commands/ngwaf/workspace/alert/webhook/update.go +++ b/pkg/commands/ngwaf/workspace/alert/webhook/update.go @@ -11,8 +11,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/webhook" ) // UpdateCommand calls the Fastly API to update Webhook alerts. diff --git a/pkg/commands/ngwaf/workspace/alert/webhook/webhook_test.go b/pkg/commands/ngwaf/workspace/alert/webhook/webhook_test.go index 47b7aa377..a9610c365 100644 --- a/pkg/commands/ngwaf/workspace/alert/webhook/webhook_test.go +++ b/pkg/commands/ngwaf/workspace/alert/webhook/webhook_test.go @@ -14,7 +14,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/alert/webhook" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/webhook" ) const ( diff --git a/pkg/commands/ngwaf/workspace/countrylist/countrylist_test.go b/pkg/commands/ngwaf/workspace/countrylist/countrylist_test.go index f315cc17e..f5a886234 100644 --- a/pkg/commands/ngwaf/workspace/countrylist/countrylist_test.go +++ b/pkg/commands/ngwaf/workspace/countrylist/countrylist_test.go @@ -13,8 +13,8 @@ import ( sub2 "github.com/fastly/cli/pkg/commands/ngwaf/workspace/countrylist" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/countrylist/create.go b/pkg/commands/ngwaf/workspace/countrylist/create.go index df1265909..80d751fa4 100644 --- a/pkg/commands/ngwaf/workspace/countrylist/create.go +++ b/pkg/commands/ngwaf/workspace/countrylist/create.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/countrylist/delete.go b/pkg/commands/ngwaf/workspace/countrylist/delete.go index 7dcaba6a3..81596468a 100644 --- a/pkg/commands/ngwaf/workspace/countrylist/delete.go +++ b/pkg/commands/ngwaf/workspace/countrylist/delete.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/countrylist/get.go b/pkg/commands/ngwaf/workspace/countrylist/get.go index 41fe0ca44..d44ab016a 100644 --- a/pkg/commands/ngwaf/workspace/countrylist/get.go +++ b/pkg/commands/ngwaf/workspace/countrylist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // GetCommand calls the Fastly API to get a workspace-level country list. diff --git a/pkg/commands/ngwaf/workspace/countrylist/list.go b/pkg/commands/ngwaf/workspace/countrylist/list.go index 716650bf1..0239899a3 100644 --- a/pkg/commands/ngwaf/workspace/countrylist/list.go +++ b/pkg/commands/ngwaf/workspace/countrylist/list.go @@ -10,8 +10,8 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all country lists for your workspace. diff --git a/pkg/commands/ngwaf/workspace/countrylist/update.go b/pkg/commands/ngwaf/workspace/countrylist/update.go index 40dd32ac9..e711a8754 100644 --- a/pkg/commands/ngwaf/workspace/countrylist/update.go +++ b/pkg/commands/ngwaf/workspace/countrylist/update.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/create.go b/pkg/commands/ngwaf/workspace/create.go index a29c60fe8..8f8f8ae8e 100644 --- a/pkg/commands/ngwaf/workspace/create.go +++ b/pkg/commands/ngwaf/workspace/create.go @@ -7,8 +7,8 @@ import ( "strconv" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/customsignal/create.go b/pkg/commands/ngwaf/workspace/customsignal/create.go index 7e80b9783..c6190878d 100644 --- a/pkg/commands/ngwaf/workspace/customsignal/create.go +++ b/pkg/commands/ngwaf/workspace/customsignal/create.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/customsignal/customsignal_test.go b/pkg/commands/ngwaf/workspace/customsignal/customsignal_test.go index c6bf05447..eb185ff7c 100644 --- a/pkg/commands/ngwaf/workspace/customsignal/customsignal_test.go +++ b/pkg/commands/ngwaf/workspace/customsignal/customsignal_test.go @@ -13,8 +13,8 @@ import ( sub2 "github.com/fastly/cli/pkg/commands/ngwaf/workspace/customsignal" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" ) const ( diff --git a/pkg/commands/ngwaf/workspace/customsignal/delete.go b/pkg/commands/ngwaf/workspace/customsignal/delete.go index 35471b14a..e10401282 100644 --- a/pkg/commands/ngwaf/workspace/customsignal/delete.go +++ b/pkg/commands/ngwaf/workspace/customsignal/delete.go @@ -5,10 +5,10 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/customsignal/get.go b/pkg/commands/ngwaf/workspace/customsignal/get.go index 32a51a2e1..541142e45 100644 --- a/pkg/commands/ngwaf/workspace/customsignal/get.go +++ b/pkg/commands/ngwaf/workspace/customsignal/get.go @@ -5,10 +5,10 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/customsignal/list.go b/pkg/commands/ngwaf/workspace/customsignal/list.go index 323bfc891..603405053 100644 --- a/pkg/commands/ngwaf/workspace/customsignal/list.go +++ b/pkg/commands/ngwaf/workspace/customsignal/list.go @@ -9,10 +9,10 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" ) // ListCommand calls the Fastly API to list all workspace-level custom signals for your API token. diff --git a/pkg/commands/ngwaf/workspace/customsignal/update.go b/pkg/commands/ngwaf/workspace/customsignal/update.go index 38adff525..8d857f2d3 100644 --- a/pkg/commands/ngwaf/workspace/customsignal/update.go +++ b/pkg/commands/ngwaf/workspace/customsignal/update.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/delete.go b/pkg/commands/ngwaf/workspace/delete.go index 93a52e6c1..26c7d1fd6 100644 --- a/pkg/commands/ngwaf/workspace/delete.go +++ b/pkg/commands/ngwaf/workspace/delete.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/get.go b/pkg/commands/ngwaf/workspace/get.go index 15563b9aa..767a2a867 100644 --- a/pkg/commands/ngwaf/workspace/get.go +++ b/pkg/commands/ngwaf/workspace/get.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/iplist/create.go b/pkg/commands/ngwaf/workspace/iplist/create.go index 8209f8c9a..04bd42f06 100644 --- a/pkg/commands/ngwaf/workspace/iplist/create.go +++ b/pkg/commands/ngwaf/workspace/iplist/create.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/iplist/delete.go b/pkg/commands/ngwaf/workspace/iplist/delete.go index f0043b736..2b135eed8 100644 --- a/pkg/commands/ngwaf/workspace/iplist/delete.go +++ b/pkg/commands/ngwaf/workspace/iplist/delete.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/iplist/get.go b/pkg/commands/ngwaf/workspace/iplist/get.go index ec38e1794..ad8578cc7 100644 --- a/pkg/commands/ngwaf/workspace/iplist/get.go +++ b/pkg/commands/ngwaf/workspace/iplist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // GetCommand calls the Fastly API to get a workspace-level ip list. diff --git a/pkg/commands/ngwaf/workspace/iplist/iplist_test.go b/pkg/commands/ngwaf/workspace/iplist/iplist_test.go index 297134e8e..02573f9d9 100644 --- a/pkg/commands/ngwaf/workspace/iplist/iplist_test.go +++ b/pkg/commands/ngwaf/workspace/iplist/iplist_test.go @@ -13,8 +13,8 @@ import ( sub2 "github.com/fastly/cli/pkg/commands/ngwaf/workspace/iplist" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/iplist/list.go b/pkg/commands/ngwaf/workspace/iplist/list.go index 2bfa8b3de..c5ab741bb 100644 --- a/pkg/commands/ngwaf/workspace/iplist/list.go +++ b/pkg/commands/ngwaf/workspace/iplist/list.go @@ -10,8 +10,8 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all ip lists for your workspace. diff --git a/pkg/commands/ngwaf/workspace/iplist/update.go b/pkg/commands/ngwaf/workspace/iplist/update.go index 6aeee7aee..698511888 100644 --- a/pkg/commands/ngwaf/workspace/iplist/update.go +++ b/pkg/commands/ngwaf/workspace/iplist/update.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/list.go b/pkg/commands/ngwaf/workspace/list.go index c83726315..6616f463e 100644 --- a/pkg/commands/ngwaf/workspace/list.go +++ b/pkg/commands/ngwaf/workspace/list.go @@ -9,9 +9,9 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces" ) // ListCommand calls the Fastly API to list all Workspaces for your API token. diff --git a/pkg/commands/ngwaf/workspace/redaction/create.go b/pkg/commands/ngwaf/workspace/redaction/create.go index 774da1427..74de0239d 100644 --- a/pkg/commands/ngwaf/workspace/redaction/create.go +++ b/pkg/commands/ngwaf/workspace/redaction/create.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/redactions" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/redaction/delete.go b/pkg/commands/ngwaf/workspace/redaction/delete.go index dd90f8355..3f0d90cd9 100644 --- a/pkg/commands/ngwaf/workspace/redaction/delete.go +++ b/pkg/commands/ngwaf/workspace/redaction/delete.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/redactions" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/redaction/list.go b/pkg/commands/ngwaf/workspace/redaction/list.go index a3802c570..8158fa407 100644 --- a/pkg/commands/ngwaf/workspace/redaction/list.go +++ b/pkg/commands/ngwaf/workspace/redaction/list.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/redactions" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/redaction/redaction_test.go b/pkg/commands/ngwaf/workspace/redaction/redaction_test.go index a0a3334fd..d1b844b45 100644 --- a/pkg/commands/ngwaf/workspace/redaction/redaction_test.go +++ b/pkg/commands/ngwaf/workspace/redaction/redaction_test.go @@ -13,7 +13,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/redaction" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/redactions" ) const ( diff --git a/pkg/commands/ngwaf/workspace/redaction/retrieve.go b/pkg/commands/ngwaf/workspace/redaction/retrieve.go index 7ef524216..710d64a93 100644 --- a/pkg/commands/ngwaf/workspace/redaction/retrieve.go +++ b/pkg/commands/ngwaf/workspace/redaction/retrieve.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/redactions" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/redaction/update.go b/pkg/commands/ngwaf/workspace/redaction/update.go index 4994501f6..d4e646381 100644 --- a/pkg/commands/ngwaf/workspace/redaction/update.go +++ b/pkg/commands/ngwaf/workspace/redaction/update.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/redactions" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/rule/create.go b/pkg/commands/ngwaf/workspace/rule/create.go index 51ad36b48..0d5864278 100644 --- a/pkg/commands/ngwaf/workspace/rule/create.go +++ b/pkg/commands/ngwaf/workspace/rule/create.go @@ -9,9 +9,9 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/rule/delete.go b/pkg/commands/ngwaf/workspace/rule/delete.go index ea50b0db1..30e2584c1 100644 --- a/pkg/commands/ngwaf/workspace/rule/delete.go +++ b/pkg/commands/ngwaf/workspace/rule/delete.go @@ -5,10 +5,10 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/rule/get.go b/pkg/commands/ngwaf/workspace/rule/get.go index 0afa23cff..14546133b 100644 --- a/pkg/commands/ngwaf/workspace/rule/get.go +++ b/pkg/commands/ngwaf/workspace/rule/get.go @@ -5,10 +5,10 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/rule/list.go b/pkg/commands/ngwaf/workspace/rule/list.go index 6fd22637c..9cec5156c 100644 --- a/pkg/commands/ngwaf/workspace/rule/list.go +++ b/pkg/commands/ngwaf/workspace/rule/list.go @@ -10,10 +10,10 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all workspace-level rules for your API token. diff --git a/pkg/commands/ngwaf/workspace/rule/rule_test.go b/pkg/commands/ngwaf/workspace/rule/rule_test.go index 2d6c4a733..a515d17fc 100644 --- a/pkg/commands/ngwaf/workspace/rule/rule_test.go +++ b/pkg/commands/ngwaf/workspace/rule/rule_test.go @@ -13,8 +13,8 @@ import ( sub2 "github.com/fastly/cli/pkg/commands/ngwaf/workspace/rule" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/rule/update.go b/pkg/commands/ngwaf/workspace/rule/update.go index bf07581a6..989e77ba6 100644 --- a/pkg/commands/ngwaf/workspace/rule/update.go +++ b/pkg/commands/ngwaf/workspace/rule/update.go @@ -9,9 +9,9 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/signallist/create.go b/pkg/commands/ngwaf/workspace/signallist/create.go index 9657d0dba..b038117f9 100644 --- a/pkg/commands/ngwaf/workspace/signallist/create.go +++ b/pkg/commands/ngwaf/workspace/signallist/create.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/signallist/delete.go b/pkg/commands/ngwaf/workspace/signallist/delete.go index 7e4e52d85..5f562ce85 100644 --- a/pkg/commands/ngwaf/workspace/signallist/delete.go +++ b/pkg/commands/ngwaf/workspace/signallist/delete.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/signallist/get.go b/pkg/commands/ngwaf/workspace/signallist/get.go index 69de1fc3c..548a0be0e 100644 --- a/pkg/commands/ngwaf/workspace/signallist/get.go +++ b/pkg/commands/ngwaf/workspace/signallist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // GetCommand calls the Fastly API to get a workspace-level signal list. diff --git a/pkg/commands/ngwaf/workspace/signallist/list.go b/pkg/commands/ngwaf/workspace/signallist/list.go index ca8072851..8d9fba822 100644 --- a/pkg/commands/ngwaf/workspace/signallist/list.go +++ b/pkg/commands/ngwaf/workspace/signallist/list.go @@ -10,8 +10,8 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all signal lists for your workspace. diff --git a/pkg/commands/ngwaf/workspace/signallist/signallist_test.go b/pkg/commands/ngwaf/workspace/signallist/signallist_test.go index f3fc21636..dc21390e6 100644 --- a/pkg/commands/ngwaf/workspace/signallist/signallist_test.go +++ b/pkg/commands/ngwaf/workspace/signallist/signallist_test.go @@ -13,8 +13,8 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/signallist/update.go b/pkg/commands/ngwaf/workspace/signallist/update.go index c6fee370d..b43d6bda7 100644 --- a/pkg/commands/ngwaf/workspace/signallist/update.go +++ b/pkg/commands/ngwaf/workspace/signallist/update.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/stringlist/create.go b/pkg/commands/ngwaf/workspace/stringlist/create.go index 3c070da73..283a64d27 100644 --- a/pkg/commands/ngwaf/workspace/stringlist/create.go +++ b/pkg/commands/ngwaf/workspace/stringlist/create.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/stringlist/delete.go b/pkg/commands/ngwaf/workspace/stringlist/delete.go index fa08b94cc..d3ecb373e 100644 --- a/pkg/commands/ngwaf/workspace/stringlist/delete.go +++ b/pkg/commands/ngwaf/workspace/stringlist/delete.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/stringlist/get.go b/pkg/commands/ngwaf/workspace/stringlist/get.go index 45aa24edc..43f313b52 100644 --- a/pkg/commands/ngwaf/workspace/stringlist/get.go +++ b/pkg/commands/ngwaf/workspace/stringlist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // GetCommand calls the Fastly API to get a workspace-level string list. diff --git a/pkg/commands/ngwaf/workspace/stringlist/list.go b/pkg/commands/ngwaf/workspace/stringlist/list.go index cf3118c27..8d2cc10b6 100644 --- a/pkg/commands/ngwaf/workspace/stringlist/list.go +++ b/pkg/commands/ngwaf/workspace/stringlist/list.go @@ -10,8 +10,8 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all string lists for your workspace. diff --git a/pkg/commands/ngwaf/workspace/stringlist/stringlist_test.go b/pkg/commands/ngwaf/workspace/stringlist/stringlist_test.go index 010f53637..122f4bff1 100644 --- a/pkg/commands/ngwaf/workspace/stringlist/stringlist_test.go +++ b/pkg/commands/ngwaf/workspace/stringlist/stringlist_test.go @@ -13,8 +13,8 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/stringlist/update.go b/pkg/commands/ngwaf/workspace/stringlist/update.go index c27d65665..a75c1cd93 100644 --- a/pkg/commands/ngwaf/workspace/stringlist/update.go +++ b/pkg/commands/ngwaf/workspace/stringlist/update.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/threshold/create.go b/pkg/commands/ngwaf/workspace/threshold/create.go index b43056cdc..1c85fb4fb 100644 --- a/pkg/commands/ngwaf/workspace/threshold/create.go +++ b/pkg/commands/ngwaf/workspace/threshold/create.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/thresholds" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/threshold/delete.go b/pkg/commands/ngwaf/workspace/threshold/delete.go index 6bed4cf80..9e0f3ecc6 100644 --- a/pkg/commands/ngwaf/workspace/threshold/delete.go +++ b/pkg/commands/ngwaf/workspace/threshold/delete.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/thresholds" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/threshold/get.go b/pkg/commands/ngwaf/workspace/threshold/get.go index 5afd9f91d..5e9773cc5 100644 --- a/pkg/commands/ngwaf/workspace/threshold/get.go +++ b/pkg/commands/ngwaf/workspace/threshold/get.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/thresholds" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/threshold/list.go b/pkg/commands/ngwaf/workspace/threshold/list.go index 1c2c101d2..48be63535 100644 --- a/pkg/commands/ngwaf/workspace/threshold/list.go +++ b/pkg/commands/ngwaf/workspace/threshold/list.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/thresholds" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/threshold/threshold_test.go b/pkg/commands/ngwaf/workspace/threshold/threshold_test.go index af6062525..7f66fe91b 100644 --- a/pkg/commands/ngwaf/workspace/threshold/threshold_test.go +++ b/pkg/commands/ngwaf/workspace/threshold/threshold_test.go @@ -13,7 +13,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/threshold" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/thresholds" ) const ( diff --git a/pkg/commands/ngwaf/workspace/threshold/update.go b/pkg/commands/ngwaf/workspace/threshold/update.go index 8b03e74b0..7364bdc96 100644 --- a/pkg/commands/ngwaf/workspace/threshold/update.go +++ b/pkg/commands/ngwaf/workspace/threshold/update.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/thresholds" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/update.go b/pkg/commands/ngwaf/workspace/update.go index 7a3a642d7..361caf1ca 100644 --- a/pkg/commands/ngwaf/workspace/update.go +++ b/pkg/commands/ngwaf/workspace/update.go @@ -7,8 +7,8 @@ import ( "strconv" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/virtualpatch/list.go b/pkg/commands/ngwaf/workspace/virtualpatch/list.go index 78888bc37..f83f75e31 100644 --- a/pkg/commands/ngwaf/workspace/virtualpatch/list.go +++ b/pkg/commands/ngwaf/workspace/virtualpatch/list.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/virtualpatches" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/virtualpatches" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/virtualpatch/retrieve.go b/pkg/commands/ngwaf/workspace/virtualpatch/retrieve.go index 84776b1e8..ac39d2c16 100644 --- a/pkg/commands/ngwaf/workspace/virtualpatch/retrieve.go +++ b/pkg/commands/ngwaf/workspace/virtualpatch/retrieve.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/virtualpatches" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/virtualpatches" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/virtualpatch/update.go b/pkg/commands/ngwaf/workspace/virtualpatch/update.go index 05eeaeef7..47ded706b 100644 --- a/pkg/commands/ngwaf/workspace/virtualpatch/update.go +++ b/pkg/commands/ngwaf/workspace/virtualpatch/update.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/virtualpatches" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/virtualpatches" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/ngwaf/workspace/virtualpatch/virtualpatch_test.go b/pkg/commands/ngwaf/workspace/virtualpatch/virtualpatch_test.go index ef2384790..2b2b88794 100644 --- a/pkg/commands/ngwaf/workspace/virtualpatch/virtualpatch_test.go +++ b/pkg/commands/ngwaf/workspace/virtualpatch/virtualpatch_test.go @@ -13,7 +13,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace/virtualpatch" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/virtualpatches" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/virtualpatches" ) const ( diff --git a/pkg/commands/ngwaf/workspace/wildcardlist/create.go b/pkg/commands/ngwaf/workspace/wildcardlist/create.go index 59ea4b7cb..63543c0be 100644 --- a/pkg/commands/ngwaf/workspace/wildcardlist/create.go +++ b/pkg/commands/ngwaf/workspace/wildcardlist/create.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/wildcardlist/delete.go b/pkg/commands/ngwaf/workspace/wildcardlist/delete.go index 59dbbea19..6022a71ef 100644 --- a/pkg/commands/ngwaf/workspace/wildcardlist/delete.go +++ b/pkg/commands/ngwaf/workspace/wildcardlist/delete.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/wildcardlist/get.go b/pkg/commands/ngwaf/workspace/wildcardlist/get.go index a74f9879e..fd432e335 100644 --- a/pkg/commands/ngwaf/workspace/wildcardlist/get.go +++ b/pkg/commands/ngwaf/workspace/wildcardlist/get.go @@ -9,8 +9,8 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // GetCommand calls the Fastly API to get a workspace-level wildcard list. diff --git a/pkg/commands/ngwaf/workspace/wildcardlist/list.go b/pkg/commands/ngwaf/workspace/wildcardlist/list.go index 2b0e2a522..870aa6fef 100644 --- a/pkg/commands/ngwaf/workspace/wildcardlist/list.go +++ b/pkg/commands/ngwaf/workspace/wildcardlist/list.go @@ -10,8 +10,8 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) // ListCommand calls the Fastly API to list all wildcard lists for your API token. diff --git a/pkg/commands/ngwaf/workspace/wildcardlist/update.go b/pkg/commands/ngwaf/workspace/wildcardlist/update.go index a5bcc7e70..78b58a8a0 100644 --- a/pkg/commands/ngwaf/workspace/wildcardlist/update.go +++ b/pkg/commands/ngwaf/workspace/wildcardlist/update.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/ngwaf/ngwaflist" diff --git a/pkg/commands/ngwaf/workspace/wildcardlist/wildcardlist_test.go b/pkg/commands/ngwaf/workspace/wildcardlist/wildcardlist_test.go index 9933b2b6f..8939e580a 100644 --- a/pkg/commands/ngwaf/workspace/wildcardlist/wildcardlist_test.go +++ b/pkg/commands/ngwaf/workspace/wildcardlist/wildcardlist_test.go @@ -13,8 +13,8 @@ import ( sub2 "github.com/fastly/cli/pkg/commands/ngwaf/workspace/wildcardlist" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/workspace_test.go b/pkg/commands/ngwaf/workspace/workspace_test.go index ec96cbdc8..8fa2dc610 100644 --- a/pkg/commands/ngwaf/workspace/workspace_test.go +++ b/pkg/commands/ngwaf/workspace/workspace_test.go @@ -12,7 +12,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/ngwaf/workspace" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces" ) const ( diff --git a/pkg/commands/objectstorage/accesskeys/accesskeys_test.go b/pkg/commands/objectstorage/accesskeys/accesskeys_test.go index 30d93275d..1e02471ad 100644 --- a/pkg/commands/objectstorage/accesskeys/accesskeys_test.go +++ b/pkg/commands/objectstorage/accesskeys/accesskeys_test.go @@ -12,7 +12,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/objectstorage/accesskeys" fstfmt "github.com/fastly/cli/pkg/fmt" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v16/fastly/objectstorage/accesskeys" ) const ( diff --git a/pkg/commands/objectstorage/accesskeys/create.go b/pkg/commands/objectstorage/accesskeys/create.go index b98b675b2..1d2d42a08 100644 --- a/pkg/commands/objectstorage/accesskeys/create.go +++ b/pkg/commands/objectstorage/accesskeys/create.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v16/fastly/objectstorage/accesskeys" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/objectstorage/accesskeys/delete.go b/pkg/commands/objectstorage/accesskeys/delete.go index b7eeaefe1..63193e2ba 100644 --- a/pkg/commands/objectstorage/accesskeys/delete.go +++ b/pkg/commands/objectstorage/accesskeys/delete.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v16/fastly/objectstorage/accesskeys" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/objectstorage/accesskeys/get.go b/pkg/commands/objectstorage/accesskeys/get.go index cb2c041a8..68aad0dbf 100644 --- a/pkg/commands/objectstorage/accesskeys/get.go +++ b/pkg/commands/objectstorage/accesskeys/get.go @@ -5,9 +5,9 @@ import ( "errors" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v16/fastly/objectstorage/accesskeys" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/objectstorage/accesskeys/list.go b/pkg/commands/objectstorage/accesskeys/list.go index ca48de004..a31c0b47b 100644 --- a/pkg/commands/objectstorage/accesskeys/list.go +++ b/pkg/commands/objectstorage/accesskeys/list.go @@ -9,9 +9,9 @@ import ( fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" - "github.com/fastly/go-fastly/v15/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v16/fastly/objectstorage/accesskeys" ) // ListCommand calls the Fastly API to list all access keys. diff --git a/pkg/commands/pop/pop_test.go b/pkg/commands/pop/pop_test.go index d6adbe648..61a7413f1 100644 --- a/pkg/commands/pop/pop_test.go +++ b/pkg/commands/pop/pop_test.go @@ -6,7 +6,7 @@ import ( "io" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/pop/root.go b/pkg/commands/pop/root.go index 28b50960a..e84d0634d 100644 --- a/pkg/commands/pop/root.go +++ b/pkg/commands/pop/root.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/products/root.go b/pkg/commands/products/root.go index c4a110e9e..490a35a00 100644 --- a/pkg/commands/products/root.go +++ b/pkg/commands/products/root.go @@ -6,21 +6,21 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly/products/apidiscovery" - "github.com/fastly/go-fastly/v15/fastly/products/botmanagement" - "github.com/fastly/go-fastly/v15/fastly/products/brotlicompression" - "github.com/fastly/go-fastly/v15/fastly/products/domaininspector" - "github.com/fastly/go-fastly/v15/fastly/products/fanout" - "github.com/fastly/go-fastly/v15/fastly/products/imageoptimizer" - "github.com/fastly/go-fastly/v15/fastly/products/logexplorerinsights" - "github.com/fastly/go-fastly/v15/fastly/products/origininspector" - "github.com/fastly/go-fastly/v15/fastly/products/websockets" + "github.com/fastly/go-fastly/v16/fastly/products/apidiscovery" + "github.com/fastly/go-fastly/v16/fastly/products/botmanagement" + "github.com/fastly/go-fastly/v16/fastly/products/brotlicompression" + "github.com/fastly/go-fastly/v16/fastly/products/domaininspector" + "github.com/fastly/go-fastly/v16/fastly/products/fanout" + "github.com/fastly/go-fastly/v16/fastly/products/imageoptimizer" + "github.com/fastly/go-fastly/v16/fastly/products/logexplorerinsights" + "github.com/fastly/go-fastly/v16/fastly/products/origininspector" + "github.com/fastly/go-fastly/v16/fastly/products/websockets" ) // RootCommand is the parent command for all subcommands in this package. diff --git a/pkg/commands/profile/profile_test.go b/pkg/commands/profile/profile_test.go index ca604f2fd..559dba4ba 100644 --- a/pkg/commands/profile/profile_test.go +++ b/pkg/commands/profile/profile_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/profile" "github.com/fastly/cli/pkg/config" diff --git a/pkg/commands/secretstore/create.go b/pkg/commands/secretstore/create.go index c6d252324..b9ca476d4 100644 --- a/pkg/commands/secretstore/create.go +++ b/pkg/commands/secretstore/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/secretstore/delete.go b/pkg/commands/secretstore/delete.go index b326a20dd..df4fbc46b 100644 --- a/pkg/commands/secretstore/delete.go +++ b/pkg/commands/secretstore/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/secretstore/describe.go b/pkg/commands/secretstore/describe.go index affc68ccb..69478b234 100644 --- a/pkg/commands/secretstore/describe.go +++ b/pkg/commands/secretstore/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/secretstore/helper_test.go b/pkg/commands/secretstore/helper_test.go index 5aeac3306..412c6b91d 100644 --- a/pkg/commands/secretstore/helper_test.go +++ b/pkg/commands/secretstore/helper_test.go @@ -3,7 +3,7 @@ package secretstore_test import ( "bytes" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/text" ) diff --git a/pkg/commands/secretstore/list.go b/pkg/commands/secretstore/list.go index ba55ab45f..770883168 100644 --- a/pkg/commands/secretstore/list.go +++ b/pkg/commands/secretstore/list.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/secretstore/secretstore_test.go b/pkg/commands/secretstore/secretstore_test.go index 8a13202ce..906cf848b 100644 --- a/pkg/commands/secretstore/secretstore_test.go +++ b/pkg/commands/secretstore/secretstore_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" "github.com/fastly/cli/pkg/commands/secretstore" diff --git a/pkg/commands/secretstoreentry/create.go b/pkg/commands/secretstoreentry/create.go index c996158d5..2e48f3459 100644 --- a/pkg/commands/secretstoreentry/create.go +++ b/pkg/commands/secretstoreentry/create.go @@ -10,7 +10,7 @@ import ( "net/http" "os" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/secretstoreentry/delete.go b/pkg/commands/secretstoreentry/delete.go index 4a827f7bb..6766aa86f 100644 --- a/pkg/commands/secretstoreentry/delete.go +++ b/pkg/commands/secretstoreentry/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/secretstoreentry/describe.go b/pkg/commands/secretstoreentry/describe.go index 981bc3364..8c27b3263 100644 --- a/pkg/commands/secretstoreentry/describe.go +++ b/pkg/commands/secretstoreentry/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/secretstoreentry/helper_test.go b/pkg/commands/secretstoreentry/helper_test.go index 5fa5fa747..2d05322bf 100644 --- a/pkg/commands/secretstoreentry/helper_test.go +++ b/pkg/commands/secretstoreentry/helper_test.go @@ -4,7 +4,7 @@ import ( "bytes" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) func fmtSecret(s *fastly.Secret) string { diff --git a/pkg/commands/secretstoreentry/list.go b/pkg/commands/secretstoreentry/list.go index ef4eb8cba..30690a64b 100644 --- a/pkg/commands/secretstoreentry/list.go +++ b/pkg/commands/secretstoreentry/list.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/secretstoreentry/secretstoreentry_test.go b/pkg/commands/secretstoreentry/secretstoreentry_test.go index 98ca81314..1dd64b7b3 100644 --- a/pkg/commands/secretstoreentry/secretstoreentry_test.go +++ b/pkg/commands/secretstoreentry/secretstoreentry_test.go @@ -18,7 +18,7 @@ import ( "golang.org/x/crypto/nacl/box" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" "github.com/fastly/cli/pkg/commands/secretstoreentry" diff --git a/pkg/commands/service/acl/acl_test.go b/pkg/commands/service/acl/acl_test.go index 5629c81c7..c00ca400b 100644 --- a/pkg/commands/service/acl/acl_test.go +++ b/pkg/commands/service/acl/acl_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/acl" diff --git a/pkg/commands/service/acl/create.go b/pkg/commands/service/acl/create.go index 4f1aa3051..4598a7ce8 100644 --- a/pkg/commands/service/acl/create.go +++ b/pkg/commands/service/acl/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/acl/delete.go b/pkg/commands/service/acl/delete.go index 6d83c53fb..4052b7362 100644 --- a/pkg/commands/service/acl/delete.go +++ b/pkg/commands/service/acl/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/acl/describe.go b/pkg/commands/service/acl/describe.go index e8dfecf71..d8b1cb3e0 100644 --- a/pkg/commands/service/acl/describe.go +++ b/pkg/commands/service/acl/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/acl/list.go b/pkg/commands/service/acl/list.go index b0fb7658f..818274e34 100644 --- a/pkg/commands/service/acl/list.go +++ b/pkg/commands/service/acl/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/acl/update.go b/pkg/commands/service/acl/update.go index 3738cc291..c20534cf5 100644 --- a/pkg/commands/service/acl/update.go +++ b/pkg/commands/service/acl/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/aclentry/aclentry_test.go b/pkg/commands/service/aclentry/aclentry_test.go index 8189119b1..f69d57278 100644 --- a/pkg/commands/service/aclentry/aclentry_test.go +++ b/pkg/commands/service/aclentry/aclentry_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/aclentry" diff --git a/pkg/commands/service/aclentry/create.go b/pkg/commands/service/aclentry/create.go index d0e6b2a0e..4592e22f0 100644 --- a/pkg/commands/service/aclentry/create.go +++ b/pkg/commands/service/aclentry/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/aclentry/delete.go b/pkg/commands/service/aclentry/delete.go index 1287a8346..8e08fc8af 100644 --- a/pkg/commands/service/aclentry/delete.go +++ b/pkg/commands/service/aclentry/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/aclentry/describe.go b/pkg/commands/service/aclentry/describe.go index d3e57f8ae..ca88037ea 100644 --- a/pkg/commands/service/aclentry/describe.go +++ b/pkg/commands/service/aclentry/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/aclentry/list.go b/pkg/commands/service/aclentry/list.go index b337cdd15..7a3f3d4d6 100644 --- a/pkg/commands/service/aclentry/list.go +++ b/pkg/commands/service/aclentry/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/aclentry/update.go b/pkg/commands/service/aclentry/update.go index 3e9f0dbe8..53b1727b6 100644 --- a/pkg/commands/service/aclentry/update.go +++ b/pkg/commands/service/aclentry/update.go @@ -6,7 +6,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/alert/alert_test.go b/pkg/commands/service/alert/alert_test.go index 23282d840..26797a951 100644 --- a/pkg/commands/service/alert/alert_test.go +++ b/pkg/commands/service/alert/alert_test.go @@ -10,7 +10,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/service/alert" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) func TestAlertsCreate(t *testing.T) { diff --git a/pkg/commands/service/alert/common.go b/pkg/commands/service/alert/common.go index e4092eaf6..ee2f758c9 100644 --- a/pkg/commands/service/alert/common.go +++ b/pkg/commands/service/alert/common.go @@ -5,7 +5,7 @@ import ( "io" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // evaluationType is a list of supported evaluation types. diff --git a/pkg/commands/service/alert/create.go b/pkg/commands/service/alert/create.go index 9529d7d17..33d7c70c8 100644 --- a/pkg/commands/service/alert/create.go +++ b/pkg/commands/service/alert/create.go @@ -7,7 +7,7 @@ import ( "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/global" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // NewCreateCommand returns a usable command registered under the parent. diff --git a/pkg/commands/service/alert/delete.go b/pkg/commands/service/alert/delete.go index 9df2fecdc..da5323f07 100644 --- a/pkg/commands/service/alert/delete.go +++ b/pkg/commands/service/alert/delete.go @@ -5,7 +5,7 @@ import ( "io" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/alert/describe.go b/pkg/commands/service/alert/describe.go index beab620c0..775990145 100644 --- a/pkg/commands/service/alert/describe.go +++ b/pkg/commands/service/alert/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/alert/list.go b/pkg/commands/service/alert/list.go index 01c866917..b4f7b655d 100644 --- a/pkg/commands/service/alert/list.go +++ b/pkg/commands/service/alert/list.go @@ -5,7 +5,7 @@ import ( "io" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/alert/list_history.go b/pkg/commands/service/alert/list_history.go index 58160e6c1..2defa14e1 100644 --- a/pkg/commands/service/alert/list_history.go +++ b/pkg/commands/service/alert/list_history.go @@ -5,7 +5,7 @@ import ( "io" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/alert/update.go b/pkg/commands/service/alert/update.go index 52d20b7ed..25f321ccb 100644 --- a/pkg/commands/service/alert/update.go +++ b/pkg/commands/service/alert/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/auth/create.go b/pkg/commands/service/auth/create.go index afe74aa1c..95a6589cd 100644 --- a/pkg/commands/service/auth/create.go +++ b/pkg/commands/service/auth/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/auth/delete.go b/pkg/commands/service/auth/delete.go index 5daf360d2..d165dd5ce 100644 --- a/pkg/commands/service/auth/delete.go +++ b/pkg/commands/service/auth/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/auth/describe.go b/pkg/commands/service/auth/describe.go index 5046bda6d..d1d603039 100644 --- a/pkg/commands/service/auth/describe.go +++ b/pkg/commands/service/auth/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/auth/list.go b/pkg/commands/service/auth/list.go index 23b91198d..58c77a9ba 100644 --- a/pkg/commands/service/auth/list.go +++ b/pkg/commands/service/auth/list.go @@ -10,7 +10,7 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/text" "github.com/fastly/cli/pkg/time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // ListCommand calls the Fastly API to list service authorizations. diff --git a/pkg/commands/service/auth/service_test.go b/pkg/commands/service/auth/service_test.go index 25979e509..4089ac6e8 100644 --- a/pkg/commands/service/auth/service_test.go +++ b/pkg/commands/service/auth/service_test.go @@ -5,7 +5,7 @@ import ( "errors" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/auth" diff --git a/pkg/commands/service/auth/update.go b/pkg/commands/service/auth/update.go index 9ec41eb30..733f375c4 100644 --- a/pkg/commands/service/auth/update.go +++ b/pkg/commands/service/auth/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/backend/backend_test.go b/pkg/commands/service/backend/backend_test.go index 9eb7e33d9..7da3112e6 100644 --- a/pkg/commands/service/backend/backend_test.go +++ b/pkg/commands/service/backend/backend_test.go @@ -9,7 +9,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/backend" diff --git a/pkg/commands/service/backend/create.go b/pkg/commands/service/backend/create.go index 0a6c021bb..7e58a7f88 100644 --- a/pkg/commands/service/backend/create.go +++ b/pkg/commands/service/backend/create.go @@ -5,7 +5,7 @@ import ( "io" "net" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/backend/delete.go b/pkg/commands/service/backend/delete.go index 8396874e8..1090c27d9 100644 --- a/pkg/commands/service/backend/delete.go +++ b/pkg/commands/service/backend/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/backend/describe.go b/pkg/commands/service/backend/describe.go index 548479a41..3aace3e2f 100644 --- a/pkg/commands/service/backend/describe.go +++ b/pkg/commands/service/backend/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/backend/list.go b/pkg/commands/service/backend/list.go index 384052859..ca8f6b155 100644 --- a/pkg/commands/service/backend/list.go +++ b/pkg/commands/service/backend/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/backend/update.go b/pkg/commands/service/backend/update.go index 4c908a7a7..0a82fab94 100644 --- a/pkg/commands/service/backend/update.go +++ b/pkg/commands/service/backend/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/create.go b/pkg/commands/service/create.go index 87e579c1f..8302e426d 100644 --- a/pkg/commands/service/create.go +++ b/pkg/commands/service/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/delete.go b/pkg/commands/service/delete.go index d8fd106d7..2772c030a 100644 --- a/pkg/commands/service/delete.go +++ b/pkg/commands/service/delete.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/describe.go b/pkg/commands/service/describe.go index a4d09bf0c..566afcba4 100644 --- a/pkg/commands/service/describe.go +++ b/pkg/commands/service/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/dictionary/create.go b/pkg/commands/service/dictionary/create.go index f266d7f92..851e8cc25 100644 --- a/pkg/commands/service/dictionary/create.go +++ b/pkg/commands/service/dictionary/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/dictionary/delete.go b/pkg/commands/service/dictionary/delete.go index a9b0ecebe..642b31a75 100644 --- a/pkg/commands/service/dictionary/delete.go +++ b/pkg/commands/service/dictionary/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/dictionary/describe.go b/pkg/commands/service/dictionary/describe.go index c4705cff7..321d1f396 100644 --- a/pkg/commands/service/dictionary/describe.go +++ b/pkg/commands/service/dictionary/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/dictionary/dictionary_test.go b/pkg/commands/service/dictionary/dictionary_test.go index 16598de13..a20c6d612 100644 --- a/pkg/commands/service/dictionary/dictionary_test.go +++ b/pkg/commands/service/dictionary/dictionary_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/dictionary" diff --git a/pkg/commands/service/dictionary/list.go b/pkg/commands/service/dictionary/list.go index d9ad05e39..23d79f9e2 100644 --- a/pkg/commands/service/dictionary/list.go +++ b/pkg/commands/service/dictionary/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/dictionary/update.go b/pkg/commands/service/dictionary/update.go index b80d31fe7..26364c30f 100644 --- a/pkg/commands/service/dictionary/update.go +++ b/pkg/commands/service/dictionary/update.go @@ -6,7 +6,7 @@ import ( "io" "strconv" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/dictionaryentry/create.go b/pkg/commands/service/dictionaryentry/create.go index 75b1df328..cfa3a9da2 100644 --- a/pkg/commands/service/dictionaryentry/create.go +++ b/pkg/commands/service/dictionaryentry/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/dictionaryentry/delete.go b/pkg/commands/service/dictionaryentry/delete.go index 918d373fa..79a19afe4 100644 --- a/pkg/commands/service/dictionaryentry/delete.go +++ b/pkg/commands/service/dictionaryentry/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/dictionaryentry/describe.go b/pkg/commands/service/dictionaryentry/describe.go index be99c00d2..4b36f7988 100644 --- a/pkg/commands/service/dictionaryentry/describe.go +++ b/pkg/commands/service/dictionaryentry/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/dictionaryentry/dictionaryitem_test.go b/pkg/commands/service/dictionaryentry/dictionaryitem_test.go index cbb17bf53..53409a145 100644 --- a/pkg/commands/service/dictionaryentry/dictionaryitem_test.go +++ b/pkg/commands/service/dictionaryentry/dictionaryitem_test.go @@ -13,7 +13,7 @@ import ( sub "github.com/fastly/cli/pkg/commands/service/dictionaryentry" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) func TestDictionaryItemDescribe(t *testing.T) { diff --git a/pkg/commands/service/dictionaryentry/list.go b/pkg/commands/service/dictionaryentry/list.go index d9753c24f..d66b636b0 100644 --- a/pkg/commands/service/dictionaryentry/list.go +++ b/pkg/commands/service/dictionaryentry/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/dictionaryentry/update.go b/pkg/commands/service/dictionaryentry/update.go index a6bd8699e..28cc4bb7b 100644 --- a/pkg/commands/service/dictionaryentry/update.go +++ b/pkg/commands/service/dictionaryentry/update.go @@ -7,7 +7,7 @@ import ( "io" "os" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/domain/create.go b/pkg/commands/service/domain/create.go index 2b4c0e22e..80700ab08 100644 --- a/pkg/commands/service/domain/create.go +++ b/pkg/commands/service/domain/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/domain/delete.go b/pkg/commands/service/domain/delete.go index abd921f47..e3528052c 100644 --- a/pkg/commands/service/domain/delete.go +++ b/pkg/commands/service/domain/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/domain/describe.go b/pkg/commands/service/domain/describe.go index d9c826855..00100a027 100644 --- a/pkg/commands/service/domain/describe.go +++ b/pkg/commands/service/domain/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/domain/domain_test.go b/pkg/commands/service/domain/domain_test.go index 87debad0b..c538bbf48 100644 --- a/pkg/commands/service/domain/domain_test.go +++ b/pkg/commands/service/domain/domain_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/domain" diff --git a/pkg/commands/service/domain/list.go b/pkg/commands/service/domain/list.go index 3a49971d7..d9fc212b9 100644 --- a/pkg/commands/service/domain/list.go +++ b/pkg/commands/service/domain/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/domain/update.go b/pkg/commands/service/domain/update.go index dc60212a9..afb50c8e5 100644 --- a/pkg/commands/service/domain/update.go +++ b/pkg/commands/service/domain/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/domain/validate.go b/pkg/commands/service/domain/validate.go index 6af9f54e0..427fd0137 100644 --- a/pkg/commands/service/domain/validate.go +++ b/pkg/commands/service/domain/validate.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/healthcheck/create.go b/pkg/commands/service/healthcheck/create.go index 727c18e11..8ee4e8f07 100644 --- a/pkg/commands/service/healthcheck/create.go +++ b/pkg/commands/service/healthcheck/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/healthcheck/delete.go b/pkg/commands/service/healthcheck/delete.go index 4c69ab649..3d1e4015e 100644 --- a/pkg/commands/service/healthcheck/delete.go +++ b/pkg/commands/service/healthcheck/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/healthcheck/describe.go b/pkg/commands/service/healthcheck/describe.go index 3f8ecfeff..5ef66417a 100644 --- a/pkg/commands/service/healthcheck/describe.go +++ b/pkg/commands/service/healthcheck/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/healthcheck/healthcheck_test.go b/pkg/commands/service/healthcheck/healthcheck_test.go index 91599fecb..b0778c700 100644 --- a/pkg/commands/service/healthcheck/healthcheck_test.go +++ b/pkg/commands/service/healthcheck/healthcheck_test.go @@ -9,7 +9,7 @@ import ( root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/healthcheck" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/healthcheck/list.go b/pkg/commands/service/healthcheck/list.go index 6462a249f..823ce57a4 100644 --- a/pkg/commands/service/healthcheck/list.go +++ b/pkg/commands/service/healthcheck/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/healthcheck/update.go b/pkg/commands/service/healthcheck/update.go index 39f9052ea..3b30dad61 100644 --- a/pkg/commands/service/healthcheck/update.go +++ b/pkg/commands/service/healthcheck/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/imageoptimizerdefaults/get.go b/pkg/commands/service/imageoptimizerdefaults/get.go index d57db9fae..e65dbfe27 100644 --- a/pkg/commands/service/imageoptimizerdefaults/get.go +++ b/pkg/commands/service/imageoptimizerdefaults/get.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/imageoptimizerdefaults/imageoptimizer_test.go b/pkg/commands/service/imageoptimizerdefaults/imageoptimizer_test.go index f5dd92e07..784ddc42b 100644 --- a/pkg/commands/service/imageoptimizerdefaults/imageoptimizer_test.go +++ b/pkg/commands/service/imageoptimizerdefaults/imageoptimizer_test.go @@ -5,7 +5,7 @@ import ( "errors" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/imageoptimizerdefaults" diff --git a/pkg/commands/service/imageoptimizerdefaults/update.go b/pkg/commands/service/imageoptimizerdefaults/update.go index 138900c32..b015f94f4 100644 --- a/pkg/commands/service/imageoptimizerdefaults/update.go +++ b/pkg/commands/service/imageoptimizerdefaults/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/list.go b/pkg/commands/service/list.go index 113a0347c..b3a97cc68 100644 --- a/pkg/commands/service/list.go +++ b/pkg/commands/service/list.go @@ -6,7 +6,7 @@ import ( "io" "strconv" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/azureblob/azureblob_integration_test.go b/pkg/commands/service/logging/azureblob/azureblob_integration_test.go index 145f827d5..0df08ef62 100644 --- a/pkg/commands/service/logging/azureblob/azureblob_integration_test.go +++ b/pkg/commands/service/logging/azureblob/azureblob_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/azureblob/azureblob_test.go b/pkg/commands/service/logging/azureblob/azureblob_test.go index d8a1aab3f..02766db6b 100644 --- a/pkg/commands/service/logging/azureblob/azureblob_test.go +++ b/pkg/commands/service/logging/azureblob/azureblob_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/azureblob" diff --git a/pkg/commands/service/logging/azureblob/create.go b/pkg/commands/service/logging/azureblob/create.go index b8243ba9a..465833faa 100644 --- a/pkg/commands/service/logging/azureblob/create.go +++ b/pkg/commands/service/logging/azureblob/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/azureblob/delete.go b/pkg/commands/service/logging/azureblob/delete.go index d9d332151..455a258a8 100644 --- a/pkg/commands/service/logging/azureblob/delete.go +++ b/pkg/commands/service/logging/azureblob/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/azureblob/describe.go b/pkg/commands/service/logging/azureblob/describe.go index 5e5de6349..d0303ca22 100644 --- a/pkg/commands/service/logging/azureblob/describe.go +++ b/pkg/commands/service/logging/azureblob/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/azureblob/list.go b/pkg/commands/service/logging/azureblob/list.go index f845ef176..968007158 100644 --- a/pkg/commands/service/logging/azureblob/list.go +++ b/pkg/commands/service/logging/azureblob/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/azureblob/update.go b/pkg/commands/service/logging/azureblob/update.go index 15c3bd5eb..d27f9548b 100644 --- a/pkg/commands/service/logging/azureblob/update.go +++ b/pkg/commands/service/logging/azureblob/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/bigquery/bigquery_integration_test.go b/pkg/commands/service/logging/bigquery/bigquery_integration_test.go index 1cdca4d67..1f706464b 100644 --- a/pkg/commands/service/logging/bigquery/bigquery_integration_test.go +++ b/pkg/commands/service/logging/bigquery/bigquery_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/bigquery/bigquery_test.go b/pkg/commands/service/logging/bigquery/bigquery_test.go index 8bfca78f3..4ba23ffa2 100644 --- a/pkg/commands/service/logging/bigquery/bigquery_test.go +++ b/pkg/commands/service/logging/bigquery/bigquery_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/bigquery" diff --git a/pkg/commands/service/logging/bigquery/create.go b/pkg/commands/service/logging/bigquery/create.go index bffb04350..fe02294bd 100644 --- a/pkg/commands/service/logging/bigquery/create.go +++ b/pkg/commands/service/logging/bigquery/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/bigquery/delete.go b/pkg/commands/service/logging/bigquery/delete.go index ad7e31730..54df8179a 100644 --- a/pkg/commands/service/logging/bigquery/delete.go +++ b/pkg/commands/service/logging/bigquery/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/bigquery/describe.go b/pkg/commands/service/logging/bigquery/describe.go index 773ae4c0f..3a65b207a 100644 --- a/pkg/commands/service/logging/bigquery/describe.go +++ b/pkg/commands/service/logging/bigquery/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/bigquery/list.go b/pkg/commands/service/logging/bigquery/list.go index cd19829ac..f0ad59ee2 100644 --- a/pkg/commands/service/logging/bigquery/list.go +++ b/pkg/commands/service/logging/bigquery/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/bigquery/update.go b/pkg/commands/service/logging/bigquery/update.go index 617690a57..1756b43c2 100644 --- a/pkg/commands/service/logging/bigquery/update.go +++ b/pkg/commands/service/logging/bigquery/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/cloudfiles/cloudfiles_integration_test.go b/pkg/commands/service/logging/cloudfiles/cloudfiles_integration_test.go index 50ca540b7..26401d8dc 100644 --- a/pkg/commands/service/logging/cloudfiles/cloudfiles_integration_test.go +++ b/pkg/commands/service/logging/cloudfiles/cloudfiles_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/cloudfiles/cloudfiles_test.go b/pkg/commands/service/logging/cloudfiles/cloudfiles_test.go index 83e32f70e..962aa8e6d 100644 --- a/pkg/commands/service/logging/cloudfiles/cloudfiles_test.go +++ b/pkg/commands/service/logging/cloudfiles/cloudfiles_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/cloudfiles" diff --git a/pkg/commands/service/logging/cloudfiles/create.go b/pkg/commands/service/logging/cloudfiles/create.go index 36158bd58..13de1ff64 100644 --- a/pkg/commands/service/logging/cloudfiles/create.go +++ b/pkg/commands/service/logging/cloudfiles/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/cloudfiles/delete.go b/pkg/commands/service/logging/cloudfiles/delete.go index 894007fa6..cdf5452c6 100644 --- a/pkg/commands/service/logging/cloudfiles/delete.go +++ b/pkg/commands/service/logging/cloudfiles/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/cloudfiles/describe.go b/pkg/commands/service/logging/cloudfiles/describe.go index 53c1cf80e..ed992e322 100644 --- a/pkg/commands/service/logging/cloudfiles/describe.go +++ b/pkg/commands/service/logging/cloudfiles/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/cloudfiles/list.go b/pkg/commands/service/logging/cloudfiles/list.go index f49996b40..fb45ef8e4 100644 --- a/pkg/commands/service/logging/cloudfiles/list.go +++ b/pkg/commands/service/logging/cloudfiles/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/cloudfiles/update.go b/pkg/commands/service/logging/cloudfiles/update.go index 8d1d54d40..f441ff61c 100644 --- a/pkg/commands/service/logging/cloudfiles/update.go +++ b/pkg/commands/service/logging/cloudfiles/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/datadog/create.go b/pkg/commands/service/logging/datadog/create.go index 018184873..c9433f5a2 100644 --- a/pkg/commands/service/logging/datadog/create.go +++ b/pkg/commands/service/logging/datadog/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/datadog/datadog_integration_test.go b/pkg/commands/service/logging/datadog/datadog_integration_test.go index 4786aeefc..e618875b0 100644 --- a/pkg/commands/service/logging/datadog/datadog_integration_test.go +++ b/pkg/commands/service/logging/datadog/datadog_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" parent "github.com/fastly/cli/pkg/commands/service/logging" diff --git a/pkg/commands/service/logging/datadog/datadog_test.go b/pkg/commands/service/logging/datadog/datadog_test.go index 3e091e1c0..6f4aaa4ef 100644 --- a/pkg/commands/service/logging/datadog/datadog_test.go +++ b/pkg/commands/service/logging/datadog/datadog_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/datadog" diff --git a/pkg/commands/service/logging/datadog/delete.go b/pkg/commands/service/logging/datadog/delete.go index 2f7f25e7d..99841a34b 100644 --- a/pkg/commands/service/logging/datadog/delete.go +++ b/pkg/commands/service/logging/datadog/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/datadog/describe.go b/pkg/commands/service/logging/datadog/describe.go index fa0916e62..450644bea 100644 --- a/pkg/commands/service/logging/datadog/describe.go +++ b/pkg/commands/service/logging/datadog/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/datadog/list.go b/pkg/commands/service/logging/datadog/list.go index 16d7ff3c9..d951f9047 100644 --- a/pkg/commands/service/logging/datadog/list.go +++ b/pkg/commands/service/logging/datadog/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/datadog/update.go b/pkg/commands/service/logging/datadog/update.go index 334464c19..0030aca80 100644 --- a/pkg/commands/service/logging/datadog/update.go +++ b/pkg/commands/service/logging/datadog/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/debug/debug_test.go b/pkg/commands/service/logging/debug/debug_test.go index 30cc7cf40..e741e0210 100644 --- a/pkg/commands/service/logging/debug/debug_test.go +++ b/pkg/commands/service/logging/debug/debug_test.go @@ -6,7 +6,7 @@ import ( "github.com/google/go-cmp/cmp" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // TestParseLoggingError validates we're correctly decoding individual logging error JSON. diff --git a/pkg/commands/service/logging/debug/root.go b/pkg/commands/service/logging/debug/root.go index 09b28bb56..0856e91fb 100644 --- a/pkg/commands/service/logging/debug/root.go +++ b/pkg/commands/service/logging/debug/root.go @@ -12,7 +12,7 @@ import ( "syscall" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/logging/digitalocean/create.go b/pkg/commands/service/logging/digitalocean/create.go index a3e857141..84a51f3c4 100644 --- a/pkg/commands/service/logging/digitalocean/create.go +++ b/pkg/commands/service/logging/digitalocean/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/digitalocean/delete.go b/pkg/commands/service/logging/digitalocean/delete.go index 9a3a76160..50eadb88d 100644 --- a/pkg/commands/service/logging/digitalocean/delete.go +++ b/pkg/commands/service/logging/digitalocean/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/digitalocean/describe.go b/pkg/commands/service/logging/digitalocean/describe.go index e74ca9d39..aaa33093b 100644 --- a/pkg/commands/service/logging/digitalocean/describe.go +++ b/pkg/commands/service/logging/digitalocean/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/digitalocean/digitalocean_integration_test.go b/pkg/commands/service/logging/digitalocean/digitalocean_integration_test.go index c05f1a0db..cb960b93f 100644 --- a/pkg/commands/service/logging/digitalocean/digitalocean_integration_test.go +++ b/pkg/commands/service/logging/digitalocean/digitalocean_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/digitalocean/digitalocean_test.go b/pkg/commands/service/logging/digitalocean/digitalocean_test.go index bb5bbef1c..c52121c4a 100644 --- a/pkg/commands/service/logging/digitalocean/digitalocean_test.go +++ b/pkg/commands/service/logging/digitalocean/digitalocean_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/digitalocean" diff --git a/pkg/commands/service/logging/digitalocean/list.go b/pkg/commands/service/logging/digitalocean/list.go index 23a8b9341..37ebebee3 100644 --- a/pkg/commands/service/logging/digitalocean/list.go +++ b/pkg/commands/service/logging/digitalocean/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/digitalocean/update.go b/pkg/commands/service/logging/digitalocean/update.go index f0be58fb6..7b83d3f2b 100644 --- a/pkg/commands/service/logging/digitalocean/update.go +++ b/pkg/commands/service/logging/digitalocean/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/elasticsearch/create.go b/pkg/commands/service/logging/elasticsearch/create.go index 8c97dfb06..af40dbbd9 100644 --- a/pkg/commands/service/logging/elasticsearch/create.go +++ b/pkg/commands/service/logging/elasticsearch/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/elasticsearch/delete.go b/pkg/commands/service/logging/elasticsearch/delete.go index 7587c559c..c75580bfc 100644 --- a/pkg/commands/service/logging/elasticsearch/delete.go +++ b/pkg/commands/service/logging/elasticsearch/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/elasticsearch/describe.go b/pkg/commands/service/logging/elasticsearch/describe.go index b9d5da282..5fe4507de 100644 --- a/pkg/commands/service/logging/elasticsearch/describe.go +++ b/pkg/commands/service/logging/elasticsearch/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/elasticsearch/elasticsearch_integration_test.go b/pkg/commands/service/logging/elasticsearch/elasticsearch_integration_test.go index f0cfed26f..e2a51a310 100644 --- a/pkg/commands/service/logging/elasticsearch/elasticsearch_integration_test.go +++ b/pkg/commands/service/logging/elasticsearch/elasticsearch_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/elasticsearch/elasticsearch_test.go b/pkg/commands/service/logging/elasticsearch/elasticsearch_test.go index ce3d8b8ab..fabe765c7 100644 --- a/pkg/commands/service/logging/elasticsearch/elasticsearch_test.go +++ b/pkg/commands/service/logging/elasticsearch/elasticsearch_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/elasticsearch" diff --git a/pkg/commands/service/logging/elasticsearch/list.go b/pkg/commands/service/logging/elasticsearch/list.go index 7845f1b42..0ac1b13dc 100644 --- a/pkg/commands/service/logging/elasticsearch/list.go +++ b/pkg/commands/service/logging/elasticsearch/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/elasticsearch/update.go b/pkg/commands/service/logging/elasticsearch/update.go index 277f4a11a..e067566bc 100644 --- a/pkg/commands/service/logging/elasticsearch/update.go +++ b/pkg/commands/service/logging/elasticsearch/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/ftp/create.go b/pkg/commands/service/logging/ftp/create.go index 1d6e74c07..b5ec637c9 100644 --- a/pkg/commands/service/logging/ftp/create.go +++ b/pkg/commands/service/logging/ftp/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/ftp/delete.go b/pkg/commands/service/logging/ftp/delete.go index 0f9079744..285ce6c31 100644 --- a/pkg/commands/service/logging/ftp/delete.go +++ b/pkg/commands/service/logging/ftp/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/ftp/describe.go b/pkg/commands/service/logging/ftp/describe.go index 086e1da2a..9178da964 100644 --- a/pkg/commands/service/logging/ftp/describe.go +++ b/pkg/commands/service/logging/ftp/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/ftp/ftp_integration_test.go b/pkg/commands/service/logging/ftp/ftp_integration_test.go index 5771f0d54..1a0544018 100644 --- a/pkg/commands/service/logging/ftp/ftp_integration_test.go +++ b/pkg/commands/service/logging/ftp/ftp_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/ftp/ftp_test.go b/pkg/commands/service/logging/ftp/ftp_test.go index 99b7a8700..68dcfe8d4 100644 --- a/pkg/commands/service/logging/ftp/ftp_test.go +++ b/pkg/commands/service/logging/ftp/ftp_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/ftp" diff --git a/pkg/commands/service/logging/ftp/list.go b/pkg/commands/service/logging/ftp/list.go index 5cb2323cf..86c4b1357 100644 --- a/pkg/commands/service/logging/ftp/list.go +++ b/pkg/commands/service/logging/ftp/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/ftp/update.go b/pkg/commands/service/logging/ftp/update.go index f89ebc571..433486cbc 100644 --- a/pkg/commands/service/logging/ftp/update.go +++ b/pkg/commands/service/logging/ftp/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/gcs/create.go b/pkg/commands/service/logging/gcs/create.go index f6dab615f..4c039e920 100644 --- a/pkg/commands/service/logging/gcs/create.go +++ b/pkg/commands/service/logging/gcs/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/gcs/delete.go b/pkg/commands/service/logging/gcs/delete.go index f9ff38bd8..94b4252d7 100644 --- a/pkg/commands/service/logging/gcs/delete.go +++ b/pkg/commands/service/logging/gcs/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/gcs/describe.go b/pkg/commands/service/logging/gcs/describe.go index 725c1b981..9c25b7c1e 100644 --- a/pkg/commands/service/logging/gcs/describe.go +++ b/pkg/commands/service/logging/gcs/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/gcs/gcs_integration_test.go b/pkg/commands/service/logging/gcs/gcs_integration_test.go index 63766f895..a30b6c4e5 100644 --- a/pkg/commands/service/logging/gcs/gcs_integration_test.go +++ b/pkg/commands/service/logging/gcs/gcs_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/gcs/gcs_test.go b/pkg/commands/service/logging/gcs/gcs_test.go index 945ab5c05..8908e9180 100644 --- a/pkg/commands/service/logging/gcs/gcs_test.go +++ b/pkg/commands/service/logging/gcs/gcs_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/gcs" diff --git a/pkg/commands/service/logging/gcs/list.go b/pkg/commands/service/logging/gcs/list.go index 87cfec684..289732764 100644 --- a/pkg/commands/service/logging/gcs/list.go +++ b/pkg/commands/service/logging/gcs/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/gcs/update.go b/pkg/commands/service/logging/gcs/update.go index a4b937675..3debd0632 100644 --- a/pkg/commands/service/logging/gcs/update.go +++ b/pkg/commands/service/logging/gcs/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/googlepubsub/create.go b/pkg/commands/service/logging/googlepubsub/create.go index f897a4f7c..d62d44d1b 100644 --- a/pkg/commands/service/logging/googlepubsub/create.go +++ b/pkg/commands/service/logging/googlepubsub/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/googlepubsub/delete.go b/pkg/commands/service/logging/googlepubsub/delete.go index 0dd88c4a8..12490f38c 100644 --- a/pkg/commands/service/logging/googlepubsub/delete.go +++ b/pkg/commands/service/logging/googlepubsub/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/googlepubsub/describe.go b/pkg/commands/service/logging/googlepubsub/describe.go index 6b29d80f0..17a2ce50e 100644 --- a/pkg/commands/service/logging/googlepubsub/describe.go +++ b/pkg/commands/service/logging/googlepubsub/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/googlepubsub/googlepubsub_integration_test.go b/pkg/commands/service/logging/googlepubsub/googlepubsub_integration_test.go index c2a867a81..42e751296 100644 --- a/pkg/commands/service/logging/googlepubsub/googlepubsub_integration_test.go +++ b/pkg/commands/service/logging/googlepubsub/googlepubsub_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/googlepubsub/googlepubsub_test.go b/pkg/commands/service/logging/googlepubsub/googlepubsub_test.go index bafcfce7f..8fbb5b2e4 100644 --- a/pkg/commands/service/logging/googlepubsub/googlepubsub_test.go +++ b/pkg/commands/service/logging/googlepubsub/googlepubsub_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/googlepubsub" diff --git a/pkg/commands/service/logging/googlepubsub/list.go b/pkg/commands/service/logging/googlepubsub/list.go index 23a444993..36e4921bf 100644 --- a/pkg/commands/service/logging/googlepubsub/list.go +++ b/pkg/commands/service/logging/googlepubsub/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/googlepubsub/update.go b/pkg/commands/service/logging/googlepubsub/update.go index 90eead8a6..4ac839302 100644 --- a/pkg/commands/service/logging/googlepubsub/update.go +++ b/pkg/commands/service/logging/googlepubsub/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/grafanacloudlogs/create.go b/pkg/commands/service/logging/grafanacloudlogs/create.go index 225c54feb..8abe695d9 100644 --- a/pkg/commands/service/logging/grafanacloudlogs/create.go +++ b/pkg/commands/service/logging/grafanacloudlogs/create.go @@ -12,7 +12,7 @@ import ( "github.com/fastly/cli/pkg/global" "github.com/fastly/cli/pkg/manifest" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // CreateCommand calls the Fastly API to create a GrafanaCloudLogs logging endpoint. diff --git a/pkg/commands/service/logging/grafanacloudlogs/delete.go b/pkg/commands/service/logging/grafanacloudlogs/delete.go index a779c2933..fd42e6816 100644 --- a/pkg/commands/service/logging/grafanacloudlogs/delete.go +++ b/pkg/commands/service/logging/grafanacloudlogs/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/grafanacloudlogs/describe.go b/pkg/commands/service/logging/grafanacloudlogs/describe.go index 315f91cb4..907a41fd8 100644 --- a/pkg/commands/service/logging/grafanacloudlogs/describe.go +++ b/pkg/commands/service/logging/grafanacloudlogs/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/grafanacloudlogs/grafanacloud_logs_integration_test.go b/pkg/commands/service/logging/grafanacloudlogs/grafanacloud_logs_integration_test.go index 0cc9fd7b9..ff82f631b 100644 --- a/pkg/commands/service/logging/grafanacloudlogs/grafanacloud_logs_integration_test.go +++ b/pkg/commands/service/logging/grafanacloudlogs/grafanacloud_logs_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" parent "github.com/fastly/cli/pkg/commands/service/logging" diff --git a/pkg/commands/service/logging/grafanacloudlogs/grafanacloudlogs_test.go b/pkg/commands/service/logging/grafanacloudlogs/grafanacloudlogs_test.go index da6d9ac80..b10f610a4 100644 --- a/pkg/commands/service/logging/grafanacloudlogs/grafanacloudlogs_test.go +++ b/pkg/commands/service/logging/grafanacloudlogs/grafanacloudlogs_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/grafanacloudlogs" diff --git a/pkg/commands/service/logging/grafanacloudlogs/list.go b/pkg/commands/service/logging/grafanacloudlogs/list.go index 9ed2746a9..685c6cfce 100644 --- a/pkg/commands/service/logging/grafanacloudlogs/list.go +++ b/pkg/commands/service/logging/grafanacloudlogs/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/grafanacloudlogs/update.go b/pkg/commands/service/logging/grafanacloudlogs/update.go index 956514896..42622fc21 100644 --- a/pkg/commands/service/logging/grafanacloudlogs/update.go +++ b/pkg/commands/service/logging/grafanacloudlogs/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/heroku/create.go b/pkg/commands/service/logging/heroku/create.go index 10bf9c33c..591570ca8 100644 --- a/pkg/commands/service/logging/heroku/create.go +++ b/pkg/commands/service/logging/heroku/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/heroku/delete.go b/pkg/commands/service/logging/heroku/delete.go index ddb958141..bfa598742 100644 --- a/pkg/commands/service/logging/heroku/delete.go +++ b/pkg/commands/service/logging/heroku/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/heroku/describe.go b/pkg/commands/service/logging/heroku/describe.go index 4d545b329..7a36f0db0 100644 --- a/pkg/commands/service/logging/heroku/describe.go +++ b/pkg/commands/service/logging/heroku/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/heroku/heroku_integration_test.go b/pkg/commands/service/logging/heroku/heroku_integration_test.go index 7a5f17dc8..1b5f428d6 100644 --- a/pkg/commands/service/logging/heroku/heroku_integration_test.go +++ b/pkg/commands/service/logging/heroku/heroku_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/heroku/heroku_test.go b/pkg/commands/service/logging/heroku/heroku_test.go index 908ca1eac..c824a2dc6 100644 --- a/pkg/commands/service/logging/heroku/heroku_test.go +++ b/pkg/commands/service/logging/heroku/heroku_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/heroku" diff --git a/pkg/commands/service/logging/heroku/list.go b/pkg/commands/service/logging/heroku/list.go index 00dd40ec0..f6f4bd90a 100644 --- a/pkg/commands/service/logging/heroku/list.go +++ b/pkg/commands/service/logging/heroku/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/heroku/update.go b/pkg/commands/service/logging/heroku/update.go index 76c9e2c6a..41702e551 100644 --- a/pkg/commands/service/logging/heroku/update.go +++ b/pkg/commands/service/logging/heroku/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/honeycomb/create.go b/pkg/commands/service/logging/honeycomb/create.go index 6c3499fc1..22c323808 100644 --- a/pkg/commands/service/logging/honeycomb/create.go +++ b/pkg/commands/service/logging/honeycomb/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/honeycomb/delete.go b/pkg/commands/service/logging/honeycomb/delete.go index 0cfab50df..bf90959a3 100644 --- a/pkg/commands/service/logging/honeycomb/delete.go +++ b/pkg/commands/service/logging/honeycomb/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/honeycomb/describe.go b/pkg/commands/service/logging/honeycomb/describe.go index b57888937..cfca980ab 100644 --- a/pkg/commands/service/logging/honeycomb/describe.go +++ b/pkg/commands/service/logging/honeycomb/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/honeycomb/honeycomb_integration_test.go b/pkg/commands/service/logging/honeycomb/honeycomb_integration_test.go index 8d2a65d34..de159e5b4 100644 --- a/pkg/commands/service/logging/honeycomb/honeycomb_integration_test.go +++ b/pkg/commands/service/logging/honeycomb/honeycomb_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" parent "github.com/fastly/cli/pkg/commands/service/logging" diff --git a/pkg/commands/service/logging/honeycomb/honeycomb_test.go b/pkg/commands/service/logging/honeycomb/honeycomb_test.go index af36019b3..de703e2d2 100644 --- a/pkg/commands/service/logging/honeycomb/honeycomb_test.go +++ b/pkg/commands/service/logging/honeycomb/honeycomb_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/honeycomb" diff --git a/pkg/commands/service/logging/honeycomb/list.go b/pkg/commands/service/logging/honeycomb/list.go index 6ce78fb09..cbd56c0dd 100644 --- a/pkg/commands/service/logging/honeycomb/list.go +++ b/pkg/commands/service/logging/honeycomb/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/honeycomb/update.go b/pkg/commands/service/logging/honeycomb/update.go index 8bf396441..3052523a4 100644 --- a/pkg/commands/service/logging/honeycomb/update.go +++ b/pkg/commands/service/logging/honeycomb/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/https/create.go b/pkg/commands/service/logging/https/create.go index 63b3bcbca..b0f718864 100644 --- a/pkg/commands/service/logging/https/create.go +++ b/pkg/commands/service/logging/https/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/https/delete.go b/pkg/commands/service/logging/https/delete.go index 1d56153ed..b47766cf4 100644 --- a/pkg/commands/service/logging/https/delete.go +++ b/pkg/commands/service/logging/https/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/https/describe.go b/pkg/commands/service/logging/https/describe.go index baf7949cf..f056df5a5 100644 --- a/pkg/commands/service/logging/https/describe.go +++ b/pkg/commands/service/logging/https/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/https/https_integration_test.go b/pkg/commands/service/logging/https/https_integration_test.go index 3dc672a23..4957fe80e 100644 --- a/pkg/commands/service/logging/https/https_integration_test.go +++ b/pkg/commands/service/logging/https/https_integration_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/https/https_test.go b/pkg/commands/service/logging/https/https_test.go index 4f5dc9aa6..233478fa2 100644 --- a/pkg/commands/service/logging/https/https_test.go +++ b/pkg/commands/service/logging/https/https_test.go @@ -5,7 +5,7 @@ import ( "net/http" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/https" diff --git a/pkg/commands/service/logging/https/list.go b/pkg/commands/service/logging/https/list.go index ae29f5378..6b0893a70 100644 --- a/pkg/commands/service/logging/https/list.go +++ b/pkg/commands/service/logging/https/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/https/update.go b/pkg/commands/service/logging/https/update.go index 32c817ee1..7a899336a 100644 --- a/pkg/commands/service/logging/https/update.go +++ b/pkg/commands/service/logging/https/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kafka/create.go b/pkg/commands/service/logging/kafka/create.go index 0a4b36ca5..e310eb4de 100644 --- a/pkg/commands/service/logging/kafka/create.go +++ b/pkg/commands/service/logging/kafka/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kafka/delete.go b/pkg/commands/service/logging/kafka/delete.go index 3396e32a4..535a8ac56 100644 --- a/pkg/commands/service/logging/kafka/delete.go +++ b/pkg/commands/service/logging/kafka/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kafka/describe.go b/pkg/commands/service/logging/kafka/describe.go index b4ea577cd..14ee53ff8 100644 --- a/pkg/commands/service/logging/kafka/describe.go +++ b/pkg/commands/service/logging/kafka/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/kafka/kafka_integration_test.go b/pkg/commands/service/logging/kafka/kafka_integration_test.go index 67b254089..f28153e5d 100644 --- a/pkg/commands/service/logging/kafka/kafka_integration_test.go +++ b/pkg/commands/service/logging/kafka/kafka_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/kafka/kafka_test.go b/pkg/commands/service/logging/kafka/kafka_test.go index 5dffeee46..971810755 100644 --- a/pkg/commands/service/logging/kafka/kafka_test.go +++ b/pkg/commands/service/logging/kafka/kafka_test.go @@ -5,7 +5,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/kafka" diff --git a/pkg/commands/service/logging/kafka/list.go b/pkg/commands/service/logging/kafka/list.go index 6ddf4fc97..36b53ed59 100644 --- a/pkg/commands/service/logging/kafka/list.go +++ b/pkg/commands/service/logging/kafka/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/kafka/update.go b/pkg/commands/service/logging/kafka/update.go index d3da1793a..e2eb39c74 100644 --- a/pkg/commands/service/logging/kafka/update.go +++ b/pkg/commands/service/logging/kafka/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kinesis/create.go b/pkg/commands/service/logging/kinesis/create.go index fda932aa3..5642b2a30 100644 --- a/pkg/commands/service/logging/kinesis/create.go +++ b/pkg/commands/service/logging/kinesis/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kinesis/delete.go b/pkg/commands/service/logging/kinesis/delete.go index 55ba14629..2d070fbe4 100644 --- a/pkg/commands/service/logging/kinesis/delete.go +++ b/pkg/commands/service/logging/kinesis/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kinesis/describe.go b/pkg/commands/service/logging/kinesis/describe.go index cd13efbe8..84a1fc993 100644 --- a/pkg/commands/service/logging/kinesis/describe.go +++ b/pkg/commands/service/logging/kinesis/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/kinesis/kinesis_integration_test.go b/pkg/commands/service/logging/kinesis/kinesis_integration_test.go index f34653fd7..4634d8c5f 100644 --- a/pkg/commands/service/logging/kinesis/kinesis_integration_test.go +++ b/pkg/commands/service/logging/kinesis/kinesis_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/kinesis/kinesis_test.go b/pkg/commands/service/logging/kinesis/kinesis_test.go index 4ff44dd79..814e4d7dd 100644 --- a/pkg/commands/service/logging/kinesis/kinesis_test.go +++ b/pkg/commands/service/logging/kinesis/kinesis_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/kinesis" diff --git a/pkg/commands/service/logging/kinesis/list.go b/pkg/commands/service/logging/kinesis/list.go index a0cef0cac..e73677cdd 100644 --- a/pkg/commands/service/logging/kinesis/list.go +++ b/pkg/commands/service/logging/kinesis/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/kinesis/update.go b/pkg/commands/service/logging/kinesis/update.go index 99536a125..b335fe7bc 100644 --- a/pkg/commands/service/logging/kinesis/update.go +++ b/pkg/commands/service/logging/kinesis/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/loggly/create.go b/pkg/commands/service/logging/loggly/create.go index 42313bb11..8273a3e6a 100644 --- a/pkg/commands/service/logging/loggly/create.go +++ b/pkg/commands/service/logging/loggly/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/loggly/delete.go b/pkg/commands/service/logging/loggly/delete.go index 2f5a9f45e..608a13e70 100644 --- a/pkg/commands/service/logging/loggly/delete.go +++ b/pkg/commands/service/logging/loggly/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/loggly/describe.go b/pkg/commands/service/logging/loggly/describe.go index 20fe9e387..ff15f9182 100644 --- a/pkg/commands/service/logging/loggly/describe.go +++ b/pkg/commands/service/logging/loggly/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/loggly/list.go b/pkg/commands/service/logging/loggly/list.go index b074d5c88..a8879353b 100644 --- a/pkg/commands/service/logging/loggly/list.go +++ b/pkg/commands/service/logging/loggly/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/loggly/loggly_integration_test.go b/pkg/commands/service/logging/loggly/loggly_integration_test.go index c5766e4ee..25b412d76 100644 --- a/pkg/commands/service/logging/loggly/loggly_integration_test.go +++ b/pkg/commands/service/logging/loggly/loggly_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/loggly/loggly_test.go b/pkg/commands/service/logging/loggly/loggly_test.go index 2078efe91..b0834f51e 100644 --- a/pkg/commands/service/logging/loggly/loggly_test.go +++ b/pkg/commands/service/logging/loggly/loggly_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/loggly" diff --git a/pkg/commands/service/logging/loggly/update.go b/pkg/commands/service/logging/loggly/update.go index 47cf55dc0..5d4cdb664 100644 --- a/pkg/commands/service/logging/loggly/update.go +++ b/pkg/commands/service/logging/loggly/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/logshuttle/create.go b/pkg/commands/service/logging/logshuttle/create.go index a1e99c404..7b17f7853 100644 --- a/pkg/commands/service/logging/logshuttle/create.go +++ b/pkg/commands/service/logging/logshuttle/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/logshuttle/delete.go b/pkg/commands/service/logging/logshuttle/delete.go index 9685e7598..84580bcd8 100644 --- a/pkg/commands/service/logging/logshuttle/delete.go +++ b/pkg/commands/service/logging/logshuttle/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/logshuttle/describe.go b/pkg/commands/service/logging/logshuttle/describe.go index 13aa1faae..f79af9b7e 100644 --- a/pkg/commands/service/logging/logshuttle/describe.go +++ b/pkg/commands/service/logging/logshuttle/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/logshuttle/list.go b/pkg/commands/service/logging/logshuttle/list.go index e12ed2d6d..9d0feb667 100644 --- a/pkg/commands/service/logging/logshuttle/list.go +++ b/pkg/commands/service/logging/logshuttle/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/logshuttle/logshuttle_integration_test.go b/pkg/commands/service/logging/logshuttle/logshuttle_integration_test.go index 98776822d..90eea6c5a 100644 --- a/pkg/commands/service/logging/logshuttle/logshuttle_integration_test.go +++ b/pkg/commands/service/logging/logshuttle/logshuttle_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/logshuttle/logshuttle_test.go b/pkg/commands/service/logging/logshuttle/logshuttle_test.go index 4eb774c77..20b7d5f48 100644 --- a/pkg/commands/service/logging/logshuttle/logshuttle_test.go +++ b/pkg/commands/service/logging/logshuttle/logshuttle_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/logshuttle" diff --git a/pkg/commands/service/logging/logshuttle/update.go b/pkg/commands/service/logging/logshuttle/update.go index 4fd3b6323..19974379f 100644 --- a/pkg/commands/service/logging/logshuttle/update.go +++ b/pkg/commands/service/logging/logshuttle/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelic/create.go b/pkg/commands/service/logging/newrelic/create.go index 066119d9d..2177132be 100644 --- a/pkg/commands/service/logging/newrelic/create.go +++ b/pkg/commands/service/logging/newrelic/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelic/delete.go b/pkg/commands/service/logging/newrelic/delete.go index c480558a3..7d6fe9f9a 100644 --- a/pkg/commands/service/logging/newrelic/delete.go +++ b/pkg/commands/service/logging/newrelic/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelic/describe.go b/pkg/commands/service/logging/newrelic/describe.go index 5884ffb4b..e50e62279 100644 --- a/pkg/commands/service/logging/newrelic/describe.go +++ b/pkg/commands/service/logging/newrelic/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/newrelic/list.go b/pkg/commands/service/logging/newrelic/list.go index 64134af38..60d8977a8 100644 --- a/pkg/commands/service/logging/newrelic/list.go +++ b/pkg/commands/service/logging/newrelic/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/newrelic/newrelic_test.go b/pkg/commands/service/logging/newrelic/newrelic_test.go index 6e49f3d0e..8d7940b0b 100644 --- a/pkg/commands/service/logging/newrelic/newrelic_test.go +++ b/pkg/commands/service/logging/newrelic/newrelic_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" serviceRoot "github.com/fastly/cli/pkg/commands/service" loggingRoot "github.com/fastly/cli/pkg/commands/service/logging" diff --git a/pkg/commands/service/logging/newrelic/update.go b/pkg/commands/service/logging/newrelic/update.go index c69d760e1..c33b4cf1a 100644 --- a/pkg/commands/service/logging/newrelic/update.go +++ b/pkg/commands/service/logging/newrelic/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelicotlp/create.go b/pkg/commands/service/logging/newrelicotlp/create.go index 38c023442..605dd6cf9 100644 --- a/pkg/commands/service/logging/newrelicotlp/create.go +++ b/pkg/commands/service/logging/newrelicotlp/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelicotlp/delete.go b/pkg/commands/service/logging/newrelicotlp/delete.go index 38e4e19a4..f2acadd85 100644 --- a/pkg/commands/service/logging/newrelicotlp/delete.go +++ b/pkg/commands/service/logging/newrelicotlp/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelicotlp/describe.go b/pkg/commands/service/logging/newrelicotlp/describe.go index 4686ca4ed..07fc845f3 100644 --- a/pkg/commands/service/logging/newrelicotlp/describe.go +++ b/pkg/commands/service/logging/newrelicotlp/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/newrelicotlp/list.go b/pkg/commands/service/logging/newrelicotlp/list.go index 69718272e..f9469209e 100644 --- a/pkg/commands/service/logging/newrelicotlp/list.go +++ b/pkg/commands/service/logging/newrelicotlp/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/newrelicotlp/newrelicotlp_test.go b/pkg/commands/service/logging/newrelicotlp/newrelicotlp_test.go index 88e33d8a8..63ba50464 100644 --- a/pkg/commands/service/logging/newrelicotlp/newrelicotlp_test.go +++ b/pkg/commands/service/logging/newrelicotlp/newrelicotlp_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" serviceRoot "github.com/fastly/cli/pkg/commands/service" loggingRoot "github.com/fastly/cli/pkg/commands/service/logging" diff --git a/pkg/commands/service/logging/newrelicotlp/update.go b/pkg/commands/service/logging/newrelicotlp/update.go index 46a7d2074..9016e4280 100644 --- a/pkg/commands/service/logging/newrelicotlp/update.go +++ b/pkg/commands/service/logging/newrelicotlp/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/openstack/create.go b/pkg/commands/service/logging/openstack/create.go index 75c579a1b..aaa1e9c08 100644 --- a/pkg/commands/service/logging/openstack/create.go +++ b/pkg/commands/service/logging/openstack/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/openstack/delete.go b/pkg/commands/service/logging/openstack/delete.go index 1400c9581..78e2d01db 100644 --- a/pkg/commands/service/logging/openstack/delete.go +++ b/pkg/commands/service/logging/openstack/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/openstack/describe.go b/pkg/commands/service/logging/openstack/describe.go index 93442c8e5..589ba033a 100644 --- a/pkg/commands/service/logging/openstack/describe.go +++ b/pkg/commands/service/logging/openstack/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/openstack/list.go b/pkg/commands/service/logging/openstack/list.go index e479f340d..e4fb28e65 100644 --- a/pkg/commands/service/logging/openstack/list.go +++ b/pkg/commands/service/logging/openstack/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/openstack/openstack_integration_test.go b/pkg/commands/service/logging/openstack/openstack_integration_test.go index 03b6dcb9e..de5a0014a 100644 --- a/pkg/commands/service/logging/openstack/openstack_integration_test.go +++ b/pkg/commands/service/logging/openstack/openstack_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/openstack/openstack_test.go b/pkg/commands/service/logging/openstack/openstack_test.go index 889b81233..e79683d72 100644 --- a/pkg/commands/service/logging/openstack/openstack_test.go +++ b/pkg/commands/service/logging/openstack/openstack_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/openstack" diff --git a/pkg/commands/service/logging/openstack/update.go b/pkg/commands/service/logging/openstack/update.go index 000c7b857..9cdfe193f 100644 --- a/pkg/commands/service/logging/openstack/update.go +++ b/pkg/commands/service/logging/openstack/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/papertrail/create.go b/pkg/commands/service/logging/papertrail/create.go index 0418a4b04..d6d8885f8 100644 --- a/pkg/commands/service/logging/papertrail/create.go +++ b/pkg/commands/service/logging/papertrail/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/papertrail/delete.go b/pkg/commands/service/logging/papertrail/delete.go index 317173ee3..f6b47f05f 100644 --- a/pkg/commands/service/logging/papertrail/delete.go +++ b/pkg/commands/service/logging/papertrail/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/papertrail/describe.go b/pkg/commands/service/logging/papertrail/describe.go index 4c91e8f79..d9b06bd4a 100644 --- a/pkg/commands/service/logging/papertrail/describe.go +++ b/pkg/commands/service/logging/papertrail/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/papertrail/list.go b/pkg/commands/service/logging/papertrail/list.go index ee7aecf66..17f9a3771 100644 --- a/pkg/commands/service/logging/papertrail/list.go +++ b/pkg/commands/service/logging/papertrail/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/papertrail/papertrail_integration_test.go b/pkg/commands/service/logging/papertrail/papertrail_integration_test.go index 76a05d6d1..88ee8f3e2 100644 --- a/pkg/commands/service/logging/papertrail/papertrail_integration_test.go +++ b/pkg/commands/service/logging/papertrail/papertrail_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/papertrail/papertrail_test.go b/pkg/commands/service/logging/papertrail/papertrail_test.go index 0505811a3..21fed7036 100644 --- a/pkg/commands/service/logging/papertrail/papertrail_test.go +++ b/pkg/commands/service/logging/papertrail/papertrail_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/papertrail" diff --git a/pkg/commands/service/logging/papertrail/update.go b/pkg/commands/service/logging/papertrail/update.go index 948bf1ea5..83f24a01f 100644 --- a/pkg/commands/service/logging/papertrail/update.go +++ b/pkg/commands/service/logging/papertrail/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/s3/create.go b/pkg/commands/service/logging/s3/create.go index 35aeec20c..b99567f42 100644 --- a/pkg/commands/service/logging/s3/create.go +++ b/pkg/commands/service/logging/s3/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/s3/delete.go b/pkg/commands/service/logging/s3/delete.go index 830aa7842..72898500b 100644 --- a/pkg/commands/service/logging/s3/delete.go +++ b/pkg/commands/service/logging/s3/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/s3/describe.go b/pkg/commands/service/logging/s3/describe.go index 7b707bf87..1e638ddfd 100644 --- a/pkg/commands/service/logging/s3/describe.go +++ b/pkg/commands/service/logging/s3/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/s3/list.go b/pkg/commands/service/logging/s3/list.go index d59026b2d..1a5308260 100644 --- a/pkg/commands/service/logging/s3/list.go +++ b/pkg/commands/service/logging/s3/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/s3/s3_integration_test.go b/pkg/commands/service/logging/s3/s3_integration_test.go index 37d806257..0f1a5fd93 100644 --- a/pkg/commands/service/logging/s3/s3_integration_test.go +++ b/pkg/commands/service/logging/s3/s3_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/s3/s3_test.go b/pkg/commands/service/logging/s3/s3_test.go index 499605b0a..726a71a89 100644 --- a/pkg/commands/service/logging/s3/s3_test.go +++ b/pkg/commands/service/logging/s3/s3_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/s3" diff --git a/pkg/commands/service/logging/s3/update.go b/pkg/commands/service/logging/s3/update.go index 606ce2906..a5f83d898 100644 --- a/pkg/commands/service/logging/s3/update.go +++ b/pkg/commands/service/logging/s3/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/scalyr/create.go b/pkg/commands/service/logging/scalyr/create.go index bcdbef83a..4cb385d73 100644 --- a/pkg/commands/service/logging/scalyr/create.go +++ b/pkg/commands/service/logging/scalyr/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/scalyr/delete.go b/pkg/commands/service/logging/scalyr/delete.go index 3819465cc..ad6857bbe 100644 --- a/pkg/commands/service/logging/scalyr/delete.go +++ b/pkg/commands/service/logging/scalyr/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/scalyr/describe.go b/pkg/commands/service/logging/scalyr/describe.go index 317fb3fee..7faefad5f 100644 --- a/pkg/commands/service/logging/scalyr/describe.go +++ b/pkg/commands/service/logging/scalyr/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/scalyr/list.go b/pkg/commands/service/logging/scalyr/list.go index 20b8c857a..8a4184580 100644 --- a/pkg/commands/service/logging/scalyr/list.go +++ b/pkg/commands/service/logging/scalyr/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/scalyr/scalyr_integration_test.go b/pkg/commands/service/logging/scalyr/scalyr_integration_test.go index 91ef20a48..71bfd1069 100644 --- a/pkg/commands/service/logging/scalyr/scalyr_integration_test.go +++ b/pkg/commands/service/logging/scalyr/scalyr_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" fsterrs "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/mock" diff --git a/pkg/commands/service/logging/scalyr/scalyr_test.go b/pkg/commands/service/logging/scalyr/scalyr_test.go index d06d392b9..4befdcf3a 100644 --- a/pkg/commands/service/logging/scalyr/scalyr_test.go +++ b/pkg/commands/service/logging/scalyr/scalyr_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/scalyr" diff --git a/pkg/commands/service/logging/scalyr/update.go b/pkg/commands/service/logging/scalyr/update.go index bd194a29c..4b14297de 100644 --- a/pkg/commands/service/logging/scalyr/update.go +++ b/pkg/commands/service/logging/scalyr/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sftp/create.go b/pkg/commands/service/logging/sftp/create.go index c04263b57..5763b2eeb 100644 --- a/pkg/commands/service/logging/sftp/create.go +++ b/pkg/commands/service/logging/sftp/create.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sftp/delete.go b/pkg/commands/service/logging/sftp/delete.go index 1faaf3169..43e2e5883 100644 --- a/pkg/commands/service/logging/sftp/delete.go +++ b/pkg/commands/service/logging/sftp/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sftp/describe.go b/pkg/commands/service/logging/sftp/describe.go index 9142b364f..3540c331f 100644 --- a/pkg/commands/service/logging/sftp/describe.go +++ b/pkg/commands/service/logging/sftp/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/sftp/list.go b/pkg/commands/service/logging/sftp/list.go index 1986dbc2c..f5164d632 100644 --- a/pkg/commands/service/logging/sftp/list.go +++ b/pkg/commands/service/logging/sftp/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/sftp/sftp_integration_test.go b/pkg/commands/service/logging/sftp/sftp_integration_test.go index acdacc1ea..560852413 100644 --- a/pkg/commands/service/logging/sftp/sftp_integration_test.go +++ b/pkg/commands/service/logging/sftp/sftp_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/sftp/sftp_test.go b/pkg/commands/service/logging/sftp/sftp_test.go index 78274d184..a8baf99a7 100644 --- a/pkg/commands/service/logging/sftp/sftp_test.go +++ b/pkg/commands/service/logging/sftp/sftp_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/sftp" diff --git a/pkg/commands/service/logging/sftp/update.go b/pkg/commands/service/logging/sftp/update.go index ef925f2d4..2356d39e5 100644 --- a/pkg/commands/service/logging/sftp/update.go +++ b/pkg/commands/service/logging/sftp/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/splunk/create.go b/pkg/commands/service/logging/splunk/create.go index 5fd582eb9..f87608acf 100644 --- a/pkg/commands/service/logging/splunk/create.go +++ b/pkg/commands/service/logging/splunk/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/splunk/delete.go b/pkg/commands/service/logging/splunk/delete.go index 199db4f1d..0bbde22d2 100644 --- a/pkg/commands/service/logging/splunk/delete.go +++ b/pkg/commands/service/logging/splunk/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/splunk/describe.go b/pkg/commands/service/logging/splunk/describe.go index 6e3529b64..1727c28ac 100644 --- a/pkg/commands/service/logging/splunk/describe.go +++ b/pkg/commands/service/logging/splunk/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/splunk/list.go b/pkg/commands/service/logging/splunk/list.go index 9c0d3efe7..4be792f42 100644 --- a/pkg/commands/service/logging/splunk/list.go +++ b/pkg/commands/service/logging/splunk/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/splunk/splunk_integration_test.go b/pkg/commands/service/logging/splunk/splunk_integration_test.go index 918f811f7..8598a52f1 100644 --- a/pkg/commands/service/logging/splunk/splunk_integration_test.go +++ b/pkg/commands/service/logging/splunk/splunk_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" parent "github.com/fastly/cli/pkg/commands/service/logging" diff --git a/pkg/commands/service/logging/splunk/splunk_test.go b/pkg/commands/service/logging/splunk/splunk_test.go index 6fa4e138e..720b598e4 100644 --- a/pkg/commands/service/logging/splunk/splunk_test.go +++ b/pkg/commands/service/logging/splunk/splunk_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/splunk" diff --git a/pkg/commands/service/logging/splunk/update.go b/pkg/commands/service/logging/splunk/update.go index 972b2b475..1e3a43960 100644 --- a/pkg/commands/service/logging/splunk/update.go +++ b/pkg/commands/service/logging/splunk/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sumologic/create.go b/pkg/commands/service/logging/sumologic/create.go index 563707430..172473c25 100644 --- a/pkg/commands/service/logging/sumologic/create.go +++ b/pkg/commands/service/logging/sumologic/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sumologic/delete.go b/pkg/commands/service/logging/sumologic/delete.go index b822249cb..be2b829e9 100644 --- a/pkg/commands/service/logging/sumologic/delete.go +++ b/pkg/commands/service/logging/sumologic/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sumologic/describe.go b/pkg/commands/service/logging/sumologic/describe.go index 90af8ac0a..541c55062 100644 --- a/pkg/commands/service/logging/sumologic/describe.go +++ b/pkg/commands/service/logging/sumologic/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/sumologic/list.go b/pkg/commands/service/logging/sumologic/list.go index 91d38c451..75aadbf92 100644 --- a/pkg/commands/service/logging/sumologic/list.go +++ b/pkg/commands/service/logging/sumologic/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/sumologic/sumologic_integration_test.go b/pkg/commands/service/logging/sumologic/sumologic_integration_test.go index 3ef4b2cae..9fdf00ca6 100644 --- a/pkg/commands/service/logging/sumologic/sumologic_integration_test.go +++ b/pkg/commands/service/logging/sumologic/sumologic_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" parent "github.com/fastly/cli/pkg/commands/service/logging" diff --git a/pkg/commands/service/logging/sumologic/sumologic_test.go b/pkg/commands/service/logging/sumologic/sumologic_test.go index 37eb2d076..d8e92257c 100644 --- a/pkg/commands/service/logging/sumologic/sumologic_test.go +++ b/pkg/commands/service/logging/sumologic/sumologic_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/sumologic" diff --git a/pkg/commands/service/logging/sumologic/update.go b/pkg/commands/service/logging/sumologic/update.go index 744db607f..047dc8080 100644 --- a/pkg/commands/service/logging/sumologic/update.go +++ b/pkg/commands/service/logging/sumologic/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/syslog/create.go b/pkg/commands/service/logging/syslog/create.go index 51dc8c5d8..33c86a908 100644 --- a/pkg/commands/service/logging/syslog/create.go +++ b/pkg/commands/service/logging/syslog/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/syslog/delete.go b/pkg/commands/service/logging/syslog/delete.go index f555d6a47..4440df2a0 100644 --- a/pkg/commands/service/logging/syslog/delete.go +++ b/pkg/commands/service/logging/syslog/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/syslog/describe.go b/pkg/commands/service/logging/syslog/describe.go index b37278fa1..77c7f1011 100644 --- a/pkg/commands/service/logging/syslog/describe.go +++ b/pkg/commands/service/logging/syslog/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/syslog/list.go b/pkg/commands/service/logging/syslog/list.go index d7e59ae50..fb7ade9c2 100644 --- a/pkg/commands/service/logging/syslog/list.go +++ b/pkg/commands/service/logging/syslog/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/logging/syslog/syslog_integration_test.go b/pkg/commands/service/logging/syslog/syslog_integration_test.go index 9b820474b..f95b9ba6f 100644 --- a/pkg/commands/service/logging/syslog/syslog_integration_test.go +++ b/pkg/commands/service/logging/syslog/syslog_integration_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/logging/syslog/syslog_test.go b/pkg/commands/service/logging/syslog/syslog_test.go index 329ec8712..b57794122 100644 --- a/pkg/commands/service/logging/syslog/syslog_test.go +++ b/pkg/commands/service/logging/syslog/syslog_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/commands/service/logging/syslog" diff --git a/pkg/commands/service/logging/syslog/update.go b/pkg/commands/service/logging/syslog/update.go index cf68e9a89..f6d3a024f 100644 --- a/pkg/commands/service/logging/syslog/update.go +++ b/pkg/commands/service/logging/syslog/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/purge/purge.go b/pkg/commands/service/purge/purge.go index fafb80de1..5a0dcf24f 100644 --- a/pkg/commands/service/purge/purge.go +++ b/pkg/commands/service/purge/purge.go @@ -9,7 +9,7 @@ import ( "path/filepath" "sort" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/purge/purge_test.go b/pkg/commands/service/purge/purge_test.go index 9ff93ceb3..b135ea324 100644 --- a/pkg/commands/service/purge/purge_test.go +++ b/pkg/commands/service/purge/purge_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" purge "github.com/fastly/cli/pkg/commands/service/purge" diff --git a/pkg/commands/service/ratelimit/create.go b/pkg/commands/service/ratelimit/create.go index e9153a5ca..f0431bc3f 100644 --- a/pkg/commands/service/ratelimit/create.go +++ b/pkg/commands/service/ratelimit/create.go @@ -7,7 +7,7 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/ratelimit/delete.go b/pkg/commands/service/ratelimit/delete.go index 9849ff4e8..ddbce4292 100644 --- a/pkg/commands/service/ratelimit/delete.go +++ b/pkg/commands/service/ratelimit/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/ratelimit/describe.go b/pkg/commands/service/ratelimit/describe.go index 29debdf35..9ac5c2ca3 100644 --- a/pkg/commands/service/ratelimit/describe.go +++ b/pkg/commands/service/ratelimit/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/ratelimit/list.go b/pkg/commands/service/ratelimit/list.go index 3e70dc83f..082214edc 100644 --- a/pkg/commands/service/ratelimit/list.go +++ b/pkg/commands/service/ratelimit/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/ratelimit/ratelimit_test.go b/pkg/commands/service/ratelimit/ratelimit_test.go index c644d0938..6559baf32 100644 --- a/pkg/commands/service/ratelimit/ratelimit_test.go +++ b/pkg/commands/service/ratelimit/ratelimit_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/ratelimit" diff --git a/pkg/commands/service/ratelimit/update.go b/pkg/commands/service/ratelimit/update.go index bef25bfd7..1b401b656 100644 --- a/pkg/commands/service/ratelimit/update.go +++ b/pkg/commands/service/ratelimit/update.go @@ -7,7 +7,7 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/resourcelink/create.go b/pkg/commands/service/resourcelink/create.go index 3fb56a5cb..5417fdd12 100644 --- a/pkg/commands/service/resourcelink/create.go +++ b/pkg/commands/service/resourcelink/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/resourcelink/delete.go b/pkg/commands/service/resourcelink/delete.go index c42ef0d75..f9db75518 100644 --- a/pkg/commands/service/resourcelink/delete.go +++ b/pkg/commands/service/resourcelink/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/resourcelink/describe.go b/pkg/commands/service/resourcelink/describe.go index 3510a0610..6852eb203 100644 --- a/pkg/commands/service/resourcelink/describe.go +++ b/pkg/commands/service/resourcelink/describe.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/resourcelink/list.go b/pkg/commands/service/resourcelink/list.go index 7b22c01fa..47640fb83 100644 --- a/pkg/commands/service/resourcelink/list.go +++ b/pkg/commands/service/resourcelink/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/resourcelink/resourcelink_test.go b/pkg/commands/service/resourcelink/resourcelink_test.go index 79a78aa95..99029423e 100644 --- a/pkg/commands/service/resourcelink/resourcelink_test.go +++ b/pkg/commands/service/resourcelink/resourcelink_test.go @@ -8,7 +8,7 @@ import ( root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/resourcelink" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/mock" "github.com/fastly/cli/pkg/testutil" diff --git a/pkg/commands/service/resourcelink/update.go b/pkg/commands/service/resourcelink/update.go index 031fea5a5..75c7d22aa 100644 --- a/pkg/commands/service/resourcelink/update.go +++ b/pkg/commands/service/resourcelink/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/search.go b/pkg/commands/service/search.go index bbdd21a36..f55f81b04 100644 --- a/pkg/commands/service/search.go +++ b/pkg/commands/service/search.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/service_test.go b/pkg/commands/service/service_test.go index b810647e6..08cfb9a6e 100644 --- a/pkg/commands/service/service_test.go +++ b/pkg/commands/service/service_test.go @@ -12,7 +12,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" root "github.com/fastly/cli/pkg/commands/service" diff --git a/pkg/commands/service/update.go b/pkg/commands/service/update.go index 144930291..8a0c335fd 100644 --- a/pkg/commands/service/update.go +++ b/pkg/commands/service/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/service/vcl/condition/condition_test.go b/pkg/commands/service/vcl/condition/condition_test.go index d3878edb2..c93822ad4 100644 --- a/pkg/commands/service/vcl/condition/condition_test.go +++ b/pkg/commands/service/vcl/condition/condition_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" top "github.com/fastly/cli/pkg/commands/service" root "github.com/fastly/cli/pkg/commands/service/vcl" diff --git a/pkg/commands/service/vcl/condition/create.go b/pkg/commands/service/vcl/condition/create.go index 1fa6d1404..5c1ff9a4b 100644 --- a/pkg/commands/service/vcl/condition/create.go +++ b/pkg/commands/service/vcl/condition/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/condition/delete.go b/pkg/commands/service/vcl/condition/delete.go index 3828f66ca..ece581969 100644 --- a/pkg/commands/service/vcl/condition/delete.go +++ b/pkg/commands/service/vcl/condition/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/condition/describe.go b/pkg/commands/service/vcl/condition/describe.go index 03f7de38b..9a3a7105c 100644 --- a/pkg/commands/service/vcl/condition/describe.go +++ b/pkg/commands/service/vcl/condition/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/vcl/condition/list.go b/pkg/commands/service/vcl/condition/list.go index 4777f8790..393d77841 100644 --- a/pkg/commands/service/vcl/condition/list.go +++ b/pkg/commands/service/vcl/condition/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/vcl/condition/update.go b/pkg/commands/service/vcl/condition/update.go index 94fccd0e1..2042c8c7c 100644 --- a/pkg/commands/service/vcl/condition/update.go +++ b/pkg/commands/service/vcl/condition/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/custom/create.go b/pkg/commands/service/vcl/custom/create.go index 7809943dc..71f11f0fe 100644 --- a/pkg/commands/service/vcl/custom/create.go +++ b/pkg/commands/service/vcl/custom/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/custom/custom_test.go b/pkg/commands/service/vcl/custom/custom_test.go index bccba6ce0..bfb6c51cf 100644 --- a/pkg/commands/service/vcl/custom/custom_test.go +++ b/pkg/commands/service/vcl/custom/custom_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" top "github.com/fastly/cli/pkg/commands/service" root "github.com/fastly/cli/pkg/commands/service/vcl" diff --git a/pkg/commands/service/vcl/custom/delete.go b/pkg/commands/service/vcl/custom/delete.go index e40f36041..44f6a4464 100644 --- a/pkg/commands/service/vcl/custom/delete.go +++ b/pkg/commands/service/vcl/custom/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/custom/describe.go b/pkg/commands/service/vcl/custom/describe.go index d0f5169b1..3208983f2 100644 --- a/pkg/commands/service/vcl/custom/describe.go +++ b/pkg/commands/service/vcl/custom/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/vcl/custom/list.go b/pkg/commands/service/vcl/custom/list.go index 049971141..c72699936 100644 --- a/pkg/commands/service/vcl/custom/list.go +++ b/pkg/commands/service/vcl/custom/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/vcl/custom/update.go b/pkg/commands/service/vcl/custom/update.go index ed97d8ef4..67564c062 100644 --- a/pkg/commands/service/vcl/custom/update.go +++ b/pkg/commands/service/vcl/custom/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/describe.go b/pkg/commands/service/vcl/describe.go index 6a9b8504d..04f1b192d 100644 --- a/pkg/commands/service/vcl/describe.go +++ b/pkg/commands/service/vcl/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/vcl/snippet/create.go b/pkg/commands/service/vcl/snippet/create.go index 58344143a..c140d2458 100644 --- a/pkg/commands/service/vcl/snippet/create.go +++ b/pkg/commands/service/vcl/snippet/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/snippet/delete.go b/pkg/commands/service/vcl/snippet/delete.go index 8f6167fcc..3f8539cc6 100644 --- a/pkg/commands/service/vcl/snippet/delete.go +++ b/pkg/commands/service/vcl/snippet/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/snippet/describe.go b/pkg/commands/service/vcl/snippet/describe.go index 1193de94f..010be1d6c 100644 --- a/pkg/commands/service/vcl/snippet/describe.go +++ b/pkg/commands/service/vcl/snippet/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/vcl/snippet/list.go b/pkg/commands/service/vcl/snippet/list.go index f1bdd5102..ed0d07d57 100644 --- a/pkg/commands/service/vcl/snippet/list.go +++ b/pkg/commands/service/vcl/snippet/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/vcl/snippet/snippet_test.go b/pkg/commands/service/vcl/snippet/snippet_test.go index 50923a1e3..d4f30e564 100644 --- a/pkg/commands/service/vcl/snippet/snippet_test.go +++ b/pkg/commands/service/vcl/snippet/snippet_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" top "github.com/fastly/cli/pkg/commands/service" root "github.com/fastly/cli/pkg/commands/service/vcl" diff --git a/pkg/commands/service/vcl/snippet/update.go b/pkg/commands/service/vcl/snippet/update.go index 97110024d..1a603c71d 100644 --- a/pkg/commands/service/vcl/snippet/update.go +++ b/pkg/commands/service/vcl/snippet/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/vcl_test.go b/pkg/commands/service/vcl/vcl_test.go index 07182bf32..8de2be833 100644 --- a/pkg/commands/service/vcl/vcl_test.go +++ b/pkg/commands/service/vcl/vcl_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/vcl" diff --git a/pkg/commands/service/version/activate.go b/pkg/commands/service/version/activate.go index 49a9f062b..be89c1185 100644 --- a/pkg/commands/service/version/activate.go +++ b/pkg/commands/service/version/activate.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/version/clone.go b/pkg/commands/service/version/clone.go index 4ca18f31b..6184ab9ae 100644 --- a/pkg/commands/service/version/clone.go +++ b/pkg/commands/service/version/clone.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/version/deactivate.go b/pkg/commands/service/version/deactivate.go index e31ef811b..fd14432ed 100644 --- a/pkg/commands/service/version/deactivate.go +++ b/pkg/commands/service/version/deactivate.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/version/list.go b/pkg/commands/service/version/list.go index 0a8dd9d19..c9d0f8cf8 100644 --- a/pkg/commands/service/version/list.go +++ b/pkg/commands/service/version/list.go @@ -6,7 +6,7 @@ import ( "io" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/version/lock.go b/pkg/commands/service/version/lock.go index 659a04222..6d871b122 100644 --- a/pkg/commands/service/version/lock.go +++ b/pkg/commands/service/version/lock.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/version/serviceversion_test.go b/pkg/commands/service/version/serviceversion_test.go index fe6512ec8..28a4e5b6c 100644 --- a/pkg/commands/service/version/serviceversion_test.go +++ b/pkg/commands/service/version/serviceversion_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/service" sub "github.com/fastly/cli/pkg/commands/service/version" diff --git a/pkg/commands/service/version/stage.go b/pkg/commands/service/version/stage.go index 0f1350556..0a73e53c4 100644 --- a/pkg/commands/service/version/stage.go +++ b/pkg/commands/service/version/stage.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/version/unstage.go b/pkg/commands/service/version/unstage.go index bb1dcc6cb..fdec10623 100644 --- a/pkg/commands/service/version/unstage.go +++ b/pkg/commands/service/version/unstage.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/version/update.go b/pkg/commands/service/version/update.go index 5e7a5b814..f485afce2 100644 --- a/pkg/commands/service/version/update.go +++ b/pkg/commands/service/version/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/service/version/validate.go b/pkg/commands/service/version/validate.go index d9377ca15..b47693611 100644 --- a/pkg/commands/service/version/validate.go +++ b/pkg/commands/service/version/validate.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/sso/sso_test.go b/pkg/commands/sso/sso_test.go index 9379fe870..59846cb04 100644 --- a/pkg/commands/sso/sso_test.go +++ b/pkg/commands/sso/sso_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/auth" "github.com/fastly/cli/pkg/config" diff --git a/pkg/commands/stats/aggregate.go b/pkg/commands/stats/aggregate.go index 3892095c1..e61a84af2 100644 --- a/pkg/commands/stats/aggregate.go +++ b/pkg/commands/stats/aggregate.go @@ -6,7 +6,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/stats/aggregate_test.go b/pkg/commands/stats/aggregate_test.go index 3e7cf7b10..a1d06b902 100644 --- a/pkg/commands/stats/aggregate_test.go +++ b/pkg/commands/stats/aggregate_test.go @@ -7,7 +7,7 @@ import ( "io" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/stats/domain_inspector.go b/pkg/commands/stats/domain_inspector.go index 08b39a27d..3a3931747 100644 --- a/pkg/commands/stats/domain_inspector.go +++ b/pkg/commands/stats/domain_inspector.go @@ -8,7 +8,7 @@ import ( "strconv" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/stats/domain_inspector_test.go b/pkg/commands/stats/domain_inspector_test.go index d44fbdce2..734aab301 100644 --- a/pkg/commands/stats/domain_inspector_test.go +++ b/pkg/commands/stats/domain_inspector_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/stats/historical.go b/pkg/commands/stats/historical.go index 9f5cc39ff..03ed824f2 100644 --- a/pkg/commands/stats/historical.go +++ b/pkg/commands/stats/historical.go @@ -6,7 +6,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/stats/historical_test.go b/pkg/commands/stats/historical_test.go index fa9473d65..47935d1c7 100644 --- a/pkg/commands/stats/historical_test.go +++ b/pkg/commands/stats/historical_test.go @@ -5,7 +5,7 @@ import ( "encoding/json" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/stats" "github.com/fastly/cli/pkg/mock" diff --git a/pkg/commands/stats/origin_inspector.go b/pkg/commands/stats/origin_inspector.go index aa450dbc8..1173fc9ee 100644 --- a/pkg/commands/stats/origin_inspector.go +++ b/pkg/commands/stats/origin_inspector.go @@ -6,7 +6,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/stats/origin_inspector_test.go b/pkg/commands/stats/origin_inspector_test.go index 31ce3a0fd..59d210388 100644 --- a/pkg/commands/stats/origin_inspector_test.go +++ b/pkg/commands/stats/origin_inspector_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/stats/realtime.go b/pkg/commands/stats/realtime.go index 1df4d400d..a8f36fac6 100644 --- a/pkg/commands/stats/realtime.go +++ b/pkg/commands/stats/realtime.go @@ -6,7 +6,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/argparser" diff --git a/pkg/commands/stats/regions_test.go b/pkg/commands/stats/regions_test.go index ea900e284..5dfaad322 100644 --- a/pkg/commands/stats/regions_test.go +++ b/pkg/commands/stats/regions_test.go @@ -5,7 +5,7 @@ import ( "errors" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/stats" "github.com/fastly/cli/pkg/mock" diff --git a/pkg/commands/stats/template.go b/pkg/commands/stats/template.go index c3f6b3aff..400d1efef 100644 --- a/pkg/commands/stats/template.go +++ b/pkg/commands/stats/template.go @@ -8,7 +8,7 @@ import ( "github.com/mitchellh/mapstructure" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) var blockTemplate = template.Must(template.New("stats_block").Parse( diff --git a/pkg/commands/stats/usage.go b/pkg/commands/stats/usage.go index c3fbba875..5f4779850 100644 --- a/pkg/commands/stats/usage.go +++ b/pkg/commands/stats/usage.go @@ -6,7 +6,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/stats/usage_test.go b/pkg/commands/stats/usage_test.go index 6daaedb0c..347c78656 100644 --- a/pkg/commands/stats/usage_test.go +++ b/pkg/commands/stats/usage_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/app" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/config/config_test.go b/pkg/commands/tls/config/config_test.go index fbf7df748..25e925a82 100644 --- a/pkg/commands/tls/config/config_test.go +++ b/pkg/commands/tls/config/config_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/tls/config" "github.com/fastly/cli/pkg/mock" diff --git a/pkg/commands/tls/config/describe.go b/pkg/commands/tls/config/describe.go index 8625a688a..ef2c060ff 100644 --- a/pkg/commands/tls/config/describe.go +++ b/pkg/commands/tls/config/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/config/list.go b/pkg/commands/tls/config/list.go index 66e72c789..091062f90 100644 --- a/pkg/commands/tls/config/list.go +++ b/pkg/commands/tls/config/list.go @@ -6,7 +6,7 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/config/update.go b/pkg/commands/tls/config/update.go index b8d6f3c18..74e7b4074 100644 --- a/pkg/commands/tls/config/update.go +++ b/pkg/commands/tls/config/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/custom/activation/activation_test.go b/pkg/commands/tls/custom/activation/activation_test.go index dcf4daf52..c1212546c 100644 --- a/pkg/commands/tls/custom/activation/activation_test.go +++ b/pkg/commands/tls/custom/activation/activation_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/tls/custom" sub "github.com/fastly/cli/pkg/commands/tls/custom/activation" diff --git a/pkg/commands/tls/custom/activation/create.go b/pkg/commands/tls/custom/activation/create.go index e5eeaaadb..fb9bcf465 100644 --- a/pkg/commands/tls/custom/activation/create.go +++ b/pkg/commands/tls/custom/activation/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/custom/activation/delete.go b/pkg/commands/tls/custom/activation/delete.go index fb0fd4a59..88d5451cc 100644 --- a/pkg/commands/tls/custom/activation/delete.go +++ b/pkg/commands/tls/custom/activation/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/custom/activation/describe.go b/pkg/commands/tls/custom/activation/describe.go index d80806a72..f3325a207 100644 --- a/pkg/commands/tls/custom/activation/describe.go +++ b/pkg/commands/tls/custom/activation/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/custom/activation/list.go b/pkg/commands/tls/custom/activation/list.go index aafe0ff7c..1ed574f41 100644 --- a/pkg/commands/tls/custom/activation/list.go +++ b/pkg/commands/tls/custom/activation/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/custom/activation/update.go b/pkg/commands/tls/custom/activation/update.go index 1821cfada..35850a6f5 100644 --- a/pkg/commands/tls/custom/activation/update.go +++ b/pkg/commands/tls/custom/activation/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/custom/certificate/certificate_test.go b/pkg/commands/tls/custom/certificate/certificate_test.go index 89f6284b1..fea84cbad 100644 --- a/pkg/commands/tls/custom/certificate/certificate_test.go +++ b/pkg/commands/tls/custom/certificate/certificate_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/tls/custom" sub "github.com/fastly/cli/pkg/commands/tls/custom/certificate" diff --git a/pkg/commands/tls/custom/certificate/create.go b/pkg/commands/tls/custom/certificate/create.go index c5a92182f..4273578b1 100644 --- a/pkg/commands/tls/custom/certificate/create.go +++ b/pkg/commands/tls/custom/certificate/create.go @@ -7,7 +7,7 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/custom/certificate/delete.go b/pkg/commands/tls/custom/certificate/delete.go index 5aad8eeb8..c7f4325d8 100644 --- a/pkg/commands/tls/custom/certificate/delete.go +++ b/pkg/commands/tls/custom/certificate/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/custom/certificate/describe.go b/pkg/commands/tls/custom/certificate/describe.go index 2a030273b..188b70f98 100644 --- a/pkg/commands/tls/custom/certificate/describe.go +++ b/pkg/commands/tls/custom/certificate/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/custom/certificate/list.go b/pkg/commands/tls/custom/certificate/list.go index 4cffe71bc..28a9612df 100644 --- a/pkg/commands/tls/custom/certificate/list.go +++ b/pkg/commands/tls/custom/certificate/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/custom/certificate/update.go b/pkg/commands/tls/custom/certificate/update.go index b816e22b5..b667cdc8e 100644 --- a/pkg/commands/tls/custom/certificate/update.go +++ b/pkg/commands/tls/custom/certificate/update.go @@ -7,7 +7,7 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/custom/domain/domain_test.go b/pkg/commands/tls/custom/domain/domain_test.go index e048023aa..e382d86de 100644 --- a/pkg/commands/tls/custom/domain/domain_test.go +++ b/pkg/commands/tls/custom/domain/domain_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/tls/custom" sub "github.com/fastly/cli/pkg/commands/tls/custom/domain" diff --git a/pkg/commands/tls/custom/domain/list.go b/pkg/commands/tls/custom/domain/list.go index 3840e6159..40349a56b 100644 --- a/pkg/commands/tls/custom/domain/list.go +++ b/pkg/commands/tls/custom/domain/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/custom/privatekey/create.go b/pkg/commands/tls/custom/privatekey/create.go index 6a81969cd..12997d770 100644 --- a/pkg/commands/tls/custom/privatekey/create.go +++ b/pkg/commands/tls/custom/privatekey/create.go @@ -7,7 +7,7 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/custom/privatekey/delete.go b/pkg/commands/tls/custom/privatekey/delete.go index b6291518b..441503c47 100644 --- a/pkg/commands/tls/custom/privatekey/delete.go +++ b/pkg/commands/tls/custom/privatekey/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/custom/privatekey/describe.go b/pkg/commands/tls/custom/privatekey/describe.go index 01ff9644d..84903dba9 100644 --- a/pkg/commands/tls/custom/privatekey/describe.go +++ b/pkg/commands/tls/custom/privatekey/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/custom/privatekey/list.go b/pkg/commands/tls/custom/privatekey/list.go index d113e1aa2..ac3c8de74 100644 --- a/pkg/commands/tls/custom/privatekey/list.go +++ b/pkg/commands/tls/custom/privatekey/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/custom/privatekey/privatekey_test.go b/pkg/commands/tls/custom/privatekey/privatekey_test.go index b0c9672c3..3740fb9ea 100644 --- a/pkg/commands/tls/custom/privatekey/privatekey_test.go +++ b/pkg/commands/tls/custom/privatekey/privatekey_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/tls/custom" sub "github.com/fastly/cli/pkg/commands/tls/custom/privatekey" diff --git a/pkg/commands/tls/platform/create.go b/pkg/commands/tls/platform/create.go index 13dc98ebb..1f07c25f9 100644 --- a/pkg/commands/tls/platform/create.go +++ b/pkg/commands/tls/platform/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/platform/delete.go b/pkg/commands/tls/platform/delete.go index ead31fb8e..6567f9a3e 100644 --- a/pkg/commands/tls/platform/delete.go +++ b/pkg/commands/tls/platform/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/platform/describe.go b/pkg/commands/tls/platform/describe.go index ea109b925..756d3c647 100644 --- a/pkg/commands/tls/platform/describe.go +++ b/pkg/commands/tls/platform/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/platform/list.go b/pkg/commands/tls/platform/list.go index 68948f26c..3ca77d0b0 100644 --- a/pkg/commands/tls/platform/list.go +++ b/pkg/commands/tls/platform/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/platform/platform_test.go b/pkg/commands/tls/platform/platform_test.go index ae941c8d3..2bfde6235 100644 --- a/pkg/commands/tls/platform/platform_test.go +++ b/pkg/commands/tls/platform/platform_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/tls/platform" "github.com/fastly/cli/pkg/mock" diff --git a/pkg/commands/tls/platform/update.go b/pkg/commands/tls/platform/update.go index 6d3514c45..9331deb19 100644 --- a/pkg/commands/tls/platform/update.go +++ b/pkg/commands/tls/platform/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/subscription/create.go b/pkg/commands/tls/subscription/create.go index 059a70ffe..bc739de18 100644 --- a/pkg/commands/tls/subscription/create.go +++ b/pkg/commands/tls/subscription/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/subscription/delete.go b/pkg/commands/tls/subscription/delete.go index d8ebd1175..8e1b68610 100644 --- a/pkg/commands/tls/subscription/delete.go +++ b/pkg/commands/tls/subscription/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tls/subscription/describe.go b/pkg/commands/tls/subscription/describe.go index cf6369a82..35dc8d89a 100644 --- a/pkg/commands/tls/subscription/describe.go +++ b/pkg/commands/tls/subscription/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/subscription/list.go b/pkg/commands/tls/subscription/list.go index 7c4d0bf3e..d49829d1f 100644 --- a/pkg/commands/tls/subscription/list.go +++ b/pkg/commands/tls/subscription/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tls/subscription/subscription_test.go b/pkg/commands/tls/subscription/subscription_test.go index bbd0f39ed..b1cdf5ac1 100644 --- a/pkg/commands/tls/subscription/subscription_test.go +++ b/pkg/commands/tls/subscription/subscription_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/tls/subscription" "github.com/fastly/cli/pkg/mock" diff --git a/pkg/commands/tls/subscription/update.go b/pkg/commands/tls/subscription/update.go index 340f7eb4c..100ece621 100644 --- a/pkg/commands/tls/subscription/update.go +++ b/pkg/commands/tls/subscription/update.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/tools/domain/status.go b/pkg/commands/tools/domain/status.go index f63eb6c3e..540aa8f54 100644 --- a/pkg/commands/tools/domain/status.go +++ b/pkg/commands/tools/domain/status.go @@ -6,8 +6,8 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/tools/status" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/tools/status" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tools/domain/status_test.go b/pkg/commands/tools/domain/status_test.go index fac8514c5..dfa248bbb 100644 --- a/pkg/commands/tools/domain/status_test.go +++ b/pkg/commands/tools/domain/status_test.go @@ -6,8 +6,8 @@ import ( "net/http" "testing" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/tools/status" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/tools/status" "github.com/fastly/cli/pkg/commands/tools" "github.com/fastly/cli/pkg/commands/tools/domain" diff --git a/pkg/commands/tools/domain/suggest.go b/pkg/commands/tools/domain/suggest.go index 832538812..453ce37ea 100644 --- a/pkg/commands/tools/domain/suggest.go +++ b/pkg/commands/tools/domain/suggest.go @@ -7,8 +7,8 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/tools/suggest" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/tools/suggest" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/tools/domain/suggest_test.go b/pkg/commands/tools/domain/suggest_test.go index c33115042..cb23b073c 100644 --- a/pkg/commands/tools/domain/suggest_test.go +++ b/pkg/commands/tools/domain/suggest_test.go @@ -6,8 +6,8 @@ import ( "net/http" "testing" - "github.com/fastly/go-fastly/v15/fastly" - "github.com/fastly/go-fastly/v15/fastly/domainmanagement/v1/tools/suggest" + "github.com/fastly/go-fastly/v16/fastly" + "github.com/fastly/go-fastly/v16/fastly/domainmanagement/v1/tools/suggest" "github.com/fastly/cli/pkg/commands/tools" "github.com/fastly/cli/pkg/commands/tools/domain" diff --git a/pkg/commands/user/create.go b/pkg/commands/user/create.go index 5be44bdbe..dac85a771 100644 --- a/pkg/commands/user/create.go +++ b/pkg/commands/user/create.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/user/delete.go b/pkg/commands/user/delete.go index 34bf46726..61f595397 100644 --- a/pkg/commands/user/delete.go +++ b/pkg/commands/user/delete.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/user/describe.go b/pkg/commands/user/describe.go index 3c6d5908a..b9ba04739 100644 --- a/pkg/commands/user/describe.go +++ b/pkg/commands/user/describe.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/user/list.go b/pkg/commands/user/list.go index 44397f936..b5988f06a 100644 --- a/pkg/commands/user/list.go +++ b/pkg/commands/user/list.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/user/update.go b/pkg/commands/user/update.go index bae2ebe67..28bf9de93 100644 --- a/pkg/commands/user/update.go +++ b/pkg/commands/user/update.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/argparser" "github.com/fastly/cli/pkg/global" diff --git a/pkg/commands/user/user_test.go b/pkg/commands/user/user_test.go index 3d981cb2e..73f64073f 100644 --- a/pkg/commands/user/user_test.go +++ b/pkg/commands/user/user_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" root "github.com/fastly/cli/pkg/commands/user" "github.com/fastly/cli/pkg/mock" diff --git a/pkg/errors/deduce.go b/pkg/errors/deduce.go index 2de89d870..b9b9a9666 100644 --- a/pkg/errors/deduce.go +++ b/pkg/errors/deduce.go @@ -7,7 +7,7 @@ import ( "os" "strings" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // httpStatusError is satisfied by any error that carries an HTTP status code. diff --git a/pkg/errors/deduce_test.go b/pkg/errors/deduce_test.go index 41ebde2ff..6f6897e0a 100644 --- a/pkg/errors/deduce_test.go +++ b/pkg/errors/deduce_test.go @@ -9,7 +9,7 @@ import ( "github.com/fastly/cli/pkg/api/undocumented" "github.com/fastly/cli/pkg/errors" "github.com/fastly/cli/pkg/testutil" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) func TestDeduce(t *testing.T) { diff --git a/pkg/errors/log.go b/pkg/errors/log.go index fb9ade123..d82c45164 100644 --- a/pkg/errors/log.go +++ b/pkg/errors/log.go @@ -11,7 +11,7 @@ import ( "text/template" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // LogPath is the location of the fastly CLI error log. diff --git a/pkg/mock/api.go b/pkg/mock/api.go index 92b36a82d..1ac8d6e01 100644 --- a/pkg/mock/api.go +++ b/pkg/mock/api.go @@ -4,7 +4,7 @@ import ( "context" "crypto/ed25519" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // API is a mock implementation of api.Interface that's used for testing. diff --git a/pkg/mock/client.go b/pkg/mock/client.go index f29dbd70e..8fbad16f5 100644 --- a/pkg/mock/client.go +++ b/pkg/mock/client.go @@ -7,7 +7,7 @@ import ( "io" "net/http" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" ) diff --git a/pkg/mock/fastly_client.go b/pkg/mock/fastly_client.go index da910c59a..a9c293186 100644 --- a/pkg/mock/fastly_client.go +++ b/pkg/mock/fastly_client.go @@ -1,7 +1,7 @@ package mock import ( - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) func NewFastlyClient(httpClient *HTTPClient) (*fastly.Client, error) { diff --git a/pkg/testutil/api.go b/pkg/testutil/api.go index 77eca05c3..6a46b53ee 100644 --- a/pkg/testutil/api.go +++ b/pkg/testutil/api.go @@ -88,7 +88,7 @@ import ( "net/http" "net/http/httptest" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" authcmd "github.com/fastly/cli/pkg/commands/auth" "github.com/fastly/cli/pkg/commands/whoami" diff --git a/pkg/testutil/paginator.go b/pkg/testutil/paginator.go index b7d8c6bf9..34167f5f0 100644 --- a/pkg/testutil/paginator.go +++ b/pkg/testutil/paginator.go @@ -1,7 +1,7 @@ package testutil import ( - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // ServicesPaginator mocks the behaviour of a paginator for services. diff --git a/pkg/testutil/scenarios.go b/pkg/testutil/scenarios.go index 1c728dbec..c8071a1e5 100644 --- a/pkg/testutil/scenarios.go +++ b/pkg/testutil/scenarios.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/app" diff --git a/pkg/text/accesskey.go b/pkg/text/accesskey.go index 9aeb59426..276149857 100644 --- a/pkg/text/accesskey.go +++ b/pkg/text/accesskey.go @@ -5,7 +5,7 @@ import ( "io" "github.com/fastly/cli/pkg/time" - "github.com/fastly/go-fastly/v15/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v16/fastly/objectstorage/accesskeys" ) // PrintAccessKey displays an access key. diff --git a/pkg/text/alerts.go b/pkg/text/alerts.go index 2d134c258..5f8caeeb7 100644 --- a/pkg/text/alerts.go +++ b/pkg/text/alerts.go @@ -5,14 +5,14 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/datadog" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/jira" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/mailinglist" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/opsgenie" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/pagerduty" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/slack" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/alerts/webhook" ) // PrintAlert displays a single alert. diff --git a/pkg/text/backend.go b/pkg/text/backend.go index ffd5360eb..d52053f6e 100644 --- a/pkg/text/backend.go +++ b/pkg/text/backend.go @@ -6,7 +6,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // PrintBackend pretty prints a fastly.Backend structure in verbose format diff --git a/pkg/text/computeacl.go b/pkg/text/computeacl.go index 2e688fcc1..0c295bdf2 100644 --- a/pkg/text/computeacl.go +++ b/pkg/text/computeacl.go @@ -6,7 +6,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly/computeacls" + "github.com/fastly/go-fastly/v16/fastly/computeacls" ) // PrintComputeACL displays a compute ACL. diff --git a/pkg/text/configstore.go b/pkg/text/configstore.go index b1680e4c0..4587e956a 100644 --- a/pkg/text/configstore.go +++ b/pkg/text/configstore.go @@ -8,7 +8,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" fsttime "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/customsignal.go b/pkg/text/customsignal.go index 02638d55b..b9c3b2d42 100644 --- a/pkg/text/customsignal.go +++ b/pkg/text/customsignal.go @@ -5,7 +5,7 @@ import ( "io" "github.com/fastly/cli/pkg/time" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/signals" ) // PrintCustomSignal displays an NGWAF custom signal. diff --git a/pkg/text/dictionary.go b/pkg/text/dictionary.go index 86f51a171..9264e1438 100644 --- a/pkg/text/dictionary.go +++ b/pkg/text/dictionary.go @@ -6,7 +6,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/dictionaryitem.go b/pkg/text/dictionaryitem.go index eb0747433..8cd5450b8 100644 --- a/pkg/text/dictionaryitem.go +++ b/pkg/text/dictionaryitem.go @@ -6,7 +6,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/dictionaryitem_test.go b/pkg/text/dictionaryitem_test.go index 41173f721..88e47b5b5 100644 --- a/pkg/text/dictionaryitem_test.go +++ b/pkg/text/dictionaryitem_test.go @@ -6,7 +6,7 @@ import ( "github.com/fastly/cli/pkg/testutil" "github.com/fastly/cli/pkg/text" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) func TestPrintDictionaryItem(t *testing.T) { diff --git a/pkg/text/dnszone.go b/pkg/text/dnszone.go index 44334346a..9dd0a633a 100644 --- a/pkg/text/dnszone.go +++ b/pkg/text/dnszone.go @@ -7,7 +7,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/dnszones" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/dnszones" ) // PrintDNSZone pretty prints a dnszones.Zone in verbose format to a given diff --git a/pkg/text/healthcheck.go b/pkg/text/healthcheck.go index 25238e80c..a49ffa7dd 100644 --- a/pkg/text/healthcheck.go +++ b/pkg/text/healthcheck.go @@ -6,7 +6,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // PrintHealthCheck pretty prints a fastly.HealthCheck structure in verbose diff --git a/pkg/text/kvstore.go b/pkg/text/kvstore.go index 066073914..f04e7e3d0 100644 --- a/pkg/text/kvstore.go +++ b/pkg/text/kvstore.go @@ -6,7 +6,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/list.go b/pkg/text/list.go index a8eb64244..182e65f4d 100644 --- a/pkg/text/list.go +++ b/pkg/text/list.go @@ -6,7 +6,7 @@ import ( "strings" "github.com/fastly/cli/pkg/time" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/lists" ) // PrintList displays an NGWAF list. diff --git a/pkg/text/redaction.go b/pkg/text/redaction.go index f235c649c..058ee5e3b 100644 --- a/pkg/text/redaction.go +++ b/pkg/text/redaction.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/redactions" ) // PrintRedaction displays a single redaction. diff --git a/pkg/text/resource.go b/pkg/text/resource.go index fbb291afe..1cfa65391 100644 --- a/pkg/text/resource.go +++ b/pkg/text/resource.go @@ -6,7 +6,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/rule.go b/pkg/text/rule.go index a50fd8f30..18e8cc12c 100644 --- a/pkg/text/rule.go +++ b/pkg/text/rule.go @@ -5,7 +5,7 @@ import ( "io" "github.com/fastly/cli/pkg/time" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/rules" ) // PrintRule displays an NGWAF rule. diff --git a/pkg/text/secretstore.go b/pkg/text/secretstore.go index 7ddc98fa3..701dd4845 100644 --- a/pkg/text/secretstore.go +++ b/pkg/text/secretstore.go @@ -7,7 +7,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) // PrintSecretStoresTbl displays store data in a table format. diff --git a/pkg/text/service.go b/pkg/text/service.go index 0b0e6874c..234386fa1 100644 --- a/pkg/text/service.go +++ b/pkg/text/service.go @@ -7,7 +7,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/service_test.go b/pkg/text/service_test.go index c1ad94726..9f726b6fe 100644 --- a/pkg/text/service_test.go +++ b/pkg/text/service_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" "github.com/fastly/cli/pkg/testutil" "github.com/fastly/cli/pkg/text" diff --git a/pkg/text/stats.go b/pkg/text/stats.go index 7c0d47a9a..03d112741 100644 --- a/pkg/text/stats.go +++ b/pkg/text/stats.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/fastly/go-fastly/v15/fastly" + "github.com/fastly/go-fastly/v16/fastly" ) func PrintUsageTbl(out io.Writer, data *fastly.RegionsUsage) { diff --git a/pkg/text/tag.go b/pkg/text/tag.go index 2208a49c8..aeeb3dcef 100644 --- a/pkg/text/tag.go +++ b/pkg/text/tag.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v16/fastly/apisecurity/operations" ) // PrintOperationTag displays an operation tag. diff --git a/pkg/text/threshold.go b/pkg/text/threshold.go index 135068bb5..20b5675e6 100644 --- a/pkg/text/threshold.go +++ b/pkg/text/threshold.go @@ -5,7 +5,7 @@ import ( "io" "time" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/thresholds" ) // PrintThreshold displays a single threshold. diff --git a/pkg/text/tsigkey.go b/pkg/text/tsigkey.go index 7240931df..9745ee206 100644 --- a/pkg/text/tsigkey.go +++ b/pkg/text/tsigkey.go @@ -6,7 +6,7 @@ import ( "github.com/segmentio/textio" - "github.com/fastly/go-fastly/v15/fastly/dns/v1/tsigkeys" + "github.com/fastly/go-fastly/v16/fastly/dns/v1/tsigkeys" ) // PrintTSIGKey pretty prints a tsigkeys.TSIGKey in verbose format to a given diff --git a/pkg/text/virtualpatch.go b/pkg/text/virtualpatch.go index 3bd36f441..bf3b6a9c1 100644 --- a/pkg/text/virtualpatch.go +++ b/pkg/text/virtualpatch.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces/virtualpatches" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces/virtualpatches" ) // PrintVirtualPatch displays a single virtual patch. diff --git a/pkg/text/workspace.go b/pkg/text/workspace.go index 349334c40..4dc404f93 100644 --- a/pkg/text/workspace.go +++ b/pkg/text/workspace.go @@ -6,7 +6,7 @@ import ( "strings" "github.com/fastly/cli/pkg/time" - "github.com/fastly/go-fastly/v15/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v16/fastly/ngwaf/v1/workspaces" ) // PrintWorkspace displays a workspace.