aws-sdk-cloudformation 1.77.0 → 1.79.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudformation/client.rb +187 -74
- data/lib/aws-sdk-cloudformation/client_api.rb +51 -0
- data/lib/aws-sdk-cloudformation/endpoints.rb +42 -0
- data/lib/aws-sdk-cloudformation/event.rb +3 -1
- data/lib/aws-sdk-cloudformation/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-cloudformation/resource.rb +21 -2
- data/lib/aws-sdk-cloudformation/stack.rb +28 -10
- data/lib/aws-sdk-cloudformation/stack_resource.rb +6 -2
- data/lib/aws-sdk-cloudformation/stack_resource_summary.rb +3 -1
- data/lib/aws-sdk-cloudformation/types.rb +178 -74
- data/lib/aws-sdk-cloudformation.rb +2 -2
- 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: e6a9516008c194436b3a3c69bd3c2e7cedb38bedeb9105e331d90e4aa5ec4aff
|
4
|
+
data.tar.gz: 867dced10b8d563cad7b74a9aff1b805309370a526c6916b808b76f6e644438c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94eb86b7a7fe0b632487ca2bd4c8607944979ce484fbf55db55059745e292e307ec201e6346b062a6f885a5de8c7238c87e9d12f57f4239145563cfe01907619
|
7
|
+
data.tar.gz: 7c73a6e34b33b9e64e34329ca1f527b8fd5925234605e524760214a09370794a389a91288c72231654cd80533009be72233fe876805b887a843fb4de87c5d0cb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.79.0 (2023-06-05)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - AWS CloudFormation StackSets provides customers with three new APIs to activate, deactivate, and describe AWS Organizations trusted access which is needed to get started with service-managed StackSets.
|
8
|
+
|
9
|
+
1.78.0 (2023-05-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.77.0 (2023-04-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.79.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
|
@@ -368,21 +373,36 @@ module Aws::CloudFormation
|
|
368
373
|
|
369
374
|
# @!group API Operations
|
370
375
|
|
376
|
+
# Activate trusted access with Organizations. With trusted access
|
377
|
+
# between StackSets and Organizations activated, the management account
|
378
|
+
# has permissions to create and manage StackSets for your organization.
|
379
|
+
#
|
380
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
381
|
+
#
|
382
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/ActivateOrganizationsAccess AWS API Documentation
|
383
|
+
#
|
384
|
+
# @overload activate_organizations_access(params = {})
|
385
|
+
# @param [Hash] params ({})
|
386
|
+
def activate_organizations_access(params = {}, options = {})
|
387
|
+
req = build_request(:activate_organizations_access, params)
|
388
|
+
req.send_request(options)
|
389
|
+
end
|
390
|
+
|
371
391
|
# Activates a public third-party extension, making it available for use
|
372
392
|
# in stack templates. For more information, see [Using public
|
373
393
|
# extensions][1] in the *CloudFormation User Guide*.
|
374
394
|
#
|
375
395
|
# Once you have activated a public third-party extension in your account
|
376
|
-
# and
|
377
|
-
# [
|
378
|
-
#
|
379
|
-
#
|
380
|
-
# the *CloudFormation User Guide*.
|
396
|
+
# and Region, use [SetTypeConfiguration][2] to specify configuration
|
397
|
+
# properties for the extension. For more information, see [Configuring
|
398
|
+
# extensions at the account level][3] in the *CloudFormation User
|
399
|
+
# Guide*.
|
381
400
|
#
|
382
401
|
#
|
383
402
|
#
|
384
403
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-public.html
|
385
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
404
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html
|
405
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-register.html#registry-set-configuration
|
386
406
|
#
|
387
407
|
# @option params [String] :type
|
388
408
|
# The extension type.
|
@@ -410,18 +430,18 @@ module Aws::CloudFormation
|
|
410
430
|
#
|
411
431
|
# @option params [String] :type_name_alias
|
412
432
|
# An alias to assign to the public extension, in this account and
|
413
|
-
#
|
433
|
+
# Region. If you specify an alias for the extension, CloudFormation
|
414
434
|
# treats the alias as the extension type name within this account and
|
415
|
-
#
|
435
|
+
# Region. You must use the alias to refer to the extension in your
|
416
436
|
# templates, API calls, and CloudFormation console.
|
417
437
|
#
|
418
|
-
# An extension alias must be unique within a given account and
|
438
|
+
# An extension alias must be unique within a given account and Region.
|
419
439
|
# You can activate the same public resource multiple times in the same
|
420
|
-
# account and
|
440
|
+
# account and Region, using different type name aliases.
|
421
441
|
#
|
422
442
|
# @option params [Boolean] :auto_update
|
423
443
|
# Whether to automatically update the extension in this account and
|
424
|
-
#
|
444
|
+
# Region when a new *minor* version is published by the extension
|
425
445
|
# publisher. Major versions released by the publisher must be manually
|
426
446
|
# updated.
|
427
447
|
#
|
@@ -489,7 +509,7 @@ module Aws::CloudFormation
|
|
489
509
|
|
490
510
|
# Returns configuration data for the specified CloudFormation
|
491
511
|
# extensions, from the CloudFormation registry for the account and
|
492
|
-
#
|
512
|
+
# Region.
|
493
513
|
#
|
494
514
|
# For more information, see [Configuring extensions at the account
|
495
515
|
# level][1] in the *CloudFormation User Guide*.
|
@@ -564,6 +584,19 @@ module Aws::CloudFormation
|
|
564
584
|
# </note>
|
565
585
|
#
|
566
586
|
# @option params [required, String] :stack_name
|
587
|
+
# <note markdown="1"> If you don't pass a parameter to `StackName`, the API returns a
|
588
|
+
# response that describes all resources in the account.
|
589
|
+
#
|
590
|
+
# The IAM policy below can be added to IAM policies when you want to
|
591
|
+
# limit resource-level permissions and avoid returning a response when
|
592
|
+
# no parameter is sent in the request:
|
593
|
+
#
|
594
|
+
# `\{ "Version": "2012-10-17", "Statement": [\{ "Effect": "Deny",
|
595
|
+
# "Action": "cloudformation:DescribeStacks", "NotResource":
|
596
|
+
# "arn:aws:cloudformation:*:*:stack/*/*" \}] \}`
|
597
|
+
#
|
598
|
+
# </note>
|
599
|
+
#
|
567
600
|
# The name or the unique stack ID that's associated with the stack.
|
568
601
|
#
|
569
602
|
# @option params [String] :client_request_token
|
@@ -1767,8 +1800,23 @@ module Aws::CloudFormation
|
|
1767
1800
|
req.send_request(options)
|
1768
1801
|
end
|
1769
1802
|
|
1803
|
+
# Deactivates trusted access with Organizations. If trusted access is
|
1804
|
+
# deactivated, the management account does not have permissions to
|
1805
|
+
# create and manage service-managed StackSets for your organization.
|
1806
|
+
#
|
1807
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1808
|
+
#
|
1809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DeactivateOrganizationsAccess AWS API Documentation
|
1810
|
+
#
|
1811
|
+
# @overload deactivate_organizations_access(params = {})
|
1812
|
+
# @param [Hash] params ({})
|
1813
|
+
def deactivate_organizations_access(params = {}, options = {})
|
1814
|
+
req = build_request(:deactivate_organizations_access, params)
|
1815
|
+
req.send_request(options)
|
1816
|
+
end
|
1817
|
+
|
1770
1818
|
# Deactivates a public extension that was previously activated in this
|
1771
|
-
# account and
|
1819
|
+
# account and Region.
|
1772
1820
|
#
|
1773
1821
|
# Once deactivated, an extension can't be used in any CloudFormation
|
1774
1822
|
# operation. This includes stack update operations where the stack
|
@@ -1777,7 +1825,7 @@ module Aws::CloudFormation
|
|
1777
1825
|
# automatically updated if a new version of the extension is released.
|
1778
1826
|
#
|
1779
1827
|
# @option params [String] :type_name
|
1780
|
-
# The type name of the extension, in this account and
|
1828
|
+
# The type name of the extension, in this account and Region. If you
|
1781
1829
|
# specified a type name alias when enabling the extension, use the type
|
1782
1830
|
# name alias.
|
1783
1831
|
#
|
@@ -1790,7 +1838,7 @@ module Aws::CloudFormation
|
|
1790
1838
|
#
|
1791
1839
|
# @option params [String] :arn
|
1792
1840
|
# The Amazon Resource Name (ARN) for the extension, in this account and
|
1793
|
-
#
|
1841
|
+
# Region.
|
1794
1842
|
#
|
1795
1843
|
# Conditional: You must specify either `Arn`, or `TypeName` and `Type`.
|
1796
1844
|
#
|
@@ -2374,6 +2422,56 @@ module Aws::CloudFormation
|
|
2374
2422
|
req.send_request(options)
|
2375
2423
|
end
|
2376
2424
|
|
2425
|
+
# Retrieves information about the account's `OrganizationAccess`
|
2426
|
+
# status. This API can be called either by the management account or the
|
2427
|
+
# delegated administrator by using the `CallAs` parameter. This API can
|
2428
|
+
# also be called without the `CallAs` parameter by the management
|
2429
|
+
# account.
|
2430
|
+
#
|
2431
|
+
# @option params [String] :call_as
|
2432
|
+
# \[Service-managed permissions\] Specifies whether you are acting as an
|
2433
|
+
# account administrator in the organization's management account or as
|
2434
|
+
# a delegated administrator in a member account.
|
2435
|
+
#
|
2436
|
+
# By default, `SELF` is specified.
|
2437
|
+
#
|
2438
|
+
# * If you are signed in to the management account, specify `SELF`.
|
2439
|
+
#
|
2440
|
+
# * If you are signed in to a delegated administrator account, specify
|
2441
|
+
# `DELEGATED_ADMIN`.
|
2442
|
+
#
|
2443
|
+
# Your Amazon Web Services account must be registered as a delegated
|
2444
|
+
# administrator in the management account. For more information, see
|
2445
|
+
# [Register a delegated administrator][1] in the *CloudFormation User
|
2446
|
+
# Guide*.
|
2447
|
+
#
|
2448
|
+
#
|
2449
|
+
#
|
2450
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html
|
2451
|
+
#
|
2452
|
+
# @return [Types::DescribeOrganizationsAccessOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2453
|
+
#
|
2454
|
+
# * {Types::DescribeOrganizationsAccessOutput#status #status} => String
|
2455
|
+
#
|
2456
|
+
# @example Request syntax with placeholder values
|
2457
|
+
#
|
2458
|
+
# resp = client.describe_organizations_access({
|
2459
|
+
# call_as: "SELF", # accepts SELF, DELEGATED_ADMIN
|
2460
|
+
# })
|
2461
|
+
#
|
2462
|
+
# @example Response structure
|
2463
|
+
#
|
2464
|
+
# resp.status #=> String, one of "ENABLED", "DISABLED", "DISABLED_PERMANENTLY"
|
2465
|
+
#
|
2466
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/cloudformation-2010-05-15/DescribeOrganizationsAccess AWS API Documentation
|
2467
|
+
#
|
2468
|
+
# @overload describe_organizations_access(params = {})
|
2469
|
+
# @param [Hash] params ({})
|
2470
|
+
def describe_organizations_access(params = {}, options = {})
|
2471
|
+
req = build_request(:describe_organizations_access, params)
|
2472
|
+
req.send_request(options)
|
2473
|
+
end
|
2474
|
+
|
2377
2475
|
# Returns information about a CloudFormation extension publisher.
|
2378
2476
|
#
|
2379
2477
|
# If you don't supply a `PublisherId`, and you have registered as an
|
@@ -2430,7 +2528,7 @@ module Aws::CloudFormation
|
|
2430
2528
|
|
2431
2529
|
# Returns information about a stack drift detection operation. A stack
|
2432
2530
|
# drift detection operation detects whether a stack's actual
|
2433
|
-
# configuration differs, or has *drifted*, from
|
2531
|
+
# configuration differs, or has *drifted*, from its expected
|
2434
2532
|
# configuration, as defined in the stack template and any values
|
2435
2533
|
# specified as template parameters. A stack is considered to have
|
2436
2534
|
# drifted if one or more of its resources have drifted. For more
|
@@ -2563,11 +2661,11 @@ module Aws::CloudFormation
|
|
2563
2661
|
req.send_request(options)
|
2564
2662
|
end
|
2565
2663
|
|
2566
|
-
# Returns the stack instance that's associated with the specified
|
2567
|
-
#
|
2664
|
+
# Returns the stack instance that's associated with the specified
|
2665
|
+
# StackSet, Amazon Web Services account, and Amazon Web Services Region.
|
2568
2666
|
#
|
2569
2667
|
# For a list of stack instances that are associated with a specific
|
2570
|
-
#
|
2668
|
+
# StackSet, use ListStackInstances.
|
2571
2669
|
#
|
2572
2670
|
# @option params [required, String] :stack_set_name
|
2573
2671
|
# The name or the unique stack ID of the stack set that you want to get
|
@@ -2898,7 +2996,7 @@ module Aws::CloudFormation
|
|
2898
2996
|
req.send_request(options)
|
2899
2997
|
end
|
2900
2998
|
|
2901
|
-
# Returns the description of the specified
|
2999
|
+
# Returns the description of the specified StackSet.
|
2902
3000
|
#
|
2903
3001
|
# @option params [required, String] :stack_set_name
|
2904
3002
|
# The name or unique ID of the stack set whose description you want.
|
@@ -2982,7 +3080,7 @@ module Aws::CloudFormation
|
|
2982
3080
|
req.send_request(options)
|
2983
3081
|
end
|
2984
3082
|
|
2985
|
-
# Returns the description of the specified
|
3083
|
+
# Returns the description of the specified StackSet operation.
|
2986
3084
|
#
|
2987
3085
|
# @option params [required, String] :stack_set_name
|
2988
3086
|
# The name or the unique stack ID of the stack set for the stack
|
@@ -3077,6 +3175,21 @@ module Aws::CloudFormation
|
|
3077
3175
|
# </note>
|
3078
3176
|
#
|
3079
3177
|
# @option params [String] :stack_name
|
3178
|
+
# <note markdown="1"> If you don't pass a parameter to `StackName`, the API returns a
|
3179
|
+
# response that describes all resources in the account. This requires
|
3180
|
+
# `ListStacks` and `DescribeStacks` permissions.
|
3181
|
+
#
|
3182
|
+
# The IAM policy below can be added to IAM policies when you want to
|
3183
|
+
# limit resource-level permissions and avoid returning a response when
|
3184
|
+
# no parameter is sent in the request:
|
3185
|
+
#
|
3186
|
+
# \\\{ "Version": "2012-10-17", "Statement": \[\\\{ "Effect":
|
3187
|
+
# "Deny", "Action": "cloudformation:DescribeStacks",
|
3188
|
+
# "NotResource": "arn:aws:cloudformation:*:*:stack/*/*" \\}\]
|
3189
|
+
# \\}
|
3190
|
+
#
|
3191
|
+
# </note>
|
3192
|
+
#
|
3080
3193
|
# The name or the unique stack ID that's associated with the stack,
|
3081
3194
|
# which aren't always interchangeable:
|
3082
3195
|
#
|
@@ -3344,7 +3457,7 @@ module Aws::CloudFormation
|
|
3344
3457
|
end
|
3345
3458
|
|
3346
3459
|
# Detects whether a stack's actual configuration differs, or has
|
3347
|
-
# *drifted*, from
|
3460
|
+
# *drifted*, from its expected configuration, as defined in the stack
|
3348
3461
|
# template and any values specified as template parameters. For each
|
3349
3462
|
# resource in the stack that supports drift detection, CloudFormation
|
3350
3463
|
# compares the actual configuration of the resource with its expected
|
@@ -3408,13 +3521,13 @@ module Aws::CloudFormation
|
|
3408
3521
|
end
|
3409
3522
|
|
3410
3523
|
# Returns information about whether a resource's actual configuration
|
3411
|
-
# differs, or has *drifted*, from
|
3412
|
-
#
|
3413
|
-
#
|
3414
|
-
#
|
3415
|
-
#
|
3416
|
-
#
|
3417
|
-
#
|
3524
|
+
# differs, or has *drifted*, from its expected configuration, as defined
|
3525
|
+
# in the stack template and any values specified as template parameters.
|
3526
|
+
# This information includes actual and expected property values for
|
3527
|
+
# resources in which CloudFormation detects drift. Only resource
|
3528
|
+
# properties explicitly defined in the stack template are checked for
|
3529
|
+
# drift. For more information about stack and resource drift, see
|
3530
|
+
# [Detecting Unregulated Configuration Changes to Stacks and
|
3418
3531
|
# Resources][1].
|
3419
3532
|
#
|
3420
3533
|
# Use `DetectStackResourceDrift` to detect drift on individual
|
@@ -3952,11 +4065,6 @@ module Aws::CloudFormation
|
|
3952
4065
|
# and Region, by specifying the stack ID of the stack you intend to
|
3953
4066
|
# import.
|
3954
4067
|
#
|
3955
|
-
# <note markdown="1"> `ImportStacksToStackSet` is only supported by self-managed
|
3956
|
-
# permissions.
|
3957
|
-
#
|
3958
|
-
# </note>
|
3959
|
-
#
|
3960
4068
|
# @option params [required, String] :stack_set_name
|
3961
4069
|
# The name of the stack set. The name must be unique in the Region where
|
3962
4070
|
# you create your stack set.
|
@@ -4855,12 +4963,12 @@ module Aws::CloudFormation
|
|
4855
4963
|
# Valid values include:
|
4856
4964
|
#
|
4857
4965
|
# * `PRIVATE`: Extensions that are visible and usable within this
|
4858
|
-
# account and
|
4966
|
+
# account and Region. This includes:
|
4859
4967
|
#
|
4860
|
-
# * Private extensions you have registered in this account and
|
4968
|
+
# * Private extensions you have registered in this account and Region.
|
4861
4969
|
#
|
4862
4970
|
# * Public extensions that you have activated in this account and
|
4863
|
-
#
|
4971
|
+
# Region.
|
4864
4972
|
#
|
4865
4973
|
# * `PUBLIC`: Extensions that are publicly visible and available to be
|
4866
4974
|
# activated within any Amazon Web Services account. This includes
|
@@ -4978,7 +5086,7 @@ module Aws::CloudFormation
|
|
4978
5086
|
end
|
4979
5087
|
|
4980
5088
|
# Publishes the specified extension to the CloudFormation registry as a
|
4981
|
-
# public extension in this
|
5089
|
+
# public extension in this Region. Public extensions are available for
|
4982
5090
|
# use by all CloudFormation users. For more information about publishing
|
4983
5091
|
# extensions, see [Publishing extensions to make them available for
|
4984
5092
|
# public use][1] in the *CloudFormation CLI User Guide*.
|
@@ -5213,25 +5321,26 @@ module Aws::CloudFormation
|
|
5213
5321
|
# *CloudFormation CLI User Guide*.
|
5214
5322
|
#
|
5215
5323
|
# You can have a maximum of 50 resource extension versions registered at
|
5216
|
-
# a time. This maximum is per account and per
|
5217
|
-
# [DeregisterType]
|
5218
|
-
#
|
5324
|
+
# a time. This maximum is per account and per Region. Use
|
5325
|
+
# [DeregisterType][2] to deregister specific extension versions if
|
5326
|
+
# necessary.
|
5219
5327
|
#
|
5220
5328
|
# Once you have initiated a registration request using ` RegisterType `,
|
5221
5329
|
# you can use ` DescribeTypeRegistration ` to monitor the progress of
|
5222
5330
|
# the registration request.
|
5223
5331
|
#
|
5224
5332
|
# Once you have registered a private extension in your account and
|
5225
|
-
#
|
5226
|
-
# [
|
5227
|
-
#
|
5228
|
-
#
|
5229
|
-
# the *CloudFormation User Guide*.
|
5333
|
+
# Region, use [SetTypeConfiguration][3] to specify configuration
|
5334
|
+
# properties for the extension. For more information, see [Configuring
|
5335
|
+
# extensions at the account level][4] in the *CloudFormation User
|
5336
|
+
# Guide*.
|
5230
5337
|
#
|
5231
5338
|
#
|
5232
5339
|
#
|
5233
5340
|
# [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-types.html
|
5234
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
5341
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DeregisterType.html
|
5342
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_SetTypeConfiguration.html
|
5343
|
+
# [4]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-register.html#registry-set-configuration
|
5235
5344
|
#
|
5236
5345
|
# @option params [String] :type
|
5237
5346
|
# The kind of extension.
|
@@ -5297,9 +5406,7 @@ module Aws::CloudFormation
|
|
5297
5406
|
# must contain a trust relationship with the CloudFormation service
|
5298
5407
|
# principle (`resources.cloudformation.amazonaws.com`). For more
|
5299
5408
|
# information about adding trust relationships, see [Modifying a role
|
5300
|
-
# trust
|
5301
|
-
# policy](IAM/latest/UserGuide/roles-managingrole-editing-console.html#roles-managingrole_edit-trust-policy)
|
5302
|
-
# in the *Identity and Access Management User Guide*.
|
5409
|
+
# trust policy][1] in the *Identity and Access Management User Guide*.
|
5303
5410
|
#
|
5304
5411
|
# If your extension calls Amazon Web Services APIs in any of its
|
5305
5412
|
# handlers, you must create an <i> <a
|
@@ -5312,6 +5419,10 @@ module Aws::CloudFormation
|
|
5312
5419
|
# handler, thereby supplying your resource type with the appropriate
|
5313
5420
|
# credentials.
|
5314
5421
|
#
|
5422
|
+
#
|
5423
|
+
#
|
5424
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-managingrole-editing-console.html#roles-managingrole_edit-trust-policy
|
5425
|
+
#
|
5315
5426
|
# @option params [String] :client_request_token
|
5316
5427
|
# A unique identifier that acts as an idempotency key for this
|
5317
5428
|
# registration request. Specifying a client request token prevents
|
@@ -5447,32 +5558,32 @@ module Aws::CloudFormation
|
|
5447
5558
|
end
|
5448
5559
|
|
5449
5560
|
# Specifies the configuration data for a registered CloudFormation
|
5450
|
-
# extension, in the given account and
|
5561
|
+
# extension, in the given account and Region.
|
5451
5562
|
#
|
5452
5563
|
# To view the current configuration data for an extension, refer to the
|
5453
|
-
# `ConfigurationSchema` element of
|
5454
|
-
# [
|
5455
|
-
#
|
5456
|
-
# level][1] in the *CloudFormation User Guide*.
|
5564
|
+
# `ConfigurationSchema` element of [DescribeType][1]. For more
|
5565
|
+
# information, see [Configuring extensions at the account level][2] in
|
5566
|
+
# the *CloudFormation User Guide*.
|
5457
5567
|
#
|
5458
5568
|
# It's strongly recommended that you use dynamic references to restrict
|
5459
5569
|
# sensitive configuration definitions, such as third-party credentials.
|
5460
5570
|
# For more details on dynamic references, see [Using dynamic references
|
5461
|
-
# to specify template values][
|
5571
|
+
# to specify template values][3] in the *CloudFormation User Guide*.
|
5462
5572
|
#
|
5463
5573
|
#
|
5464
5574
|
#
|
5465
|
-
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
5466
|
-
# [2]: https://docs.aws.amazon.com/
|
5575
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html
|
5576
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry-register.html#registry-set-configuration
|
5577
|
+
# [3]: https://docs.aws.amazon.com/
|
5467
5578
|
#
|
5468
5579
|
# @option params [String] :type_arn
|
5469
5580
|
# The Amazon Resource Name (ARN) for the extension, in this account and
|
5470
|
-
#
|
5581
|
+
# Region.
|
5471
5582
|
#
|
5472
5583
|
# For public extensions, this will be the ARN assigned when you
|
5473
|
-
# [activate the type][1] in this account and
|
5584
|
+
# [activate the type][1] in this account and Region. For private
|
5474
5585
|
# extensions, this will be the ARN assigned when you [register the
|
5475
|
-
# type][2] in this account and
|
5586
|
+
# type][2] in this account and Region.
|
5476
5587
|
#
|
5477
5588
|
# Do not include the extension versions suffix at the end of the ARN.
|
5478
5589
|
# You can set the configuration for an extension, but not for a specific
|
@@ -5484,17 +5595,18 @@ module Aws::CloudFormation
|
|
5484
5595
|
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html
|
5485
5596
|
#
|
5486
5597
|
# @option params [required, String] :configuration
|
5487
|
-
# The configuration data for the extension, in this account and
|
5598
|
+
# The configuration data for the extension, in this account and Region.
|
5488
5599
|
#
|
5489
5600
|
# The configuration data must be formatted as JSON, and validate against
|
5490
5601
|
# the schema returned in the `ConfigurationSchema` response element of
|
5491
|
-
# [
|
5492
|
-
#
|
5493
|
-
#
|
5602
|
+
# [DescribeType][1]. For more information, see [Defining account-level
|
5603
|
+
# configuration data for an extension][2] in the *CloudFormation CLI
|
5604
|
+
# User Guide*.
|
5494
5605
|
#
|
5495
5606
|
#
|
5496
5607
|
#
|
5497
|
-
# [1]: https://docs.aws.amazon.com/
|
5608
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html
|
5609
|
+
# [2]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-model.html#resource-type-howto-configuration
|
5498
5610
|
#
|
5499
5611
|
# @option params [String] :configuration_alias
|
5500
5612
|
# An alias by which to refer to this extension configuration data.
|
@@ -5698,27 +5810,28 @@ module Aws::CloudFormation
|
|
5698
5810
|
# publishing][1] in the *CloudFormation CLI User Guide*.
|
5699
5811
|
#
|
5700
5812
|
# If you don't specify a version, CloudFormation uses the default
|
5701
|
-
# version of the extension in your account and
|
5813
|
+
# version of the extension in your account and Region for testing.
|
5702
5814
|
#
|
5703
5815
|
# To perform testing, CloudFormation assumes the execution role
|
5704
5816
|
# specified when the type was registered. For more information, see
|
5705
|
-
# [RegisterType]
|
5817
|
+
# [RegisterType][2].
|
5706
5818
|
#
|
5707
5819
|
# Once you've initiated testing on an extension using `TestType`, you
|
5708
|
-
# can pass the returned `TypeVersionArn` into [DescribeType][
|
5820
|
+
# can pass the returned `TypeVersionArn` into [DescribeType][3] to
|
5709
5821
|
# monitor the current test status and test status description for the
|
5710
5822
|
# extension.
|
5711
5823
|
#
|
5712
5824
|
# An extension must have a test status of `PASSED` before it can be
|
5713
5825
|
# published. For more information, see [Publishing extensions to make
|
5714
|
-
# them available for public use][
|
5826
|
+
# them available for public use][4] in the *CloudFormation CLI User
|
5715
5827
|
# Guide*.
|
5716
5828
|
#
|
5717
5829
|
#
|
5718
5830
|
#
|
5719
5831
|
# [1]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/publish-extension.html#publish-extension-testing
|
5720
|
-
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/
|
5721
|
-
# [3]: https://docs.aws.amazon.com/
|
5832
|
+
# [2]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_RegisterType.html
|
5833
|
+
# [3]: https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeType.html
|
5834
|
+
# [4]: https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-publish.html
|
5722
5835
|
#
|
5723
5836
|
# @option params [String] :arn
|
5724
5837
|
# The Amazon Resource Name (ARN) of the extension.
|
@@ -5742,7 +5855,7 @@ module Aws::CloudFormation
|
|
5742
5855
|
# and `Type`.
|
5743
5856
|
#
|
5744
5857
|
# If you don't specify a version, CloudFormation uses the default
|
5745
|
-
# version of the extension in this account and
|
5858
|
+
# version of the extension in this account and Region for testing.
|
5746
5859
|
#
|
5747
5860
|
# @option params [String] :log_delivery_bucket
|
5748
5861
|
# The S3 bucket to which CloudFormation delivers the contract test
|
@@ -6823,7 +6936,7 @@ module Aws::CloudFormation
|
|
6823
6936
|
params: params,
|
6824
6937
|
config: config)
|
6825
6938
|
context[:gem_name] = 'aws-sdk-cloudformation'
|
6826
|
-
context[:gem_version] = '1.
|
6939
|
+
context[:gem_version] = '1.79.0'
|
6827
6940
|
Seahorse::Client::Request.new(handlers, context)
|
6828
6941
|
end
|
6829
6942
|
|
@@ -23,6 +23,8 @@ module Aws::CloudFormation
|
|
23
23
|
AccountLimitList = Shapes::ListShape.new(name: 'AccountLimitList')
|
24
24
|
AccountList = Shapes::ListShape.new(name: 'AccountList')
|
25
25
|
AccountsUrl = Shapes::StringShape.new(name: 'AccountsUrl')
|
26
|
+
ActivateOrganizationsAccessInput = Shapes::StructureShape.new(name: 'ActivateOrganizationsAccessInput')
|
27
|
+
ActivateOrganizationsAccessOutput = Shapes::StructureShape.new(name: 'ActivateOrganizationsAccessOutput')
|
26
28
|
ActivateTypeInput = Shapes::StructureShape.new(name: 'ActivateTypeInput')
|
27
29
|
ActivateTypeOutput = Shapes::StructureShape.new(name: 'ActivateTypeOutput')
|
28
30
|
AllowedValue = Shapes::StringShape.new(name: 'AllowedValue')
|
@@ -81,6 +83,8 @@ module Aws::CloudFormation
|
|
81
83
|
CreateStackSetOutput = Shapes::StructureShape.new(name: 'CreateStackSetOutput')
|
82
84
|
CreatedButModifiedException = Shapes::StructureShape.new(name: 'CreatedButModifiedException')
|
83
85
|
CreationTime = Shapes::TimestampShape.new(name: 'CreationTime')
|
86
|
+
DeactivateOrganizationsAccessInput = Shapes::StructureShape.new(name: 'DeactivateOrganizationsAccessInput')
|
87
|
+
DeactivateOrganizationsAccessOutput = Shapes::StructureShape.new(name: 'DeactivateOrganizationsAccessOutput')
|
84
88
|
DeactivateTypeInput = Shapes::StructureShape.new(name: 'DeactivateTypeInput')
|
85
89
|
DeactivateTypeOutput = Shapes::StructureShape.new(name: 'DeactivateTypeOutput')
|
86
90
|
DeleteChangeSetInput = Shapes::StructureShape.new(name: 'DeleteChangeSetInput')
|
@@ -101,6 +105,8 @@ module Aws::CloudFormation
|
|
101
105
|
DescribeChangeSetHooksOutput = Shapes::StructureShape.new(name: 'DescribeChangeSetHooksOutput')
|
102
106
|
DescribeChangeSetInput = Shapes::StructureShape.new(name: 'DescribeChangeSetInput')
|
103
107
|
DescribeChangeSetOutput = Shapes::StructureShape.new(name: 'DescribeChangeSetOutput')
|
108
|
+
DescribeOrganizationsAccessInput = Shapes::StructureShape.new(name: 'DescribeOrganizationsAccessInput')
|
109
|
+
DescribeOrganizationsAccessOutput = Shapes::StructureShape.new(name: 'DescribeOrganizationsAccessOutput')
|
104
110
|
DescribePublisherInput = Shapes::StructureShape.new(name: 'DescribePublisherInput')
|
105
111
|
DescribePublisherOutput = Shapes::StructureShape.new(name: 'DescribePublisherOutput')
|
106
112
|
DescribeStackDriftDetectionStatusInput = Shapes::StructureShape.new(name: 'DescribeStackDriftDetectionStatusInput')
|
@@ -244,6 +250,7 @@ module Aws::CloudFormation
|
|
244
250
|
OperationStatus = Shapes::StringShape.new(name: 'OperationStatus')
|
245
251
|
OperationStatusCheckFailedException = Shapes::StructureShape.new(name: 'OperationStatusCheckFailedException')
|
246
252
|
OptionalSecureUrl = Shapes::StringShape.new(name: 'OptionalSecureUrl')
|
253
|
+
OrganizationStatus = Shapes::StringShape.new(name: 'OrganizationStatus')
|
247
254
|
OrganizationalUnitId = Shapes::StringShape.new(name: 'OrganizationalUnitId')
|
248
255
|
OrganizationalUnitIdList = Shapes::ListShape.new(name: 'OrganizationalUnitIdList')
|
249
256
|
Output = Shapes::StructureShape.new(name: 'Output')
|
@@ -491,6 +498,10 @@ module Aws::CloudFormation
|
|
491
498
|
|
492
499
|
AccountList.member = Shapes::ShapeRef.new(shape: Account)
|
493
500
|
|
501
|
+
ActivateOrganizationsAccessInput.struct_class = Types::ActivateOrganizationsAccessInput
|
502
|
+
|
503
|
+
ActivateOrganizationsAccessOutput.struct_class = Types::ActivateOrganizationsAccessOutput
|
504
|
+
|
494
505
|
ActivateTypeInput.add_member(:type, Shapes::ShapeRef.new(shape: ThirdPartyType, location_name: "Type"))
|
495
506
|
ActivateTypeInput.add_member(:public_type_arn, Shapes::ShapeRef.new(shape: ThirdPartyTypeArn, location_name: "PublicTypeArn"))
|
496
507
|
ActivateTypeInput.add_member(:publisher_id, Shapes::ShapeRef.new(shape: PublisherId, location_name: "PublisherId"))
|
@@ -670,6 +681,10 @@ module Aws::CloudFormation
|
|
670
681
|
|
671
682
|
CreatedButModifiedException.struct_class = Types::CreatedButModifiedException
|
672
683
|
|
684
|
+
DeactivateOrganizationsAccessInput.struct_class = Types::DeactivateOrganizationsAccessInput
|
685
|
+
|
686
|
+
DeactivateOrganizationsAccessOutput.struct_class = Types::DeactivateOrganizationsAccessOutput
|
687
|
+
|
673
688
|
DeactivateTypeInput.add_member(:type_name, Shapes::ShapeRef.new(shape: TypeName, location_name: "TypeName"))
|
674
689
|
DeactivateTypeInput.add_member(:type, Shapes::ShapeRef.new(shape: ThirdPartyType, location_name: "Type"))
|
675
690
|
DeactivateTypeInput.add_member(:arn, Shapes::ShapeRef.new(shape: PrivateTypeArn, location_name: "Arn"))
|
@@ -770,6 +785,12 @@ module Aws::CloudFormation
|
|
770
785
|
DescribeChangeSetOutput.add_member(:root_change_set_id, Shapes::ShapeRef.new(shape: ChangeSetId, location_name: "RootChangeSetId"))
|
771
786
|
DescribeChangeSetOutput.struct_class = Types::DescribeChangeSetOutput
|
772
787
|
|
788
|
+
DescribeOrganizationsAccessInput.add_member(:call_as, Shapes::ShapeRef.new(shape: CallAs, location_name: "CallAs"))
|
789
|
+
DescribeOrganizationsAccessInput.struct_class = Types::DescribeOrganizationsAccessInput
|
790
|
+
|
791
|
+
DescribeOrganizationsAccessOutput.add_member(:status, Shapes::ShapeRef.new(shape: OrganizationStatus, location_name: "Status"))
|
792
|
+
DescribeOrganizationsAccessOutput.struct_class = Types::DescribeOrganizationsAccessOutput
|
793
|
+
|
773
794
|
DescribePublisherInput.add_member(:publisher_id, Shapes::ShapeRef.new(shape: PublisherId, location_name: "PublisherId"))
|
774
795
|
DescribePublisherInput.struct_class = Types::DescribePublisherInput
|
775
796
|
|
@@ -1822,6 +1843,16 @@ module Aws::CloudFormation
|
|
1822
1843
|
"xmlNamespace" => "http://cloudformation.amazonaws.com/doc/2010-05-15/",
|
1823
1844
|
}
|
1824
1845
|
|
1846
|
+
api.add_operation(:activate_organizations_access, Seahorse::Model::Operation.new.tap do |o|
|
1847
|
+
o.name = "ActivateOrganizationsAccess"
|
1848
|
+
o.http_method = "POST"
|
1849
|
+
o.http_request_uri = "/"
|
1850
|
+
o.input = Shapes::ShapeRef.new(shape: ActivateOrganizationsAccessInput)
|
1851
|
+
o.output = Shapes::ShapeRef.new(shape: ActivateOrganizationsAccessOutput)
|
1852
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
1853
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotFoundException)
|
1854
|
+
end)
|
1855
|
+
|
1825
1856
|
api.add_operation(:activate_type, Seahorse::Model::Operation.new.tap do |o|
|
1826
1857
|
o.name = "ActivateType"
|
1827
1858
|
o.http_method = "POST"
|
@@ -1908,6 +1939,16 @@ module Aws::CloudFormation
|
|
1908
1939
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1909
1940
|
end)
|
1910
1941
|
|
1942
|
+
api.add_operation(:deactivate_organizations_access, Seahorse::Model::Operation.new.tap do |o|
|
1943
|
+
o.name = "DeactivateOrganizationsAccess"
|
1944
|
+
o.http_method = "POST"
|
1945
|
+
o.http_request_uri = "/"
|
1946
|
+
o.input = Shapes::ShapeRef.new(shape: DeactivateOrganizationsAccessInput)
|
1947
|
+
o.output = Shapes::ShapeRef.new(shape: DeactivateOrganizationsAccessOutput)
|
1948
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
1949
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotFoundException)
|
1950
|
+
end)
|
1951
|
+
|
1911
1952
|
api.add_operation(:deactivate_type, Seahorse::Model::Operation.new.tap do |o|
|
1912
1953
|
o.name = "DeactivateType"
|
1913
1954
|
o.http_method = "POST"
|
@@ -2000,6 +2041,16 @@ module Aws::CloudFormation
|
|
2000
2041
|
o.errors << Shapes::ShapeRef.new(shape: ChangeSetNotFoundException)
|
2001
2042
|
end)
|
2002
2043
|
|
2044
|
+
api.add_operation(:describe_organizations_access, Seahorse::Model::Operation.new.tap do |o|
|
2045
|
+
o.name = "DescribeOrganizationsAccess"
|
2046
|
+
o.http_method = "POST"
|
2047
|
+
o.http_request_uri = "/"
|
2048
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeOrganizationsAccessInput)
|
2049
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeOrganizationsAccessOutput)
|
2050
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidOperationException)
|
2051
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotFoundException)
|
2052
|
+
end)
|
2053
|
+
|
2003
2054
|
api.add_operation(:describe_publisher, Seahorse::Model::Operation.new.tap do |o|
|
2004
2055
|
o.name = "DescribePublisher"
|
2005
2056
|
o.http_method = "POST"
|