diff --git a/.github/workflows/core-pipeline-dev.yml b/.github/workflows/core-pipeline-dev.yml index 68d922fc..815e1a23 100644 --- a/.github/workflows/core-pipeline-dev.yml +++ b/.github/workflows/core-pipeline-dev.yml @@ -72,7 +72,7 @@ jobs: fi - name: Check changed files - uses: tj-actions/verify-changed-files@v16 + uses: tj-actions/verify-changed-files@v17 id: check-changed-files with: files: | diff --git a/.github/workflows/prep-internal-release.yml b/.github/workflows/prep-internal-release.yml index bca04251..a4daccfe 100644 --- a/.github/workflows/prep-internal-release.yml +++ b/.github/workflows/prep-internal-release.yml @@ -51,7 +51,7 @@ jobs: sed -i "s/version =.*$/version = \"${VERSION}\"/g" version.go - name: Check changed files - uses: tj-actions/verify-changed-files@v14 + uses: tj-actions/verify-changed-files@v17 id: check-changed-files - name: Run step only when any of the files change diff --git a/LICENSE b/LICENSE index ca2ee048..fa36729a 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2023 Solace Corporation + Copyright 2024 Solace Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cmd/broker/client.go b/cmd/broker/client.go index 846d0ca1..03f779cc 100644 --- a/cmd/broker/client.go +++ b/cmd/broker/client.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -18,7 +18,7 @@ package broker import ( "os" "strings" - "terraform-provider-solacebroker/cmd/command" + terraform "terraform-provider-solacebroker/cmd/command" "terraform-provider-solacebroker/internal/broker" "terraform-provider-solacebroker/internal/semp" "time" diff --git a/cmd/command/configgenerator.go b/cmd/command/configgenerator.go index e120756e..c9540289 100644 --- a/cmd/command/configgenerator.go +++ b/cmd/command/configgenerator.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -19,7 +19,6 @@ import ( "context" "errors" "fmt" - "golang.org/x/exp/slices" "net/http" "os" "regexp" @@ -27,6 +26,8 @@ import ( internalbroker "terraform-provider-solacebroker/internal/broker" "terraform-provider-solacebroker/internal/broker/generated" "terraform-provider-solacebroker/internal/semp" + + "golang.org/x/exp/slices" ) type BrokerObjectType string diff --git a/cmd/command/configgenerator_test.go b/cmd/command/configgenerator_test.go index 7b31f2c2..82318fde 100644 --- a/cmd/command/configgenerator_test.go +++ b/cmd/command/configgenerator_test.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/command/configwriter.go b/cmd/command/configwriter.go index 317b21c0..01ac4d75 100644 --- a/cmd/command/configwriter.go +++ b/cmd/command/configwriter.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/command/configwriter_test.go b/cmd/command/configwriter_test.go index 83114aee..1aa0b7de 100644 --- a/cmd/command/configwriter_test.go +++ b/cmd/command/configwriter_test.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/command/util.go b/cmd/command/util.go index 7bf40805..ed5ddc64 100644 --- a/cmd/command/util.go +++ b/cmd/command/util.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/command/util_test.go b/cmd/command/util_test.go index 1828b3f9..64b6a0dd 100644 --- a/cmd/command/util_test.go +++ b/cmd/command/util_test.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/completion.go b/cmd/completion.go index f2618085..f62d8556 100644 --- a/cmd/completion.go +++ b/cmd/completion.go @@ -1,6 +1,6 @@ // Package cmd terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/generate.go b/cmd/generate.go index 27fc7e85..4675fe2a 100644 --- a/cmd/generate.go +++ b/cmd/generate.go @@ -1,6 +1,6 @@ // Package cmd terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/cmd/root.go b/cmd/root.go index 5ebc7327..279f23a0 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -17,8 +17,9 @@ package cmd import ( - "github.com/spf13/cobra" terraform "terraform-provider-solacebroker/cmd/command" + + "github.com/spf13/cobra" ) var rootCmd = &cobra.Command{ diff --git a/cmd/versioncmd.go b/cmd/versioncmd.go index 9dccf7fa..66698aa8 100644 --- a/cmd/versioncmd.go +++ b/cmd/versioncmd.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/debugRun-windows.go b/debugRun-windows.go index 69883b71..4cf1e5db 100644 --- a/debugRun-windows.go +++ b/debugRun-windows.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/debugRun.go b/debugRun.go index 01916f02..3611482b 100644 --- a/debugRun.go +++ b/debugRun.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/go.mod b/go.mod index 5c53d2d6..a0225479 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ require ( github.com/hashicorp/terraform-plugin-docs v0.16.0 github.com/hashicorp/terraform-plugin-framework v1.4.2 github.com/hashicorp/terraform-plugin-framework-validators v0.12.0 - github.com/hashicorp/terraform-plugin-go v0.19.0 + github.com/hashicorp/terraform-plugin-go v0.20.0 github.com/hashicorp/terraform-plugin-log v0.9.0 github.com/hashicorp/terraform-plugin-testing v1.5.1 github.com/spf13/cobra v1.8.0 @@ -29,7 +29,7 @@ require ( github.com/armon/go-radix v1.0.0 // indirect github.com/bgentry/speakeasy v0.1.0 // indirect github.com/cenkalti/backoff/v4 v4.2.1 // indirect - github.com/cloudflare/circl v1.3.3 // indirect + github.com/cloudflare/circl v1.3.7 // indirect github.com/containerd/containerd v1.7.7 // indirect github.com/containerd/log v0.1.0 // indirect github.com/cpuguy83/dockercfg v0.3.1 // indirect @@ -49,7 +49,7 @@ require ( github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect github.com/hashicorp/go-hclog v1.5.0 // indirect github.com/hashicorp/go-multierror v1.1.1 // indirect - github.com/hashicorp/go-plugin v1.5.1 // indirect + github.com/hashicorp/go-plugin v1.6.0 // indirect github.com/hashicorp/go-retryablehttp v0.7.5 github.com/hashicorp/go-uuid v1.0.3 // indirect github.com/hashicorp/hc-install v0.6.0 // indirect @@ -58,9 +58,9 @@ require ( github.com/hashicorp/terraform-exec v0.19.0 // indirect github.com/hashicorp/terraform-json v0.17.1 // indirect github.com/hashicorp/terraform-plugin-sdk/v2 v2.29.0 // indirect - github.com/hashicorp/terraform-registry-address v0.2.2 // indirect + github.com/hashicorp/terraform-registry-address v0.2.3 // indirect github.com/hashicorp/terraform-svchost v0.1.1 // indirect - github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect + github.com/hashicorp/yamux v0.1.1 // indirect github.com/huandu/xstrings v1.3.2 // indirect github.com/imdario/mergo v0.3.15 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect @@ -96,18 +96,18 @@ require ( github.com/tklauser/go-sysconf v0.3.12 // indirect github.com/tklauser/numcpus v0.6.1 // indirect github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect - github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect + github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect github.com/yusufpapurcu/wmi v1.2.3 // indirect github.com/zclconf/go-cty v1.14.0 // indirect - golang.org/x/crypto v0.14.0 // indirect + golang.org/x/crypto v0.17.0 // indirect golang.org/x/mod v0.13.0 // indirect golang.org/x/net v0.17.0 // indirect - golang.org/x/sys v0.13.0 // indirect - golang.org/x/text v0.13.0 // indirect + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.14.0 // indirect golang.org/x/tools v0.14.0 // indirect - google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect - google.golang.org/grpc v1.57.1 // indirect + google.golang.org/appengine v1.6.8 // indirect + google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 // indirect + google.golang.org/grpc v1.60.0 // indirect google.golang.org/protobuf v1.31.0 // indirect ) diff --git a/go.sum b/go.sum index 3a4dc430..a01e2728 100644 --- a/go.sum +++ b/go.sum @@ -37,8 +37,9 @@ github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqy github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE= github.com/checkpoint-restore/go-criu/v5 v5.3.0/go.mod h1:E/eQpaFtUKGOOSEBZgmKAcn+zUUwWxqcaKZlF54wK8E= github.com/cilium/ebpf v0.7.0/go.mod h1:/oI2+1shJiTGAMgl6/RgJr36Eo1jzrRcAWbcXO2usCA= -github.com/cloudflare/circl v1.3.3 h1:fE/Qz0QdIGqeWfnwq0RE0R7MI51s0M2E4Ga9kq5AEMs= github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA= +github.com/cloudflare/circl v1.3.7 h1:qlCDlTPz2n9fu58M0Nh1J/JzcFpfgkFHHX3O35r5vcU= +github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBSc8r4zxgA= github.com/containerd/console v1.0.3/go.mod h1:7LqA/THxQ86k76b8c/EMSiaJ3h1eZkMkXar0TQ1gf3U= github.com/containerd/containerd v1.7.7 h1:QOC2K4A42RQpcrZyptP6z9EJZnlHfHJUfZrAAHe15q4= github.com/containerd/containerd v1.7.7/go.mod h1:3c4XZv6VeT9qgf9GMTxNTMFxGJrGpI2vz1yk4ye+YY8= @@ -89,8 +90,8 @@ github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69 github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da h1:oI5xCqsCo564l8iNU+DwB5epxmsaqB+rhGL0m5jtYqE= github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/protobuf v1.1.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -120,8 +121,8 @@ github.com/hashicorp/go-hclog v1.5.0/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVH github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo= github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM= -github.com/hashicorp/go-plugin v1.5.1 h1:oGm7cWBaYIp3lJpx1RUEfLWophprE2EV/KUeqBYo+6k= -github.com/hashicorp/go-plugin v1.5.1/go.mod h1:w1sAEES3g3PuV/RzUrgow20W2uErMly84hhD3um1WL4= +github.com/hashicorp/go-plugin v1.6.0 h1:wgd4KxHJTVGGqWBq4QPB1i5BZNEx9BR8+OFmHDmTk8A= +github.com/hashicorp/go-plugin v1.6.0/go.mod h1:lBS5MtSSBZk0SHc66KACcjjlU6WzEVP/8pwz68aMkCI= github.com/hashicorp/go-retryablehttp v0.7.5 h1:bJj+Pj19UZMIweq/iie+1u5YCdGrnxCT9yvm0e+Nd5M= github.com/hashicorp/go-retryablehttp v0.7.5/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= @@ -145,20 +146,20 @@ github.com/hashicorp/terraform-plugin-framework v1.4.2 h1:P7a7VP1GZbjc4rv921Xy5O github.com/hashicorp/terraform-plugin-framework v1.4.2/go.mod h1:GWl3InPFZi2wVQmdVnINPKys09s9mLmTZr95/ngLnbY= github.com/hashicorp/terraform-plugin-framework-validators v0.12.0 h1:HOjBuMbOEzl7snOdOoUfE2Jgeto6JOjLVQ39Ls2nksc= github.com/hashicorp/terraform-plugin-framework-validators v0.12.0/go.mod h1:jfHGE/gzjxYz6XoUwi/aYiiKrJDeutQNUtGQXkaHklg= -github.com/hashicorp/terraform-plugin-go v0.19.0 h1:BuZx/6Cp+lkmiG0cOBk6Zps0Cb2tmqQpDM3iAtnhDQU= -github.com/hashicorp/terraform-plugin-go v0.19.0/go.mod h1:EhRSkEPNoylLQntYsk5KrDHTZJh9HQoumZXbOGOXmec= +github.com/hashicorp/terraform-plugin-go v0.20.0 h1:oqvoUlL+2EUbKNsJbIt3zqqZ7wi6lzn4ufkn/UA51xQ= +github.com/hashicorp/terraform-plugin-go v0.20.0/go.mod h1:Rr8LBdMlY53a3Z/HpP+ZU3/xCDqtKNCkeI9qOyT10QE= github.com/hashicorp/terraform-plugin-log v0.9.0 h1:i7hOA+vdAItN1/7UrfBqBwvYPQ9TFvymaRGZED3FCV0= github.com/hashicorp/terraform-plugin-log v0.9.0/go.mod h1:rKL8egZQ/eXSyDqzLUuwUYLVdlYeamldAHSxjUFADow= github.com/hashicorp/terraform-plugin-sdk/v2 v2.29.0 h1:wcOKYwPI9IorAJEBLzgclh3xVolO7ZorYd6U1vnok14= github.com/hashicorp/terraform-plugin-sdk/v2 v2.29.0/go.mod h1:qH/34G25Ugdj5FcM95cSoXzUgIbgfhVLXCcEcYaMwq8= github.com/hashicorp/terraform-plugin-testing v1.5.1 h1:T4aQh9JAhmWo4+t1A7x+rnxAJHCDIYW9kXyo4sVO92c= github.com/hashicorp/terraform-plugin-testing v1.5.1/go.mod h1:dg8clO6K59rZ8w9EshBmDp1CxTIPu3yA4iaDpX1h5u0= -github.com/hashicorp/terraform-registry-address v0.2.2 h1:lPQBg403El8PPicg/qONZJDC6YlgCVbWDtNmmZKtBno= -github.com/hashicorp/terraform-registry-address v0.2.2/go.mod h1:LtwNbCihUoUZ3RYriyS2wF/lGPB6gF9ICLRtuDk7hSo= +github.com/hashicorp/terraform-registry-address v0.2.3 h1:2TAiKJ1A3MAkZlH1YI/aTVcLZRu7JseiXNRHbOAyoTI= +github.com/hashicorp/terraform-registry-address v0.2.3/go.mod h1:lFHA76T8jfQteVfT7caREqguFrW3c4MFSPhZB7HHgUM= github.com/hashicorp/terraform-svchost v0.1.1 h1:EZZimZ1GxdqFRinZ1tpJwVxxt49xc/S52uzrw4x0jKQ= github.com/hashicorp/terraform-svchost v0.1.1/go.mod h1:mNsjQfZyf/Jhz35v6/0LWcv26+X7JPS+buii2c9/ctc= -github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d h1:kJCB4vdITiW1eC1vq2e6IsrXKrZit1bv/TDYFGMp4BQ= -github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d/go.mod h1:+NfK9FKeTrX5uv1uIXGdwYDTeHna2qgaIlx54MXqjAM= +github.com/hashicorp/yamux v0.1.1 h1:yrQxtgseBDrq9Y652vSRDvsKCJKOUD+GzTS4Y0Y8pvE= +github.com/hashicorp/yamux v0.1.1/go.mod h1:CtWFDAQgb7dxtzFs4tWbplKIe2jSi3+5vKbgIO0SLnQ= github.com/huandu/xstrings v1.3.1/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= github.com/huandu/xstrings v1.3.2 h1:L18LIDzqlW6xN2rEkpdV8+oL/IXWJ1APd+vsdYy4Wdw= github.com/huandu/xstrings v1.3.2/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE= @@ -303,8 +304,8 @@ github.com/vishvananda/netns v0.0.0-20191106174202-0a2b9b5464df/go.mod h1:JP3t17 github.com/vmihailenco/msgpack v3.3.3+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk= github.com/vmihailenco/msgpack v4.0.4+incompatible h1:dSLoQfGFAo3F6OoNhwUmLwVgaUXK79GlxNBwueZn0xI= github.com/vmihailenco/msgpack v4.0.4+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk= -github.com/vmihailenco/msgpack/v5 v5.3.5 h1:5gO0H1iULLWGhs2H5tbAHIZTV8/cYafcFOr9znI5mJU= -github.com/vmihailenco/msgpack/v5 v5.3.5/go.mod h1:7xyJ9e+0+9SaZT0Wt1RGleJXzli6Q/V5KbhBonMG9jc= +github.com/vmihailenco/msgpack/v5 v5.4.1 h1:cQriyiUvjTwOHg8QZaPihLWeRAAVoCpE00IUPn0Bjt8= +github.com/vmihailenco/msgpack/v5 v5.4.1/go.mod h1:GaZTsDaehaPpQVyxrf5mtQlH+pc21PIudVV/E3rRQok= github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g= github.com/vmihailenco/tagparser/v2 v2.0.0/go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds= github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM= @@ -324,8 +325,8 @@ golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.14.0 h1:wBqGXzWJW6m1XrIKlAH0Hs1JJ7+9KBwnIO8v66Q9cHc= -golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= +golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= +golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/exp v0.0.0-20231006140011-7918f672742d h1:jtJma62tbqLibJ5sFQz8bKtEM8rJBtfilJ2qTU199MI= golang.org/x/exp v0.0.0-20231006140011-7918f672742d/go.mod h1:ldy0pHrwJyGW56pPQzzkH36rKxoZW1tw7ZJpeKx+hdo= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= @@ -335,7 +336,6 @@ golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.13.0 h1:I/DsJXRlw/8l/0c24sM9yb0T4z9liZTduXvdAWYiysY= golang.org/x/mod v0.13.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= @@ -386,8 +386,8 @@ golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE= -golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= @@ -397,11 +397,12 @@ golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= -golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= @@ -417,12 +418,12 @@ golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.6.7 h1:FZR1q0exgwxzPzp/aF+VccGrSfxfPpkBqjIIEq3ru6c= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 h1:0nDDozoAU19Qb2HwhXadU8OcsiO/09cnTqhUtq2MEOM= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/grpc v1.57.1 h1:upNTNqv0ES+2ZOOqACwVtS3Il8M12/+Hz41RCPzAjQg= -google.golang.org/grpc v1.57.1/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo= +google.golang.org/appengine v1.6.8 h1:IhEN5q69dyKagZPYMSdIjS2HqprW324FRQZJcGqPAsM= +google.golang.org/appengine v1.6.8/go.mod h1:1jJ3jBArFh5pcgW8gCtRJnepW8FzD1V44FJffLiz/Ds= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97 h1:6GQBEOdGkX6MMTLT9V+TjtIRZCw9VPD5Z+yHY9wMgS0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97/go.mod h1:v7nGkzlmW8P3n/bKmWBn2WpBjpOEx8Q6gMueudAmKfY= +google.golang.org/grpc v1.60.0 h1:6FQAR0kM31P6MRdeluor2w2gPaS4SVNrD/DNTxrQ15k= +google.golang.org/grpc v1.60.0/go.mod h1:OlCHIeLYqSSsLi6i49B5QGdzaMZK9+M7LXN2FKz4eGM= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= diff --git a/internal/broker/attributeInfo.go b/internal/broker/attributeInfo.go index 27b4f130..b26bf5a8 100644 --- a/internal/broker/attributeInfo.go +++ b/internal/broker/attributeInfo.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/conversions.go b/internal/broker/conversions.go index 17956bc1..018e6f42 100644 --- a/internal/broker/conversions.go +++ b/internal/broker/conversions.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -18,8 +18,9 @@ package broker import ( "fmt" - "github.com/hashicorp/terraform-plugin-go/tftypes" "math/big" + + "github.com/hashicorp/terraform-plugin-go/tftypes" ) type Converter interface { diff --git a/internal/broker/datasource.go b/internal/broker/datasource.go index f37c5965..4e7fa494 100644 --- a/internal/broker/datasource.go +++ b/internal/broker/datasource.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/entity.go b/internal/broker/entity.go index a6e920ec..c44299d5 100644 --- a/internal/broker/entity.go +++ b/internal/broker/entity.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/AboutApi.go b/internal/broker/generated/AboutApi.go index 30902a4e..2cf97c50 100644 --- a/internal/broker/generated/AboutApi.go +++ b/internal/broker/generated/AboutApi.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/AboutUser.go b/internal/broker/generated/AboutUser.go index 608b6b5c..2c1aa2dc 100644 --- a/internal/broker/generated/AboutUser.go +++ b/internal/broker/generated/AboutUser.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/AboutUserMsgVpn.go b/internal/broker/generated/AboutUserMsgVpn.go index f62ebe7a..ae5b5702 100644 --- a/internal/broker/generated/AboutUserMsgVpn.go +++ b/internal/broker/generated/AboutUserMsgVpn.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/Broker.go b/internal/broker/generated/Broker.go index 314ac2dc..c1af9df8 100644 --- a/internal/broker/generated/Broker.go +++ b/internal/broker/generated/Broker.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/ClientCertAuthority.go b/internal/broker/generated/ClientCertAuthority.go index c5668e5e..a0bbff39 100644 --- a/internal/broker/generated/ClientCertAuthority.go +++ b/internal/broker/generated/ClientCertAuthority.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/ClientCertAuthorityOcspTlsTrustedCommonName.go b/internal/broker/generated/ClientCertAuthorityOcspTlsTrustedCommonName.go index 7c85b079..5db92640 100644 --- a/internal/broker/generated/ClientCertAuthorityOcspTlsTrustedCommonName.go +++ b/internal/broker/generated/ClientCertAuthorityOcspTlsTrustedCommonName.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/DmrCluster.go b/internal/broker/generated/DmrCluster.go index d78000d0..f34ed7b6 100644 --- a/internal/broker/generated/DmrCluster.go +++ b/internal/broker/generated/DmrCluster.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/DmrClusterCertMatchingRule.go b/internal/broker/generated/DmrClusterCertMatchingRule.go index d8d63d4f..cce961a1 100644 --- a/internal/broker/generated/DmrClusterCertMatchingRule.go +++ b/internal/broker/generated/DmrClusterCertMatchingRule.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/DmrClusterCertMatchingRuleAttributeFilter.go b/internal/broker/generated/DmrClusterCertMatchingRuleAttributeFilter.go index 64940654..6ec94dac 100644 --- a/internal/broker/generated/DmrClusterCertMatchingRuleAttributeFilter.go +++ b/internal/broker/generated/DmrClusterCertMatchingRuleAttributeFilter.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/DmrClusterCertMatchingRuleCondition.go b/internal/broker/generated/DmrClusterCertMatchingRuleCondition.go index c9cc58a4..9f01f88e 100644 --- a/internal/broker/generated/DmrClusterCertMatchingRuleCondition.go +++ b/internal/broker/generated/DmrClusterCertMatchingRuleCondition.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/DmrClusterLink.go b/internal/broker/generated/DmrClusterLink.go index 1a45150d..d182e4da 100644 --- a/internal/broker/generated/DmrClusterLink.go +++ b/internal/broker/generated/DmrClusterLink.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/DmrClusterLinkAttribute.go b/internal/broker/generated/DmrClusterLinkAttribute.go index 0d6a22fb..1e4f001d 100644 --- a/internal/broker/generated/DmrClusterLinkAttribute.go +++ b/internal/broker/generated/DmrClusterLinkAttribute.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/DmrClusterLinkRemoteAddress.go b/internal/broker/generated/DmrClusterLinkRemoteAddress.go index fdef44e3..2cb6b19d 100644 --- a/internal/broker/generated/DmrClusterLinkRemoteAddress.go +++ b/internal/broker/generated/DmrClusterLinkRemoteAddress.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/DomainCertAuthority.go b/internal/broker/generated/DomainCertAuthority.go index 524b21d8..d84b20c5 100644 --- a/internal/broker/generated/DomainCertAuthority.go +++ b/internal/broker/generated/DomainCertAuthority.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpn.go b/internal/broker/generated/MsgVpn.go index cc6a6cd1..78c3ab4a 100644 --- a/internal/broker/generated/MsgVpn.go +++ b/internal/broker/generated/MsgVpn.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnAclProfile.go b/internal/broker/generated/MsgVpnAclProfile.go index 3b9254e4..a74a1790 100644 --- a/internal/broker/generated/MsgVpnAclProfile.go +++ b/internal/broker/generated/MsgVpnAclProfile.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnAclProfileClientConnectException.go b/internal/broker/generated/MsgVpnAclProfileClientConnectException.go index 85ba9073..2c42ba1e 100644 --- a/internal/broker/generated/MsgVpnAclProfileClientConnectException.go +++ b/internal/broker/generated/MsgVpnAclProfileClientConnectException.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnAclProfilePublishTopicException.go b/internal/broker/generated/MsgVpnAclProfilePublishTopicException.go index c7e5acc8..06d6956e 100644 --- a/internal/broker/generated/MsgVpnAclProfilePublishTopicException.go +++ b/internal/broker/generated/MsgVpnAclProfilePublishTopicException.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnAclProfileSubscribeShareNameException.go b/internal/broker/generated/MsgVpnAclProfileSubscribeShareNameException.go index 450428c2..c5b93cb8 100644 --- a/internal/broker/generated/MsgVpnAclProfileSubscribeShareNameException.go +++ b/internal/broker/generated/MsgVpnAclProfileSubscribeShareNameException.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnAclProfileSubscribeTopicException.go b/internal/broker/generated/MsgVpnAclProfileSubscribeTopicException.go index 8ff33a8d..065951ea 100644 --- a/internal/broker/generated/MsgVpnAclProfileSubscribeTopicException.go +++ b/internal/broker/generated/MsgVpnAclProfileSubscribeTopicException.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnAuthenticationOauthProfile.go b/internal/broker/generated/MsgVpnAuthenticationOauthProfile.go index d6094b0e..945a67b2 100644 --- a/internal/broker/generated/MsgVpnAuthenticationOauthProfile.go +++ b/internal/broker/generated/MsgVpnAuthenticationOauthProfile.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnAuthenticationOauthProfileClientRequiredClaim.go b/internal/broker/generated/MsgVpnAuthenticationOauthProfileClientRequiredClaim.go index cc3c2028..17517080 100644 --- a/internal/broker/generated/MsgVpnAuthenticationOauthProfileClientRequiredClaim.go +++ b/internal/broker/generated/MsgVpnAuthenticationOauthProfileClientRequiredClaim.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnAuthenticationOauthProfileResourceServerRequiredClaim.go b/internal/broker/generated/MsgVpnAuthenticationOauthProfileResourceServerRequiredClaim.go index 4e409627..ef555ff6 100644 --- a/internal/broker/generated/MsgVpnAuthenticationOauthProfileResourceServerRequiredClaim.go +++ b/internal/broker/generated/MsgVpnAuthenticationOauthProfileResourceServerRequiredClaim.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnAuthorizationGroup.go b/internal/broker/generated/MsgVpnAuthorizationGroup.go index 1d2e33ac..f6d34d43 100644 --- a/internal/broker/generated/MsgVpnAuthorizationGroup.go +++ b/internal/broker/generated/MsgVpnAuthorizationGroup.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnBridge.go b/internal/broker/generated/MsgVpnBridge.go index 9f85b6a7..1f7b2953 100644 --- a/internal/broker/generated/MsgVpnBridge.go +++ b/internal/broker/generated/MsgVpnBridge.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnBridgeRemoteMsgVpn.go b/internal/broker/generated/MsgVpnBridgeRemoteMsgVpn.go index 459809ba..9ae1ab14 100644 --- a/internal/broker/generated/MsgVpnBridgeRemoteMsgVpn.go +++ b/internal/broker/generated/MsgVpnBridgeRemoteMsgVpn.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnBridgeRemoteSubscription.go b/internal/broker/generated/MsgVpnBridgeRemoteSubscription.go index 8101fc8d..caf38022 100644 --- a/internal/broker/generated/MsgVpnBridgeRemoteSubscription.go +++ b/internal/broker/generated/MsgVpnBridgeRemoteSubscription.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnCertMatchingRule.go b/internal/broker/generated/MsgVpnCertMatchingRule.go index a6d22ca6..9df99209 100644 --- a/internal/broker/generated/MsgVpnCertMatchingRule.go +++ b/internal/broker/generated/MsgVpnCertMatchingRule.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnCertMatchingRuleAttributeFilter.go b/internal/broker/generated/MsgVpnCertMatchingRuleAttributeFilter.go index 8df6cfbd..11ebb846 100644 --- a/internal/broker/generated/MsgVpnCertMatchingRuleAttributeFilter.go +++ b/internal/broker/generated/MsgVpnCertMatchingRuleAttributeFilter.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnCertMatchingRuleCondition.go b/internal/broker/generated/MsgVpnCertMatchingRuleCondition.go index 801399c2..644d0fc9 100644 --- a/internal/broker/generated/MsgVpnCertMatchingRuleCondition.go +++ b/internal/broker/generated/MsgVpnCertMatchingRuleCondition.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnClientProfile.go b/internal/broker/generated/MsgVpnClientProfile.go index 67aeba0f..bacba988 100644 --- a/internal/broker/generated/MsgVpnClientProfile.go +++ b/internal/broker/generated/MsgVpnClientProfile.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnClientUsername.go b/internal/broker/generated/MsgVpnClientUsername.go index f2710396..a1d63ca7 100644 --- a/internal/broker/generated/MsgVpnClientUsername.go +++ b/internal/broker/generated/MsgVpnClientUsername.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnClientUsernameAttribute.go b/internal/broker/generated/MsgVpnClientUsernameAttribute.go index 146486bd..cf3dcc0c 100644 --- a/internal/broker/generated/MsgVpnClientUsernameAttribute.go +++ b/internal/broker/generated/MsgVpnClientUsernameAttribute.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnDistributedCache.go b/internal/broker/generated/MsgVpnDistributedCache.go index 564bdd0b..2bb8be6e 100644 --- a/internal/broker/generated/MsgVpnDistributedCache.go +++ b/internal/broker/generated/MsgVpnDistributedCache.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnDistributedCacheCluster.go b/internal/broker/generated/MsgVpnDistributedCacheCluster.go index a6ceb69d..9765d96b 100644 --- a/internal/broker/generated/MsgVpnDistributedCacheCluster.go +++ b/internal/broker/generated/MsgVpnDistributedCacheCluster.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnDistributedCacheClusterGlobalCachingHomeCluster.go b/internal/broker/generated/MsgVpnDistributedCacheClusterGlobalCachingHomeCluster.go index 38286c0d..887f090e 100644 --- a/internal/broker/generated/MsgVpnDistributedCacheClusterGlobalCachingHomeCluster.go +++ b/internal/broker/generated/MsgVpnDistributedCacheClusterGlobalCachingHomeCluster.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnDistributedCacheClusterGlobalCachingHomeClusterTopicPrefix.go b/internal/broker/generated/MsgVpnDistributedCacheClusterGlobalCachingHomeClusterTopicPrefix.go index 629c4040..f8c46e00 100644 --- a/internal/broker/generated/MsgVpnDistributedCacheClusterGlobalCachingHomeClusterTopicPrefix.go +++ b/internal/broker/generated/MsgVpnDistributedCacheClusterGlobalCachingHomeClusterTopicPrefix.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnDistributedCacheClusterInstance.go b/internal/broker/generated/MsgVpnDistributedCacheClusterInstance.go index a62752c5..2e77d0dd 100644 --- a/internal/broker/generated/MsgVpnDistributedCacheClusterInstance.go +++ b/internal/broker/generated/MsgVpnDistributedCacheClusterInstance.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnDistributedCacheClusterTopic.go b/internal/broker/generated/MsgVpnDistributedCacheClusterTopic.go index 486212f3..64a8d2af 100644 --- a/internal/broker/generated/MsgVpnDistributedCacheClusterTopic.go +++ b/internal/broker/generated/MsgVpnDistributedCacheClusterTopic.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnDmrBridge.go b/internal/broker/generated/MsgVpnDmrBridge.go index cb8331c5..16e7e0fd 100644 --- a/internal/broker/generated/MsgVpnDmrBridge.go +++ b/internal/broker/generated/MsgVpnDmrBridge.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnJndiConnectionFactory.go b/internal/broker/generated/MsgVpnJndiConnectionFactory.go index 594de686..3cfad7b2 100644 --- a/internal/broker/generated/MsgVpnJndiConnectionFactory.go +++ b/internal/broker/generated/MsgVpnJndiConnectionFactory.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnJndiQueue.go b/internal/broker/generated/MsgVpnJndiQueue.go index c8043e06..9835cee8 100644 --- a/internal/broker/generated/MsgVpnJndiQueue.go +++ b/internal/broker/generated/MsgVpnJndiQueue.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnJndiTopic.go b/internal/broker/generated/MsgVpnJndiTopic.go index 84eae8f2..a62dd87a 100644 --- a/internal/broker/generated/MsgVpnJndiTopic.go +++ b/internal/broker/generated/MsgVpnJndiTopic.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnKafkaReceiver.go b/internal/broker/generated/MsgVpnKafkaReceiver.go index 6a6ba0fe..68a8d47a 100644 --- a/internal/broker/generated/MsgVpnKafkaReceiver.go +++ b/internal/broker/generated/MsgVpnKafkaReceiver.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnKafkaReceiverTopicBinding.go b/internal/broker/generated/MsgVpnKafkaReceiverTopicBinding.go index 6f481b4f..f6ed2898 100644 --- a/internal/broker/generated/MsgVpnKafkaReceiverTopicBinding.go +++ b/internal/broker/generated/MsgVpnKafkaReceiverTopicBinding.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnKafkaSender.go b/internal/broker/generated/MsgVpnKafkaSender.go index 2040ee37..155b6753 100644 --- a/internal/broker/generated/MsgVpnKafkaSender.go +++ b/internal/broker/generated/MsgVpnKafkaSender.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnKafkaSenderQueueBinding.go b/internal/broker/generated/MsgVpnKafkaSenderQueueBinding.go index 66841fb9..4335c034 100644 --- a/internal/broker/generated/MsgVpnKafkaSenderQueueBinding.go +++ b/internal/broker/generated/MsgVpnKafkaSenderQueueBinding.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnMqttRetainCache.go b/internal/broker/generated/MsgVpnMqttRetainCache.go index f08ad2e2..0891d8db 100644 --- a/internal/broker/generated/MsgVpnMqttRetainCache.go +++ b/internal/broker/generated/MsgVpnMqttRetainCache.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnMqttSession.go b/internal/broker/generated/MsgVpnMqttSession.go index 83dc2c4d..85382b88 100644 --- a/internal/broker/generated/MsgVpnMqttSession.go +++ b/internal/broker/generated/MsgVpnMqttSession.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnMqttSessionSubscription.go b/internal/broker/generated/MsgVpnMqttSessionSubscription.go index 99040645..871dcf3d 100644 --- a/internal/broker/generated/MsgVpnMqttSessionSubscription.go +++ b/internal/broker/generated/MsgVpnMqttSessionSubscription.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnProxy.go b/internal/broker/generated/MsgVpnProxy.go index 16e7bb92..2bf675b3 100644 --- a/internal/broker/generated/MsgVpnProxy.go +++ b/internal/broker/generated/MsgVpnProxy.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnQueue.go b/internal/broker/generated/MsgVpnQueue.go index 3794c43b..bfb93a8d 100644 --- a/internal/broker/generated/MsgVpnQueue.go +++ b/internal/broker/generated/MsgVpnQueue.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnQueueSubscription.go b/internal/broker/generated/MsgVpnQueueSubscription.go index ff42f85e..77394410 100644 --- a/internal/broker/generated/MsgVpnQueueSubscription.go +++ b/internal/broker/generated/MsgVpnQueueSubscription.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnQueueTemplate.go b/internal/broker/generated/MsgVpnQueueTemplate.go index fe8f309d..7007f94d 100644 --- a/internal/broker/generated/MsgVpnQueueTemplate.go +++ b/internal/broker/generated/MsgVpnQueueTemplate.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnReplayLog.go b/internal/broker/generated/MsgVpnReplayLog.go index ce1d4db0..e24884c6 100644 --- a/internal/broker/generated/MsgVpnReplayLog.go +++ b/internal/broker/generated/MsgVpnReplayLog.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnReplayLogTopicFilterSubscription.go b/internal/broker/generated/MsgVpnReplayLogTopicFilterSubscription.go index 2ed8b11d..1ceb3ed3 100644 --- a/internal/broker/generated/MsgVpnReplayLogTopicFilterSubscription.go +++ b/internal/broker/generated/MsgVpnReplayLogTopicFilterSubscription.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnReplicatedTopic.go b/internal/broker/generated/MsgVpnReplicatedTopic.go index ef7119a5..c3ecc8ef 100644 --- a/internal/broker/generated/MsgVpnReplicatedTopic.go +++ b/internal/broker/generated/MsgVpnReplicatedTopic.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnRestDeliveryPoint.go b/internal/broker/generated/MsgVpnRestDeliveryPoint.go index f2b51a4d..3e9325de 100644 --- a/internal/broker/generated/MsgVpnRestDeliveryPoint.go +++ b/internal/broker/generated/MsgVpnRestDeliveryPoint.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnRestDeliveryPointQueueBinding.go b/internal/broker/generated/MsgVpnRestDeliveryPointQueueBinding.go index d168c1d2..5e4a1298 100644 --- a/internal/broker/generated/MsgVpnRestDeliveryPointQueueBinding.go +++ b/internal/broker/generated/MsgVpnRestDeliveryPointQueueBinding.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnRestDeliveryPointQueueBindingProtectedRequestHeader.go b/internal/broker/generated/MsgVpnRestDeliveryPointQueueBindingProtectedRequestHeader.go index 3f610993..20aa37bf 100644 --- a/internal/broker/generated/MsgVpnRestDeliveryPointQueueBindingProtectedRequestHeader.go +++ b/internal/broker/generated/MsgVpnRestDeliveryPointQueueBindingProtectedRequestHeader.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnRestDeliveryPointQueueBindingRequestHeader.go b/internal/broker/generated/MsgVpnRestDeliveryPointQueueBindingRequestHeader.go index 2a2b904a..682259d0 100644 --- a/internal/broker/generated/MsgVpnRestDeliveryPointQueueBindingRequestHeader.go +++ b/internal/broker/generated/MsgVpnRestDeliveryPointQueueBindingRequestHeader.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnRestDeliveryPointRestConsumer.go b/internal/broker/generated/MsgVpnRestDeliveryPointRestConsumer.go index a552b45b..a8d9a51e 100644 --- a/internal/broker/generated/MsgVpnRestDeliveryPointRestConsumer.go +++ b/internal/broker/generated/MsgVpnRestDeliveryPointRestConsumer.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnRestDeliveryPointRestConsumerOauthJwtClaim.go b/internal/broker/generated/MsgVpnRestDeliveryPointRestConsumerOauthJwtClaim.go index a9ffe48f..79a53134 100644 --- a/internal/broker/generated/MsgVpnRestDeliveryPointRestConsumerOauthJwtClaim.go +++ b/internal/broker/generated/MsgVpnRestDeliveryPointRestConsumerOauthJwtClaim.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnSequencedTopic.go b/internal/broker/generated/MsgVpnSequencedTopic.go index 9d702fec..c2e13710 100644 --- a/internal/broker/generated/MsgVpnSequencedTopic.go +++ b/internal/broker/generated/MsgVpnSequencedTopic.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnTelemetryProfile.go b/internal/broker/generated/MsgVpnTelemetryProfile.go index f50fc695..a5b1707a 100644 --- a/internal/broker/generated/MsgVpnTelemetryProfile.go +++ b/internal/broker/generated/MsgVpnTelemetryProfile.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnTelemetryProfileReceiverAclConnectException.go b/internal/broker/generated/MsgVpnTelemetryProfileReceiverAclConnectException.go index 5b87ec68..534d9745 100644 --- a/internal/broker/generated/MsgVpnTelemetryProfileReceiverAclConnectException.go +++ b/internal/broker/generated/MsgVpnTelemetryProfileReceiverAclConnectException.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnTelemetryProfileTraceFilter.go b/internal/broker/generated/MsgVpnTelemetryProfileTraceFilter.go index dcae6eb3..d09f7bd1 100644 --- a/internal/broker/generated/MsgVpnTelemetryProfileTraceFilter.go +++ b/internal/broker/generated/MsgVpnTelemetryProfileTraceFilter.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnTelemetryProfileTraceFilterSubscription.go b/internal/broker/generated/MsgVpnTelemetryProfileTraceFilterSubscription.go index 8ce458dc..800d6886 100644 --- a/internal/broker/generated/MsgVpnTelemetryProfileTraceFilterSubscription.go +++ b/internal/broker/generated/MsgVpnTelemetryProfileTraceFilterSubscription.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnTopicEndpoint.go b/internal/broker/generated/MsgVpnTopicEndpoint.go index 17396fd8..822bac4b 100644 --- a/internal/broker/generated/MsgVpnTopicEndpoint.go +++ b/internal/broker/generated/MsgVpnTopicEndpoint.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/MsgVpnTopicEndpointTemplate.go b/internal/broker/generated/MsgVpnTopicEndpointTemplate.go index d8dac800..aebdc075 100644 --- a/internal/broker/generated/MsgVpnTopicEndpointTemplate.go +++ b/internal/broker/generated/MsgVpnTopicEndpointTemplate.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/OauthProfile.go b/internal/broker/generated/OauthProfile.go index e8800e58..78ab85d9 100644 --- a/internal/broker/generated/OauthProfile.go +++ b/internal/broker/generated/OauthProfile.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/OauthProfileAccessLevelGroup.go b/internal/broker/generated/OauthProfileAccessLevelGroup.go index 71398f16..8cc21bac 100644 --- a/internal/broker/generated/OauthProfileAccessLevelGroup.go +++ b/internal/broker/generated/OauthProfileAccessLevelGroup.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/OauthProfileAccessLevelGroupMsgVpnAccessLevelException.go b/internal/broker/generated/OauthProfileAccessLevelGroupMsgVpnAccessLevelException.go index 7c1aa974..2b06058e 100644 --- a/internal/broker/generated/OauthProfileAccessLevelGroupMsgVpnAccessLevelException.go +++ b/internal/broker/generated/OauthProfileAccessLevelGroupMsgVpnAccessLevelException.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/OauthProfileClientAllowedHost.go b/internal/broker/generated/OauthProfileClientAllowedHost.go index 7ec6610d..5cb144cf 100644 --- a/internal/broker/generated/OauthProfileClientAllowedHost.go +++ b/internal/broker/generated/OauthProfileClientAllowedHost.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/OauthProfileClientAuthorizationParameter.go b/internal/broker/generated/OauthProfileClientAuthorizationParameter.go index 212d15df..f2c04843 100644 --- a/internal/broker/generated/OauthProfileClientAuthorizationParameter.go +++ b/internal/broker/generated/OauthProfileClientAuthorizationParameter.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/OauthProfileClientRequiredClaim.go b/internal/broker/generated/OauthProfileClientRequiredClaim.go index 4995532f..17a2020a 100644 --- a/internal/broker/generated/OauthProfileClientRequiredClaim.go +++ b/internal/broker/generated/OauthProfileClientRequiredClaim.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/OauthProfileDefaultMsgVpnAccessLevelException.go b/internal/broker/generated/OauthProfileDefaultMsgVpnAccessLevelException.go index fcd77769..a0dc4bd8 100644 --- a/internal/broker/generated/OauthProfileDefaultMsgVpnAccessLevelException.go +++ b/internal/broker/generated/OauthProfileDefaultMsgVpnAccessLevelException.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/OauthProfileResourceServerRequiredClaim.go b/internal/broker/generated/OauthProfileResourceServerRequiredClaim.go index 721d2f26..3ac08b0b 100644 --- a/internal/broker/generated/OauthProfileResourceServerRequiredClaim.go +++ b/internal/broker/generated/OauthProfileResourceServerRequiredClaim.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/VersionDetails.go b/internal/broker/generated/VersionDetails.go index 67791232..b3953b7b 100644 --- a/internal/broker/generated/VersionDetails.go +++ b/internal/broker/generated/VersionDetails.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/generated/VirtualHostname.go b/internal/broker/generated/VirtualHostname.go index 1f94a0e7..b823c932 100644 --- a/internal/broker/generated/VirtualHostname.go +++ b/internal/broker/generated/VirtualHostname.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/provider.go b/internal/broker/provider.go index a48e481f..e965bc6e 100644 --- a/internal/broker/provider.go +++ b/internal/broker/provider.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/resource.go b/internal/broker/resource.go index 74f434f8..013d73f8 100644 --- a/internal/broker/resource.go +++ b/internal/broker/resource.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -264,7 +264,7 @@ func (r *brokerResource) Configure(_ context.Context, request resource.Configure client, ok := request.ProviderData.(*semp.Client) if !ok { response.Diagnostics.AddError( - "Unexpected datasource configuration", + "Unexpected resource configuration", fmt.Sprintf("Unexpected type %T for provider data; expected %T.", request.ProviderData, client), ) return diff --git a/internal/broker/schema.go b/internal/broker/schema.go index ad1f1545..7194fd0c 100644 --- a/internal/broker/schema.go +++ b/internal/broker/schema.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -17,6 +17,9 @@ package broker import ( + "sort" + "strings" + "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/resource" "github.com/hashicorp/terraform-plugin-framework/resource/schema" @@ -26,8 +29,6 @@ import ( "github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier" "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" "github.com/hashicorp/terraform-plugin-go/tftypes" - "sort" - "strings" ) var DataSources []func() datasource.DataSource diff --git a/internal/broker/sempversion.go b/internal/broker/sempversion.go index ceb416f3..a7f219fe 100644 --- a/internal/broker/sempversion.go +++ b/internal/broker/sempversion.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/testacc/datasource_test.go b/internal/broker/testacc/datasource_test.go index 64258698..d93e2f78 100644 --- a/internal/broker/testacc/datasource_test.go +++ b/internal/broker/testacc/datasource_test.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/testacc/provider_test.go b/internal/broker/testacc/provider_test.go index 2ba04665..c4fb26fa 100644 --- a/internal/broker/testacc/provider_test.go +++ b/internal/broker/testacc/provider_test.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/testacc/resource_test.go b/internal/broker/testacc/resource_test.go index ff80dcfd..3625fd6a 100644 --- a/internal/broker/testacc/resource_test.go +++ b/internal/broker/testacc/resource_test.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/broker/utilities.go b/internal/broker/utilities.go index 513e5214..bebf9e67 100644 --- a/internal/broker/utilities.go +++ b/internal/broker/utilities.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/semp/client.go b/internal/semp/client.go index 0ad949b9..40eadf1d 100644 --- a/internal/semp/client.go +++ b/internal/semp/client.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -23,13 +23,14 @@ import ( "encoding/json" "errors" "fmt" - "github.com/hashicorp/go-retryablehttp" "io" "net/http" "net/http/cookiejar" "strings" "time" + "github.com/hashicorp/go-retryablehttp" + "github.com/hashicorp/terraform-plugin-log/tflog" ) diff --git a/main.go b/main.go index c85ab325..f18bca25 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/source-address.go b/source-address.go index 052fd7f2..a0591bd6 100644 --- a/source-address.go +++ b/source-address.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/third-party-licenses.txt b/third-party-licenses.txt index 140fc05f..591734dc 100644 --- a/third-party-licenses.txt +++ b/third-party-licenses.txt @@ -48,12 +48,12 @@ Copyright 2017 Copyright 2017 HashiCorp, Inc Home page: https://pkg.go.dev/github.com/hashicorp/go-hcLog@v1.5.0 -github.com/hashicorp/go-plugin-v1.5.1 +github.com/hashicorp/go-plugin-v1.6.0 ------------------------------------- Licensed under Mozilla 2.0 Copyright 2016 Copyright 2016 HashiCorp, Inc -Home page: https://pkg.go.dev/github.com/hashicorp/go-plugin@v1.5.1 +Home page: https://pkg.go.dev/github.com/hashicorp/go-plugin@v1.6.0 github.com/hashicorp/go-retryablehttp-v0.7.5 -------------------------------------------- @@ -83,12 +83,12 @@ Copyright 2022 Copyright 2022 HashiCorp, Inc Home page: https://pkg.go.dev/github.com/hashicorp/terraform-plugin-framework-validators@v0.12.0 -github.com/hashicorp/terraform-plugin-go-v0.19.0 +github.com/hashicorp/terraform-plugin-go-v0.20.0 ------------------------------------------------ Licensed under Mozilla 2.0 Copyright 2020 Copyright 2020 HashiCorp, Inc -Home page: https://pkg.go.dev/github.com/hashicorp/terraform-plugin-go@v0.19.0 +Home page: https://pkg.go.dev/github.com/hashicorp/terraform-plugin-go@v0.20.0 github.com/hashicorp/terraform-plugin-log-v0.9.0 ------------------------------------------------ @@ -97,12 +97,12 @@ Copyright 2021 Copyright 2021 HashiCorp, Inc Home page: https://pkg.go.dev/github.com/hashicorp/terraform-plugin-log@v0.9.0 -github.com/hashicorp/terraform-registry-address-v0.2.2 +github.com/hashicorp/terraform-registry-address-v0.2.3 ------------------------------------------------------ Licensed under Mozilla 2.0 Copyright 2021 Copyright 2021 HashiCorp, Inc -Home page: https://pkg.go.dev/github.com/hashicorp/terraform-registry-address@v0.2.2 +Home page: https://pkg.go.dev/github.com/hashicorp/terraform-registry-address@v0.2.3 github.com/hashicorp/terraform-svchost-v0.1.1 --------------------------------------------- @@ -111,11 +111,10 @@ Copyright 2019 Copyright 2019 HashiCorp, Inc Home page: https://pkg.go.dev/github.com/hashicorp/terraform-svchost@v0.1.1 -github.com/hashicorp/yamux-v0.0.0-20181012175058-2f1d1f20f75d -------------------------------------------------------------- +github.com/hashicorp/yamux-v0.1.1 +--------------------------------- Licensed under Mozilla 2.0 -Copyright 2014 HashiCorp, Inc. -Home page: https://pkg.go.dev/github.com/hashicorp/yamux@v0.0.0-20181012175058-2f1d1f20f75d +Home page: https://pkg.go.dev/github.com/hashicorp/yamux@v0.1.1 github.com/mattn/go-coLorabLe-v0.1.13 ------------------------------------- @@ -156,12 +155,12 @@ Copyright 2012 The Go Authors2012 Copyright 2012 Alex Ogier Home page: https://pkg.go.dev/github.com/spf13/pflag@v1.0.5 -github.com/vmihAilenco/msgpack/v5-v5.3.5 +github.com/vmihailenco/msgpack/v5-v5.4.1 ---------------------------------------- Licensed under BSD 2 Copyright 2013 Copyright 2013 The github.com/vmihailenco/msgpack Authors -Home page: https://pkg.go.dev/github.com/vmihAilenco/msgpack/v5@v5.3.5 +Home page: https://pkg.go.dev/github.com/vmihailenco/msgpack/v5@v5.4.1 github.com/vmihailenco/tagparser/v2-v2.0.0 ------------------------------------------ @@ -184,32 +183,31 @@ Copyright 2009 Copyright 2009 The Go Authors Home page: https://pkg.go.dev/golang.org/x/net@v0.17.0 -golang.org/x/sys-v0.13.0 +golang.org/x/sys-v0.15.0 ------------------------ Licensed under Golang BSD + Patents Copyright 2009 Copyright 2009 The Go Authors -Home page: https://pkg.go.dev/golang.org/x/sys@v0.13.0 +Home page: https://pkg.go.dev/golang.org/x/sys@v0.15.0 -golang.org/x/text-v0.13.0 +golang.org/x/text-v0.14.0 ------------------------- Licensed under Golang BSD + Patents Copyright 2009 Copyright 2009 The Go Authors -Home page: https://pkg.go.dev/golang.org/x/text@v0.13.0 +Home page: https://pkg.go.dev/golang.org/x/text@v0.14.0 -google.golang.org/genproto/googleapis/rpc-v0.0.0-20230525234030-28d5490b6b19 +google.golang.org/genproto/googleapis/rpc-v0.0.0-20231002182017-d307bd883b97 ---------------------------------------------------------------------------- Licensed under Apache 2.0 -No copyright. -Home page: https://pkg.go.dev/google.golang.org/genproto/googleapis/rpc@v0.0.0-20230525234030-28d5490b6b19 +Home page: https://pkg.go.dev/google.golang.org/genproto/googleapis/rpc@v0.0.0-20231002182017-d307bd883b97 -google.golang.org/grpc-v1.57.1 +google.golang.org/grpc-v1.60.0 ------------------------------ Licensed under Apache 2.0 Copyright 2014 Copyright 2014 gRPC authors -Home page: https://pkg.go.dev/google.golang.org/grpc@v1.57.1 +Home page: https://pkg.go.dev/google.golang.org/grpc@v1.60.0 google.golang.org/protobuf-v1.31.0 ---------------------------------- diff --git a/tools/tools.go b/tools/tools.go index f35d2326..53079482 100644 --- a/tools/tools.go +++ b/tools/tools.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/version.go b/version.go index 5ac4c498..f88a1a1e 100644 --- a/version.go +++ b/version.go @@ -1,6 +1,6 @@ // terraform-provider-solacebroker // -// Copyright 2023 Solace Corporation. All rights reserved. +// Copyright 2024 Solace Corporation. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -16,4 +16,4 @@ package main -const version = "0.9.1" +const version = "0.9.2"