aws-sdk-cloudformation 1.50.0 → 1.51.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: 4d8aa954ce3dc01f20c230764fc9bba2a21b98b6dfe462cb1b4fa26792d23c2e
4
- data.tar.gz: 7ff174bd0c7e7133ea5b864c6892ef91f2c9156496474e23622d691e3e47245f
3
+ metadata.gz: 36ac3334dbdcd2b4c28fa29259ba97e697a93c3b13a8321e438de15a2b9f5eeb
4
+ data.tar.gz: 7cfed8b111aa0a870156868c6e3138fe0e3bc5623af08c8850b746cea750b8b7
5
5
  SHA512:
6
- metadata.gz: d2bd5917bda8cc4bceef8ac32e07eec50de00e0b2ab79f3be1b9dbd0f8b23598d892cdfd8d6f482e941c5297183c20b760f5c8098b09169e3ffa5c0cca4cee97
7
- data.tar.gz: 5243862e4dbf3afc8093f6ff1387249ae1178d2a14b64a941a6372ad76229d84132c26d59c2a184747829bd76624668611cbfc7f43189abc51d84283c0579245
6
+ metadata.gz: decfdacd171fde3fac4431eb74a3ff7e5fc285a4d5045730408b1cc56ad691d9e50e72a8724732d8f61a382f62bc69571ee876e4f15a506be72e5ae260e26417
7
+ data.tar.gz: 28ac48badb194363e5e7d77b9bcd1dd21b8e68cf16aa3906d6656f38e91b372b05038ca2ba9cf9f7b8538118d3f4aa21c74c622af0dca8e5cde02b3e817a663b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2021-04-21)
5
+ ------------------
6
+
7
+ * Feature - Added support for creating and updating stack sets with self-managed permissions from templates that reference macros.
8
+
4
9
  1.50.0 (2021-03-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.51.0
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-cloudformation/customizations'
53
53
  # @!group service
54
54
  module Aws::CloudFormation
55
55
 
56
- GEM_VERSION = '1.50.0'
56
+ GEM_VERSION = '1.51.0'
57
57
 
58
58
  end
@@ -1354,20 +1354,21 @@ module Aws::CloudFormation
1354
1354
  #
1355
1355
  # * `CAPABILITY_AUTO_EXPAND`
1356
1356
  #
1357
- # Some templates contain macros. If your stack template contains one
1358
- # or more macros, and you choose to create a stack directly from the
1359
- # processed template, without first reviewing the resulting changes in
1360
- # a change set, you must acknowledge this capability. For more
1361
- # information, see [Using AWS CloudFormation Macros to Perform Custom
1362
- # Processing on Templates][9].
1363
- #
1364
- # <note markdown="1"> Stack sets do not currently support macros in stack templates. (This
1365
- # includes the [AWS::Include][10] and [AWS::Serverless][11]
1366
- # transforms, which are macros hosted by AWS CloudFormation.) Even if
1367
- # you specify this capability, if you include a macro in your template
1368
- # the stack set operation will fail.
1357
+ # Some templates reference macros. If your stack set template
1358
+ # references one or more macros, you must create the stack set
1359
+ # directly from the processed template, without first reviewing the
1360
+ # resulting changes in a change set. To create the stack set directly,
1361
+ # you must acknowledge this capability. For more information, see
1362
+ # [Using AWS CloudFormation Macros to Perform Custom Processing on
1363
+ # Templates][9].
1369
1364
  #
1370
- # </note>
1365
+ # Stack sets with service-managed permissions do not currently support
1366
+ # the use of macros in templates. (This includes the
1367
+ # [AWS::Include][10] and [AWS::Serverless][11] transforms, which are
1368
+ # macros hosted by AWS CloudFormation.) Even if you specify this
1369
+ # capability for a stack set with service-managed permissions, if you
1370
+ # reference a macro in your template the stack set operation will
1371
+ # fail.
1371
1372
  #
1372
1373
  #
1373
1374
  #
@@ -5332,18 +5333,21 @@ module Aws::CloudFormation
5332
5333
  #
5333
5334
  # * `CAPABILITY_AUTO_EXPAND`
5334
5335
  #
5335
- # Some templates contain macros. If your stack template contains one
5336
- # or more macros, and you choose to update a stack directly from the
5337
- # processed template, without first reviewing the resulting changes in
5338
- # a change set, you must acknowledge this capability. For more
5339
- # information, see [Using AWS CloudFormation Macros to Perform Custom
5340
- # Processing on Templates][9].
5336
+ # Some templates reference macros. If your stack set template
5337
+ # references one or more macros, you must update the stack set
5338
+ # directly from the processed template, without first reviewing the
5339
+ # resulting changes in a change set. To update the stack set directly,
5340
+ # you must acknowledge this capability. For more information, see
5341
+ # [Using AWS CloudFormation Macros to Perform Custom Processing on
5342
+ # Templates][9].
5341
5343
  #
5342
- # Stack sets do not currently support macros in stack templates. (This
5343
- # includes the [AWS::Include][10] and [AWS::Serverless][11]
5344
- # transforms, which are macros hosted by AWS CloudFormation.) Even if
5345
- # you specify this capability, if you include a macro in your template
5346
- # the stack set operation will fail.
5344
+ # Stack sets with service-managed permissions do not currently support
5345
+ # the use of macros in templates. (This includes the
5346
+ # [AWS::Include][10] and [AWS::Serverless][11] transforms, which are
5347
+ # macros hosted by AWS CloudFormation.) Even if you specify this
5348
+ # capability for a stack set with service-managed permissions, if you
5349
+ # reference a macro in your template the stack set operation will
5350
+ # fail.
5347
5351
  #
5348
5352
  #
5349
5353
  #
@@ -5739,7 +5743,7 @@ module Aws::CloudFormation
5739
5743
  params: params,
5740
5744
  config: config)
5741
5745
  context[:gem_name] = 'aws-sdk-cloudformation'
5742
- context[:gem_version] = '1.50.0'
5746
+ context[:gem_version] = '1.51.0'
5743
5747
  Seahorse::Client::Request.new(handlers, context)
5744
5748
  end
5745
5749
 
@@ -1399,20 +1399,21 @@ module Aws::CloudFormation
1399
1399
  #
1400
1400
  # * `CAPABILITY_AUTO_EXPAND`
1401
1401
  #
1402
- # Some templates contain macros. If your stack template contains one
1403
- # or more macros, and you choose to create a stack directly from the
1404
- # processed template, without first reviewing the resulting changes
1405
- # in a change set, you must acknowledge this capability. For more
1402
+ # Some templates reference macros. If your stack set template
1403
+ # references one or more macros, you must create the stack set
1404
+ # directly from the processed template, without first reviewing the
1405
+ # resulting changes in a change set. To create the stack set
1406
+ # directly, you must acknowledge this capability. For more
1406
1407
  # information, see [Using AWS CloudFormation Macros to Perform
1407
1408
  # Custom Processing on Templates][9].
1408
1409
  #
1409
- # <note markdown="1"> Stack sets do not currently support macros in stack templates.
1410
- # (This includes the [AWS::Include][10] and [AWS::Serverless][11]
1411
- # transforms, which are macros hosted by AWS CloudFormation.) Even
1412
- # if you specify this capability, if you include a macro in your
1413
- # template the stack set operation will fail.
1414
- #
1415
- # </note>
1410
+ # Stack sets with service-managed permissions do not currently
1411
+ # support the use of macros in templates. (This includes the
1412
+ # [AWS::Include][10] and [AWS::Serverless][11] transforms, which are
1413
+ # macros hosted by AWS CloudFormation.) Even if you specify this
1414
+ # capability for a stack set with service-managed permissions, if
1415
+ # you reference a macro in your template the stack set operation
1416
+ # will fail.
1416
1417
  #
1417
1418
  #
1418
1419
  #
@@ -8487,18 +8488,21 @@ module Aws::CloudFormation
8487
8488
  #
8488
8489
  # * `CAPABILITY_AUTO_EXPAND`
8489
8490
  #
8490
- # Some templates contain macros. If your stack template contains one
8491
- # or more macros, and you choose to update a stack directly from the
8492
- # processed template, without first reviewing the resulting changes
8493
- # in a change set, you must acknowledge this capability. For more
8491
+ # Some templates reference macros. If your stack set template
8492
+ # references one or more macros, you must update the stack set
8493
+ # directly from the processed template, without first reviewing the
8494
+ # resulting changes in a change set. To update the stack set
8495
+ # directly, you must acknowledge this capability. For more
8494
8496
  # information, see [Using AWS CloudFormation Macros to Perform
8495
8497
  # Custom Processing on Templates][9].
8496
8498
  #
8497
- # Stack sets do not currently support macros in stack templates.
8498
- # (This includes the [AWS::Include][10] and [AWS::Serverless][11]
8499
- # transforms, which are macros hosted by AWS CloudFormation.) Even
8500
- # if you specify this capability, if you include a macro in your
8501
- # template the stack set operation will fail.
8499
+ # Stack sets with service-managed permissions do not currently
8500
+ # support the use of macros in templates. (This includes the
8501
+ # [AWS::Include][10] and [AWS::Serverless][11] transforms, which are
8502
+ # macros hosted by AWS CloudFormation.) Even if you specify this
8503
+ # capability for a stack set with service-managed permissions, if
8504
+ # you reference a macro in your template the stack set operation
8505
+ # will fail.
8502
8506
  #
8503
8507
  #
8504
8508
  #
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.50.0
4
+ version: 1.51.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: 2021-03-31 00:00:00.000000000 Z
11
+ date: 2021-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -89,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
89
89
  version: '0'
90
90
  requirements: []
91
91
  rubyforge_project:
92
- rubygems_version: 2.7.6.2
92
+ rubygems_version: 2.7.6.3
93
93
  signing_key:
94
94
  specification_version: 4
95
95
  summary: AWS SDK for Ruby - AWS CloudFormation