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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49fcfcff101859284281949b578c9dc2f95b5cc1600eb52b421bafefd8e77d15
4
- data.tar.gz: b5b31b853ff0cd61f34fcc32ba8c68d3a4682c1f5ac9cc263e5cd43c1ecd74a7
3
+ metadata.gz: 5b1022215a3c2522513a868193dc7afc51501ccdd14dc144f0d8a2f7d82e1cbf
4
+ data.tar.gz: ffa1a738b1d4e13287d51b2de7cb58f17ded8769a5dde17ba2124aa42cc5af5c
5
5
  SHA512:
6
- metadata.gz: 32a5e48f444e0f15b32dce7eaa10d195c9f820433af629c36b76b15e461c0d3e0a07efaa6445d1f43004547cb84068de6f00feccf295ab878685b9a706333652
7
- data.tar.gz: f46450e08887fd2db6b99434cb49544b06b7ca3e5b8a2f8ba66a0e291260f6a752672bcc4e43555add8eb9c1f00e613cd48c9e663976143234e2241696a13aef
6
+ metadata.gz: 60de0848ab1d504d17cb1d2a9e27f606b2cd0c6325de8c39ea514377844f8c3604946ba7d6783c4df2fd7682d7218708ec42ebcdb5dc786fae7253c65f8a986e
7
+ data.tar.gz: d22f8b009be878f99bccfbf23ce6b509e7002460f537bce3c366cea9dd1fa84490e27c2ba7d8c6873c1a26b43af8f1defa78f1863a97097f86011ab3c3d8155b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.77.0 (2023-04-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
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.77.0'
6831
+ context[:gem_version] = '1.78.0'
6827
6832
  Seahorse::Client::Request.new(handlers, context)
6828
6833
  end
6829
6834
 
@@ -275,7 +275,9 @@ module Aws::CloudFormation
275
275
  :retry
276
276
  end
277
277
  end
278
- Aws::Waiters::Waiter.new(options).wait({})
278
+ Aws::Plugins::UserAgent.feature('resource') do
279
+ Aws::Waiters::Waiter.new(options).wait({})
280
+ end
279
281
  end
280
282
 
281
283
  # @deprecated
@@ -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
- @client.create_stack(options)
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 = @client.describe_stacks(options)
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 = @client.describe_stacks(stack_name: @name)
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
- waiter.wait(params.merge(stack_name: @name))
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::Waiters::Waiter.new(options).wait({})
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 = @client.cancel_update_stack(options)
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 = @client.create_stack(options)
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 = @client.delete_stack(options)
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 = @client.update_stack(options)
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 = @client.describe_stack_events(options)
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 = @client.list_stack_resources(options)
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 = @client.describe_stack_resource(
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::Waiters::Waiter.new(options).wait({})
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
@@ -225,7 +225,9 @@ module Aws::CloudFormation
225
225
  :retry
226
226
  end
227
227
  end
228
- Aws::Waiters::Waiter.new(options).wait({})
228
+ Aws::Plugins::UserAgent.feature('resource') do
229
+ Aws::Waiters::Waiter.new(options).wait({})
230
+ end
229
231
  end
230
232
 
231
233
  # @!group Associations
@@ -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.77.0'
60
+ GEM_VERSION = '1.78.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.77.0
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-04-06 00:00:00.000000000 Z
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.165.0
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.165.0
32
+ version: 3.174.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement