aws-sdk-servicecatalog 1.112.0 → 1.113.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-servicecatalog/client.rb +1 -1
- 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: ecc30cc696c4ef1b296d928c0a302b517b29795f4459d0cf7dba233e2f0a9890
|
4
|
+
data.tar.gz: 11f99f74e0c530f06950cb9851faaa35aa4be885e8d0cbe1f5b079a3d2aa1341
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62d05fac4bee0086551a4900849b8b1e3b2e17985c74f98365c0612858f0aa70ad8b1cc7ab89a5852b45f37fe89732cd2a82e371af87bd9e2614f0bca5052fb5
|
7
|
+
data.tar.gz: 9214b2d3905c9797048fbf2d2a3ae444a2b817b2360b0ce491b332e2c18d94cab899a626b49d061b73feb1e3254613d6060ea3251ee059d1a6c5851f45b96332
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.113.0 (2025-05-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - ServiceCatalog's APIs (DeleteServiceAction, DisassociateServiceActionFromProvisioningArtifact, AssociateServiceActionWithProvisioningArtifact) now throw InvalidParametersException when IdempotencyToken is invalid.
|
8
|
+
|
4
9
|
1.112.0 (2025-05-01)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.113.0
|
@@ -6373,7 +6373,7 @@ module Aws::ServiceCatalog
|
|
6373
6373
|
tracer: tracer
|
6374
6374
|
)
|
6375
6375
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
6376
|
-
context[:gem_version] = '1.
|
6376
|
+
context[:gem_version] = '1.113.0'
|
6377
6377
|
Seahorse::Client::Request.new(handlers, context)
|
6378
6378
|
end
|
6379
6379
|
|
@@ -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|
|