aws-sdk-servicecatalog 1.112.0 → 1.114.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-servicecatalog/client.rb +2 -3
- data/lib/aws-sdk-servicecatalog/client_api.rb +2 -0
- data/lib/aws-sdk-servicecatalog.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2cff8350ebbbb08d2903426c821613c9e20f38c417efe206a5793061c8c6ec98
|
4
|
+
data.tar.gz: 3945ea1f89281669a20a4329d5b60b7c91851d712678cd3ea0544891da1e21da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b7012333fd9db8a27481c162a0541ee13c06eec1bb08ef0c1e1ed83cfad98f3fb29a640a0c6a522d3beec52b5dc0a8b2afaf6ed4a426ea2e3dae57a80f8460e
|
7
|
+
data.tar.gz: 34d12f72c094f172cadb59030373bbd4e399fff2807d960070c180830ea248b7b9b6db9add7225d0f5921e9964fadf814917be77030a870d4694cdd7cb509cd8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.114.0 (2025-05-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.113.0 (2025-05-06)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - ServiceCatalog's APIs (DeleteServiceAction, DisassociateServiceActionFromProvisioningArtifact, AssociateServiceActionWithProvisioningArtifact) now throw InvalidParametersException when IdempotencyToken is invalid.
|
13
|
+
|
4
14
|
1.112.0 (2025-05-01)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.114.0
|
@@ -200,8 +200,7 @@ module Aws::ServiceCatalog
|
|
200
200
|
# accepted modes and the configuration defaults that are included.
|
201
201
|
#
|
202
202
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
203
|
-
#
|
204
|
-
# to default service endpoint when available.
|
203
|
+
# When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
|
205
204
|
#
|
206
205
|
# @option options [Boolean] :disable_request_compression (false)
|
207
206
|
# When set to 'true' the request body will not be compressed
|
@@ -6373,7 +6372,7 @@ module Aws::ServiceCatalog
|
|
6373
6372
|
tracer: tracer
|
6374
6373
|
)
|
6375
6374
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
6376
|
-
context[:gem_version] = '1.
|
6375
|
+
context[:gem_version] = '1.114.0'
|
6377
6376
|
Seahorse::Client::Request.new(handlers, context)
|
6378
6377
|
end
|
6379
6378
|
|
@@ -2221,6 +2221,7 @@ module Aws::ServiceCatalog
|
|
2221
2221
|
o.output = Shapes::ShapeRef.new(shape: DeleteServiceActionOutput)
|
2222
2222
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2223
2223
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
2224
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
|
2224
2225
|
end)
|
2225
2226
|
|
2226
2227
|
api.add_operation(:delete_tag_option, Seahorse::Model::Operation.new.tap do |o|
|
@@ -2444,6 +2445,7 @@ module Aws::ServiceCatalog
|
|
2444
2445
|
o.input = Shapes::ShapeRef.new(shape: DisassociateServiceActionFromProvisioningArtifactInput)
|
2445
2446
|
o.output = Shapes::ShapeRef.new(shape: DisassociateServiceActionFromProvisioningArtifactOutput)
|
2446
2447
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2448
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
|
2447
2449
|
end)
|
2448
2450
|
|
2449
2451
|
api.add_operation(:disassociate_tag_option_from_resource, Seahorse::Model::Operation.new.tap do |o|
|