aws-sdk-cloudformation 1.51.0 → 1.52.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: 36ac3334dbdcd2b4c28fa29259ba97e697a93c3b13a8321e438de15a2b9f5eeb
4
- data.tar.gz: 7cfed8b111aa0a870156868c6e3138fe0e3bc5623af08c8850b746cea750b8b7
3
+ metadata.gz: 971cca68253ba02c30c86c18246529a0b640ea8710308526355b1d4e787d91a8
4
+ data.tar.gz: cdefa6548d2916be01a9c402ddf3d7a731e2bff2467e900b95f70200e2b368bb
5
5
  SHA512:
6
- metadata.gz: decfdacd171fde3fac4431eb74a3ff7e5fc285a4d5045730408b1cc56ad691d9e50e72a8724732d8f61a382f62bc69571ee876e4f15a506be72e5ae260e26417
7
- data.tar.gz: 28ac48badb194363e5e7d77b9bcd1dd21b8e68cf16aa3906d6656f38e91b372b05038ca2ba9cf9f7b8538118d3f4aa21c74c622af0dca8e5cde02b3e817a663b
6
+ metadata.gz: a04a675fb859f90dce594e9b40a4c5f276ce4893852b6342825753158ee359ee98d7bf361d4ffda0b1a39e774ed931e1a37d7810b49e04037501134eb8307a41
7
+ data.tar.gz: 8090c2d4aef986627c2ef804413b0b6f59a356f22afeae98c7cbb85502bfeee654777aef2c6045b40da25eae8ca85fb9b9618184f21d67aa5c026d7aef6cdaff
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2021-04-28)
5
+ ------------------
6
+
7
+ * Feature - Add CallAs parameter to GetTemplateSummary to enable use with StackSets delegated administrator integration
8
+
4
9
  1.51.0 (2021-04-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.51.0
1
+ 1.52.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.51.0'
56
+ GEM_VERSION = '1.52.0'
57
57
 
58
58
  end
@@ -3401,6 +3401,27 @@ module Aws::CloudFormation
3401
3401
  # Conditional: You must specify only one of the following parameters:
3402
3402
  # `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
3403
3403
  #
3404
+ # @option params [String] :call_as
3405
+ # \[Service-managed permissions\] Specifies whether you are acting as an
3406
+ # account administrator in the organization's management account or as
3407
+ # a delegated administrator in a member account.
3408
+ #
3409
+ # By default, `SELF` is specified. Use `SELF` for stack sets with
3410
+ # self-managed permissions.
3411
+ #
3412
+ # * If you are signed in to the management account, specify `SELF`.
3413
+ #
3414
+ # * If you are signed in to a delegated administrator account, specify
3415
+ # `DELEGATED_ADMIN`.
3416
+ #
3417
+ # Your AWS account must be registered as a delegated administrator in
3418
+ # the management account. For more information, see [Register a
3419
+ # delegated administrator][1] in the *AWS CloudFormation User Guide*.
3420
+ #
3421
+ #
3422
+ #
3423
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
3424
+ #
3404
3425
  # @return [Types::GetTemplateSummaryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3405
3426
  #
3406
3427
  # * {Types::GetTemplateSummaryOutput#parameters #parameters} => Array<Types::ParameterDeclaration>
@@ -3420,6 +3441,7 @@ module Aws::CloudFormation
3420
3441
  # template_url: "TemplateURL",
3421
3442
  # stack_name: "StackNameOrId",
3422
3443
  # stack_set_name: "StackSetNameOrId",
3444
+ # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
3423
3445
  # })
3424
3446
  #
3425
3447
  # @example Response structure
@@ -5743,7 +5765,7 @@ module Aws::CloudFormation
5743
5765
  params: params,
5744
5766
  config: config)
5745
5767
  context[:gem_name] = 'aws-sdk-cloudformation'
5746
- context[:gem_version] = '1.51.0'
5768
+ context[:gem_version] = '1.52.0'
5747
5769
  Seahorse::Client::Request.new(handlers, context)
5748
5770
  end
5749
5771
 
@@ -781,6 +781,7 @@ module Aws::CloudFormation
781
781
  GetTemplateSummaryInput.add_member(:template_url, Shapes::ShapeRef.new(shape: TemplateURL, location_name: "TemplateURL"))
782
782
  GetTemplateSummaryInput.add_member(:stack_name, Shapes::ShapeRef.new(shape: StackNameOrId, location_name: "StackName"))
783
783
  GetTemplateSummaryInput.add_member(:stack_set_name, Shapes::ShapeRef.new(shape: StackSetNameOrId, location_name: "StackSetName"))
784
+ GetTemplateSummaryInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
784
785
  GetTemplateSummaryInput.struct_class = Types::GetTemplateSummaryInput
785
786
 
786
787
  GetTemplateSummaryOutput.add_member(:parameters, Shapes::ShapeRef.new(shape: ParameterDeclarations, location_name: "Parameters"))
@@ -1891,6 +1891,7 @@ module Aws::CloudFormation
1891
1891
  # @return [Array<String>]
1892
1892
  #
1893
1893
  # @!attribute [rw] accounts_url
1894
+ # Returns the value of the AccountsUrl property.
1894
1895
  # @return [String]
1895
1896
  #
1896
1897
  # @!attribute [rw] organizational_unit_ids
@@ -3497,6 +3498,7 @@ module Aws::CloudFormation
3497
3498
  # template_url: "TemplateURL",
3498
3499
  # stack_name: "StackNameOrId",
3499
3500
  # stack_set_name: "StackSetNameOrId",
3501
+ # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
3500
3502
  # }
3501
3503
  #
3502
3504
  # @!attribute [rw] template_body
@@ -3546,13 +3548,37 @@ module Aws::CloudFormation
3546
3548
  # `StackName`, `StackSetName`, `TemplateBody`, or `TemplateURL`.
3547
3549
  # @return [String]
3548
3550
  #
3551
+ # @!attribute [rw] call_as
3552
+ # \[Service-managed permissions\] Specifies whether you are acting as
3553
+ # an account administrator in the organization's management account
3554
+ # or as a delegated administrator in a member account.
3555
+ #
3556
+ # By default, `SELF` is specified. Use `SELF` for stack sets with
3557
+ # self-managed permissions.
3558
+ #
3559
+ # * If you are signed in to the management account, specify `SELF`.
3560
+ #
3561
+ # * If you are signed in to a delegated administrator account, specify
3562
+ # `DELEGATED_ADMIN`.
3563
+ #
3564
+ # Your AWS account must be registered as a delegated administrator
3565
+ # in the management account. For more information, see [Register a
3566
+ # delegated administrator][1] in the *AWS CloudFormation User
3567
+ # Guide*.
3568
+ #
3569
+ #
3570
+ #
3571
+ # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
3572
+ # @return [String]
3573
+ #
3549
3574
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/GetTemplateSummaryInput AWS API Documentation
3550
3575
  #
3551
3576
  class GetTemplateSummaryInput < Struct.new(
3552
3577
  :template_body,
3553
3578
  :template_url,
3554
3579
  :stack_name,
3555
- :stack_set_name)
3580
+ :stack_set_name,
3581
+ :call_as)
3556
3582
  SENSITIVE = []
3557
3583
  include Aws::Structure
3558
3584
  end
@@ -7179,6 +7205,8 @@ module Aws::CloudFormation
7179
7205
  # }
7180
7206
  #
7181
7207
  # @!attribute [rw] region_concurrency_type
7208
+ # The concurrency type of deploying StackSets operations in regions,
7209
+ # could be in parallel or one region at a time.
7182
7210
  # @return [String]
7183
7211
  #
7184
7212
  # @!attribute [rw] region_order
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.51.0
4
+ version: 1.52.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-04-21 00:00:00.000000000 Z
11
+ date: 2021-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -88,8 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  requirements: []
91
- rubyforge_project:
92
- rubygems_version: 2.7.6.3
91
+ rubygems_version: 3.1.6
93
92
  signing_key:
94
93
  specification_version: 4
95
94
  summary: AWS SDK for Ruby - AWS CloudFormation