aws-sdk-cloudformation 1.49.0 → 1.50.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.rb +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +12 -1
- data/lib/aws-sdk-cloudformation/client_api.rb +4 -0
- data/lib/aws-sdk-cloudformation/customizations.rb +1 -1
- data/lib/aws-sdk-cloudformation/types.rb +19 -0
- 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: 4d8aa954ce3dc01f20c230764fc9bba2a21b98b6dfe462cb1b4fa26792d23c2e
|
4
|
+
data.tar.gz: 7ff174bd0c7e7133ea5b864c6892ef91f2c9156496474e23622d691e3e47245f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2bd5917bda8cc4bceef8ac32e07eec50de00e0b2ab79f3be1b9dbd0f8b23598d892cdfd8d6f482e941c5297183c20b760f5c8098b09169e3ffa5c0cca4cee97
|
7
|
+
data.tar.gz: 5243862e4dbf3afc8093f6ff1387249ae1178d2a14b64a941a6372ad76229d84132c26d59c2a184747829bd76624668611cbfc7f43189abc51d84283c0579245
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.50.0 (2021-03-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - 1. Added a new parameter "RegionConcurrencyType" in OperationPreferences. 2. Changed the name of "AccountUrl" to "AccountsUrl" in "DeploymentTargets" parameter.
|
8
|
+
|
4
9
|
1.49.0 (2021-03-10)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.50.0
|
@@ -1225,6 +1225,7 @@ module Aws::CloudFormation
|
|
1225
1225
|
# accounts: ["Account"],
|
1226
1226
|
# deployment_targets: {
|
1227
1227
|
# accounts: ["Account"],
|
1228
|
+
# accounts_url: "AccountsUrl",
|
1228
1229
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1229
1230
|
# },
|
1230
1231
|
# regions: ["Region"], # required
|
@@ -1237,6 +1238,7 @@ module Aws::CloudFormation
|
|
1237
1238
|
# },
|
1238
1239
|
# ],
|
1239
1240
|
# operation_preferences: {
|
1241
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
1240
1242
|
# region_order: ["Region"],
|
1241
1243
|
# failure_tolerance_count: 1,
|
1242
1244
|
# failure_tolerance_percentage: 1,
|
@@ -1720,10 +1722,12 @@ module Aws::CloudFormation
|
|
1720
1722
|
# accounts: ["Account"],
|
1721
1723
|
# deployment_targets: {
|
1722
1724
|
# accounts: ["Account"],
|
1725
|
+
# accounts_url: "AccountsUrl",
|
1723
1726
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1724
1727
|
# },
|
1725
1728
|
# regions: ["Region"], # required
|
1726
1729
|
# operation_preferences: {
|
1730
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
1727
1731
|
# region_order: ["Region"],
|
1728
1732
|
# failure_tolerance_count: 1,
|
1729
1733
|
# failure_tolerance_percentage: 1,
|
@@ -2607,6 +2611,7 @@ module Aws::CloudFormation
|
|
2607
2611
|
# resp.stack_set_operation.stack_set_id #=> String
|
2608
2612
|
# resp.stack_set_operation.action #=> String, one of "CREATE", "UPDATE", "DELETE", "DETECT_DRIFT"
|
2609
2613
|
# resp.stack_set_operation.status #=> String, one of "RUNNING", "SUCCEEDED", "FAILED", "STOPPING", "STOPPED", "QUEUED"
|
2614
|
+
# resp.stack_set_operation.operation_preferences.region_concurrency_type #=> String, one of "SEQUENTIAL", "PARALLEL"
|
2610
2615
|
# resp.stack_set_operation.operation_preferences.region_order #=> Array
|
2611
2616
|
# resp.stack_set_operation.operation_preferences.region_order[0] #=> String
|
2612
2617
|
# resp.stack_set_operation.operation_preferences.failure_tolerance_count #=> Integer
|
@@ -2620,6 +2625,7 @@ module Aws::CloudFormation
|
|
2620
2625
|
# resp.stack_set_operation.end_timestamp #=> Time
|
2621
2626
|
# resp.stack_set_operation.deployment_targets.accounts #=> Array
|
2622
2627
|
# resp.stack_set_operation.deployment_targets.accounts[0] #=> String
|
2628
|
+
# resp.stack_set_operation.deployment_targets.accounts_url #=> String
|
2623
2629
|
# resp.stack_set_operation.deployment_targets.organizational_unit_ids #=> Array
|
2624
2630
|
# resp.stack_set_operation.deployment_targets.organizational_unit_ids[0] #=> String
|
2625
2631
|
# resp.stack_set_operation.stack_set_drift_detection_details.drift_status #=> String, one of "DRIFTED", "IN_SYNC", "NOT_CHECKED"
|
@@ -3106,6 +3112,7 @@ module Aws::CloudFormation
|
|
3106
3112
|
# resp = client.detect_stack_set_drift({
|
3107
3113
|
# stack_set_name: "StackSetNameOrId", # required
|
3108
3114
|
# operation_preferences: {
|
3115
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
3109
3116
|
# region_order: ["Region"],
|
3110
3117
|
# failure_tolerance_count: 1,
|
3111
3118
|
# failure_tolerance_percentage: 1,
|
@@ -5190,6 +5197,7 @@ module Aws::CloudFormation
|
|
5190
5197
|
# accounts: ["Account"],
|
5191
5198
|
# deployment_targets: {
|
5192
5199
|
# accounts: ["Account"],
|
5200
|
+
# accounts_url: "AccountsUrl",
|
5193
5201
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
5194
5202
|
# },
|
5195
5203
|
# regions: ["Region"], # required
|
@@ -5202,6 +5210,7 @@ module Aws::CloudFormation
|
|
5202
5210
|
# },
|
5203
5211
|
# ],
|
5204
5212
|
# operation_preferences: {
|
5213
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
5205
5214
|
# region_order: ["Region"],
|
5206
5215
|
# failure_tolerance_count: 1,
|
5207
5216
|
# failure_tolerance_percentage: 1,
|
@@ -5566,6 +5575,7 @@ module Aws::CloudFormation
|
|
5566
5575
|
# },
|
5567
5576
|
# ],
|
5568
5577
|
# operation_preferences: {
|
5578
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
5569
5579
|
# region_order: ["Region"],
|
5570
5580
|
# failure_tolerance_count: 1,
|
5571
5581
|
# failure_tolerance_percentage: 1,
|
@@ -5576,6 +5586,7 @@ module Aws::CloudFormation
|
|
5576
5586
|
# execution_role_name: "ExecutionRoleName",
|
5577
5587
|
# deployment_targets: {
|
5578
5588
|
# accounts: ["Account"],
|
5589
|
+
# accounts_url: "AccountsUrl",
|
5579
5590
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
5580
5591
|
# },
|
5581
5592
|
# permission_model: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, SELF_MANAGED
|
@@ -5728,7 +5739,7 @@ module Aws::CloudFormation
|
|
5728
5739
|
params: params,
|
5729
5740
|
config: config)
|
5730
5741
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
5731
|
-
context[:gem_version] = '1.
|
5742
|
+
context[:gem_version] = '1.50.0'
|
5732
5743
|
Seahorse::Client::Request.new(handlers, context)
|
5733
5744
|
end
|
5734
5745
|
|
@@ -20,6 +20,7 @@ module Aws::CloudFormation
|
|
20
20
|
AccountLimit = Shapes::StructureShape.new(name: 'AccountLimit')
|
21
21
|
AccountLimitList = Shapes::ListShape.new(name: 'AccountLimitList')
|
22
22
|
AccountList = Shapes::ListShape.new(name: 'AccountList')
|
23
|
+
AccountsUrl = Shapes::StringShape.new(name: 'AccountsUrl')
|
23
24
|
AllowedValue = Shapes::StringShape.new(name: 'AllowedValue')
|
24
25
|
AllowedValues = Shapes::ListShape.new(name: 'AllowedValues')
|
25
26
|
AlreadyExistsException = Shapes::StructureShape.new(name: 'AlreadyExistsException')
|
@@ -226,6 +227,7 @@ module Aws::CloudFormation
|
|
226
227
|
RecordHandlerProgressInput = Shapes::StructureShape.new(name: 'RecordHandlerProgressInput')
|
227
228
|
RecordHandlerProgressOutput = Shapes::StructureShape.new(name: 'RecordHandlerProgressOutput')
|
228
229
|
Region = Shapes::StringShape.new(name: 'Region')
|
230
|
+
RegionConcurrencyType = Shapes::StringShape.new(name: 'RegionConcurrencyType')
|
229
231
|
RegionList = Shapes::ListShape.new(name: 'RegionList')
|
230
232
|
RegisterTypeInput = Shapes::StructureShape.new(name: 'RegisterTypeInput')
|
231
233
|
RegisterTypeOutput = Shapes::StructureShape.new(name: 'RegisterTypeOutput')
|
@@ -560,6 +562,7 @@ module Aws::CloudFormation
|
|
560
562
|
DeleteStackSetOutput.struct_class = Types::DeleteStackSetOutput
|
561
563
|
|
562
564
|
DeploymentTargets.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountList, location_name: "Accounts"))
|
565
|
+
DeploymentTargets.add_member(:accounts_url, Shapes::ShapeRef.new(shape: AccountsUrl, location_name: "AccountsUrl"))
|
563
566
|
DeploymentTargets.add_member(:organizational_unit_ids, Shapes::ShapeRef.new(shape: OrganizationalUnitIdList, location_name: "OrganizationalUnitIds"))
|
564
567
|
DeploymentTargets.struct_class = Types::DeploymentTargets
|
565
568
|
|
@@ -1291,6 +1294,7 @@ module Aws::CloudFormation
|
|
1291
1294
|
StackSetOperation.add_member(:stack_set_drift_detection_details, Shapes::ShapeRef.new(shape: StackSetDriftDetectionDetails, location_name: "StackSetDriftDetectionDetails"))
|
1292
1295
|
StackSetOperation.struct_class = Types::StackSetOperation
|
1293
1296
|
|
1297
|
+
StackSetOperationPreferences.add_member(:region_concurrency_type, Shapes::ShapeRef.new(shape: RegionConcurrencyType, location_name: "RegionConcurrencyType"))
|
1294
1298
|
StackSetOperationPreferences.add_member(:region_order, Shapes::ShapeRef.new(shape: RegionList, location_name: "RegionOrder"))
|
1295
1299
|
StackSetOperationPreferences.add_member(:failure_tolerance_count, Shapes::ShapeRef.new(shape: FailureToleranceCount, location_name: "FailureToleranceCount"))
|
1296
1300
|
StackSetOperationPreferences.add_member(:failure_tolerance_percentage, Shapes::ShapeRef.new(shape: FailureTolerancePercentage, location_name: "FailureTolerancePercentage"))
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# WARNING ABOUT GENERATED CODE
|
3
3
|
#
|
4
4
|
# This file is generated. See the contributing for info on making contributions:
|
5
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
5
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
6
6
|
#
|
7
7
|
# WARNING ABOUT GENERATED CODE
|
8
8
|
|
@@ -1092,6 +1092,7 @@ module Aws::CloudFormation
|
|
1092
1092
|
# accounts: ["Account"],
|
1093
1093
|
# deployment_targets: {
|
1094
1094
|
# accounts: ["Account"],
|
1095
|
+
# accounts_url: "AccountsUrl",
|
1095
1096
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1096
1097
|
# },
|
1097
1098
|
# regions: ["Region"], # required
|
@@ -1104,6 +1105,7 @@ module Aws::CloudFormation
|
|
1104
1105
|
# },
|
1105
1106
|
# ],
|
1106
1107
|
# operation_preferences: {
|
1108
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
1107
1109
|
# region_order: ["Region"],
|
1108
1110
|
# failure_tolerance_count: 1,
|
1109
1111
|
# failure_tolerance_percentage: 1,
|
@@ -1688,10 +1690,12 @@ module Aws::CloudFormation
|
|
1688
1690
|
# accounts: ["Account"],
|
1689
1691
|
# deployment_targets: {
|
1690
1692
|
# accounts: ["Account"],
|
1693
|
+
# accounts_url: "AccountsUrl",
|
1691
1694
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1692
1695
|
# },
|
1693
1696
|
# regions: ["Region"], # required
|
1694
1697
|
# operation_preferences: {
|
1698
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
1695
1699
|
# region_order: ["Region"],
|
1696
1700
|
# failure_tolerance_count: 1,
|
1697
1701
|
# failure_tolerance_percentage: 1,
|
@@ -1876,6 +1880,7 @@ module Aws::CloudFormation
|
|
1876
1880
|
#
|
1877
1881
|
# {
|
1878
1882
|
# accounts: ["Account"],
|
1883
|
+
# accounts_url: "AccountsUrl",
|
1879
1884
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
1880
1885
|
# }
|
1881
1886
|
#
|
@@ -1884,6 +1889,9 @@ module Aws::CloudFormation
|
|
1884
1889
|
# stack set updates.
|
1885
1890
|
# @return [Array<String>]
|
1886
1891
|
#
|
1892
|
+
# @!attribute [rw] accounts_url
|
1893
|
+
# @return [String]
|
1894
|
+
#
|
1887
1895
|
# @!attribute [rw] organizational_unit_ids
|
1888
1896
|
# The organization root ID or organizational unit (OU) IDs to which
|
1889
1897
|
# StackSets deploys.
|
@@ -1893,6 +1901,7 @@ module Aws::CloudFormation
|
|
1893
1901
|
#
|
1894
1902
|
class DeploymentTargets < Struct.new(
|
1895
1903
|
:accounts,
|
1904
|
+
:accounts_url,
|
1896
1905
|
:organizational_unit_ids)
|
1897
1906
|
SENSITIVE = []
|
1898
1907
|
include Aws::Structure
|
@@ -3120,6 +3129,7 @@ module Aws::CloudFormation
|
|
3120
3129
|
# {
|
3121
3130
|
# stack_set_name: "StackSetNameOrId", # required
|
3122
3131
|
# operation_preferences: {
|
3132
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
3123
3133
|
# region_order: ["Region"],
|
3124
3134
|
# failure_tolerance_count: 1,
|
3125
3135
|
# failure_tolerance_percentage: 1,
|
@@ -7159,6 +7169,7 @@ module Aws::CloudFormation
|
|
7159
7169
|
# data as a hash:
|
7160
7170
|
#
|
7161
7171
|
# {
|
7172
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
7162
7173
|
# region_order: ["Region"],
|
7163
7174
|
# failure_tolerance_count: 1,
|
7164
7175
|
# failure_tolerance_percentage: 1,
|
@@ -7166,6 +7177,9 @@ module Aws::CloudFormation
|
|
7166
7177
|
# max_concurrent_percentage: 1,
|
7167
7178
|
# }
|
7168
7179
|
#
|
7180
|
+
# @!attribute [rw] region_concurrency_type
|
7181
|
+
# @return [String]
|
7182
|
+
#
|
7169
7183
|
# @!attribute [rw] region_order
|
7170
7184
|
# The order of the Regions in where you want to perform the stack
|
7171
7185
|
# operation.
|
@@ -7232,6 +7246,7 @@ module Aws::CloudFormation
|
|
7232
7246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetOperationPreferences AWS API Documentation
|
7233
7247
|
#
|
7234
7248
|
class StackSetOperationPreferences < Struct.new(
|
7249
|
+
:region_concurrency_type,
|
7235
7250
|
:region_order,
|
7236
7251
|
:failure_tolerance_count,
|
7237
7252
|
:failure_tolerance_percentage,
|
@@ -8135,6 +8150,7 @@ module Aws::CloudFormation
|
|
8135
8150
|
# accounts: ["Account"],
|
8136
8151
|
# deployment_targets: {
|
8137
8152
|
# accounts: ["Account"],
|
8153
|
+
# accounts_url: "AccountsUrl",
|
8138
8154
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
8139
8155
|
# },
|
8140
8156
|
# regions: ["Region"], # required
|
@@ -8147,6 +8163,7 @@ module Aws::CloudFormation
|
|
8147
8163
|
# },
|
8148
8164
|
# ],
|
8149
8165
|
# operation_preferences: {
|
8166
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
8150
8167
|
# region_order: ["Region"],
|
8151
8168
|
# failure_tolerance_count: 1,
|
8152
8169
|
# failure_tolerance_percentage: 1,
|
@@ -8345,6 +8362,7 @@ module Aws::CloudFormation
|
|
8345
8362
|
# },
|
8346
8363
|
# ],
|
8347
8364
|
# operation_preferences: {
|
8365
|
+
# region_concurrency_type: "SEQUENTIAL", # accepts SEQUENTIAL, PARALLEL
|
8348
8366
|
# region_order: ["Region"],
|
8349
8367
|
# failure_tolerance_count: 1,
|
8350
8368
|
# failure_tolerance_percentage: 1,
|
@@ -8355,6 +8373,7 @@ module Aws::CloudFormation
|
|
8355
8373
|
# execution_role_name: "ExecutionRoleName",
|
8356
8374
|
# deployment_targets: {
|
8357
8375
|
# accounts: ["Account"],
|
8376
|
+
# accounts_url: "AccountsUrl",
|
8358
8377
|
# organizational_unit_ids: ["OrganizationalUnitId"],
|
8359
8378
|
# },
|
8360
8379
|
# permission_model: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, SELF_MANAGED
|
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.50.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-
|
11
|
+
date: 2021-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -71,8 +71,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
|
|
71
71
|
licenses:
|
72
72
|
- Apache-2.0
|
73
73
|
metadata:
|
74
|
-
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
75
|
-
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/
|
74
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudformation
|
75
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudformation/CHANGELOG.md
|
76
76
|
post_install_message:
|
77
77
|
rdoc_options: []
|
78
78
|
require_paths:
|