aws-sdk-cloudformation 1.77.0 → 1.78.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-cloudformation/client.rb +6 -1
- data/lib/aws-sdk-cloudformation/event.rb +3 -1
- data/lib/aws-sdk-cloudformation/resource.rb +6 -2
- data/lib/aws-sdk-cloudformation/stack.rb +27 -9
- data/lib/aws-sdk-cloudformation/stack_resource.rb +6 -2
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +3 -1
- 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: 5b1022215a3c2522513a868193dc7afc51501ccdd14dc144f0d8a2f7d82e1cbf
|
4
|
+
data.tar.gz: ffa1a738b1d4e13287d51b2de7cb58f17ded8769a5dde17ba2124aa42cc5af5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60de0848ab1d504d17cb1d2a9e27f606b2cd0c6325de8c39ea514377844f8c3604946ba7d6783c4df2fd7682d7218708ec42ebcdb5dc786fae7253c65f8a986e
|
7
|
+
data.tar.gz: d22f8b009be878f99bccfbf23ce6b509e7002460f537bce3c366cea9dd1fa84490e27c2ba7d8c6873c1a26b43af8f1defa78f1863a97097f86011ab3c3d8155b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.78.0
|
@@ -275,6 +275,11 @@ module Aws::CloudFormation
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -6823,7 +6828,7 @@ module Aws::CloudFormation
|
|
6823
6828
|
params: params,
|
6824
6829
|
config: config)
|
6825
6830
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
6826
|
-
context[:gem_version] = '1.
|
6831
|
+
context[:gem_version] = '1.78.0'
|
6827
6832
|
Seahorse::Client::Request.new(handlers, context)
|
6828
6833
|
end
|
6829
6834
|
|
@@ -317,7 +317,9 @@ module Aws::CloudFormation
|
|
317
317
|
# [2]: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-nested-stacks.html
|
318
318
|
# @return [Stack]
|
319
319
|
def create_stack(options = {})
|
320
|
-
|
320
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
321
|
+
@client.create_stack(options)
|
322
|
+
end
|
321
323
|
Stack.new(
|
322
324
|
name: options[:stack_name],
|
323
325
|
client: @client
|
@@ -363,7 +365,9 @@ module Aws::CloudFormation
|
|
363
365
|
# @return [Stack::Collection]
|
364
366
|
def stacks(options = {})
|
365
367
|
batches = Enumerator.new do |y|
|
366
|
-
resp =
|
368
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
369
|
+
@client.describe_stacks(options)
|
370
|
+
end
|
367
371
|
resp.each_page do |page|
|
368
372
|
batch = []
|
369
373
|
page.data.stacks.each do |s|
|
@@ -222,7 +222,9 @@ module Aws::CloudFormation
|
|
222
222
|
#
|
223
223
|
# @return [self]
|
224
224
|
def load
|
225
|
-
resp =
|
225
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
226
|
+
@client.describe_stacks(stack_name: @name)
|
227
|
+
end
|
226
228
|
@data = resp.stacks[0]
|
227
229
|
self
|
228
230
|
end
|
@@ -267,7 +269,9 @@ module Aws::CloudFormation
|
|
267
269
|
options, params = separate_params_and_options(options)
|
268
270
|
waiter = Waiters::StackExists.new(options)
|
269
271
|
yield_waiter_and_warn(waiter, &block) if block_given?
|
270
|
-
|
272
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
273
|
+
waiter.wait(params.merge(stack_name: @name))
|
274
|
+
end
|
271
275
|
Stack.new({
|
272
276
|
name: @name,
|
273
277
|
client: @client
|
@@ -368,7 +372,9 @@ module Aws::CloudFormation
|
|
368
372
|
:retry
|
369
373
|
end
|
370
374
|
end
|
371
|
-
Aws::
|
375
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
376
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
377
|
+
end
|
372
378
|
end
|
373
379
|
|
374
380
|
# @!group Actions
|
@@ -388,7 +394,9 @@ module Aws::CloudFormation
|
|
388
394
|
# @return [EmptyStructure]
|
389
395
|
def cancel_update(options = {})
|
390
396
|
options = options.merge(stack_name: @name)
|
391
|
-
resp =
|
397
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
398
|
+
@client.cancel_update_stack(options)
|
399
|
+
end
|
392
400
|
resp.data
|
393
401
|
end
|
394
402
|
|
@@ -665,7 +673,9 @@ module Aws::CloudFormation
|
|
665
673
|
# @return [Types::CreateStackOutput]
|
666
674
|
def create(options = {})
|
667
675
|
options = options.merge(stack_name: @name)
|
668
|
-
resp =
|
676
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
677
|
+
@client.create_stack(options)
|
678
|
+
end
|
669
679
|
resp.data
|
670
680
|
end
|
671
681
|
|
@@ -718,7 +728,9 @@ module Aws::CloudFormation
|
|
718
728
|
# @return [EmptyStructure]
|
719
729
|
def delete(options = {})
|
720
730
|
options = options.merge(stack_name: @name)
|
721
|
-
resp =
|
731
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
732
|
+
@client.delete_stack(options)
|
733
|
+
end
|
722
734
|
resp.data
|
723
735
|
end
|
724
736
|
|
@@ -1000,7 +1012,9 @@ module Aws::CloudFormation
|
|
1000
1012
|
# @return [Types::UpdateStackOutput]
|
1001
1013
|
def update(options = {})
|
1002
1014
|
options = options.merge(stack_name: @name)
|
1003
|
-
resp =
|
1015
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
1016
|
+
@client.update_stack(options)
|
1017
|
+
end
|
1004
1018
|
resp.data
|
1005
1019
|
end
|
1006
1020
|
|
@@ -1014,7 +1028,9 @@ module Aws::CloudFormation
|
|
1014
1028
|
def events(options = {})
|
1015
1029
|
batches = Enumerator.new do |y|
|
1016
1030
|
options = options.merge(stack_name: @name)
|
1017
|
-
resp =
|
1031
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
1032
|
+
@client.describe_stack_events(options)
|
1033
|
+
end
|
1018
1034
|
resp.each_page do |page|
|
1019
1035
|
batch = []
|
1020
1036
|
page.data.stack_events.each do |s|
|
@@ -1048,7 +1064,9 @@ module Aws::CloudFormation
|
|
1048
1064
|
def resource_summaries(options = {})
|
1049
1065
|
batches = Enumerator.new do |y|
|
1050
1066
|
options = options.merge(stack_name: @name)
|
1051
|
-
resp =
|
1067
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
1068
|
+
@client.list_stack_resources(options)
|
1069
|
+
end
|
1052
1070
|
resp.each_page do |page|
|
1053
1071
|
batch = []
|
1054
1072
|
page.data.stack_resource_summaries.each do |s|
|
@@ -139,10 +139,12 @@ module Aws::CloudFormation
|
|
139
139
|
#
|
140
140
|
# @return [self]
|
141
141
|
def load
|
142
|
-
resp =
|
142
|
+
resp = Aws::Plugins::UserAgent.feature('resource') do
|
143
|
+
@client.describe_stack_resource(
|
143
144
|
logical_resource_id: @logical_id,
|
144
145
|
stack_name: @stack_name
|
145
146
|
)
|
147
|
+
end
|
146
148
|
@data = resp.stack_resource_detail
|
147
149
|
self
|
148
150
|
end
|
@@ -257,7 +259,9 @@ module Aws::CloudFormation
|
|
257
259
|
:retry
|
258
260
|
end
|
259
261
|
end
|
260
|
-
Aws::
|
262
|
+
Aws::Plugins::UserAgent.feature('resource') do
|
263
|
+
Aws::Waiters::Waiter.new(options).wait({})
|
264
|
+
end
|
261
265
|
end
|
262
266
|
|
263
267
|
# @!group Associations
|
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.78.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
|
+
date: 2023-05-31 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.174.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.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|