diff --git a/CHANGELOG.md b/CHANGELOG.md index ba770cc53..e2d5c1148 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ - build(deps): `golang.org/x/sys` from 0.42.0 to 0.43.0 ([#1720](https://github.com/fastly/cli/pull/1720)) - build(deps): `github.com/coreos/go-oidc/v3` from 3.17.0 to 3.18.0 ([#1720](https://github.com/fastly/cli/pull/1720)) - build(deps): `github.com/mattn/go-runewidth` from 0.0.22 to 0.0.23 ([#1720](https://github.com/fastly/cli/pull/1720)) +- build(deps): `github.com/fastly/go-fastly/v14` from 13.1.2 to 14.2.0 ([#1722](https://github.com/fastly/cli/pull/1722)) ## [v14.2.0](https://github.com/fastly/cli/releases/tag/v14.2.0) (2026-03-24) diff --git a/go.mod b/go.mod index d01be3561..45958763b 100644 --- a/go.mod +++ b/go.mod @@ -82,6 +82,6 @@ require ( require ( 4d63.com/optional v0.2.0 github.com/creack/pty v1.1.24 - github.com/fastly/go-fastly/v13 v13.1.2 + github.com/fastly/go-fastly/v14 v14.2.0 github.com/mitchellh/go-ps v1.0.0 ) diff --git a/go.sum b/go.sum index 353072b1e..314e54466 100644 --- a/go.sum +++ b/go.sum @@ -29,8 +29,8 @@ github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5/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/v13 v13.1.2 h1:9iSixpDkDSu52bntWqjh+1PT6myNFy0gT0C7ox37r+U= -github.com/fastly/go-fastly/v13 v13.1.2/go.mod h1:wbZ0A4eBJm7GP0hNuHtjeQeTy6zpkbra6zz/QjlLkiI= +github.com/fastly/go-fastly/v14 v14.2.0 h1:v36dy12TFJk+fWsR4ECPwayxHSItjKf6uR0nlE734eg= +github.com/fastly/go-fastly/v14 v14.2.0/go.mod h1:y8i+aF/rOFCAc++u6QLDiHbLV+cMHHkDnXwR5Jq7QVY= 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 93a20a4db..56e55af60 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1c12a0684..8d140a58e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/kingpin" diff --git a/pkg/app/run_test.go b/pkg/app/run_test.go index 2e1174c33..bfcd06c57 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 205f23d0b..65918705e 100644 --- a/pkg/argparser/cmd.go +++ b/pkg/argparser/cmd.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/kingpin" diff --git a/pkg/argparser/flags.go b/pkg/argparser/flags.go index 88350594f..b86ef49a6 100644 --- a/pkg/argparser/flags.go +++ b/pkg/argparser/flags.go @@ -13,7 +13,7 @@ import ( "strconv" "strings" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/kingpin" diff --git a/pkg/argparser/flags_test.go b/pkg/argparser/flags_test.go index 382836f24..e41aa3deb 100644 --- a/pkg/argparser/flags_test.go +++ b/pkg/argparser/flags_test.go @@ -11,7 +11,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 05f620a1d..8b85a494b 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/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly/apisecurity/operations" ) const ( diff --git a/pkg/commands/apisecurity/discoveredoperations/list.go b/pkg/commands/apisecurity/discoveredoperations/list.go index 39ee93928..6481b2c70 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 99c41505f..f9328786f 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 a1723d2da..0f7b8e8eb 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/apisecurity/operations" "github.com/fastly/kingpin" diff --git a/pkg/commands/apisecurity/operations/create.go b/pkg/commands/apisecurity/operations/create.go index f68999e88..bbc51be97 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/apisecurity/operations" "github.com/fastly/kingpin" diff --git a/pkg/commands/apisecurity/operations/delete.go b/pkg/commands/apisecurity/operations/delete.go index e78779bea..cddcc76af 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 bff52ed04..3aa3c4932 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 3faf1ce69..3f6cc3ae1 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 0c5a89b96..838d8d7d8 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/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/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 e8e9ebac6..fd6485ee7 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/apisecurity/operations" "github.com/fastly/kingpin" diff --git a/pkg/commands/apisecurity/tags/create.go b/pkg/commands/apisecurity/tags/create.go index 0b6e51732..c0eac5c4e 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 8b989b385..64b7d742d 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 258285f7a..6d9564d9f 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 c3753050f..6c06edea6 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 3ab6a2375..91f6af18f 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/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly/apisecurity/operations" ) const ( diff --git a/pkg/commands/apisecurity/tags/update.go b/pkg/commands/apisecurity/tags/update.go index 8e97058e7..9826620da 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 52dc84f2f..e533b45af 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 eb8d37c99..9a3c6a101 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 468a982f3..89c31bedd 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 68ad96c8d..e56afe7ec 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 52f5583db..68b700e39 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 63609d3a3..77e3e153b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 3b257040e..beddba9a2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/kingpin" diff --git a/pkg/commands/authtoken/delete.go b/pkg/commands/authtoken/delete.go index c1a0782e4..c6e21d89a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 531cecc33..3f8c61028 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b1d5ca0d3..990334129 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ec9f1b7bc..98707b0cf 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4207b1ce6..3c1ad7209 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/v13/fastly/computeacls" + "github.com/fastly/go-fastly/v14/fastly/computeacls" ) func TestComputeACLCreate(t *testing.T) { diff --git a/pkg/commands/compute/computeacl/create.go b/pkg/commands/compute/computeacl/create.go index bfb18eabc..2ee12c9c7 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/computeacls" + "github.com/fastly/go-fastly/v14/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 15c194eda..f42692a37 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/computeacls" + "github.com/fastly/go-fastly/v14/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 47cc30959..eb1879526 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/computeacls" + "github.com/fastly/go-fastly/v14/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 8aa275fad..f4de9affe 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/computeacls" + "github.com/fastly/go-fastly/v14/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 01429cd55..e51123af2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/computeacls" + "github.com/fastly/go-fastly/v14/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 f61d7d91a..df98631dd 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/computeacls" + "github.com/fastly/go-fastly/v14/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 007e6ef8a..a234fd076 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/computeacls" + "github.com/fastly/go-fastly/v14/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 30a998cd7..e7126854e 100644 --- a/pkg/commands/compute/deploy.go +++ b/pkg/commands/compute/deploy.go @@ -18,7 +18,7 @@ import ( "github.com/kennygrant/sanitize" "github.com/mholt/archiver/v3" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/api/undocumented" diff --git a/pkg/commands/compute/deploy_test.go b/pkg/commands/compute/deploy_test.go index ecf95b953..e6c7c911b 100644 --- a/pkg/commands/compute/deploy_test.go +++ b/pkg/commands/compute/deploy_test.go @@ -12,7 +12,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2b02eb0a6..8a35a781c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 624bab140..e2b54c762 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 cf60a9d45..83c986bf1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 35b1e2744..4ba3cbf83 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 bd6a97603..60029aeb9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 62a606bcc..72481211b 100644 --- a/pkg/commands/compute/setup/kv_store.go +++ b/pkg/commands/compute/setup/kv_store.go @@ -7,7 +7,7 @@ import ( "os" "path/filepath" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/api" "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/compute/setup/secret_store.go b/pkg/commands/compute/setup/secret_store.go index 4256a3940..1af8acbb7 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 76dc61097..07435b67b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 58ca2ceaa..d9dcca72b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1514be6f3..1f8ada080 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4f7639d60..443d5eb8b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b60623370..3671aa4e9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f8f7f7e4b..ff3a08524 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ca1a1dc46..2bfbc4d03 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ad423daff..c62f36eab 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 12b50d9c7..dc5e647b1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c6ce7b99d..486fa3827 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5586dcca1..ac719a832 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5a7adddbe..db6f901c3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 8e02f74e6..84061a519 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1f5bfc13c..d67514da9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2c49a617f..465b2ccc0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 954441e47..4ece1b4d2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 3c4fda62d..20242e448 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 bd4ef1f08..45e2a6e37 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ec296815e..02c04ca7c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b6694fa8a..4d5469c34 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 905b52a29..3f4d852da 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 890b88406..1ddd24522 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 900b08985..98fd70a18 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 907e6d877..d6b3fbe75 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 37b23f6b9..42a96ff02 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 04b534ce3..896d24e76 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/text" ) diff --git a/pkg/commands/dashboard/update.go b/pkg/commands/dashboard/update.go index 92c9dfc33..e88f31170 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/argparser" fsterr "github.com/fastly/cli/pkg/errors" diff --git a/pkg/commands/domain/common.go b/pkg/commands/domain/common.go index d423f98a4..0e90723e4 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/v13/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v14/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 f62c5642b..72ad1996c 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 fbab002c4..339e16522 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 c79d3c6a0..83622a91d 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 6911170cd..53c5f2e28 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/v13/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v14/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 0ab94cdc7..0e6bace2b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 90b04b1de..6eff3208a 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/domainmanagement/v1/domains" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 108362901..e3d759ea2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a5e703a15..2c99ff090 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 155119fe7..4b39a1e23 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f82034297..0e08a9796 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 0bc322917..801f821bb 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ca1838676..eb00834e3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 adf6d9d6e..b8f1113c9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ecd488f97..cc3b5e76b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 66110406d..c658a9fcb 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c7bc7976b..adf3d4d93 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e964668a7..ddd2ec2d5 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 cf5f6b236..79ce3ed39 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 de4b8945b..1ebd27b74 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 70e596fd9..cd33f02f1 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/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/countrylist/create.go b/pkg/commands/ngwaf/countrylist/create.go index 2276fe3f5..674a131b4 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 e67f595ad..ae0ea0b2b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 aadf26c34..ca4e1f9b4 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 3e51068c5..7693d6e24 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 c2a813c3b..47faa589d 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 1dfd3b4b2..c79204464 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 eaf995e1d..8469dc19d 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/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/signals" ) const ( diff --git a/pkg/commands/ngwaf/customsignal/delete.go b/pkg/commands/ngwaf/customsignal/delete.go index 3da782c0b..c65c40454 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 63f3dd08b..7a71960af 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 76a80557d..4f4cb911c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 7d69a8e04..e8b79289b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 bf852ff47..b56716bf7 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 d594c2c26..b3761e0cb 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 456f1af0b..378ad05a5 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 a283c6ebb..88c142560 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/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/iplist/list.go b/pkg/commands/ngwaf/iplist/list.go index 824c6fbec..bce6563b2 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 288f0df3e..9f078162b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 733e113d7..2d0334ee7 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) type ListCreateInput struct { diff --git a/pkg/commands/ngwaf/root.go b/pkg/commands/ngwaf/root.go index b56acbfb8..5d62771e8 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/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 0031e453a..6929b546d 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/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 aa5f69da3..8e1a8435a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/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 d93ef7139..b86c6efa5 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/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 fbd982d34..f0fe7d611 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/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 d97c8c40c..e78518043 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/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/rule/update.go b/pkg/commands/ngwaf/rule/update.go index 9ea1e2d8f..f8816d731 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/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 60aad2fb5..03c519477 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 9765eabcc..2dc2cbb5f 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 e550d5e08..4da776b6f 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 c484fa60f..13ccbc171 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 dbc430dcb..bb97de9f3 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/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/signallist/update.go b/pkg/commands/ngwaf/signallist/update.go index 923972209..345111f9f 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 11ca61b85..acde8f664 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 5553cadf9..1d84cd39b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 f7db7ee70..b4fb9bfbc 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 8aab8aa05..80102a2c5 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 25cdbcb87..476014373 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/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/stringlist/update.go b/pkg/commands/ngwaf/stringlist/update.go index a12320990..402de6691 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 8922fd3f2..150c5bf7b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 876312fad..9062d53dd 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 b093b838e..02916c31c 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 6f1f4fbdd..24829e771 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 680f704f1..7b2424711 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 e914c5bac..db20b38c3 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/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/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 a3279dc6c..edad260c7 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 a29ab5211..228d3b6e1 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/v13/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v14/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 2004691b1..fc307463b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 90e90178b..b0699ae02 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 eed9044f7..c0bf989d6 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 e2252c9aa..1e20d386c 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 0c684ebdd..d9266c84d 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 52289dabd..2a5df0719 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 0b2898cbd..2a8271000 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 56b52135d..c615c6d46 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/v13/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v14/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 b73259299..c315ddd9b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 17ba0e44e..c26090c55 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 3112aa0fe..2603f8c9d 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 e30ec332b..0721f386a 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 ef5245dfb..52b9c1b8f 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 f9e934080..cf27af4b5 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 85a163886..dde463b34 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/v13/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v14/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 4f2fcb851..fbafea1c6 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 b29593c74..1ec0ef8d5 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 586174337..e4a0b4470 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 1ee4b1f53..ce977bbb8 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 527e81cc1..9f08a8e6f 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 847674a15..a8e44c49a 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/v13/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v14/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 a1a1479d9..55622abbf 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 f65de0694..740600bce 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 e8cdeca3a..3fd1f99bd 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 251075b4a..5ccb8b42a 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 7ab1af415..47e40decc 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 d99cb0708..8d2e79c96 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/v13/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v14/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 ed16bce7b..68b87f8f2 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 3da883a32..c55d80ed8 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 85f93d4b6..f708e5aae 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 2ed9c59b8..57260d4a4 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 5c76fa6ca..de4b8d15e 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 8ef993c43..6e4feb05e 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/v13/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v14/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 6be7dd648..b644ab0b6 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 7e23c35d7..d78b7c46e 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 7e311a2c1..701f8b264 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 8be773c6f..0027ac9e9 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 e254f23a8..39a6c7655 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 3eb514d87..bc53734e7 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/v13/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v14/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 81e2331a6..50b02c54a 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 99002f6f7..0bf8474ec 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 bb1fc1772..02b3e5c05 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 1d135f21c..1be1906b6 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 c19e5cd40..8e4e0ecf6 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 56f287964..015b28e02 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 53ffbf032..7a0196ebc 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 a30bdb790..fa3db19bb 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 bf88fce88..22cd748fd 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/v13/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v14/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 1c9714028..9ddb32756 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/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/countrylist/create.go b/pkg/commands/ngwaf/workspace/countrylist/create.go index cb0ad27a2..2a6159866 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 79b13d53f..a47acaef8 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 ef99e7ad8..9b803c426 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 2c22241b5..af513ca18 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 b9fe83976..996f64290 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 d8c1edc9f..e9e3dd77f 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 e31ab27fa..146f19ed5 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 5e27c5139..15b134ffd 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/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/signals" ) const ( diff --git a/pkg/commands/ngwaf/workspace/customsignal/delete.go b/pkg/commands/ngwaf/workspace/customsignal/delete.go index 607c2e3c6..dcfc00882 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 feaff9625..def7cdd0e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 cd94bc936..8764f87b7 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 1f52b52bb..fac12b800 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/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 4e73962f6..05c2b2de2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v14/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 9b9db68e0..3b0c14ad1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v14/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 7b3a2fec1..8549864ac 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 bd6de272e..8da9b537d 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 c8a98c2d9..4600a5f25 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 3a8a60b04..6a4dc5875 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/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/iplist/list.go b/pkg/commands/ngwaf/workspace/iplist/list.go index 501135713..283769493 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 32e26b471..1b5290db9 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 85d3f4142..e16debde2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v14/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 8627ea7b4..089c7d459 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 5422cad5e..48e17e86d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v14/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 059e7b7a3..269bad5db 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 bafcf6001..bd9dc22d9 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/v13/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v14/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 065d7dea3..f1124511c 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 2893949db..91d5139ff 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 a5e32e412..2d805e845 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/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 be62331bc..fff2439f8 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/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 cdbf8a03f..7779b5fb3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/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 3c990b9aa..08d7f8e59 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/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 d848350ba..a3ad4734f 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/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/rule/update.go b/pkg/commands/ngwaf/workspace/rule/update.go index 103bb18fa..2e409f88b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/rules" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/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 437c93c44..a1a8de35b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 f4eae3215..d932dfbe8 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 1d77e542f..fd9cf9cfe 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 1557b9edd..d1c505e46 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 3013a170c..10b3520b6 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/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/signallist/update.go b/pkg/commands/ngwaf/workspace/signallist/update.go index 981a752a1..e9bfc925a 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 1edae3b58..18d491e1b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 689e93de7..9a455a699 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 3272bd54e..a34a07627 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 a93f7ef51..414d82bb3 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 ad69c4ac5..8ca3f746b 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/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/stringlist/update.go b/pkg/commands/ngwaf/workspace/stringlist/update.go index 262563bdf..308cb484d 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 e4e9e7952..652586a07 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 c46cc980d..887f0f926 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 432665ceb..4b56aeea5 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 694d4e20f..165470ec7 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 5cdb674fa..cfa48e810 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/v13/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v14/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 b823d775a..61f902ca5 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 4c8298f81..7257c5443 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 ef131b282..2a84f06f6 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/virtualpatches" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 bf2a83416..c2c350650 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/virtualpatches" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 decc73359..918cfcc75 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/virtualpatches" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 b9b798d12..363037f98 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/v13/fastly/ngwaf/v1/workspaces/virtualpatches" + "github.com/fastly/go-fastly/v14/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 60e2d5c04..f867df868 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 4ece4b23f..9acdfd67d 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 930c9ab54..ea93a78a7 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 7366fdcc3..05cec08e6 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 877761db0..7f4e3b975 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 77f0d940c..63a284cb4 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/v13/fastly/ngwaf/v1/lists" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/scope" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/scope" ) const ( diff --git a/pkg/commands/ngwaf/workspace/workspace_test.go b/pkg/commands/ngwaf/workspace/workspace_test.go index 8f594251b..3e1efc8cf 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/v13/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces" ) const ( diff --git a/pkg/commands/objectstorage/accesskeys/accesskeys_test.go b/pkg/commands/objectstorage/accesskeys/accesskeys_test.go index 3f685cb35..d815bdcb2 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/v13/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v14/fastly/objectstorage/accesskeys" ) const ( diff --git a/pkg/commands/objectstorage/accesskeys/create.go b/pkg/commands/objectstorage/accesskeys/create.go index 66a9bbdc3..26f25010e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v14/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 239037bb3..222ad9046 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v14/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 c3e11aed7..d61a10ba6 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v14/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 e3d6fb233..e6bcbc4d0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" - "github.com/fastly/go-fastly/v13/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v14/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 8c2625853..6e38987e9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c5b9786f5..ce6e214a7 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5ec74fca8..5d539cde2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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/v13/fastly/products/apidiscovery" - "github.com/fastly/go-fastly/v13/fastly/products/botmanagement" - "github.com/fastly/go-fastly/v13/fastly/products/brotlicompression" - "github.com/fastly/go-fastly/v13/fastly/products/domaininspector" - "github.com/fastly/go-fastly/v13/fastly/products/fanout" - "github.com/fastly/go-fastly/v13/fastly/products/imageoptimizer" - "github.com/fastly/go-fastly/v13/fastly/products/logexplorerinsights" - "github.com/fastly/go-fastly/v13/fastly/products/origininspector" - "github.com/fastly/go-fastly/v13/fastly/products/websockets" + "github.com/fastly/go-fastly/v14/fastly/products/apidiscovery" + "github.com/fastly/go-fastly/v14/fastly/products/botmanagement" + "github.com/fastly/go-fastly/v14/fastly/products/brotlicompression" + "github.com/fastly/go-fastly/v14/fastly/products/domaininspector" + "github.com/fastly/go-fastly/v14/fastly/products/fanout" + "github.com/fastly/go-fastly/v14/fastly/products/imageoptimizer" + "github.com/fastly/go-fastly/v14/fastly/products/logexplorerinsights" + "github.com/fastly/go-fastly/v14/fastly/products/origininspector" + "github.com/fastly/go-fastly/v14/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 9da75fc02..2d913f89a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 159d51c69..efcea35b9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 054c3da2b..3635b6870 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 80e80d347..043427898 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e6cf1219a..35e700b3b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/text" ) diff --git a/pkg/commands/secretstore/list.go b/pkg/commands/secretstore/list.go index 1f35dc7cd..6482d40c6 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 20085b15a..75847659e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f098b8600..41a8fa732 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 6cfa6da69..b816f9322 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5aee21dc9..9d7866c44 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 fa9c5eac7..f54b988fa 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) func fmtSecret(s *fastly.Secret) string { diff --git a/pkg/commands/secretstoreentry/list.go b/pkg/commands/secretstoreentry/list.go index bbeba4bae..630e21283 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 296c2d7a8..1430b3d4a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 816f2f7b0..bf2f29976 100644 --- a/pkg/commands/service/acl/acl_test.go +++ b/pkg/commands/service/acl/acl_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f94eab02a..5c98a2e5c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/acl/delete.go b/pkg/commands/service/acl/delete.go index 95da477db..9bc6f9fb3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/acl/describe.go b/pkg/commands/service/acl/describe.go index bddea1ec0..6c4ffeeff 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 74cfac2aa..0e5cc346d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c64baecae..34f7c46ae 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/aclentry/aclentry_test.go b/pkg/commands/service/aclentry/aclentry_test.go index bcfeb517b..0140e8be2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2c205b61d..0f08264cf 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 bea14e41a..9560a3b66 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b1d39e7b5..4f154854b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 8b53b69b1..5981563bb 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 8dfbb6106..0a8f0f26d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 db839b2a7..ce1e03046 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) func TestAlertsCreate(t *testing.T) { diff --git a/pkg/commands/service/alert/common.go b/pkg/commands/service/alert/common.go index f6c3667c0..8ea0358df 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 74d32702e..d3efd4d82 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ed51a8190..f3c4e0571 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 11436e970..05e73f305 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 560fb36a7..beaeb8c7f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 41e3586cb..8f81df022 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f1d4e09f4..b7ed4a34c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4e79b15be..01e5620a0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 05e6c2587..591b790e8 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c38b42335..ea74e61c9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 469872c07..d91684983 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 0076916af..ccf513b33 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 0a28897e4..b404f115a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 072cf3bd4..cbd8813ca 100644 --- a/pkg/commands/service/backend/backend_test.go +++ b/pkg/commands/service/backend/backend_test.go @@ -8,7 +8,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f3704c27f..e031a57dd 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/backend/delete.go b/pkg/commands/service/backend/delete.go index b7aa1559a..90d8110c3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/backend/describe.go b/pkg/commands/service/backend/describe.go index 9b8fa662c..beb3bb315 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e12bc488c..1ba2f66a3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 16a6b65f3..31f10c7a6 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/create.go b/pkg/commands/service/create.go index 537698230..1085604af 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 00b97c28e..8aa743cbe 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 3e5e2b6c6..c8bd475c9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e16672165..09e5504ae 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/dictionary/delete.go b/pkg/commands/service/dictionary/delete.go index 1dd9d5c93..a30cad029 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/dictionary/describe.go b/pkg/commands/service/dictionary/describe.go index 46fb53b6c..5b6862f8d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 218014822..6aa5489eb 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 775505227..b7921a6a2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5be6ec3f6..12d94bc68 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/dictionaryentry/create.go b/pkg/commands/service/dictionaryentry/create.go index e2f44ff8d..653b8e96b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 9de1f5293..3adb53791 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 6e4f2eb40..d4e37141a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4d2911d40..a16f5abfa 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) func TestDictionaryItemDescribe(t *testing.T) { diff --git a/pkg/commands/service/dictionaryentry/list.go b/pkg/commands/service/dictionaryentry/list.go index e79eafe90..59c8c04f3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 430b903e2..0a634d36b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 0ffcd549d..00e6c21a5 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/domain/delete.go b/pkg/commands/service/domain/delete.go index af65f0d98..d64af16b5 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/domain/describe.go b/pkg/commands/service/domain/describe.go index e49bf8021..a751d445d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2bee215d0..cab57dabf 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 11a45fe90..6003e95dd 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 7d77bbcb5..c158bdd6f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/domain/validate.go b/pkg/commands/service/domain/validate.go index a0991bc84..149189278 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 053da234b..a8202b914 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/healthcheck/delete.go b/pkg/commands/service/healthcheck/delete.go index 12291e907..9a3825666 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/healthcheck/describe.go b/pkg/commands/service/healthcheck/describe.go index 5af61b97d..bd37b409e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 50542bb48..32dcc1b44 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 6ebf9e825..949bf3eb9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 30838e552..9cd28eedd 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/imageoptimizerdefaults/get.go b/pkg/commands/service/imageoptimizerdefaults/get.go index e261f1dc6..3aa8f6020 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1f6820442..48fd47857 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 d6fd22e5d..ead6c405c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a1f5493ec..539a2670a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 320de6b1d..82c2186a0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2958f176d..6be1469e3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e5b397c01..79323630a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/azureblob/delete.go b/pkg/commands/service/logging/azureblob/delete.go index 7a6c2f98b..541eb4efe 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/azureblob/describe.go b/pkg/commands/service/logging/azureblob/describe.go index 20a1198cb..29c6d045e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 18209e9b4..e4c9ea1ca 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 35574848e..bba20712a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 38d92f92a..7918a4f65 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4f5bc11b5..548115193 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 9bdf66188..32fe182ea 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/bigquery/delete.go b/pkg/commands/service/logging/bigquery/delete.go index 35683420e..1fbd6331c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/bigquery/describe.go b/pkg/commands/service/logging/bigquery/describe.go index 128a8edf7..7c9793e1e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 59f6a0966..011d8bab3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b30c4218a..5232d845e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 6abdc3e5e..f370639fc 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 687131245..5a4c1abe2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5080bae1a..13666e7ad 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/cloudfiles/delete.go b/pkg/commands/service/logging/cloudfiles/delete.go index 7991cb403..08900bbe0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/cloudfiles/describe.go b/pkg/commands/service/logging/cloudfiles/describe.go index cb1abe6c4..2732ce8b0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 3bb302c82..8a6b8ca52 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 aa1b1c28f..d19a5ed8e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/datadog/create.go b/pkg/commands/service/logging/datadog/create.go index 557c1fa68..8d38f19f0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 3923623f3..692b4454c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1a73e4405..3016f74a5 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ead6aa46d..6388fa7e3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/datadog/describe.go b/pkg/commands/service/logging/datadog/describe.go index d77c13d35..42ef9d721 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2079fce92..9733a9868 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a91e90a88..62f594000 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/digitalocean/create.go b/pkg/commands/service/logging/digitalocean/create.go index 05132f918..cd64195fb 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/digitalocean/delete.go b/pkg/commands/service/logging/digitalocean/delete.go index e103810a9..0c324b8e2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/digitalocean/describe.go b/pkg/commands/service/logging/digitalocean/describe.go index 167f9d61e..35a3a3063 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 d2e7f073c..7d678d086 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b97709284..be657c9b2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 49874a394..06db753b6 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f30da3f13..601d0d002 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/elasticsearch/create.go b/pkg/commands/service/logging/elasticsearch/create.go index 6954e6582..acd3dfacc 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/elasticsearch/delete.go b/pkg/commands/service/logging/elasticsearch/delete.go index 3d79a4223..d14bde630 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/elasticsearch/describe.go b/pkg/commands/service/logging/elasticsearch/describe.go index 7051dd8f4..5e5f420cc 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 509e1c962..ae6d149b1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f8ab67d30..802ac7a13 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 81d93211c..acd98ce1d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 012ea0993..ca920016f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/ftp/create.go b/pkg/commands/service/logging/ftp/create.go index 479d67fbe..9cfcf0ebc 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/ftp/delete.go b/pkg/commands/service/logging/ftp/delete.go index d117d1129..287e192ec 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/ftp/describe.go b/pkg/commands/service/logging/ftp/describe.go index f6793870c..915bfe0e1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 0f9264db9..3bd773817 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4a493ae7e..d448360a9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5894718d7..98945de72 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ff0faaa16..21899cacc 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/gcs/create.go b/pkg/commands/service/logging/gcs/create.go index 01296fc93..934813dde 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/gcs/delete.go b/pkg/commands/service/logging/gcs/delete.go index bcec4ce0f..36ec60ec4 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/gcs/describe.go b/pkg/commands/service/logging/gcs/describe.go index 39ae65248..381cf181d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4ab2e90f2..ea57b1369 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 624fe4346..7395fb97d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 621ddfe83..6e75bbb47 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e072efc62..a2d5d4df0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/googlepubsub/create.go b/pkg/commands/service/logging/googlepubsub/create.go index ad237be8e..d51ad363d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/googlepubsub/delete.go b/pkg/commands/service/logging/googlepubsub/delete.go index d031afe7e..495d6d1a9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/googlepubsub/describe.go b/pkg/commands/service/logging/googlepubsub/describe.go index abef4a8c0..a7f1e327a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a42230678..d5f64dc2f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 d4941ddda..ffb4348ab 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 799584d48..c025243a2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 6a53d6efd..aed5fdcda 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/grafanacloudlogs/create.go b/pkg/commands/service/logging/grafanacloudlogs/create.go index 088107600..0a41faa7c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 18ec0c034..4760afe3c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/grafanacloudlogs/describe.go b/pkg/commands/service/logging/grafanacloudlogs/describe.go index 5b6fe810a..5de2afaa8 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a9acf5c76..8f6363fb4 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 0fc344d16..9ee6a8d02 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5ca9ac887..a201522c9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 50bc26774..a6757de40 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/heroku/create.go b/pkg/commands/service/logging/heroku/create.go index fa3ff41c8..e303b0240 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/heroku/delete.go b/pkg/commands/service/logging/heroku/delete.go index 4ca60531b..d6c0a68ab 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/heroku/describe.go b/pkg/commands/service/logging/heroku/describe.go index c05f6a748..635ca03b7 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a4a2d74c0..0a6a3ff85 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 907722f36..81a519ecc 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a7f1b61a7..ac5256439 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 32b65ecbb..e9b065516 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/honeycomb/create.go b/pkg/commands/service/logging/honeycomb/create.go index bb0cc7b22..174bdc169 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/honeycomb/delete.go b/pkg/commands/service/logging/honeycomb/delete.go index 12590c49b..baccaaeec 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/honeycomb/describe.go b/pkg/commands/service/logging/honeycomb/describe.go index 39c92bfb2..4b9707c14 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ae847d31e..c38d352b8 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a98b528fc..ebb57c09c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4b1c02043..e585a17ae 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 af568fd0d..719a0ded7 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/https/create.go b/pkg/commands/service/logging/https/create.go index 0a265ee41..76d5de633 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/https/delete.go b/pkg/commands/service/logging/https/delete.go index 827f40ddf..6969cead1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/https/describe.go b/pkg/commands/service/logging/https/describe.go index 990e9187b..0370caeef 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e327e65f6..b982539ab 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 76c653229..504341b4e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 834b9491c..a6f67e1a8 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e699a7914..a054897a9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kafka/create.go b/pkg/commands/service/logging/kafka/create.go index 9e2a7f753..f4fc1c298 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kafka/delete.go b/pkg/commands/service/logging/kafka/delete.go index 8c369e787..fe2a4d2c9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kafka/describe.go b/pkg/commands/service/logging/kafka/describe.go index f52c52ad5..d71c7fea4 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4a7110f5a..0e594c42e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 0c48fdf40..fb37d6f02 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c1f078b66..6e83ff5c4 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 94ce9f0d6..9c1118db1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kinesis/create.go b/pkg/commands/service/logging/kinesis/create.go index 8afbedd66..b60670b1d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kinesis/delete.go b/pkg/commands/service/logging/kinesis/delete.go index afa2842e6..9dfdf129d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/kinesis/describe.go b/pkg/commands/service/logging/kinesis/describe.go index 3e9e1f20e..ae6f16b20 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 adb9da49e..a4232596b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a1acc075c..81994100a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 697ae76e8..e52238a09 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a2aa29475..fa3ced14d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/loggly/create.go b/pkg/commands/service/logging/loggly/create.go index 8559a75df..f8c8d3eaf 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/loggly/delete.go b/pkg/commands/service/logging/loggly/delete.go index 70501ecf8..b6577eb00 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/loggly/describe.go b/pkg/commands/service/logging/loggly/describe.go index ced5ea9e7..5a1df5908 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 012ccfd3f..586e25734 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 25660f86e..c0ab778bf 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c235d3621..f5f55da57 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 23c5fcce2..2e312d011 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/logshuttle/create.go b/pkg/commands/service/logging/logshuttle/create.go index f829c091d..5413c2116 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/logshuttle/delete.go b/pkg/commands/service/logging/logshuttle/delete.go index 162a2650b..1af11fde1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/logshuttle/describe.go b/pkg/commands/service/logging/logshuttle/describe.go index 2e1a86576..45bf055da 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 d4b731df9..0589c7e33 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 6eb43a897..c221781f7 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 340da4c47..cb323124a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 959773f15..efc91a272 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelic/create.go b/pkg/commands/service/logging/newrelic/create.go index 2bfdc6915..5e806846a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelic/delete.go b/pkg/commands/service/logging/newrelic/delete.go index f4249bec6..91f6575e5 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelic/describe.go b/pkg/commands/service/logging/newrelic/describe.go index 39805b512..3ba8e7d22 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ffc8327dd..fc7400e21 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 202dfe80a..5016ffc93 100644 --- a/pkg/commands/service/logging/newrelic/newrelic_test.go +++ b/pkg/commands/service/logging/newrelic/newrelic_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 19dc90c91..5d72c2715 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelicotlp/create.go b/pkg/commands/service/logging/newrelicotlp/create.go index 2bb5619a6..5eb40d065 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelicotlp/delete.go b/pkg/commands/service/logging/newrelicotlp/delete.go index 11da3ccce..90ac2c789 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/newrelicotlp/describe.go b/pkg/commands/service/logging/newrelicotlp/describe.go index 245633dfa..3ab9c9dc0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 45b672824..6361e137f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1c43824d1..92d888292 100644 --- a/pkg/commands/service/logging/newrelicotlp/newrelicotlp_test.go +++ b/pkg/commands/service/logging/newrelicotlp/newrelicotlp_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 6f8b3a17b..2b56c817c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/openstack/create.go b/pkg/commands/service/logging/openstack/create.go index 2038e7a48..3a09f84aa 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/openstack/delete.go b/pkg/commands/service/logging/openstack/delete.go index 2e1ae9824..0db915bcc 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/openstack/describe.go b/pkg/commands/service/logging/openstack/describe.go index fac26372f..d2666d748 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 340c0b9ba..0e8f9fc01 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5eec4c27c..3d676c98c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 6995d0dba..3b665f944 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a10c1fae0..190b7f7e3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/papertrail/create.go b/pkg/commands/service/logging/papertrail/create.go index 4c65c3437..a161fc3ba 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/papertrail/delete.go b/pkg/commands/service/logging/papertrail/delete.go index 5967268c6..4d5f5e929 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/papertrail/describe.go b/pkg/commands/service/logging/papertrail/describe.go index 2d695a189..bfcf1f459 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 7562a8661..a4efc3c17 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b0e495b22..6c6513292 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ab34bca39..7473f2d6f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ba74ed26d..6a9c160db 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/s3/create.go b/pkg/commands/service/logging/s3/create.go index 189c25e48..ebfc4dee2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/s3/delete.go b/pkg/commands/service/logging/s3/delete.go index 575c6548c..3907ab0d9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/s3/describe.go b/pkg/commands/service/logging/s3/describe.go index 6abdeb50f..abb164537 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a7d5b6cfe..0b434b0e4 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a39a34d09..7e8084a0c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 924ada888..516ad4e75 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 d5ddc405f..24d7e44e4 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/scalyr/create.go b/pkg/commands/service/logging/scalyr/create.go index 4ece0c6ef..57fa5ebc7 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/scalyr/delete.go b/pkg/commands/service/logging/scalyr/delete.go index c7b1f653a..06edd88ff 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/scalyr/describe.go b/pkg/commands/service/logging/scalyr/describe.go index e42aca37d..87ebacb91 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 035516c05..f48d176c6 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 8d39a556e..9df630455 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 bb4e6fad1..064d6abb6 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ea544c4e4..d4ddb1d22 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sftp/create.go b/pkg/commands/service/logging/sftp/create.go index 232541cb1..23eac5b81 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sftp/delete.go b/pkg/commands/service/logging/sftp/delete.go index f7da024a7..86a9e617e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sftp/describe.go b/pkg/commands/service/logging/sftp/describe.go index bd056df40..a303db345 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 dfb797b73..cf4574f0b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b30ca3eeb..a350b8886 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1989f4b77..cb82ca26c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4c35878c5..6335fdb44 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/splunk/create.go b/pkg/commands/service/logging/splunk/create.go index 9b4611d17..0811beed1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/splunk/delete.go b/pkg/commands/service/logging/splunk/delete.go index 5e4814a18..d123e43c0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/splunk/describe.go b/pkg/commands/service/logging/splunk/describe.go index eda06f681..835b0e2ee 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 0cbc200c0..089b116a2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2ffeecf80..c73b8f6d6 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 3f865529f..f84e2b99f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1b831bb52..0fcb4c21d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sumologic/create.go b/pkg/commands/service/logging/sumologic/create.go index fd215c080..3768cd98e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sumologic/delete.go b/pkg/commands/service/logging/sumologic/delete.go index 6f5446af3..ce8203e79 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/sumologic/describe.go b/pkg/commands/service/logging/sumologic/describe.go index 4e7b0f475..298e33063 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 7192ba2ab..80e4c420d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5c3d0abc3..e3bd513fb 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b277a5e3d..593255983 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 62dbfb178..da4af9d9c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/syslog/create.go b/pkg/commands/service/logging/syslog/create.go index 4d657c0ac..866bc97dc 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/syslog/delete.go b/pkg/commands/service/logging/syslog/delete.go index 52b87d089..44aeb1f74 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/logging/syslog/describe.go b/pkg/commands/service/logging/syslog/describe.go index 3bcb68e34..3f6824e43 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 31207e1ab..8af186a17 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 d85979969..7c359b615 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5d2a3b458..b938166d5 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 97cd33002..aa59c2996 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/purge/purge.go b/pkg/commands/service/purge/purge.go index 1f8e77c12..6d87f458f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ddbd647cd..878578e47 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 0c1317351..3397e96b8 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/ratelimit/delete.go b/pkg/commands/service/ratelimit/delete.go index da712ae9a..02b8c9cd6 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 16f3b2e17..f2bcce783 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 9cabb83a1..326f80b6a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b5c8fc42a..8ac03e9f3 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c24cd26e5..003d08e5d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f33a67392..42cab2131 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/resourcelink/delete.go b/pkg/commands/service/resourcelink/delete.go index 143b1333b..eb1718be4 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/resourcelink/describe.go b/pkg/commands/service/resourcelink/describe.go index 2198a6c13..4da4ea6e2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 486fd488d..a4de92da8 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1c63153af..5e3982f08 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 27e2dfccc..7d6298257 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/search.go b/pkg/commands/service/search.go index 3a4ca8493..355b20505 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 50359a45d..9fc3a3fab 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2a83d299c..51da8320a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f73ae5b50..594fc2350 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e497f3275..2cc700721 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/condition/delete.go b/pkg/commands/service/vcl/condition/delete.go index ac4fc64ca..57fcf9d7a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/condition/describe.go b/pkg/commands/service/vcl/condition/describe.go index c7d4d2539..f85db165e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1075d93ab..3e8c45721 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5df4d2755..857d35425 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/custom/create.go b/pkg/commands/service/vcl/custom/create.go index 7e24422c6..90207ecb0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2f6f8a44b..0f86cf675 100644 --- a/pkg/commands/service/vcl/custom/custom_test.go +++ b/pkg/commands/service/vcl/custom/custom_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 eb385aaf5..8a409ccc1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/custom/describe.go b/pkg/commands/service/vcl/custom/describe.go index 25fd2ae1c..e2973d9d1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b950489a9..862c1b0bf 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 8178d7350..44cbc0546 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/describe.go b/pkg/commands/service/vcl/describe.go index beb236011..a25dd2e50 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 0b0d93b40..461eb029c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/snippet/delete.go b/pkg/commands/service/vcl/snippet/delete.go index 1eed6198c..968d4a5eb 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/snippet/describe.go b/pkg/commands/service/vcl/snippet/describe.go index dd7cd81aa..d555700b2 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ffcf615b2..81818c431 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 9fb9c62b2..c375d6911 100644 --- a/pkg/commands/service/vcl/snippet/snippet_test.go +++ b/pkg/commands/service/vcl/snippet/snippet_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 9fe0c7011..32f75a32c 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/vcl/vcl_test.go b/pkg/commands/service/vcl/vcl_test.go index 99ecc635c..203df9678 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 97c0001eb..d97c0ccec 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/version/clone.go b/pkg/commands/service/version/clone.go index 1f269fd76..7ba99dbc0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5087c6f18..1ab0963f0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/version/list.go b/pkg/commands/service/version/list.go index 3686b6090..a9e9ad24b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c89ac330d..572698753 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/version/serviceversion_test.go b/pkg/commands/service/version/serviceversion_test.go index 9677a6107..424cac1a6 100644 --- a/pkg/commands/service/version/serviceversion_test.go +++ b/pkg/commands/service/version/serviceversion_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4b755561e..f511ac763 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/version/unstage.go b/pkg/commands/service/version/unstage.go index e818fcf9f..ed24f03ba 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "4d63.com/optional" diff --git a/pkg/commands/service/version/update.go b/pkg/commands/service/version/update.go index d44e81baf..03700f6f6 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 765346e25..b930e2379 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 526ad5e3f..d3d9367ce 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e6d3df267..c990df1e1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 3ef33ffa8..d17c91bcb 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ddd93262c..5bfdae45f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 42e8ece6f..8a7d9a07f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 dbbc3d54e..f89c2023f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c1dd2d27f..2495d7c39 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c9ccc504d..f39dd484d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 72716efe8..acb61f3e4 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 df3b4f385..fb368adde 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ab72a8541..2dd3faaa5 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 fc8f640ec..1c116826b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b84f8f48d..ec1f7770f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 7f14f75ab..a4f2c207f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 24263df17..b3bde3592 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2b2879048..c28415cf1 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5ec56bc56..763f85598 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 1c535e315..0978adb73 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 91f4e8ced..c871e08d0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 7fa57813b..f653a2715 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 87b655bd1..464ff2c2f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 befc13a13..c09517dbc 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 fa63e590f..69ed22274 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ccce70f95..251bfac36 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 c647d663a..2aee41c0e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 021b4bb6a..4e41007cf 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4175d69ff..f4d49f689 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 51b64747b..f459fe72e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ecb83d5c1..a34d99fb4 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4d7b58590..e859bc69e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 25e65b625..915db9644 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f0483f9cf..86d75fef7 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 23f352a0e..8620dc45f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 172b9a3f3..c3fba6a8b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4ee588d65..e04397e22 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 36f595602..7c521c15b 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 7219cb8cd..c66ff46d0 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 07d3714ea..5fa5d1248 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 fc0df62de..29c9acc6f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 2e2fe7a08..7e7cb3c14 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 386b2f09c..05099ae76 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 e4dc44206..45bbadff4 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 6dce470f1..8633fba2a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 71bb2755e..3f56b6880 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 80c75d808..738558acd 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 a2dd37032..052a30a06 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 447bb3360..edcf7b80a 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 183e1e74b..1cec53d28 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 f5eb209d9..af7b7c6ef 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5720e7412..4694ebdd1 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/domainmanagement/v1/tools/status" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 491746322..a70424a80 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/domainmanagement/v1/tools/status" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 0495f68b9..b1ce1b952 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/domainmanagement/v1/tools/suggest" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 f55bc9311..ac38fb74b 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/v13/fastly" - "github.com/fastly/go-fastly/v13/fastly/domainmanagement/v1/tools/suggest" + "github.com/fastly/go-fastly/v14/fastly" + "github.com/fastly/go-fastly/v14/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 3e7374f6f..e7a15ba28 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 beff0b498..c4546079d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 7991af968..ec980e356 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 b62d46731..26c8258cf 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 d2a68b0ed..35a4d920d 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 7e7edb6e9..b9720841e 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 778635348..f32575889 100644 --- a/pkg/errors/deduce.go +++ b/pkg/errors/deduce.go @@ -7,7 +7,7 @@ import ( "os" "strings" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ae88c3bd4..c5ff621f5 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) func TestDeduce(t *testing.T) { diff --git a/pkg/errors/log.go b/pkg/errors/log.go index c7d6d57f5..4b8bf2324 100644 --- a/pkg/errors/log.go +++ b/pkg/errors/log.go @@ -11,7 +11,7 @@ import ( "text/template" "time" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) // LogPath is the location of the fastly CLI error log. diff --git a/pkg/mock/api.go b/pkg/mock/api.go index a3f4f1b40..5803a0c29 100644 --- a/pkg/mock/api.go +++ b/pkg/mock/api.go @@ -4,7 +4,7 @@ import ( "context" "crypto/ed25519" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 4a5cfb138..597915d5a 100644 --- a/pkg/mock/client.go +++ b/pkg/mock/client.go @@ -7,7 +7,7 @@ import ( "io" "net/http" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/api" ) diff --git a/pkg/testutil/api.go b/pkg/testutil/api.go index bcad32623..a4761a354 100644 --- a/pkg/testutil/api.go +++ b/pkg/testutil/api.go @@ -7,7 +7,7 @@ import ( "net/http" "net/http/httptest" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 3a70c9130..7eda4df0a 100644 --- a/pkg/testutil/paginator.go +++ b/pkg/testutil/paginator.go @@ -1,7 +1,7 @@ package testutil import ( - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) // ServicesPaginator mocks the behaviour of a paginator for services. diff --git a/pkg/testutil/scenarios.go b/pkg/testutil/scenarios.go index e4c2b8f85..9b575df2f 100644 --- a/pkg/testutil/scenarios.go +++ b/pkg/testutil/scenarios.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/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 ed420f981..33a3bf568 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/v13/fastly/objectstorage/accesskeys" + "github.com/fastly/go-fastly/v14/fastly/objectstorage/accesskeys" ) // PrintAccessKey displays an access key. diff --git a/pkg/text/alerts.go b/pkg/text/alerts.go index bf77b0fc2..49292770d 100644 --- a/pkg/text/alerts.go +++ b/pkg/text/alerts.go @@ -5,14 +5,14 @@ import ( "io" "strings" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/datadog" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/jira" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/mailinglist" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/opsgenie" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/pagerduty" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/slack" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/alerts/webhook" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/alerts/datadog" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/alerts/jira" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/alerts/mailinglist" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/alerts/microsoftteams" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/alerts/opsgenie" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/alerts/pagerduty" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/alerts/slack" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/alerts/webhook" ) // PrintAlert displays a single alert. diff --git a/pkg/text/backend.go b/pkg/text/backend.go index fb86696c6..28f21a718 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) // PrintBackend pretty prints a fastly.Backend structure in verbose format diff --git a/pkg/text/computeacl.go b/pkg/text/computeacl.go index 836568f2d..a2ead9f61 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/v13/fastly/computeacls" + "github.com/fastly/go-fastly/v14/fastly/computeacls" ) // PrintComputeACL displays a compute ACL. diff --git a/pkg/text/configstore.go b/pkg/text/configstore.go index d503115c0..c6e41c8eb 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" fsttime "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/customsignal.go b/pkg/text/customsignal.go index af196dbf9..64ccf2952 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/v13/fastly/ngwaf/v1/signals" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/signals" ) // PrintCustomSignal displays an NGWAF custom signal. diff --git a/pkg/text/dictionary.go b/pkg/text/dictionary.go index eccd3b16a..f843847f8 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/dictionaryitem.go b/pkg/text/dictionaryitem.go index 146bf5822..17e9e5921 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/dictionaryitem_test.go b/pkg/text/dictionaryitem_test.go index 5f0b536b4..0c4ff8403 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) func TestPrintDictionaryItem(t *testing.T) { diff --git a/pkg/text/healthcheck.go b/pkg/text/healthcheck.go index b4d027f0b..3a45c0db7 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) // PrintHealthCheck pretty prints a fastly.HealthCheck structure in verbose diff --git a/pkg/text/kvstore.go b/pkg/text/kvstore.go index 6ed5786d7..bad7fe20f 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/list.go b/pkg/text/list.go index 72ed245a0..e9868d118 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/v13/fastly/ngwaf/v1/lists" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/lists" ) // PrintList displays an NGWAF list. diff --git a/pkg/text/redaction.go b/pkg/text/redaction.go index 121860ccb..53dae45d4 100644 --- a/pkg/text/redaction.go +++ b/pkg/text/redaction.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/redactions" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/redactions" ) // PrintRedaction displays a single redaction. diff --git a/pkg/text/resource.go b/pkg/text/resource.go index 4358a5c8e..c2723fee9 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/rule.go b/pkg/text/rule.go index 8f5fd0f8d..eb96f367a 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/v13/fastly/ngwaf/v1/rules" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/rules" ) // PrintRule displays an NGWAF rule. diff --git a/pkg/text/secretstore.go b/pkg/text/secretstore.go index cb7daf522..77db9ec66 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) // PrintSecretStoresTbl displays store data in a table format. diff --git a/pkg/text/service.go b/pkg/text/service.go index 4fdb391c8..ca8382ffb 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/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" "github.com/fastly/cli/pkg/time" ) diff --git a/pkg/text/service_test.go b/pkg/text/service_test.go index 2a5d7b14f..92c87d4cd 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/v13/fastly" + "github.com/fastly/go-fastly/v14/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 5b0759674..a61ad1b6c 100644 --- a/pkg/text/stats.go +++ b/pkg/text/stats.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "github.com/fastly/go-fastly/v13/fastly" + "github.com/fastly/go-fastly/v14/fastly" ) func PrintUsageTbl(out io.Writer, data *fastly.RegionsUsage) { diff --git a/pkg/text/tag.go b/pkg/text/tag.go index e420ab55b..a617f4666 100644 --- a/pkg/text/tag.go +++ b/pkg/text/tag.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v13/fastly/apisecurity/operations" + "github.com/fastly/go-fastly/v14/fastly/apisecurity/operations" ) // PrintOperationTag displays an operation tag. diff --git a/pkg/text/threshold.go b/pkg/text/threshold.go index 32df803ba..b159dbccf 100644 --- a/pkg/text/threshold.go +++ b/pkg/text/threshold.go @@ -5,7 +5,7 @@ import ( "io" "time" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/thresholds" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/thresholds" ) // PrintThreshold displays a single threshold. diff --git a/pkg/text/virtualpatch.go b/pkg/text/virtualpatch.go index 988ff0a8f..f2fcd6c06 100644 --- a/pkg/text/virtualpatch.go +++ b/pkg/text/virtualpatch.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/fastly/go-fastly/v13/fastly/ngwaf/v1/workspaces/virtualpatches" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces/virtualpatches" ) // PrintVirtualPatch displays a single virtual patch. diff --git a/pkg/text/workspace.go b/pkg/text/workspace.go index fb99aff75..2a9e83da6 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/v13/fastly/ngwaf/v1/workspaces" + "github.com/fastly/go-fastly/v14/fastly/ngwaf/v1/workspaces" ) // PrintWorkspace displays a workspace.