aws-sdk-cloudformation 1.60.0 → 1.61.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: 1d30524e381c780114507372c60777ddf87608e658f74aa12f2355358296ea61
4
- data.tar.gz: 481b90a2022a6e226df9cb64ae9077aaef3156d69b2603e749bae321b921cb64
3
+ metadata.gz: 6c4f1d228144e05293b7934b2d2bf4e9de8ec819c498c6865c4034238f8a7053
4
+ data.tar.gz: a0acaad90835492c48849160b4b09ffba9ece980a6b8dd9a14ad0b24cfd7159b
5
5
  SHA512:
6
- metadata.gz: 1fe3b9a9b3c44e312667eeafc572928e7da7b7e9b81ec4bea7b917a88fcfe3811420874f3951304be3d1e2d051d4b66b3fdc10e39cd1cddbca0f8dc10ffd18bd
7
- data.tar.gz: e56a8307e82458eb73cf38030d7c90dc45c7097550ae93db523153fb784775a717696fb6d219e13996fddc02d6e81046d0f3295e3ca7ae6c2a18d27d910d5633
6
+ metadata.gz: 2551e8f55125a465a790beb1336d6a522e0237a00825976ef17116472290d6bb220524e87f4c26f6e8ab4bb8ed1f0c23776ef291fb58dd540106caf01f1cd70e
7
+ data.tar.gz: 9d9acfd1b1a71c67d6dc508ca3fbd70e09bbe89c1b6e94454c677678f60f70a990d136c41bb3092e539ae7631749bf2df129b1bcec7055122c71438e8621578b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2021-11-19)
5
+ ------------------
6
+
7
+ * Feature - The StackSets ManagedExecution feature will allow concurrency for non-conflicting StackSet operations and queuing the StackSet operations that conflict at a given time for later execution.
8
+
4
9
  1.60.0 (2021-11-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.61.0
@@ -1674,6 +1674,10 @@ module Aws::CloudFormation
1674
1674
  # **A suitable default value is auto-generated.** You should normally
1675
1675
  # not need to pass this option.**
1676
1676
  #
1677
+ # @option params [Types::ManagedExecution] :managed_execution
1678
+ # Describes whether StackSets performs non-conflicting operations
1679
+ # concurrently and queues conflicting operations.
1680
+ #
1677
1681
  # @return [Types::CreateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1678
1682
  #
1679
1683
  # * {Types::CreateStackSetOutput#stack_set_id #stack_set_id} => String
@@ -1710,6 +1714,9 @@ module Aws::CloudFormation
1710
1714
  # },
1711
1715
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
1712
1716
  # client_request_token: "ClientRequestToken",
1717
+ # managed_execution: {
1718
+ # active: false,
1719
+ # },
1713
1720
  # })
1714
1721
  #
1715
1722
  # @example Response structure
@@ -2851,6 +2858,7 @@ module Aws::CloudFormation
2851
2858
  # resp.stack_set.permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
2852
2859
  # resp.stack_set.organizational_unit_ids #=> Array
2853
2860
  # resp.stack_set.organizational_unit_ids[0] #=> String
2861
+ # resp.stack_set.managed_execution.active #=> Boolean
2854
2862
  #
2855
2863
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeStackSet AWS API Documentation
2856
2864
  #
@@ -4456,6 +4464,7 @@ module Aws::CloudFormation
4456
4464
  # resp.summaries[0].permission_model #=> String, one of "SERVICE_MANAGED", "SELF_MANAGED"
4457
4465
  # resp.summaries[0].drift_status #=> String, one of "DRIFTED", "IN_SYNC", "UNKNOWN", "NOT_CHECKED"
4458
4466
  # resp.summaries[0].last_drift_check_timestamp #=> Time
4467
+ # resp.summaries[0].managed_execution.active #=> Boolean
4459
4468
  # resp.next_token #=> String
4460
4469
  #
4461
4470
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ListStackSets AWS API Documentation
@@ -4749,8 +4758,10 @@ module Aws::CloudFormation
4749
4758
  # @option params [Types::TypeFilters] :filters
4750
4759
  # Filter criteria to use in determining which extensions to return.
4751
4760
  #
4752
- # If you specify a filter, CloudFormation ignores any specified
4753
- # `Visibility` value when returning the list of types.
4761
+ # Filters must be compatible with `Visibility` to return valid results.
4762
+ # For example, specifying `AWS_TYPES` for `Category` and `PRIVATE` for
4763
+ # `Visibility` returns an empty list of types, but specifying `PUBLIC`
4764
+ # for `Visibility` returns the desired list.
4754
4765
  #
4755
4766
  # @option params [Integer] :max_results
4756
4767
  # The maximum number of results to be returned with a single call. If
@@ -4858,8 +4869,9 @@ module Aws::CloudFormation
4858
4869
  # If you do not specify a version number, CloudFormation increments the
4859
4870
  # version number by one minor version release.
4860
4871
  #
4861
- # The first time you publish a type, CloudFormation sets the version
4862
- # number to `1.0.0`, regardless of the value you specify.
4872
+ # You cannot specify a version number the first time you publish a type.
4873
+ # CloudFormation automatically sets the first version number to be
4874
+ # `1.0.0`.
4863
4875
  #
4864
4876
  #
4865
4877
  #
@@ -6454,6 +6466,10 @@ module Aws::CloudFormation
6454
6466
  #
6455
6467
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
6456
6468
  #
6469
+ # @option params [Types::ManagedExecution] :managed_execution
6470
+ # Describes whether StackSets performs non-conflicting operations
6471
+ # concurrently and queues conflicting operations.
6472
+ #
6457
6473
  # @return [Types::UpdateStackSetOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6458
6474
  #
6459
6475
  # * {Types::UpdateStackSetOutput#operation_id #operation_id} => String
@@ -6505,6 +6521,9 @@ module Aws::CloudFormation
6505
6521
  # accounts: ["Account"],
6506
6522
  # regions: ["Region"],
6507
6523
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
6524
+ # managed_execution: {
6525
+ # active: false,
6526
+ # },
6508
6527
  # })
6509
6528
  #
6510
6529
  # @example Response structure
@@ -6646,7 +6665,7 @@ module Aws::CloudFormation
6646
6665
  params: params,
6647
6666
  config: config)
6648
6667
  context[:gem_name] = 'aws-sdk-cloudformation'
6649
- context[:gem_version] = '1.60.0'
6668
+ context[:gem_version] = '1.61.0'
6650
6669
  Seahorse::Client::Request.new(handlers, context)
6651
6670
  end
6652
6671
 
@@ -201,6 +201,8 @@ module Aws::CloudFormation
201
201
  LogicalResourceId = Shapes::StringShape.new(name: 'LogicalResourceId')
202
202
  LogicalResourceIds = Shapes::ListShape.new(name: 'LogicalResourceIds')
203
203
  MajorVersion = Shapes::IntegerShape.new(name: 'MajorVersion')
204
+ ManagedExecution = Shapes::StructureShape.new(name: 'ManagedExecution')
205
+ ManagedExecutionNullable = Shapes::BooleanShape.new(name: 'ManagedExecutionNullable')
204
206
  MaxConcurrentCount = Shapes::IntegerShape.new(name: 'MaxConcurrentCount')
205
207
  MaxConcurrentPercentage = Shapes::IntegerShape.new(name: 'MaxConcurrentPercentage')
206
208
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
@@ -614,6 +616,7 @@ module Aws::CloudFormation
614
616
  CreateStackSetInput.add_member(:auto_deployment, Shapes::ShapeRef.new(shape: AutoDeployment, location_name: "AutoDeployment"))
615
617
  CreateStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
616
618
  CreateStackSetInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
619
+ CreateStackSetInput.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
617
620
  CreateStackSetInput.struct_class = Types::CreateStackSetInput
618
621
 
619
622
  CreateStackSetOutput.add_member(:stack_set_id, Shapes::ShapeRef.new(shape: StackSetId, location_name: "StackSetId"))
@@ -1065,6 +1068,9 @@ module Aws::CloudFormation
1065
1068
 
1066
1069
  LogicalResourceIds.member = Shapes::ShapeRef.new(shape: LogicalResourceId)
1067
1070
 
1071
+ ManagedExecution.add_member(:active, Shapes::ShapeRef.new(shape: ManagedExecutionNullable, location_name: "Active"))
1072
+ ManagedExecution.struct_class = Types::ManagedExecution
1073
+
1068
1074
  ModuleInfo.add_member(:type_hierarchy, Shapes::ShapeRef.new(shape: TypeHierarchy, location_name: "TypeHierarchy"))
1069
1075
  ModuleInfo.add_member(:logical_id_hierarchy, Shapes::ShapeRef.new(shape: LogicalIdHierarchy, location_name: "LogicalIdHierarchy"))
1070
1076
  ModuleInfo.struct_class = Types::ModuleInfo
@@ -1444,6 +1450,7 @@ module Aws::CloudFormation
1444
1450
  StackSet.add_member(:auto_deployment, Shapes::ShapeRef.new(shape: AutoDeployment, location_name: "AutoDeployment"))
1445
1451
  StackSet.add_member(:permission_model, Shapes::ShapeRef.new(shape: PermissionModels, location_name: "PermissionModel"))
1446
1452
  StackSet.add_member(:organizational_unit_ids, Shapes::ShapeRef.new(shape: OrganizationalUnitIdList, location_name: "OrganizationalUnitIds"))
1453
+ StackSet.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
1447
1454
  StackSet.struct_class = Types::StackSet
1448
1455
 
1449
1456
  StackSetDriftDetectionDetails.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackSetDriftStatus, location_name: "DriftStatus"))
@@ -1511,6 +1518,7 @@ module Aws::CloudFormation
1511
1518
  StackSetSummary.add_member(:permission_model, Shapes::ShapeRef.new(shape: PermissionModels, location_name: "PermissionModel"))
1512
1519
  StackSetSummary.add_member(:drift_status, Shapes::ShapeRef.new(shape: StackDriftStatus, location_name: "DriftStatus"))
1513
1520
  StackSetSummary.add_member(:last_drift_check_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastDriftCheckTimestamp"))
1521
+ StackSetSummary.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
1514
1522
  StackSetSummary.struct_class = Types::StackSetSummary
1515
1523
 
1516
1524
  StackStatusFilter.member = Shapes::ShapeRef.new(shape: StackStatus)
@@ -1686,6 +1694,7 @@ module Aws::CloudFormation
1686
1694
  UpdateStackSetInput.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountList, location_name: "Accounts"))
1687
1695
  UpdateStackSetInput.add_member(:regions, Shapes::ShapeRef.new(shape: RegionList, location_name: "Regions"))
1688
1696
  UpdateStackSetInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
1697
+ UpdateStackSetInput.add_member(:managed_execution, Shapes::ShapeRef.new(shape: ManagedExecution, location_name: "ManagedExecution"))
1689
1698
  UpdateStackSetInput.struct_class = Types::UpdateStackSetInput
1690
1699
 
1691
1700
  UpdateStackSetOutput.add_member(:operation_id, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "OperationId"))
@@ -1500,6 +1500,9 @@ module Aws::CloudFormation
1500
1500
  # },
1501
1501
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
1502
1502
  # client_request_token: "ClientRequestToken",
1503
+ # managed_execution: {
1504
+ # active: false,
1505
+ # },
1503
1506
  # }
1504
1507
  #
1505
1508
  # @!attribute [rw] stack_set_name
@@ -1742,6 +1745,11 @@ module Aws::CloudFormation
1742
1745
  # not need to pass this option.
1743
1746
  # @return [String]
1744
1747
  #
1748
+ # @!attribute [rw] managed_execution
1749
+ # Describes whether StackSets performs non-conflicting operations
1750
+ # concurrently and queues conflicting operations.
1751
+ # @return [Types::ManagedExecution]
1752
+ #
1745
1753
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/CreateStackSetInput AWS API Documentation
1746
1754
  #
1747
1755
  class CreateStackSetInput < Struct.new(
@@ -1758,7 +1766,8 @@ module Aws::CloudFormation
1758
1766
  :permission_model,
1759
1767
  :auto_deployment,
1760
1768
  :call_as,
1761
- :client_request_token)
1769
+ :client_request_token,
1770
+ :managed_execution)
1762
1771
  SENSITIVE = []
1763
1772
  include Aws::Structure
1764
1773
  end
@@ -5211,8 +5220,10 @@ module Aws::CloudFormation
5211
5220
  # @!attribute [rw] filters
5212
5221
  # Filter criteria to use in determining which extensions to return.
5213
5222
  #
5214
- # If you specify a filter, CloudFormation ignores any specified
5215
- # `Visibility` value when returning the list of types.
5223
+ # Filters must be compatible with `Visibility` to return valid
5224
+ # results. For example, specifying `AWS_TYPES` for `Category` and
5225
+ # `PRIVATE` for `Visibility` returns an empty list of types, but
5226
+ # specifying `PUBLIC` for `Visibility` returns the desired list.
5216
5227
  # @return [Types::TypeFilters]
5217
5228
  #
5218
5229
  # @!attribute [rw] max_results
@@ -5296,6 +5307,42 @@ module Aws::CloudFormation
5296
5307
  include Aws::Structure
5297
5308
  end
5298
5309
 
5310
+ # Describes whether StackSets performs non-conflicting operations
5311
+ # concurrently and queues conflicting operations.
5312
+ #
5313
+ # @note When making an API call, you may pass ManagedExecution
5314
+ # data as a hash:
5315
+ #
5316
+ # {
5317
+ # active: false,
5318
+ # }
5319
+ #
5320
+ # @!attribute [rw] active
5321
+ # When `true`, StackSets performs non-conflicting operations
5322
+ # concurrently and queues conflicting operations. After conflicting
5323
+ # operations finish, StackSets starts queued operations in request
5324
+ # order.
5325
+ #
5326
+ # <note markdown="1"> If there are already running or queued operations, StackSets queues
5327
+ # all incoming operations even if they are non-conflicting.
5328
+ #
5329
+ # You can't modify your stack set's execution configuration while
5330
+ # there are running or queued operations for that stack set.
5331
+ #
5332
+ # </note>
5333
+ #
5334
+ # When `false` (default), StackSets performs one operation at a time
5335
+ # in request order.
5336
+ # @return [Boolean]
5337
+ #
5338
+ # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ManagedExecution AWS API Documentation
5339
+ #
5340
+ class ManagedExecution < Struct.new(
5341
+ :active)
5342
+ SENSITIVE = []
5343
+ include Aws::Structure
5344
+ end
5345
+
5299
5346
  # Contains information about the module from which the resource was
5300
5347
  # created, if the resource was created from a module included in the
5301
5348
  # stack template.
@@ -5624,8 +5671,9 @@ module Aws::CloudFormation
5624
5671
  # If you do not specify a version number, CloudFormation increments
5625
5672
  # the version number by one minor version release.
5626
5673
  #
5627
- # The first time you publish a type, CloudFormation sets the version
5628
- # number to `1.0.0`, regardless of the value you specify.
5674
+ # You cannot specify a version number the first time you publish a
5675
+ # type. CloudFormation automatically sets the first version number to
5676
+ # be `1.0.0`.
5629
5677
  #
5630
5678
  #
5631
5679
  #
@@ -7861,6 +7909,11 @@ module Aws::CloudFormation
7861
7909
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeploymentTargets.html
7862
7910
  # @return [Array<String>]
7863
7911
  #
7912
+ # @!attribute [rw] managed_execution
7913
+ # Describes whether StackSets performs non-conflicting operations
7914
+ # concurrently and queues conflicting operations.
7915
+ # @return [Types::ManagedExecution]
7916
+ #
7864
7917
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSet AWS API Documentation
7865
7918
  #
7866
7919
  class StackSet < Struct.new(
@@ -7878,7 +7931,8 @@ module Aws::CloudFormation
7878
7931
  :stack_set_drift_detection_details,
7879
7932
  :auto_deployment,
7880
7933
  :permission_model,
7881
- :organizational_unit_ids)
7934
+ :organizational_unit_ids,
7935
+ :managed_execution)
7882
7936
  SENSITIVE = []
7883
7937
  include Aws::Structure
7884
7938
  end
@@ -8481,6 +8535,11 @@ module Aws::CloudFormation
8481
8535
  # set on which drift detection has not yet been performed.
8482
8536
  # @return [Time]
8483
8537
  #
8538
+ # @!attribute [rw] managed_execution
8539
+ # Describes whether StackSets performs non-conflicting operations
8540
+ # concurrently and queues conflicting operations.
8541
+ # @return [Types::ManagedExecution]
8542
+ #
8484
8543
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/StackSetSummary AWS API Documentation
8485
8544
  #
8486
8545
  class StackSetSummary < Struct.new(
@@ -8491,7 +8550,8 @@ module Aws::CloudFormation
8491
8550
  :auto_deployment,
8492
8551
  :permission_model,
8493
8552
  :drift_status,
8494
- :last_drift_check_timestamp)
8553
+ :last_drift_check_timestamp,
8554
+ :managed_execution)
8495
8555
  SENSITIVE = []
8496
8556
  include Aws::Structure
8497
8557
  end
@@ -9816,6 +9876,9 @@ module Aws::CloudFormation
9816
9876
  # accounts: ["Account"],
9817
9877
  # regions: ["Region"],
9818
9878
  # call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
9879
+ # managed_execution: {
9880
+ # active: false,
9881
+ # },
9819
9882
  # }
9820
9883
  #
9821
9884
  # @!attribute [rw] stack_set_name
@@ -10152,6 +10215,11 @@ module Aws::CloudFormation
10152
10215
  # [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
10153
10216
  # @return [String]
10154
10217
  #
10218
+ # @!attribute [rw] managed_execution
10219
+ # Describes whether StackSets performs non-conflicting operations
10220
+ # concurrently and queues conflicting operations.
10221
+ # @return [Types::ManagedExecution]
10222
+ #
10155
10223
  # @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/UpdateStackSetInput AWS API Documentation
10156
10224
  #
10157
10225
  class UpdateStackSetInput < Struct.new(
@@ -10172,7 +10240,8 @@ module Aws::CloudFormation
10172
10240
  :operation_id,
10173
10241
  :accounts,
10174
10242
  :regions,
10175
- :call_as)
10243
+ :call_as,
10244
+ :managed_execution)
10176
10245
  SENSITIVE = []
10177
10246
  include Aws::Structure
10178
10247
  end
@@ -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.60.0'
56
+ GEM_VERSION = '1.61.0'
57
57
 
58
58
  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.60.0
4
+ version: 1.61.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-11-04 00:00:00.000000000 Z
11
+ date: 2021-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core