aws-sdk-cloudformation 1.105.0 → 1.107.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-cloudformation/client.rb +70 -46
- data/lib/aws-sdk-cloudformation/client_api.rb +27 -27
- data/lib/aws-sdk-cloudformation.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6028cca51abe5048a72091a1c5b61dca91162eceb0ad1adb6741fcfafc1a7ef3
|
|
4
|
+
data.tar.gz: 76268ab927973146baccdcb7f05e33f2f90f6a84b109178e2277d6d5324f0fd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d57fc4a11fc4568a5498c1de4468fc064361b9913dc9c4ec12b62d879a8077b38987c989f4872dd519d37cce7109bcc09586e2d43fd8b2074564264f8800c656
|
|
7
|
+
data.tar.gz: 4273afb5a5022ac7f9063ed9e70e3d77394957afc4b0a7ba0bae28dcee753cb9ece542d2ecfda159fe99d7b555a26da78294c8703a482879026a7e979c25de08
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.107.0 (2024-04-25)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.106.0 (2024-04-16)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.105.0 (2024-04-12)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.107.0
|
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
|
@@ -72,6 +73,7 @@ module Aws::CloudFormation
|
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
|
@@ -196,10 +198,17 @@ module Aws::CloudFormation
|
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
|
197
199
|
# for supported operations.
|
|
198
200
|
#
|
|
199
|
-
# @option options [String] :endpoint
|
|
200
|
-
#
|
|
201
|
-
#
|
|
202
|
-
#
|
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
|
203
|
+
# directly. This is normally constructed from the `:region`
|
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
|
206
|
+
# be a URI formatted like:
|
|
207
|
+
#
|
|
208
|
+
# 'http://example.com'
|
|
209
|
+
# 'https://example.com'
|
|
210
|
+
# 'http://example.com:123'
|
|
211
|
+
#
|
|
203
212
|
#
|
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
|
@@ -337,50 +346,65 @@ module Aws::CloudFormation
|
|
|
337
346
|
# @option options [Aws::CloudFormation::EndpointProvider] :endpoint_provider
|
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::CloudFormation::EndpointParameters`
|
|
339
348
|
#
|
|
340
|
-
# @option options [
|
|
341
|
-
#
|
|
342
|
-
#
|
|
343
|
-
#
|
|
344
|
-
#
|
|
345
|
-
#
|
|
346
|
-
#
|
|
347
|
-
#
|
|
348
|
-
#
|
|
349
|
-
#
|
|
350
|
-
#
|
|
351
|
-
# @option options [Float] :
|
|
352
|
-
#
|
|
353
|
-
#
|
|
354
|
-
#
|
|
355
|
-
#
|
|
356
|
-
#
|
|
357
|
-
#
|
|
358
|
-
#
|
|
359
|
-
#
|
|
360
|
-
#
|
|
361
|
-
#
|
|
362
|
-
#
|
|
363
|
-
#
|
|
364
|
-
#
|
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
|
354
|
+
#
|
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
|
358
|
+
# pool before making a request.
|
|
359
|
+
#
|
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
|
361
|
+
# The default number of seconds to wait for response data.
|
|
362
|
+
# This value can safely be set per-request on the session.
|
|
363
|
+
#
|
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
|
366
|
+
#
|
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
|
368
|
+
# The default number of seconds to wait for response data.
|
|
369
|
+
# This value can safely be set per-request on the session.
|
|
370
|
+
#
|
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
|
373
|
+
#
|
|
374
|
+
# @option options [Proc] :on_chunk_received
|
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
|
377
|
+
# the number of bytes received, and the total number of
|
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
|
379
|
+
#
|
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
|
383
|
+
# the number of bytes read from the body, and the total number of
|
|
384
|
+
# bytes in the body.
|
|
385
|
+
#
|
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
|
387
|
+
# When `true`, response errors are raised.
|
|
388
|
+
#
|
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
|
393
|
+
#
|
|
394
|
+
# @option options [String] :ssl_ca_directory
|
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
|
396
|
+
# authority files for verifying peer certificates. If you do
|
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
|
398
|
+
# default will be used if available.
|
|
365
399
|
#
|
|
366
|
-
# @option options [
|
|
367
|
-
#
|
|
400
|
+
# @option options [String] :ssl_ca_store
|
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
|
368
402
|
#
|
|
369
|
-
# @option options [
|
|
370
|
-
#
|
|
371
|
-
# connection.
|
|
403
|
+
# @option options [Float] :ssl_timeout
|
|
404
|
+
# Sets the SSL timeout in seconds
|
|
372
405
|
#
|
|
373
|
-
# @option options [
|
|
374
|
-
#
|
|
375
|
-
# verifying peer certificates. If you do not pass
|
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
|
377
|
-
# will be used if available.
|
|
378
|
-
#
|
|
379
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
|
380
|
-
# directory that contains the unbundled SSL certificate
|
|
381
|
-
# authority files for verifying peer certificates. If you do
|
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
|
383
|
-
# system default will be used if available.
|
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
|
384
408
|
#
|
|
385
409
|
def initialize(*args)
|
|
386
410
|
super
|
|
@@ -8342,7 +8366,7 @@ module Aws::CloudFormation
|
|
|
8342
8366
|
params: params,
|
|
8343
8367
|
config: config)
|
|
8344
8368
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
|
8345
|
-
context[:gem_version] = '1.
|
|
8369
|
+
context[:gem_version] = '1.107.0'
|
|
8346
8370
|
Seahorse::Client::Request.new(handlers, context)
|
|
8347
8371
|
end
|
|
8348
8372
|
|
|
@@ -31,7 +31,7 @@ module Aws::CloudFormation
|
|
|
31
31
|
AfterValue = Shapes::StringShape.new(name: 'AfterValue')
|
|
32
32
|
AllowedValue = Shapes::StringShape.new(name: 'AllowedValue')
|
|
33
33
|
AllowedValues = Shapes::ListShape.new(name: 'AllowedValues')
|
|
34
|
-
AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException')
|
|
34
|
+
AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException', error: {"code"=>"AlreadyExistsException", "httpStatusCode"=>400, "senderFault"=>true})
|
|
35
35
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
|
36
36
|
AttributeChangeType = Shapes::StringShape.new(name: 'AttributeChangeType')
|
|
37
37
|
AutoDeployment = Shapes::StructureShape.new(name: 'AutoDeployment')
|
|
@@ -45,7 +45,7 @@ module Aws::CloudFormation
|
|
|
45
45
|
BeforeValue = Shapes::StringShape.new(name: 'BeforeValue')
|
|
46
46
|
BoxedInteger = Shapes::IntegerShape.new(name: 'BoxedInteger')
|
|
47
47
|
BoxedMaxResults = Shapes::IntegerShape.new(name: 'BoxedMaxResults')
|
|
48
|
-
CFNRegistryException = Shapes::StructureShape.new(name: 'CFNRegistryException')
|
|
48
|
+
CFNRegistryException = Shapes::StructureShape.new(name: 'CFNRegistryException', error: {"code"=>"CFNRegistryException", "httpStatusCode"=>400, "senderFault"=>true})
|
|
49
49
|
CallAs = Shapes::StringShape.new(name: 'CallAs')
|
|
50
50
|
CancelUpdateStackInput = Shapes::StructureShape.new(name: 'CancelUpdateStackInput')
|
|
51
51
|
Capabilities = Shapes::ListShape.new(name: 'Capabilities')
|
|
@@ -63,7 +63,7 @@ module Aws::CloudFormation
|
|
|
63
63
|
ChangeSetId = Shapes::StringShape.new(name: 'ChangeSetId')
|
|
64
64
|
ChangeSetName = Shapes::StringShape.new(name: 'ChangeSetName')
|
|
65
65
|
ChangeSetNameOrId = Shapes::StringShape.new(name: 'ChangeSetNameOrId')
|
|
66
|
-
ChangeSetNotFoundException = Shapes::StructureShape.new(name: 'ChangeSetNotFoundException')
|
|
66
|
+
ChangeSetNotFoundException = Shapes::StructureShape.new(name: 'ChangeSetNotFoundException', error: {"code"=>"ChangeSetNotFound", "httpStatusCode"=>404, "senderFault"=>true})
|
|
67
67
|
ChangeSetStatus = Shapes::StringShape.new(name: 'ChangeSetStatus')
|
|
68
68
|
ChangeSetStatusReason = Shapes::StringShape.new(name: 'ChangeSetStatusReason')
|
|
69
69
|
ChangeSetSummaries = Shapes::ListShape.new(name: 'ChangeSetSummaries')
|
|
@@ -75,7 +75,7 @@ module Aws::CloudFormation
|
|
|
75
75
|
ClientRequestToken = Shapes::StringShape.new(name: 'ClientRequestToken')
|
|
76
76
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
77
77
|
ConcurrencyMode = Shapes::StringShape.new(name: 'ConcurrencyMode')
|
|
78
|
-
ConcurrentResourcesLimitExceededException = Shapes::StructureShape.new(name: 'ConcurrentResourcesLimitExceededException')
|
|
78
|
+
ConcurrentResourcesLimitExceededException = Shapes::StructureShape.new(name: 'ConcurrentResourcesLimitExceededException', error: {"code"=>"ConcurrentResourcesLimitExceeded", "httpStatusCode"=>429, "senderFault"=>true})
|
|
79
79
|
ConfigurationSchema = Shapes::StringShape.new(name: 'ConfigurationSchema')
|
|
80
80
|
ConnectionArn = Shapes::StringShape.new(name: 'ConnectionArn')
|
|
81
81
|
ContinueUpdateRollbackInput = Shapes::StructureShape.new(name: 'ContinueUpdateRollbackInput')
|
|
@@ -90,7 +90,7 @@ module Aws::CloudFormation
|
|
|
90
90
|
CreateStackOutput = Shapes::StructureShape.new(name: 'CreateStackOutput')
|
|
91
91
|
CreateStackSetInput = Shapes::StructureShape.new(name: 'CreateStackSetInput')
|
|
92
92
|
CreateStackSetOutput = Shapes::StructureShape.new(name: 'CreateStackSetOutput')
|
|
93
|
-
CreatedButModifiedException = Shapes::StructureShape.new(name: 'CreatedButModifiedException')
|
|
93
|
+
CreatedButModifiedException = Shapes::StructureShape.new(name: 'CreatedButModifiedException', error: {"code"=>"CreatedButModifiedException", "httpStatusCode"=>409, "senderFault"=>true})
|
|
94
94
|
CreationTime = Shapes::TimestampShape.new(name: 'CreationTime')
|
|
95
95
|
DeactivateOrganizationsAccessInput = Shapes::StructureShape.new(name: 'DeactivateOrganizationsAccessInput')
|
|
96
96
|
DeactivateOrganizationsAccessOutput = Shapes::StructureShape.new(name: 'DeactivateOrganizationsAccessOutput')
|
|
@@ -177,7 +177,7 @@ module Aws::CloudFormation
|
|
|
177
177
|
GeneratedTemplateDeletionPolicy = Shapes::StringShape.new(name: 'GeneratedTemplateDeletionPolicy')
|
|
178
178
|
GeneratedTemplateId = Shapes::StringShape.new(name: 'GeneratedTemplateId')
|
|
179
179
|
GeneratedTemplateName = Shapes::StringShape.new(name: 'GeneratedTemplateName')
|
|
180
|
-
GeneratedTemplateNotFoundException = Shapes::StructureShape.new(name: 'GeneratedTemplateNotFoundException')
|
|
180
|
+
GeneratedTemplateNotFoundException = Shapes::StructureShape.new(name: 'GeneratedTemplateNotFoundException', error: {"code"=>"GeneratedTemplateNotFound", "httpStatusCode"=>404, "senderFault"=>true})
|
|
181
181
|
GeneratedTemplateResourceStatus = Shapes::StringShape.new(name: 'GeneratedTemplateResourceStatus')
|
|
182
182
|
GeneratedTemplateStatus = Shapes::StringShape.new(name: 'GeneratedTemplateStatus')
|
|
183
183
|
GeneratedTemplateUpdateReplacePolicy = Shapes::StringShape.new(name: 'GeneratedTemplateUpdateReplacePolicy')
|
|
@@ -210,10 +210,10 @@ module Aws::CloudFormation
|
|
|
210
210
|
InSyncStackInstancesCount = Shapes::IntegerShape.new(name: 'InSyncStackInstancesCount')
|
|
211
211
|
IncludeNestedStacks = Shapes::BooleanShape.new(name: 'IncludeNestedStacks')
|
|
212
212
|
IncludePropertyValues = Shapes::BooleanShape.new(name: 'IncludePropertyValues')
|
|
213
|
-
InsufficientCapabilitiesException = Shapes::StructureShape.new(name: 'InsufficientCapabilitiesException')
|
|
214
|
-
InvalidChangeSetStatusException = Shapes::StructureShape.new(name: 'InvalidChangeSetStatusException')
|
|
215
|
-
InvalidOperationException = Shapes::StructureShape.new(name: 'InvalidOperationException')
|
|
216
|
-
InvalidStateTransitionException = Shapes::StructureShape.new(name: 'InvalidStateTransitionException')
|
|
213
|
+
InsufficientCapabilitiesException = Shapes::StructureShape.new(name: 'InsufficientCapabilitiesException', error: {"code"=>"InsufficientCapabilitiesException", "httpStatusCode"=>400, "senderFault"=>true})
|
|
214
|
+
InvalidChangeSetStatusException = Shapes::StructureShape.new(name: 'InvalidChangeSetStatusException', error: {"code"=>"InvalidChangeSetStatus", "httpStatusCode"=>400, "senderFault"=>true})
|
|
215
|
+
InvalidOperationException = Shapes::StructureShape.new(name: 'InvalidOperationException', error: {"code"=>"InvalidOperationException", "httpStatusCode"=>400, "senderFault"=>true})
|
|
216
|
+
InvalidStateTransitionException = Shapes::StructureShape.new(name: 'InvalidStateTransitionException', error: {"code"=>"InvalidStateTransition", "httpStatusCode"=>400, "senderFault"=>true})
|
|
217
217
|
IsActivated = Shapes::BooleanShape.new(name: 'IsActivated')
|
|
218
218
|
IsDefaultConfiguration = Shapes::BooleanShape.new(name: 'IsDefaultConfiguration')
|
|
219
219
|
IsDefaultVersion = Shapes::BooleanShape.new(name: 'IsDefaultVersion')
|
|
@@ -223,7 +223,7 @@ module Aws::CloudFormation
|
|
|
223
223
|
JazzResourceIdentifierPropertyValue = Shapes::StringShape.new(name: 'JazzResourceIdentifierPropertyValue')
|
|
224
224
|
Key = Shapes::StringShape.new(name: 'Key')
|
|
225
225
|
LastUpdatedTime = Shapes::TimestampShape.new(name: 'LastUpdatedTime')
|
|
226
|
-
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
|
226
|
+
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException', error: {"code"=>"LimitExceededException", "httpStatusCode"=>400, "senderFault"=>true})
|
|
227
227
|
LimitName = Shapes::StringShape.new(name: 'LimitName')
|
|
228
228
|
LimitValue = Shapes::IntegerShape.new(name: 'LimitValue')
|
|
229
229
|
ListChangeSetsInput = Shapes::StructureShape.new(name: 'ListChangeSetsInput')
|
|
@@ -277,7 +277,7 @@ module Aws::CloudFormation
|
|
|
277
277
|
Metadata = Shapes::StringShape.new(name: 'Metadata')
|
|
278
278
|
ModuleInfo = Shapes::StructureShape.new(name: 'ModuleInfo')
|
|
279
279
|
MonitoringTimeInMinutes = Shapes::IntegerShape.new(name: 'MonitoringTimeInMinutes')
|
|
280
|
-
NameAlreadyExistsException = Shapes::StructureShape.new(name: 'NameAlreadyExistsException')
|
|
280
|
+
NameAlreadyExistsException = Shapes::StructureShape.new(name: 'NameAlreadyExistsException', error: {"code"=>"NameAlreadyExistsException", "httpStatusCode"=>409, "senderFault"=>true})
|
|
281
281
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
282
282
|
NoEcho = Shapes::BooleanShape.new(name: 'NoEcho')
|
|
283
283
|
NotificationARN = Shapes::StringShape.new(name: 'NotificationARN')
|
|
@@ -285,15 +285,15 @@ module Aws::CloudFormation
|
|
|
285
285
|
NumberOfResources = Shapes::IntegerShape.new(name: 'NumberOfResources')
|
|
286
286
|
OnFailure = Shapes::StringShape.new(name: 'OnFailure')
|
|
287
287
|
OnStackFailure = Shapes::StringShape.new(name: 'OnStackFailure')
|
|
288
|
-
OperationIdAlreadyExistsException = Shapes::StructureShape.new(name: 'OperationIdAlreadyExistsException')
|
|
289
|
-
OperationInProgressException = Shapes::StructureShape.new(name: 'OperationInProgressException')
|
|
290
|
-
OperationNotFoundException = Shapes::StructureShape.new(name: 'OperationNotFoundException')
|
|
288
|
+
OperationIdAlreadyExistsException = Shapes::StructureShape.new(name: 'OperationIdAlreadyExistsException', error: {"code"=>"OperationIdAlreadyExistsException", "httpStatusCode"=>409, "senderFault"=>true})
|
|
289
|
+
OperationInProgressException = Shapes::StructureShape.new(name: 'OperationInProgressException', error: {"code"=>"OperationInProgressException", "httpStatusCode"=>409, "senderFault"=>true})
|
|
290
|
+
OperationNotFoundException = Shapes::StructureShape.new(name: 'OperationNotFoundException', error: {"code"=>"OperationNotFoundException", "httpStatusCode"=>404, "senderFault"=>true})
|
|
291
291
|
OperationResultFilter = Shapes::StructureShape.new(name: 'OperationResultFilter')
|
|
292
292
|
OperationResultFilterName = Shapes::StringShape.new(name: 'OperationResultFilterName')
|
|
293
293
|
OperationResultFilterValues = Shapes::StringShape.new(name: 'OperationResultFilterValues')
|
|
294
294
|
OperationResultFilters = Shapes::ListShape.new(name: 'OperationResultFilters')
|
|
295
295
|
OperationStatus = Shapes::StringShape.new(name: 'OperationStatus')
|
|
296
|
-
OperationStatusCheckFailedException = Shapes::StructureShape.new(name: 'OperationStatusCheckFailedException')
|
|
296
|
+
OperationStatusCheckFailedException = Shapes::StructureShape.new(name: 'OperationStatusCheckFailedException', error: {"code"=>"ConditionalCheckFailed", "httpStatusCode"=>400, "senderFault"=>true})
|
|
297
297
|
OptionalSecureUrl = Shapes::StringShape.new(name: 'OptionalSecureUrl')
|
|
298
298
|
OrganizationStatus = Shapes::StringShape.new(name: 'OrganizationStatus')
|
|
299
299
|
OrganizationalUnitId = Shapes::StringShape.new(name: 'OrganizationalUnitId')
|
|
@@ -373,9 +373,9 @@ module Aws::CloudFormation
|
|
|
373
373
|
ResourceProperties = Shapes::StringShape.new(name: 'ResourceProperties')
|
|
374
374
|
ResourcePropertyPath = Shapes::StringShape.new(name: 'ResourcePropertyPath')
|
|
375
375
|
ResourceScanId = Shapes::StringShape.new(name: 'ResourceScanId')
|
|
376
|
-
ResourceScanInProgressException = Shapes::StructureShape.new(name: 'ResourceScanInProgressException')
|
|
377
|
-
ResourceScanLimitExceededException = Shapes::StructureShape.new(name: 'ResourceScanLimitExceededException')
|
|
378
|
-
ResourceScanNotFoundException = Shapes::StructureShape.new(name: 'ResourceScanNotFoundException')
|
|
376
|
+
ResourceScanInProgressException = Shapes::StructureShape.new(name: 'ResourceScanInProgressException', error: {"code"=>"ResourceScanInProgress", "httpStatusCode"=>400, "senderFault"=>true})
|
|
377
|
+
ResourceScanLimitExceededException = Shapes::StructureShape.new(name: 'ResourceScanLimitExceededException', error: {"code"=>"ResourceScanLimitExceeded", "httpStatusCode"=>400, "senderFault"=>true})
|
|
378
|
+
ResourceScanNotFoundException = Shapes::StructureShape.new(name: 'ResourceScanNotFoundException', error: {"code"=>"ResourceScanNotFound", "httpStatusCode"=>400, "senderFault"=>true})
|
|
379
379
|
ResourceScanStatus = Shapes::StringShape.new(name: 'ResourceScanStatus')
|
|
380
380
|
ResourceScanStatusReason = Shapes::StringShape.new(name: 'ResourceScanStatusReason')
|
|
381
381
|
ResourceScanSummaries = Shapes::ListShape.new(name: 'ResourceScanSummaries')
|
|
@@ -443,7 +443,7 @@ module Aws::CloudFormation
|
|
|
443
443
|
StackInstanceFilterName = Shapes::StringShape.new(name: 'StackInstanceFilterName')
|
|
444
444
|
StackInstanceFilterValues = Shapes::StringShape.new(name: 'StackInstanceFilterValues')
|
|
445
445
|
StackInstanceFilters = Shapes::ListShape.new(name: 'StackInstanceFilters')
|
|
446
|
-
StackInstanceNotFoundException = Shapes::StructureShape.new(name: 'StackInstanceNotFoundException')
|
|
446
|
+
StackInstanceNotFoundException = Shapes::StructureShape.new(name: 'StackInstanceNotFoundException', error: {"code"=>"StackInstanceNotFoundException", "httpStatusCode"=>404, "senderFault"=>true})
|
|
447
447
|
StackInstanceResourceDriftsSummaries = Shapes::ListShape.new(name: 'StackInstanceResourceDriftsSummaries')
|
|
448
448
|
StackInstanceResourceDriftsSummary = Shapes::StructureShape.new(name: 'StackInstanceResourceDriftsSummary')
|
|
449
449
|
StackInstanceStatus = Shapes::StringShape.new(name: 'StackInstanceStatus')
|
|
@@ -451,7 +451,7 @@ module Aws::CloudFormation
|
|
|
451
451
|
StackInstanceSummary = Shapes::StructureShape.new(name: 'StackInstanceSummary')
|
|
452
452
|
StackName = Shapes::StringShape.new(name: 'StackName')
|
|
453
453
|
StackNameOrId = Shapes::StringShape.new(name: 'StackNameOrId')
|
|
454
|
-
StackNotFoundException = Shapes::StructureShape.new(name: 'StackNotFoundException')
|
|
454
|
+
StackNotFoundException = Shapes::StructureShape.new(name: 'StackNotFoundException', error: {"code"=>"StackNotFoundException", "httpStatusCode"=>404, "senderFault"=>true})
|
|
455
455
|
StackPolicyBody = Shapes::StringShape.new(name: 'StackPolicyBody')
|
|
456
456
|
StackPolicyDuringUpdateBody = Shapes::StringShape.new(name: 'StackPolicyDuringUpdateBody')
|
|
457
457
|
StackPolicyDuringUpdateURL = Shapes::StringShape.new(name: 'StackPolicyDuringUpdateURL')
|
|
@@ -477,8 +477,8 @@ module Aws::CloudFormation
|
|
|
477
477
|
StackSetId = Shapes::StringShape.new(name: 'StackSetId')
|
|
478
478
|
StackSetName = Shapes::StringShape.new(name: 'StackSetName')
|
|
479
479
|
StackSetNameOrId = Shapes::StringShape.new(name: 'StackSetNameOrId')
|
|
480
|
-
StackSetNotEmptyException = Shapes::StructureShape.new(name: 'StackSetNotEmptyException')
|
|
481
|
-
StackSetNotFoundException = Shapes::StructureShape.new(name: 'StackSetNotFoundException')
|
|
480
|
+
StackSetNotEmptyException = Shapes::StructureShape.new(name: 'StackSetNotEmptyException', error: {"code"=>"StackSetNotEmptyException", "httpStatusCode"=>409, "senderFault"=>true})
|
|
481
|
+
StackSetNotFoundException = Shapes::StructureShape.new(name: 'StackSetNotFoundException', error: {"code"=>"StackSetNotFoundException", "httpStatusCode"=>404, "senderFault"=>true})
|
|
482
482
|
StackSetOperation = Shapes::StructureShape.new(name: 'StackSetOperation')
|
|
483
483
|
StackSetOperationAction = Shapes::StringShape.new(name: 'StackSetOperationAction')
|
|
484
484
|
StackSetOperationPreferences = Shapes::StructureShape.new(name: 'StackSetOperationPreferences')
|
|
@@ -500,7 +500,7 @@ module Aws::CloudFormation
|
|
|
500
500
|
StackSummary = Shapes::StructureShape.new(name: 'StackSummary')
|
|
501
501
|
Stacks = Shapes::ListShape.new(name: 'Stacks')
|
|
502
502
|
StageList = Shapes::ListShape.new(name: 'StageList')
|
|
503
|
-
StaleRequestException = Shapes::StructureShape.new(name: 'StaleRequestException')
|
|
503
|
+
StaleRequestException = Shapes::StructureShape.new(name: 'StaleRequestException', error: {"code"=>"StaleRequestException", "httpStatusCode"=>409, "senderFault"=>true})
|
|
504
504
|
StartResourceScanInput = Shapes::StructureShape.new(name: 'StartResourceScanInput')
|
|
505
505
|
StartResourceScanOutput = Shapes::StructureShape.new(name: 'StartResourceScanOutput')
|
|
506
506
|
StatusMessage = Shapes::StringShape.new(name: 'StatusMessage')
|
|
@@ -531,7 +531,7 @@ module Aws::CloudFormation
|
|
|
531
531
|
ThirdPartyTypeArn = Shapes::StringShape.new(name: 'ThirdPartyTypeArn')
|
|
532
532
|
TimeoutMinutes = Shapes::IntegerShape.new(name: 'TimeoutMinutes')
|
|
533
533
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
|
534
|
-
TokenAlreadyExistsException = Shapes::StructureShape.new(name: 'TokenAlreadyExistsException')
|
|
534
|
+
TokenAlreadyExistsException = Shapes::StructureShape.new(name: 'TokenAlreadyExistsException', error: {"code"=>"TokenAlreadyExistsException", "httpStatusCode"=>400, "senderFault"=>true})
|
|
535
535
|
TotalStackInstancesCount = Shapes::IntegerShape.new(name: 'TotalStackInstancesCount')
|
|
536
536
|
TotalWarnings = Shapes::IntegerShape.new(name: 'TotalWarnings')
|
|
537
537
|
TransformName = Shapes::StringShape.new(name: 'TransformName')
|
|
@@ -546,12 +546,12 @@ module Aws::CloudFormation
|
|
|
546
546
|
TypeConfigurationDetailsList = Shapes::ListShape.new(name: 'TypeConfigurationDetailsList')
|
|
547
547
|
TypeConfigurationIdentifier = Shapes::StructureShape.new(name: 'TypeConfigurationIdentifier')
|
|
548
548
|
TypeConfigurationIdentifiers = Shapes::ListShape.new(name: 'TypeConfigurationIdentifiers')
|
|
549
|
-
TypeConfigurationNotFoundException = Shapes::StructureShape.new(name: 'TypeConfigurationNotFoundException')
|
|
549
|
+
TypeConfigurationNotFoundException = Shapes::StructureShape.new(name: 'TypeConfigurationNotFoundException', error: {"code"=>"TypeConfigurationNotFoundException", "httpStatusCode"=>404, "senderFault"=>true})
|
|
550
550
|
TypeFilters = Shapes::StructureShape.new(name: 'TypeFilters')
|
|
551
551
|
TypeHierarchy = Shapes::StringShape.new(name: 'TypeHierarchy')
|
|
552
552
|
TypeName = Shapes::StringShape.new(name: 'TypeName')
|
|
553
553
|
TypeNamePrefix = Shapes::StringShape.new(name: 'TypeNamePrefix')
|
|
554
|
-
TypeNotFoundException = Shapes::StructureShape.new(name: 'TypeNotFoundException')
|
|
554
|
+
TypeNotFoundException = Shapes::StructureShape.new(name: 'TypeNotFoundException', error: {"code"=>"TypeNotFoundException", "httpStatusCode"=>404, "senderFault"=>true})
|
|
555
555
|
TypeSchema = Shapes::StringShape.new(name: 'TypeSchema')
|
|
556
556
|
TypeSummaries = Shapes::ListShape.new(name: 'TypeSummaries')
|
|
557
557
|
TypeSummary = Shapes::StructureShape.new(name: 'TypeSummary')
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-cloudformation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.107.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-04-
|
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.193.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.193.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|