aws-sdk-cloudformation 1.109.0 → 1.110.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 +1 -1
- data/lib/aws-sdk-cloudformation/event.rb +1 -1
- data/lib/aws-sdk-cloudformation/resource.rb +2 -2
- data/lib/aws-sdk-cloudformation/stack.rb +9 -9
- data/lib/aws-sdk-cloudformation/stack_resource.rb +2 -2
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +1 -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: edbc6bb09603c053c5e0b8f4f64c020e15eacdb6747a4b6030f7611d6848a661
|
4
|
+
data.tar.gz: a00fb2f8979239b98ddc2be12acdbcaf436bdaa078b1d15a419e10d2c578aa89
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 25ffccfbb30c241a60e7f8687ee1cbd13ac80772a633c58f55f27093c116ccc8eac90f773b5fe00a2a57ca659fb59c21e2026fdb6e8128fc26a9b8aa57539ccb
|
7
|
+
data.tar.gz: 1ac96b71f25e5b56788e85b5c057c128d728b74f1c44f78303506db24732292bdbd03bd74911ebeefe38555b7c5693e7d0b6253e9d04002dfd4e19624a64d351
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.110.0
|
@@ -8378,7 +8378,7 @@ module Aws::CloudFormation
|
|
8378
8378
|
params: params,
|
8379
8379
|
config: config)
|
8380
8380
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
8381
|
-
context[:gem_version] = '1.
|
8381
|
+
context[:gem_version] = '1.110.0'
|
8382
8382
|
Seahorse::Client::Request.new(handlers, context)
|
8383
8383
|
end
|
8384
8384
|
|
@@ -336,7 +336,7 @@ module Aws::CloudFormation
|
|
336
336
|
# Default: `false`
|
337
337
|
# @return [Stack]
|
338
338
|
def create_stack(options = {})
|
339
|
-
Aws::Plugins::UserAgent.
|
339
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
340
340
|
@client.create_stack(options)
|
341
341
|
end
|
342
342
|
Stack.new(
|
@@ -403,7 +403,7 @@ module Aws::CloudFormation
|
|
403
403
|
# @return [Stack::Collection]
|
404
404
|
def stacks(options = {})
|
405
405
|
batches = Enumerator.new do |y|
|
406
|
-
resp = Aws::Plugins::UserAgent.
|
406
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
407
407
|
@client.describe_stacks(options)
|
408
408
|
end
|
409
409
|
resp.each_page do |page|
|
@@ -260,7 +260,7 @@ module Aws::CloudFormation
|
|
260
260
|
#
|
261
261
|
# @return [self]
|
262
262
|
def load
|
263
|
-
resp = Aws::Plugins::UserAgent.
|
263
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
264
264
|
@client.describe_stacks(stack_name: @name)
|
265
265
|
end
|
266
266
|
@data = resp.stacks[0]
|
@@ -307,7 +307,7 @@ module Aws::CloudFormation
|
|
307
307
|
options, params = separate_params_and_options(options)
|
308
308
|
waiter = Waiters::StackExists.new(options)
|
309
309
|
yield_waiter_and_warn(waiter, &block) if block_given?
|
310
|
-
Aws::Plugins::UserAgent.
|
310
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
311
311
|
waiter.wait(params.merge(stack_name: @name))
|
312
312
|
end
|
313
313
|
Stack.new({
|
@@ -410,7 +410,7 @@ module Aws::CloudFormation
|
|
410
410
|
:retry
|
411
411
|
end
|
412
412
|
end
|
413
|
-
Aws::Plugins::UserAgent.
|
413
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
414
414
|
Aws::Waiters::Waiter.new(options).wait({})
|
415
415
|
end
|
416
416
|
end
|
@@ -432,7 +432,7 @@ module Aws::CloudFormation
|
|
432
432
|
# @return [EmptyStructure]
|
433
433
|
def cancel_update(options = {})
|
434
434
|
options = options.merge(stack_name: @name)
|
435
|
-
resp = Aws::Plugins::UserAgent.
|
435
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
436
436
|
@client.cancel_update_stack(options)
|
437
437
|
end
|
438
438
|
resp.data
|
@@ -730,7 +730,7 @@ module Aws::CloudFormation
|
|
730
730
|
# @return [Types::CreateStackOutput]
|
731
731
|
def create(options = {})
|
732
732
|
options = options.merge(stack_name: @name)
|
733
|
-
resp = Aws::Plugins::UserAgent.
|
733
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
734
734
|
@client.create_stack(options)
|
735
735
|
end
|
736
736
|
resp.data
|
@@ -794,7 +794,7 @@ module Aws::CloudFormation
|
|
794
794
|
# @return [EmptyStructure]
|
795
795
|
def delete(options = {})
|
796
796
|
options = options.merge(stack_name: @name)
|
797
|
-
resp = Aws::Plugins::UserAgent.
|
797
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
798
798
|
@client.delete_stack(options)
|
799
799
|
end
|
800
800
|
resp.data
|
@@ -1098,7 +1098,7 @@ module Aws::CloudFormation
|
|
1098
1098
|
# @return [Types::UpdateStackOutput]
|
1099
1099
|
def update(options = {})
|
1100
1100
|
options = options.merge(stack_name: @name)
|
1101
|
-
resp = Aws::Plugins::UserAgent.
|
1101
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1102
1102
|
@client.update_stack(options)
|
1103
1103
|
end
|
1104
1104
|
resp.data
|
@@ -1114,7 +1114,7 @@ module Aws::CloudFormation
|
|
1114
1114
|
def events(options = {})
|
1115
1115
|
batches = Enumerator.new do |y|
|
1116
1116
|
options = options.merge(stack_name: @name)
|
1117
|
-
resp = Aws::Plugins::UserAgent.
|
1117
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1118
1118
|
@client.describe_stack_events(options)
|
1119
1119
|
end
|
1120
1120
|
resp.each_page do |page|
|
@@ -1150,7 +1150,7 @@ module Aws::CloudFormation
|
|
1150
1150
|
def resource_summaries(options = {})
|
1151
1151
|
batches = Enumerator.new do |y|
|
1152
1152
|
options = options.merge(stack_name: @name)
|
1153
|
-
resp = Aws::Plugins::UserAgent.
|
1153
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1154
1154
|
@client.list_stack_resources(options)
|
1155
1155
|
end
|
1156
1156
|
resp.each_page do |page|
|
@@ -139,7 +139,7 @@ module Aws::CloudFormation
|
|
139
139
|
#
|
140
140
|
# @return [self]
|
141
141
|
def load
|
142
|
-
resp = Aws::Plugins::UserAgent.
|
142
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
143
143
|
@client.describe_stack_resource(
|
144
144
|
logical_resource_id: @logical_id,
|
145
145
|
stack_name: @stack_name
|
@@ -259,7 +259,7 @@ module Aws::CloudFormation
|
|
259
259
|
:retry
|
260
260
|
end
|
261
261
|
end
|
262
|
-
Aws::Plugins::UserAgent.
|
262
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
263
263
|
Aws::Waiters::Waiter.new(options).wait({})
|
264
264
|
end
|
265
265
|
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.
|
4
|
+
version: 1.110.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-05
|
11
|
+
date: 2024-06-05 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.197.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.197.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|