aws-sdk-cloudformation 1.95.0 → 1.97.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5465a89146e2a0b10d85a0fa96d3fa08fc7ef5b566250cdd0646d8b882a0ddf5
4
- data.tar.gz: f10200a18f36dfd036829595d22a0933b028c0670c942c75d3ce2c4f9309807b
3
+ metadata.gz: 0a16873a074fa23ca8bd817086672c65bc5247fc98937dfb965a892cd47c9f1a
4
+ data.tar.gz: 80d08d3e038446793aef84aa756ed078ef38d942d527f95a6600337cdf6f5239
5
5
  SHA512:
6
- metadata.gz: cb3183b1ade79f8001ab5cd58707689b1f41838be13e298952af43b2a9e7015139e5773f349bea495f37e416f15b6a4b29bfdd80779b9273546a481b11506697
7
- data.tar.gz: c828d54e5c01702ebd7216594bc0f78a7aaad64aecedc8d6df39b5555437ff79a47b69d3d2696fc6f85de33ae8ed061bc80f4630bb08c1770acdd4166aa06931
6
+ metadata.gz: d9e5072362fae662e838cbf61fa1696edbd0ba0084740719e1f7f7a8d4cc0a322b159479ba136278c23f255af6074bbbdc6a7e07939df1533fdb488debcb1898
7
+ data.tar.gz: 61aa0af2750e2f8cc9ea0a2fca1656ad6b346f4ac136f394422ad47d2125599f3e82c786e16e6bb97986fafb183a8ae2e9f103f9713768d3e2077527feedeaad
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.97.0 (2023-12-05)
5
+ ------------------
6
+
7
+ * Feature - Documentation update, December 2023
8
+
9
+ 1.96.0 (2023-12-04)
10
+ ------------------
11
+
12
+ * Feature - Including UPDATE_* states as a success status for CreateStack waiter.
13
+
4
14
  1.95.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.97.0
@@ -1031,7 +1031,7 @@ module Aws::CloudFormation
1031
1031
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_ExecuteChangeSet.html
1032
1032
  #
1033
1033
  # @option params [Boolean] :import_existing_resources
1034
- # Indicates if the stack set imports resources that already exist.
1034
+ # Indicates if the change set imports resources that already exist.
1035
1035
  #
1036
1036
  # <note markdown="1"> This parameter can only import resources that have custom names in
1037
1037
  # templates. For more information, see [name type][1] in the
@@ -7221,7 +7221,7 @@ module Aws::CloudFormation
7221
7221
  params: params,
7222
7222
  config: config)
7223
7223
  context[:gem_name] = 'aws-sdk-cloudformation'
7224
- context[:gem_version] = '1.95.0'
7224
+ context[:gem_version] = '1.97.0'
7225
7225
  Seahorse::Client::Request.new(handlers, context)
7226
7226
  end
7227
7227
 
@@ -581,7 +581,7 @@ module Aws::CloudFormation
581
581
  # @return [String]
582
582
  #
583
583
  # @!attribute [rw] import_existing_resources
584
- # Indicates if the stack set imports resources that already exist.
584
+ # Indicates if the change set imports resources that already exist.
585
585
  # @return [Boolean]
586
586
  #
587
587
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ChangeSetSummary AWS API Documentation
@@ -974,7 +974,7 @@ module Aws::CloudFormation
974
974
  # @return [String]
975
975
  #
976
976
  # @!attribute [rw] import_existing_resources
977
- # Indicates if the stack set imports resources that already exist.
977
+ # Indicates if the change set imports resources that already exist.
978
978
  #
979
979
  # <note markdown="1"> This parameter can only import resources that have custom names in
980
980
  # templates. For more information, see [name type][1] in the
@@ -2446,7 +2446,7 @@ module Aws::CloudFormation
2446
2446
  # @return [String]
2447
2447
  #
2448
2448
  # @!attribute [rw] import_existing_resources
2449
- # Indicates if the stack set imports resources that already exist.
2449
+ # Indicates if the change set imports resources that already exist.
2450
2450
  #
2451
2451
  # <note markdown="1"> This parameter can only import resources that have [custom names][1]
2452
2452
  # in templates. To import resources that do not accept custom names,
@@ -153,6 +153,54 @@ module Aws::CloudFormation
153
153
  "matcher" => "pathAll",
154
154
  "state" => "success"
155
155
  },
156
+ {
157
+ "argument" => "stacks[].stack_status",
158
+ "expected" => "UPDATE_COMPLETE",
159
+ "matcher" => "pathAll",
160
+ "state" => "success"
161
+ },
162
+ {
163
+ "argument" => "stacks[].stack_status",
164
+ "expected" => "UPDATE_IN_PROGRESS",
165
+ "matcher" => "pathAll",
166
+ "state" => "success"
167
+ },
168
+ {
169
+ "argument" => "stacks[].stack_status",
170
+ "expected" => "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS",
171
+ "matcher" => "pathAll",
172
+ "state" => "success"
173
+ },
174
+ {
175
+ "argument" => "stacks[].stack_status",
176
+ "expected" => "UPDATE_FAILED",
177
+ "matcher" => "pathAll",
178
+ "state" => "success"
179
+ },
180
+ {
181
+ "argument" => "stacks[].stack_status",
182
+ "expected" => "UPDATE_ROLLBACK_IN_PROGRESS",
183
+ "matcher" => "pathAll",
184
+ "state" => "success"
185
+ },
186
+ {
187
+ "argument" => "stacks[].stack_status",
188
+ "expected" => "UPDATE_ROLLBACK_FAILED",
189
+ "matcher" => "pathAll",
190
+ "state" => "success"
191
+ },
192
+ {
193
+ "argument" => "stacks[].stack_status",
194
+ "expected" => "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS",
195
+ "matcher" => "pathAll",
196
+ "state" => "success"
197
+ },
198
+ {
199
+ "argument" => "stacks[].stack_status",
200
+ "expected" => "UPDATE_ROLLBACK_COMPLETE",
201
+ "matcher" => "pathAll",
202
+ "state" => "success"
203
+ },
156
204
  {
157
205
  "argument" => "stacks[].stack_status",
158
206
  "expected" => "CREATE_FAILED",
@@ -57,6 +57,6 @@ require_relative 'aws-sdk-cloudformation/customizations'
57
57
  # @!group service
58
58
  module Aws::CloudFormation
59
59
 
60
- GEM_VERSION = '1.95.0'
60
+ GEM_VERSION = '1.97.0'
61
61
 
62
62
  end
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.95.0
4
+ version: 1.97.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: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2023-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core