aws-sdk-servicecatalog 1.69.0 → 1.72.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-servicecatalog/client.rb +123 -79
- data/lib/aws-sdk-servicecatalog/client_api.rb +2 -1
- data/lib/aws-sdk-servicecatalog/types.rb +149 -134
- data/lib/aws-sdk-servicecatalog.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 189dace063fcac294b0edfd3621ae2ecdfaa760c4bdde07e314b8d180fcf2822
|
4
|
+
data.tar.gz: 0a25f66b79b32f93469116196128d5efd7ce86463d996142ff993277d7672357
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6327854a72f2f3cc12c8607e4750f34331beac7c5b9c0b853c9fd06b58c651c25ef302d81533b2a72988d345b38091b53a170b0f0817987af5f151648a8a4622
|
7
|
+
data.tar.gz: 15a40ef1475d1b4e6b2490ba4e5367ed70f465e0b36f4e2e80f902a9ea53d14cddf15746c6c002f8509e43dea10ad0b2cc944d25a42b2ba8c2e0770f1bb058be
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.72.0 (2022-08-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Documentation updates for Service Catalog
|
8
|
+
|
9
|
+
1.71.0 (2022-05-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updated the descriptions for the ListAcceptedPortfolioShares API description and the PortfolioShareType parameters.
|
13
|
+
|
14
|
+
1.70.0 (2022-04-04)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - This release adds ProvisioningArtifictOutputKeys to DescribeProvisioningParameters to reference the outputs of a Provisioned Product and deprecates ProvisioningArtifactOutputs.
|
18
|
+
|
4
19
|
1.69.0 (2022-02-24)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.72.0
|
@@ -690,7 +690,9 @@ module Aws::ServiceCatalog
|
|
690
690
|
# a new product.
|
691
691
|
#
|
692
692
|
# You can copy a product to the same account or another account. You can
|
693
|
-
# copy a product to the same
|
693
|
+
# copy a product to the same Region or another Region. If you copy a
|
694
|
+
# product to another account, you must first share the product in a
|
695
|
+
# portfolio using CreatePortfolioShare.
|
694
696
|
#
|
695
697
|
# This operation is performed asynchronously. To track the progress of
|
696
698
|
# the operation, use DescribeCopyProductStatus.
|
@@ -847,8 +849,8 @@ module Aws::ServiceCatalog
|
|
847
849
|
# You also cannot have more than one `STACKSET` constraint on a
|
848
850
|
# product and portfolio.
|
849
851
|
#
|
850
|
-
# Products with a `STACKSET` constraint will launch an
|
851
|
-
#
|
852
|
+
# Products with a `STACKSET` constraint will launch an CloudFormation
|
853
|
+
# stack set.
|
852
854
|
#
|
853
855
|
# TEMPLATE
|
854
856
|
#
|
@@ -1029,15 +1031,15 @@ module Aws::ServiceCatalog
|
|
1029
1031
|
# The portfolio identifier.
|
1030
1032
|
#
|
1031
1033
|
# @option params [String] :account_id
|
1032
|
-
# The
|
1034
|
+
# The Amazon Web Services account ID. For example, `123456789012`.
|
1033
1035
|
#
|
1034
1036
|
# @option params [Types::OrganizationNode] :organization_node
|
1035
|
-
# The organization node to whom you are going to share.
|
1036
|
-
# `OrganizationNode
|
1037
|
-
#
|
1038
|
-
#
|
1039
|
-
#
|
1040
|
-
#
|
1037
|
+
# The organization node to whom you are going to share. When you pass
|
1038
|
+
# `OrganizationNode`, it creates `PortfolioShare` for all of the Amazon
|
1039
|
+
# Web Services accounts that are associated to the `OrganizationNode`.
|
1040
|
+
# The output returns a `PortfolioShareToken`, which enables the
|
1041
|
+
# administrator to monitor the status of the `PortfolioShare` creation
|
1042
|
+
# process.
|
1041
1043
|
#
|
1042
1044
|
# @option params [Boolean] :share_tag_options
|
1043
1045
|
# Enables or disables `TagOptions ` sharing when creating the portfolio
|
@@ -1203,13 +1205,15 @@ module Aws::ServiceCatalog
|
|
1203
1205
|
req.send_request(options)
|
1204
1206
|
end
|
1205
1207
|
|
1206
|
-
# Creates a plan.
|
1207
|
-
# (when provisioning a new product) or modified (when updating a
|
1208
|
-
# provisioned product) when the plan is executed.
|
1208
|
+
# Creates a plan.
|
1209
1209
|
#
|
1210
|
-
#
|
1211
|
-
#
|
1212
|
-
#
|
1210
|
+
# A plan includes the list of resources to be created (when provisioning
|
1211
|
+
# a new product) or modified (when updating a provisioned product) when
|
1212
|
+
# the plan is executed.
|
1213
|
+
#
|
1214
|
+
# You can create one plan for each provisioned product. To create a plan
|
1215
|
+
# for an existing provisioned product, the product status must be
|
1216
|
+
# AVAILABLE or TAINTED.
|
1213
1217
|
#
|
1214
1218
|
# To view the resource changes in the change set, use
|
1215
1219
|
# DescribeProvisionedProductPlan. To create or modify the provisioned
|
@@ -1244,8 +1248,8 @@ module Aws::ServiceCatalog
|
|
1244
1248
|
#
|
1245
1249
|
# @option params [required, String] :provisioned_product_name
|
1246
1250
|
# A user-friendly name for the provisioned product. This value must be
|
1247
|
-
# unique for the
|
1248
|
-
# provisioned.
|
1251
|
+
# unique for the Amazon Web Services account and cannot be updated after
|
1252
|
+
# the product is provisioned.
|
1249
1253
|
#
|
1250
1254
|
# @option params [required, String] :provisioning_artifact_id
|
1251
1255
|
# The identifier of the provisioning artifact.
|
@@ -1414,16 +1418,16 @@ module Aws::ServiceCatalog
|
|
1414
1418
|
#
|
1415
1419
|
# Name
|
1416
1420
|
#
|
1417
|
-
# : The name of the
|
1418
|
-
# example, `AWS-RestartEC2Instance`.
|
1421
|
+
# : The name of the Amazon Web Services Systems Manager document (SSM
|
1422
|
+
# document). For example, `AWS-RestartEC2Instance`.
|
1419
1423
|
#
|
1420
1424
|
# If you are using a shared SSM document, you must provide the ARN
|
1421
1425
|
# instead of the name.
|
1422
1426
|
#
|
1423
1427
|
# Version
|
1424
1428
|
#
|
1425
|
-
# : The
|
1426
|
-
# `"Version": "1"`
|
1429
|
+
# : The Amazon Web Services Systems Manager automation document version.
|
1430
|
+
# For example, `"Version": "1"`
|
1427
1431
|
#
|
1428
1432
|
# AssumeRole
|
1429
1433
|
#
|
@@ -1624,7 +1628,7 @@ module Aws::ServiceCatalog
|
|
1624
1628
|
# The portfolio identifier.
|
1625
1629
|
#
|
1626
1630
|
# @option params [String] :account_id
|
1627
|
-
# The
|
1631
|
+
# The Amazon Web Services account ID.
|
1628
1632
|
#
|
1629
1633
|
# @option params [Types::OrganizationNode] :organization_node
|
1630
1634
|
# The organization node to whom you are going to stop sharing.
|
@@ -1710,7 +1714,7 @@ module Aws::ServiceCatalog
|
|
1710
1714
|
# The plan identifier.
|
1711
1715
|
#
|
1712
1716
|
# @option params [Boolean] :ignore_errors
|
1713
|
-
# If set to true,
|
1717
|
+
# If set to true, Service Catalog stops managing the specified
|
1714
1718
|
# provisioned product even if it cannot delete the underlying resources.
|
1715
1719
|
#
|
1716
1720
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -2574,6 +2578,7 @@ module Aws::ServiceCatalog
|
|
2574
2578
|
# * {Types::DescribeProvisioningParametersOutput#tag_options #tag_options} => Array<Types::TagOptionSummary>
|
2575
2579
|
# * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_preferences #provisioning_artifact_preferences} => Types::ProvisioningArtifactPreferences
|
2576
2580
|
# * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_outputs #provisioning_artifact_outputs} => Array<Types::ProvisioningArtifactOutput>
|
2581
|
+
# * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_output_keys #provisioning_artifact_output_keys} => Array<Types::ProvisioningArtifactOutput>
|
2577
2582
|
#
|
2578
2583
|
# @example Request syntax with placeholder values
|
2579
2584
|
#
|
@@ -2620,6 +2625,9 @@ module Aws::ServiceCatalog
|
|
2620
2625
|
# resp.provisioning_artifact_outputs #=> Array
|
2621
2626
|
# resp.provisioning_artifact_outputs[0].key #=> String
|
2622
2627
|
# resp.provisioning_artifact_outputs[0].description #=> String
|
2628
|
+
# resp.provisioning_artifact_output_keys #=> Array
|
2629
|
+
# resp.provisioning_artifact_output_keys[0].key #=> String
|
2630
|
+
# resp.provisioning_artifact_output_keys[0].description #=> String
|
2623
2631
|
#
|
2624
2632
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParameters AWS API Documentation
|
2625
2633
|
#
|
@@ -2838,19 +2846,26 @@ module Aws::ServiceCatalog
|
|
2838
2846
|
req.send_request(options)
|
2839
2847
|
end
|
2840
2848
|
|
2841
|
-
# Disable portfolio sharing through
|
2842
|
-
#
|
2843
|
-
#
|
2844
|
-
#
|
2845
|
-
# after calling this API.
|
2846
|
-
#
|
2849
|
+
# Disable portfolio sharing through the Organizations service. This
|
2850
|
+
# command will not delete your current shares, but prevents you from
|
2851
|
+
# creating new shares throughout your organization. Current shares are
|
2852
|
+
# not kept in sync with your organization structure if the structure
|
2853
|
+
# changes after calling this API. Only the management account in the
|
2854
|
+
# organization can call this API.
|
2847
2855
|
#
|
2848
|
-
#
|
2849
|
-
#
|
2856
|
+
# You cannot call this API if there are active delegated administrators
|
2857
|
+
# in the organization.
|
2850
2858
|
#
|
2851
2859
|
# Note that a delegated administrator is not authorized to invoke
|
2852
2860
|
# `DisableAWSOrganizationsAccess`.
|
2853
2861
|
#
|
2862
|
+
# If you share an Service Catalog portfolio in an organization within
|
2863
|
+
# Organizations, and then disable Organizations access for Service
|
2864
|
+
# Catalog, the portfolio access permissions will not sync with the
|
2865
|
+
# latest changes to the organization structure. Specifically, accounts
|
2866
|
+
# that you removed from the organization after disabling Service Catalog
|
2867
|
+
# access will retain access to the previously shared portfolio.
|
2868
|
+
#
|
2854
2869
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2855
2870
|
#
|
2856
2871
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisableAWSOrganizationsAccess AWS API Documentation
|
@@ -3032,19 +3047,29 @@ module Aws::ServiceCatalog
|
|
3032
3047
|
req.send_request(options)
|
3033
3048
|
end
|
3034
3049
|
|
3035
|
-
# Enable portfolio sharing feature through
|
3036
|
-
#
|
3037
|
-
#
|
3038
|
-
#
|
3050
|
+
# Enable portfolio sharing feature through Organizations. This API will
|
3051
|
+
# allow Service Catalog to receive updates on your organization in order
|
3052
|
+
# to sync your shares with the current structure. This API can only be
|
3053
|
+
# called by the management account in the organization.
|
3039
3054
|
#
|
3040
|
-
#
|
3041
|
-
# organizations:EnableAWSServiceAccess on your behalf so that your
|
3042
|
-
# shares
|
3043
|
-
# structure.
|
3055
|
+
# When you call this API, Service Catalog calls
|
3056
|
+
# `organizations:EnableAWSServiceAccess` on your behalf so that your
|
3057
|
+
# shares stay in sync with any changes in your Organizations structure.
|
3044
3058
|
#
|
3045
3059
|
# Note that a delegated administrator is not authorized to invoke
|
3046
3060
|
# `EnableAWSOrganizationsAccess`.
|
3047
3061
|
#
|
3062
|
+
# If you have previously disabled Organizations access for Service
|
3063
|
+
# Catalog, and then enable access again, the portfolio access
|
3064
|
+
# permissions might not sync with the latest changes to the organization
|
3065
|
+
# structure. Specifically, accounts that you removed from the
|
3066
|
+
# organization after disabling Service Catalog access, and before you
|
3067
|
+
# enabled access again, can retain access to the previously shared
|
3068
|
+
# portfolio. As a result, an account that has been removed from the
|
3069
|
+
# organization might still be able to create or manage Amazon Web
|
3070
|
+
# Services resources when it is no longer authorized to do so. Amazon
|
3071
|
+
# Web Services is working to resolve this issue.
|
3072
|
+
#
|
3048
3073
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3049
3074
|
#
|
3050
3075
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/EnableAWSOrganizationsAccess AWS API Documentation
|
@@ -3147,10 +3172,10 @@ module Aws::ServiceCatalog
|
|
3147
3172
|
# @option params [Hash<String,Array>] :parameters
|
3148
3173
|
# A map of all self-service action parameters and their values. If a
|
3149
3174
|
# provided parameter is of a special type, such as `TARGET`, the
|
3150
|
-
# provided value will override the default value generated by
|
3151
|
-
#
|
3152
|
-
#
|
3153
|
-
#
|
3175
|
+
# provided value will override the default value generated by Service
|
3176
|
+
# Catalog. If the parameters field is not provided, no additional
|
3177
|
+
# parameters are passed and default values will be used for any special
|
3178
|
+
# parameters such as `TARGET`.
|
3154
3179
|
#
|
3155
3180
|
# @return [Types::ExecuteProvisionedProductServiceActionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3156
3181
|
#
|
@@ -3198,9 +3223,9 @@ module Aws::ServiceCatalog
|
|
3198
3223
|
req.send_request(options)
|
3199
3224
|
end
|
3200
3225
|
|
3201
|
-
# Get the Access Status for
|
3202
|
-
#
|
3203
|
-
#
|
3226
|
+
# Get the Access Status for Organizations portfolio share feature. This
|
3227
|
+
# API can only be called by the management account in the organization
|
3228
|
+
# or by a delegated admin.
|
3204
3229
|
#
|
3205
3230
|
# @return [Types::GetAWSOrganizationsAccessStatusOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3206
3231
|
#
|
@@ -3286,10 +3311,11 @@ module Aws::ServiceCatalog
|
|
3286
3311
|
req.send_request(options)
|
3287
3312
|
end
|
3288
3313
|
|
3289
|
-
# Requests the import of a resource as a
|
3290
|
-
# product that is associated to a
|
3291
|
-
#
|
3292
|
-
#
|
3314
|
+
# Requests the import of a resource as a Amazon Web Services Service
|
3315
|
+
# Catalog provisioned product that is associated to a Amazon Web
|
3316
|
+
# Services Service Catalog product and provisioning artifact. Once
|
3317
|
+
# imported, all supported Amazon Web Services Service Catalog governance
|
3318
|
+
# actions are supported on the provisioned product.
|
3293
3319
|
#
|
3294
3320
|
# Resource import only supports CloudFormation stack ARNs.
|
3295
3321
|
# CloudFormation StackSets and non-root nested stacks are not supported.
|
@@ -3300,7 +3326,8 @@ module Aws::ServiceCatalog
|
|
3300
3326
|
# `IMPORT_ROLLBACK_COMPLETE`.
|
3301
3327
|
#
|
3302
3328
|
# Import of the resource requires that the CloudFormation stack template
|
3303
|
-
# matches the associated Service Catalog product
|
3329
|
+
# matches the associated Amazon Web Services Service Catalog product
|
3330
|
+
# provisioning artifact.
|
3304
3331
|
#
|
3305
3332
|
# The user or role that performs this operation must have the
|
3306
3333
|
# `cloudformation:GetTemplate` and `cloudformation:DescribeStacks` IAM
|
@@ -3323,8 +3350,8 @@ module Aws::ServiceCatalog
|
|
3323
3350
|
#
|
3324
3351
|
# @option params [required, String] :provisioned_product_name
|
3325
3352
|
# The user-friendly name of the provisioned product. The value must be
|
3326
|
-
# unique for the
|
3327
|
-
# product is provisioned.
|
3353
|
+
# unique for the Amazon Web Services account. The name cannot be updated
|
3354
|
+
# after the product is provisioned.
|
3328
3355
|
#
|
3329
3356
|
# @option params [required, String] :physical_id
|
3330
3357
|
# The unique identifier of the resource to be imported. It only
|
@@ -3383,7 +3410,10 @@ module Aws::ServiceCatalog
|
|
3383
3410
|
req.send_request(options)
|
3384
3411
|
end
|
3385
3412
|
|
3386
|
-
# Lists all portfolios for which
|
3413
|
+
# Lists all imported portfolios for which account-to-account shares were
|
3414
|
+
# accepted by this account. By specifying the `PortfolioShareType`, you
|
3415
|
+
# can list portfolios for which organizational shares were accepted by
|
3416
|
+
# this account.
|
3387
3417
|
#
|
3388
3418
|
# @option params [String] :accept_language
|
3389
3419
|
# The language code.
|
@@ -3405,12 +3435,14 @@ module Aws::ServiceCatalog
|
|
3405
3435
|
# The type of shared portfolios to list. The default is to list imported
|
3406
3436
|
# portfolios.
|
3407
3437
|
#
|
3408
|
-
# * `AWS_ORGANIZATIONS` - List portfolios
|
3409
|
-
# account
|
3438
|
+
# * `AWS_ORGANIZATIONS` - List portfolios accepted and shared via
|
3439
|
+
# organizational sharing by the management account or delegated
|
3440
|
+
# administrator of your organization.
|
3410
3441
|
#
|
3411
|
-
# * `AWS_SERVICECATALOG` -
|
3442
|
+
# * `AWS_SERVICECATALOG` - Deprecated type.
|
3412
3443
|
#
|
3413
|
-
# * `IMPORTED` - List imported portfolios
|
3444
|
+
# * `IMPORTED` - List imported portfolios that have been accepted and
|
3445
|
+
# shared through account-to-account sharing.
|
3414
3446
|
#
|
3415
3447
|
# @return [Types::ListAcceptedPortfolioSharesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3416
3448
|
#
|
@@ -4341,8 +4373,8 @@ module Aws::ServiceCatalog
|
|
4341
4373
|
|
4342
4374
|
# Returns summary information about stack instances that are associated
|
4343
4375
|
# with the specified `CFN_STACKSET` type provisioned product. You can
|
4344
|
-
# filter for stack instances that are associated with a specific
|
4345
|
-
# account name or
|
4376
|
+
# filter for stack instances that are associated with a specific Amazon
|
4377
|
+
# Web Services account name or Region.
|
4346
4378
|
#
|
4347
4379
|
# @option params [String] :accept_language
|
4348
4380
|
# The language code.
|
@@ -4492,8 +4524,8 @@ module Aws::ServiceCatalog
|
|
4492
4524
|
#
|
4493
4525
|
# @option params [required, String] :provisioned_product_name
|
4494
4526
|
# A user-friendly name for the provisioned product. This value must be
|
4495
|
-
# unique for the
|
4496
|
-
# provisioned.
|
4527
|
+
# unique for the Amazon Web Services account and cannot be updated after
|
4528
|
+
# the product is provisioned.
|
4497
4529
|
#
|
4498
4530
|
# @option params [Array<Types::ProvisioningParameter>] :provisioning_parameters
|
4499
4531
|
# Parameters specified by the administrator that are required for
|
@@ -4868,6 +4900,16 @@ module Aws::ServiceCatalog
|
|
4868
4900
|
# Gets information about the provisioned products that meet the
|
4869
4901
|
# specified criteria.
|
4870
4902
|
#
|
4903
|
+
# <note markdown="1"> To ensure a complete list of provisioned products and remove duplicate
|
4904
|
+
# products, use `sort-by createdTime`.
|
4905
|
+
#
|
4906
|
+
# Here is a CLI example: ` `
|
4907
|
+
#
|
4908
|
+
# `aws servicecatalog search-provisioned-products --sort-by createdTime
|
4909
|
+
# `
|
4910
|
+
#
|
4911
|
+
# </note>
|
4912
|
+
#
|
4871
4913
|
# @option params [String] :accept_language
|
4872
4914
|
# The language code.
|
4873
4915
|
#
|
@@ -4992,7 +5034,7 @@ module Aws::ServiceCatalog
|
|
4992
5034
|
# not need to pass this option.**
|
4993
5035
|
#
|
4994
5036
|
# @option params [Boolean] :ignore_errors
|
4995
|
-
# If set to true,
|
5037
|
+
# If set to true, Service Catalog stops managing the specified
|
4996
5038
|
# provisioned product even if it cannot delete the underlying resources.
|
4997
5039
|
#
|
4998
5040
|
# @option params [String] :accept_language
|
@@ -5136,8 +5178,8 @@ module Aws::ServiceCatalog
|
|
5136
5178
|
# You also cannot have more than one `STACKSET` constraint on a
|
5137
5179
|
# product and portfolio.
|
5138
5180
|
#
|
5139
|
-
# Products with a `STACKSET` constraint will launch an
|
5140
|
-
#
|
5181
|
+
# Products with a `STACKSET` constraint will launch an CloudFormation
|
5182
|
+
# stack set.
|
5141
5183
|
#
|
5142
5184
|
# TEMPLATE
|
5143
5185
|
#
|
@@ -5289,8 +5331,9 @@ module Aws::ServiceCatalog
|
|
5289
5331
|
# updated.
|
5290
5332
|
#
|
5291
5333
|
# @option params [String] :account_id
|
5292
|
-
# The
|
5293
|
-
# when updating an external account to account type
|
5334
|
+
# The Amazon Web Services account Id of the recipient account. This
|
5335
|
+
# field is required when updating an external account to account type
|
5336
|
+
# share.
|
5294
5337
|
#
|
5295
5338
|
# @option params [Types::OrganizationNode] :organization_node
|
5296
5339
|
# Information about the organization node.
|
@@ -5594,18 +5637,19 @@ module Aws::ServiceCatalog
|
|
5594
5637
|
# `ExecuteProvisionedProductServiceAction`. Only a role ARN is valid. A
|
5595
5638
|
# user ARN is invalid.
|
5596
5639
|
#
|
5597
|
-
# The `OWNER` key accepts user ARNs
|
5598
|
-
# that has permission to see,
|
5599
|
-
# actions in the provisioned
|
5640
|
+
# The `OWNER` key accepts IAM user ARNs, IAM role ARNs, and STS
|
5641
|
+
# assumed-role ARNs. The owner is the user that has permission to see,
|
5642
|
+
# update, terminate, and execute service actions in the provisioned
|
5643
|
+
# product.
|
5600
5644
|
#
|
5601
5645
|
# The administrator can change the owner of a provisioned product to
|
5602
|
-
# another IAM
|
5603
|
-
# administrators can see ownership history of the provisioned
|
5604
|
-
# using the `ListRecordHistory` API. The new owner can describe
|
5605
|
-
# records for the provisioned product using the
|
5606
|
-
# The previous owner can no longer use
|
5607
|
-
# see the product's history from when
|
5608
|
-
# `ListRecordHistory`.
|
5646
|
+
# another IAM or STS entity within the same account. Both end user
|
5647
|
+
# owners and administrators can see ownership history of the provisioned
|
5648
|
+
# product using the `ListRecordHistory` API. The new owner can describe
|
5649
|
+
# all past records for the provisioned product using the
|
5650
|
+
# `DescribeRecord` API. The previous owner can no longer use
|
5651
|
+
# `DescribeRecord`, but can still see the product's history from when
|
5652
|
+
# he was an owner using `ListRecordHistory`.
|
5609
5653
|
#
|
5610
5654
|
# If a provisioned product ownership is assigned to an end user, they
|
5611
5655
|
# can see and perform any action through the API or Service Catalog
|
@@ -5852,7 +5896,7 @@ module Aws::ServiceCatalog
|
|
5852
5896
|
params: params,
|
5853
5897
|
config: config)
|
5854
5898
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
5855
|
-
context[:gem_version] = '1.
|
5899
|
+
context[:gem_version] = '1.72.0'
|
5856
5900
|
Seahorse::Client::Request.new(handlers, context)
|
5857
5901
|
end
|
5858
5902
|
|
@@ -861,7 +861,8 @@ module Aws::ServiceCatalog
|
|
861
861
|
DescribeProvisioningParametersOutput.add_member(:usage_instructions, Shapes::ShapeRef.new(shape: UsageInstructions, location_name: "UsageInstructions"))
|
862
862
|
DescribeProvisioningParametersOutput.add_member(:tag_options, Shapes::ShapeRef.new(shape: TagOptionSummaries, location_name: "TagOptions"))
|
863
863
|
DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_preferences, Shapes::ShapeRef.new(shape: ProvisioningArtifactPreferences, location_name: "ProvisioningArtifactPreferences"))
|
864
|
-
DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_outputs, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputs, location_name: "ProvisioningArtifactOutputs"))
|
864
|
+
DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_outputs, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputs, deprecated: true, location_name: "ProvisioningArtifactOutputs", metadata: {"deprecatedMessage"=>"This property is deprecated and returns the Id and Description of the Provisioning Artifact. Use ProvisioningArtifactOutputKeys instead to get the Keys and Descriptions of the outputs."}))
|
865
|
+
DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_output_keys, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputs, location_name: "ProvisioningArtifactOutputKeys"))
|
865
866
|
DescribeProvisioningParametersOutput.struct_class = Types::DescribeProvisioningParametersOutput
|
866
867
|
|
867
868
|
DescribeRecordInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
@@ -689,7 +689,7 @@ module Aws::ServiceCatalog
|
|
689
689
|
# You also cannot have more than one `STACKSET` constraint on a
|
690
690
|
# product and portfolio.
|
691
691
|
#
|
692
|
-
# Products with a `STACKSET` constraint will launch an
|
692
|
+
# Products with a `STACKSET` constraint will launch an
|
693
693
|
# CloudFormation stack set.
|
694
694
|
#
|
695
695
|
# TEMPLATE
|
@@ -876,15 +876,15 @@ module Aws::ServiceCatalog
|
|
876
876
|
# @return [String]
|
877
877
|
#
|
878
878
|
# @!attribute [rw] account_id
|
879
|
-
# The
|
879
|
+
# The Amazon Web Services account ID. For example, `123456789012`.
|
880
880
|
# @return [String]
|
881
881
|
#
|
882
882
|
# @!attribute [rw] organization_node
|
883
|
-
# The organization node to whom you are going to share.
|
884
|
-
# `OrganizationNode
|
885
|
-
#
|
886
|
-
#
|
887
|
-
#
|
883
|
+
# The organization node to whom you are going to share. When you pass
|
884
|
+
# `OrganizationNode`, it creates `PortfolioShare` for all of the
|
885
|
+
# Amazon Web Services accounts that are associated to the
|
886
|
+
# `OrganizationNode`. The output returns a `PortfolioShareToken`,
|
887
|
+
# which enables the administrator to monitor the status of the
|
888
888
|
# `PortfolioShare` creation process.
|
889
889
|
# @return [Types::OrganizationNode]
|
890
890
|
#
|
@@ -1115,8 +1115,8 @@ module Aws::ServiceCatalog
|
|
1115
1115
|
#
|
1116
1116
|
# @!attribute [rw] provisioned_product_name
|
1117
1117
|
# A user-friendly name for the provisioned product. This value must be
|
1118
|
-
# unique for the
|
1119
|
-
# is provisioned.
|
1118
|
+
# unique for the Amazon Web Services account and cannot be updated
|
1119
|
+
# after the product is provisioned.
|
1120
1120
|
# @return [String]
|
1121
1121
|
#
|
1122
1122
|
# @!attribute [rw] provisioning_artifact_id
|
@@ -1261,12 +1261,13 @@ module Aws::ServiceCatalog
|
|
1261
1261
|
# not both. Keys accepted: \[ `LoadTemplateFromURL`,
|
1262
1262
|
# `ImportFromPhysicalId` \].
|
1263
1263
|
#
|
1264
|
-
# The URL of the CloudFormation template in Amazon S3,
|
1264
|
+
# The URL of the CloudFormation template in Amazon S3, Amazon Web
|
1265
|
+
# Services CodeCommit, or GitHub in JSON format.
|
1265
1266
|
#
|
1266
1267
|
# `LoadTemplateFromURL`
|
1267
1268
|
#
|
1268
|
-
# Use the URL of the CloudFormation template in Amazon S3
|
1269
|
-
# format.
|
1269
|
+
# Use the URL of the CloudFormation template in Amazon S3, Amazon Web
|
1270
|
+
# Services CodeCommit, or GitHub in JSON format.
|
1270
1271
|
#
|
1271
1272
|
# `ImportFromPhysicalId`
|
1272
1273
|
#
|
@@ -1315,16 +1316,16 @@ module Aws::ServiceCatalog
|
|
1315
1316
|
#
|
1316
1317
|
# Name
|
1317
1318
|
#
|
1318
|
-
# : The name of the
|
1319
|
-
# example, `AWS-RestartEC2Instance`.
|
1319
|
+
# : The name of the Amazon Web Services Systems Manager document (SSM
|
1320
|
+
# document). For example, `AWS-RestartEC2Instance`.
|
1320
1321
|
#
|
1321
1322
|
# If you are using a shared SSM document, you must provide the ARN
|
1322
1323
|
# instead of the name.
|
1323
1324
|
#
|
1324
1325
|
# Version
|
1325
1326
|
#
|
1326
|
-
# : The
|
1327
|
-
# `"Version": "1"`
|
1327
|
+
# : The Amazon Web Services Systems Manager automation document
|
1328
|
+
# version. For example, `"Version": "1"`
|
1328
1329
|
#
|
1329
1330
|
# AssumeRole
|
1330
1331
|
#
|
@@ -1526,7 +1527,7 @@ module Aws::ServiceCatalog
|
|
1526
1527
|
# @return [String]
|
1527
1528
|
#
|
1528
1529
|
# @!attribute [rw] account_id
|
1529
|
-
# The
|
1530
|
+
# The Amazon Web Services account ID.
|
1530
1531
|
# @return [String]
|
1531
1532
|
#
|
1532
1533
|
# @!attribute [rw] organization_node
|
@@ -1616,7 +1617,7 @@ module Aws::ServiceCatalog
|
|
1616
1617
|
# @return [String]
|
1617
1618
|
#
|
1618
1619
|
# @!attribute [rw] ignore_errors
|
1619
|
-
# If set to true,
|
1620
|
+
# If set to true, Service Catalog stops managing the specified
|
1620
1621
|
# provisioned product even if it cannot delete the underlying
|
1621
1622
|
# resources.
|
1622
1623
|
# @return [Boolean]
|
@@ -2417,7 +2418,8 @@ module Aws::ServiceCatalog
|
|
2417
2418
|
# @return [Types::ProvisioningArtifactDetail]
|
2418
2419
|
#
|
2419
2420
|
# @!attribute [rw] info
|
2420
|
-
# The URL of the CloudFormation template in Amazon S3
|
2421
|
+
# The URL of the CloudFormation template in Amazon S3, Amazon Web
|
2422
|
+
# Services CodeCommit, or GitHub in JSON format.
|
2421
2423
|
# @return [Hash<String,String>]
|
2422
2424
|
#
|
2423
2425
|
# @!attribute [rw] status
|
@@ -2522,13 +2524,19 @@ module Aws::ServiceCatalog
|
|
2522
2524
|
#
|
2523
2525
|
# @!attribute [rw] provisioning_artifact_preferences
|
2524
2526
|
# An object that contains information about preferences, such as
|
2525
|
-
#
|
2527
|
+
# Regions and accounts, for the provisioning artifact.
|
2526
2528
|
# @return [Types::ProvisioningArtifactPreferences]
|
2527
2529
|
#
|
2528
2530
|
# @!attribute [rw] provisioning_artifact_outputs
|
2529
2531
|
# The output of the provisioning artifact.
|
2530
2532
|
# @return [Array<Types::ProvisioningArtifactOutput>]
|
2531
2533
|
#
|
2534
|
+
# @!attribute [rw] provisioning_artifact_output_keys
|
2535
|
+
# A list of the keys and descriptions of the outputs. These outputs
|
2536
|
+
# can be referenced from a provisioned product launched from this
|
2537
|
+
# provisioning artifact.
|
2538
|
+
# @return [Array<Types::ProvisioningArtifactOutput>]
|
2539
|
+
#
|
2532
2540
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParametersOutput AWS API Documentation
|
2533
2541
|
#
|
2534
2542
|
class DescribeProvisioningParametersOutput < Struct.new(
|
@@ -2537,7 +2545,8 @@ module Aws::ServiceCatalog
|
|
2537
2545
|
:usage_instructions,
|
2538
2546
|
:tag_options,
|
2539
2547
|
:provisioning_artifact_preferences,
|
2540
|
-
:provisioning_artifact_outputs
|
2548
|
+
:provisioning_artifact_outputs,
|
2549
|
+
:provisioning_artifact_output_keys)
|
2541
2550
|
SENSITIVE = []
|
2542
2551
|
include Aws::Structure
|
2543
2552
|
end
|
@@ -3047,10 +3056,10 @@ module Aws::ServiceCatalog
|
|
3047
3056
|
# @!attribute [rw] parameters
|
3048
3057
|
# A map of all self-service action parameters and their values. If a
|
3049
3058
|
# provided parameter is of a special type, such as `TARGET`, the
|
3050
|
-
# provided value will override the default value generated by
|
3051
|
-
#
|
3052
|
-
#
|
3053
|
-
#
|
3059
|
+
# provided value will override the default value generated by Service
|
3060
|
+
# Catalog. If the parameters field is not provided, no additional
|
3061
|
+
# parameters are passed and default values will be used for any
|
3062
|
+
# special parameters such as `TARGET`.
|
3054
3063
|
# @return [Hash<String,Array<String>>]
|
3055
3064
|
#
|
3056
3065
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecuteProvisionedProductServiceActionInput AWS API Documentation
|
@@ -3270,8 +3279,8 @@ module Aws::ServiceCatalog
|
|
3270
3279
|
#
|
3271
3280
|
# @!attribute [rw] provisioned_product_name
|
3272
3281
|
# The user-friendly name of the provisioned product. The value must be
|
3273
|
-
# unique for the
|
3274
|
-
# product is provisioned.
|
3282
|
+
# unique for the Amazon Web Services account. The name cannot be
|
3283
|
+
# updated after the product is provisioned.
|
3275
3284
|
# @return [String]
|
3276
3285
|
#
|
3277
3286
|
# @!attribute [rw] physical_id
|
@@ -3361,7 +3370,7 @@ module Aws::ServiceCatalog
|
|
3361
3370
|
# @return [Array<Types::Tag>]
|
3362
3371
|
#
|
3363
3372
|
# @!attribute [rw] name
|
3364
|
-
# The name of the portfolio
|
3373
|
+
# The name of the portfolio that contains the product.
|
3365
3374
|
# @return [String]
|
3366
3375
|
#
|
3367
3376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/LaunchPathSummary AWS API Documentation
|
@@ -3416,12 +3425,14 @@ module Aws::ServiceCatalog
|
|
3416
3425
|
# The type of shared portfolios to list. The default is to list
|
3417
3426
|
# imported portfolios.
|
3418
3427
|
#
|
3419
|
-
# * `AWS_ORGANIZATIONS` - List portfolios
|
3420
|
-
# account
|
3428
|
+
# * `AWS_ORGANIZATIONS` - List portfolios accepted and shared via
|
3429
|
+
# organizational sharing by the management account or delegated
|
3430
|
+
# administrator of your organization.
|
3421
3431
|
#
|
3422
|
-
# * `AWS_SERVICECATALOG` -
|
3432
|
+
# * `AWS_SERVICECATALOG` - Deprecated type.
|
3423
3433
|
#
|
3424
|
-
# * `IMPORTED` - List imported portfolios
|
3434
|
+
# * `IMPORTED` - List imported portfolios that have been accepted and
|
3435
|
+
# shared through account-to-account sharing.
|
3425
3436
|
# @return [String]
|
3426
3437
|
#
|
3427
3438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListAcceptedPortfolioSharesInput AWS API Documentation
|
@@ -3774,7 +3785,8 @@ module Aws::ServiceCatalog
|
|
3774
3785
|
end
|
3775
3786
|
|
3776
3787
|
# @!attribute [rw] account_ids
|
3777
|
-
# Information about the
|
3788
|
+
# Information about the Amazon Web Services accounts with access to
|
3789
|
+
# the portfolio.
|
3778
3790
|
# @return [Array<String>]
|
3779
3791
|
#
|
3780
3792
|
# @!attribute [rw] next_page_token
|
@@ -4877,7 +4889,7 @@ module Aws::ServiceCatalog
|
|
4877
4889
|
# @!attribute [rw] type
|
4878
4890
|
# The product type. Contact the product administrator for the
|
4879
4891
|
# significance of this value. If this value is `MARKETPLACE`, the
|
4880
|
-
# product was created by
|
4892
|
+
# product was created by Amazon Web Services Marketplace.
|
4881
4893
|
# @return [String]
|
4882
4894
|
#
|
4883
4895
|
# @!attribute [rw] distributor
|
@@ -5002,8 +5014,8 @@ module Aws::ServiceCatalog
|
|
5002
5014
|
#
|
5003
5015
|
# @!attribute [rw] provisioned_product_name
|
5004
5016
|
# A user-friendly name for the provisioned product. This value must be
|
5005
|
-
# unique for the
|
5006
|
-
# is provisioned.
|
5017
|
+
# unique for the Amazon Web Services account and cannot be updated
|
5018
|
+
# after the product is provisioned.
|
5007
5019
|
# @return [String]
|
5008
5020
|
#
|
5009
5021
|
# @!attribute [rw] provisioning_parameters
|
@@ -5522,11 +5534,12 @@ module Aws::ServiceCatalog
|
|
5522
5534
|
# @!attribute [rw] type
|
5523
5535
|
# The type of provisioning artifact.
|
5524
5536
|
#
|
5525
|
-
# * `CLOUD_FORMATION_TEMPLATE` -
|
5537
|
+
# * `CLOUD_FORMATION_TEMPLATE` - CloudFormation template
|
5526
5538
|
#
|
5527
|
-
# * `MARKETPLACE_AMI` -
|
5539
|
+
# * `MARKETPLACE_AMI` - Amazon Web Services Marketplace AMI
|
5528
5540
|
#
|
5529
|
-
# * `MARKETPLACE_CAR` -
|
5541
|
+
# * `MARKETPLACE_CAR` - Amazon Web Services Marketplace Clusters and
|
5542
|
+
# Amazon Web Services Resources
|
5530
5543
|
# @return [String]
|
5531
5544
|
#
|
5532
5545
|
# @!attribute [rw] created_time
|
@@ -5621,16 +5634,16 @@ module Aws::ServiceCatalog
|
|
5621
5634
|
# `UpdateProvisioningPreferences`.
|
5622
5635
|
#
|
5623
5636
|
# For more information on maximum concurrent accounts and failure
|
5624
|
-
# tolerance, see [Stack set operation options][1] in the *
|
5625
|
-
#
|
5637
|
+
# tolerance, see [Stack set operation options][1] in the *CloudFormation
|
5638
|
+
# User Guide*.
|
5626
5639
|
#
|
5627
5640
|
#
|
5628
5641
|
#
|
5629
5642
|
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options
|
5630
5643
|
#
|
5631
5644
|
# @!attribute [rw] stack_set_accounts
|
5632
|
-
# One or more
|
5633
|
-
# stack set. These accounts can be scoped in
|
5645
|
+
# One or more Amazon Web Services accounts where stack instances are
|
5646
|
+
# deployed from the stack set. These accounts can be scoped in
|
5634
5647
|
# `ProvisioningPreferences$StackSetAccounts` and
|
5635
5648
|
# `UpdateProvisioningPreferences$StackSetAccounts`.
|
5636
5649
|
#
|
@@ -5638,8 +5651,8 @@ module Aws::ServiceCatalog
|
|
5638
5651
|
# @return [Array<String>]
|
5639
5652
|
#
|
5640
5653
|
# @!attribute [rw] stack_set_regions
|
5641
|
-
# One or more
|
5642
|
-
# stack set. These
|
5654
|
+
# One or more Amazon Web Services Regions where stack instances are
|
5655
|
+
# deployed from the stack set. These Regions can be scoped in
|
5643
5656
|
# `ProvisioningPreferences$StackSetRegions` and
|
5644
5657
|
# `UpdateProvisioningPreferences$StackSetRegions`.
|
5645
5658
|
#
|
@@ -5686,8 +5699,9 @@ module Aws::ServiceCatalog
|
|
5686
5699
|
# not both. Keys accepted: \[ `LoadTemplateFromURL`,
|
5687
5700
|
# `ImportFromPhysicalId` \]
|
5688
5701
|
#
|
5689
|
-
# The URL of the CloudFormation template in Amazon S3
|
5690
|
-
# in JSON format
|
5702
|
+
# The URL of the CloudFormation template in Amazon S3, Amazon Web
|
5703
|
+
# Services CodeCommit, or GitHub in JSON format. Specify the URL in
|
5704
|
+
# JSON format as follows:
|
5691
5705
|
#
|
5692
5706
|
# `"LoadTemplateFromURL":
|
5693
5707
|
# "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."`
|
@@ -5702,16 +5716,17 @@ module Aws::ServiceCatalog
|
|
5702
5716
|
# @!attribute [rw] type
|
5703
5717
|
# The type of provisioning artifact.
|
5704
5718
|
#
|
5705
|
-
# * `CLOUD_FORMATION_TEMPLATE` -
|
5719
|
+
# * `CLOUD_FORMATION_TEMPLATE` - CloudFormation template
|
5706
5720
|
#
|
5707
|
-
# * `MARKETPLACE_AMI` -
|
5721
|
+
# * `MARKETPLACE_AMI` - Amazon Web Services Marketplace AMI
|
5708
5722
|
#
|
5709
|
-
# * `MARKETPLACE_CAR` -
|
5723
|
+
# * `MARKETPLACE_CAR` - Amazon Web Services Marketplace Clusters and
|
5724
|
+
# Amazon Web Services Resources
|
5710
5725
|
# @return [String]
|
5711
5726
|
#
|
5712
5727
|
# @!attribute [rw] disable_template_validation
|
5713
|
-
# If set to true,
|
5714
|
-
# provisioning artifact even if it is invalid.
|
5728
|
+
# If set to true, Amazon Web Services Service Catalog stops validating
|
5729
|
+
# the specified provisioning artifact even if it is invalid.
|
5715
5730
|
# @return [Boolean]
|
5716
5731
|
#
|
5717
5732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactProperties AWS API Documentation
|
@@ -5746,8 +5761,8 @@ module Aws::ServiceCatalog
|
|
5746
5761
|
# @return [Time]
|
5747
5762
|
#
|
5748
5763
|
# @!attribute [rw] provisioning_artifact_metadata
|
5749
|
-
# The metadata for the provisioning artifact. This is used with
|
5750
|
-
# Marketplace products.
|
5764
|
+
# The metadata for the provisioning artifact. This is used with Amazon
|
5765
|
+
# Web Services Marketplace products.
|
5751
5766
|
# @return [Hash<String,String>]
|
5752
5767
|
#
|
5753
5768
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactSummary AWS API Documentation
|
@@ -5814,14 +5829,14 @@ module Aws::ServiceCatalog
|
|
5814
5829
|
# provisioned product. Not all preferences are applicable to all
|
5815
5830
|
# provisioned product type
|
5816
5831
|
#
|
5817
|
-
# One or more
|
5818
|
-
# product.
|
5832
|
+
# One or more Amazon Web Services accounts that will have access to the
|
5833
|
+
# provisioned product.
|
5819
5834
|
#
|
5820
5835
|
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
5821
5836
|
#
|
5822
|
-
# The
|
5823
|
-
# the `STACKSET` constraint. To get the list of accounts
|
5824
|
-
# `STACKSET` constraint, use the `DescribeProvisioningParameters`
|
5837
|
+
# The Amazon Web Services accounts specified should be within the list
|
5838
|
+
# of accounts in the `STACKSET` constraint. To get the list of accounts
|
5839
|
+
# in the `STACKSET` constraint, use the `DescribeProvisioningParameters`
|
5825
5840
|
# operation.
|
5826
5841
|
#
|
5827
5842
|
# If no values are specified, the default value is all accounts from the
|
@@ -5840,8 +5855,8 @@ module Aws::ServiceCatalog
|
|
5840
5855
|
# }
|
5841
5856
|
#
|
5842
5857
|
# @!attribute [rw] stack_set_accounts
|
5843
|
-
# One or more
|
5844
|
-
# available.
|
5858
|
+
# One or more Amazon Web Services accounts where the provisioned
|
5859
|
+
# product will be available.
|
5845
5860
|
#
|
5846
5861
|
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
5847
5862
|
#
|
@@ -5855,24 +5870,24 @@ module Aws::ServiceCatalog
|
|
5855
5870
|
# @return [Array<String>]
|
5856
5871
|
#
|
5857
5872
|
# @!attribute [rw] stack_set_regions
|
5858
|
-
# One or more
|
5859
|
-
# available.
|
5873
|
+
# One or more Amazon Web Services Regions where the provisioned
|
5874
|
+
# product will be available.
|
5860
5875
|
#
|
5861
5876
|
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
5862
5877
|
#
|
5863
|
-
# The specified
|
5864
|
-
# `STACKSET` constraint. To get the list of
|
5878
|
+
# The specified Regions should be within the list of Regions from the
|
5879
|
+
# `STACKSET` constraint. To get the list of Regions in the `STACKSET`
|
5865
5880
|
# constraint, use the `DescribeProvisioningParameters` operation.
|
5866
5881
|
#
|
5867
|
-
# If no values are specified, the default value is all
|
5882
|
+
# If no values are specified, the default value is all Regions from
|
5868
5883
|
# the `STACKSET` constraint.
|
5869
5884
|
# @return [Array<String>]
|
5870
5885
|
#
|
5871
5886
|
# @!attribute [rw] stack_set_failure_tolerance_count
|
5872
|
-
# The number of accounts, per
|
5873
|
-
# fail before
|
5874
|
-
#
|
5875
|
-
#
|
5887
|
+
# The number of accounts, per Region, for which this operation can
|
5888
|
+
# fail before Service Catalog stops the operation in that Region. If
|
5889
|
+
# the operation is stopped in a Region, Service Catalog doesn't
|
5890
|
+
# attempt the operation in any subsequent Regions.
|
5876
5891
|
#
|
5877
5892
|
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
5878
5893
|
#
|
@@ -5883,14 +5898,13 @@ module Aws::ServiceCatalog
|
|
5883
5898
|
# @return [Integer]
|
5884
5899
|
#
|
5885
5900
|
# @!attribute [rw] stack_set_failure_tolerance_percentage
|
5886
|
-
# The percentage of accounts, per
|
5887
|
-
# operation can fail before
|
5888
|
-
# that
|
5889
|
-
# Catalog doesn't attempt the operation in any subsequent
|
5901
|
+
# The percentage of accounts, per Region, for which this stack
|
5902
|
+
# operation can fail before Service Catalog stops the operation in
|
5903
|
+
# that Region. If the operation is stopped in a Region, Service
|
5904
|
+
# Catalog doesn't attempt the operation in any subsequent Regions.
|
5890
5905
|
#
|
5891
5906
|
# When calculating the number of accounts based on the specified
|
5892
|
-
# percentage,
|
5893
|
-
# number.
|
5907
|
+
# percentage, Service Catalog rounds down to the next whole number.
|
5894
5908
|
#
|
5895
5909
|
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
5896
5910
|
#
|
@@ -5920,10 +5934,9 @@ module Aws::ServiceCatalog
|
|
5920
5934
|
# operation at one time.
|
5921
5935
|
#
|
5922
5936
|
# When calculating the number of accounts based on the specified
|
5923
|
-
# percentage,
|
5924
|
-
#
|
5925
|
-
#
|
5926
|
-
# `1` instead.
|
5937
|
+
# percentage, Service Catalog rounds down to the next whole number.
|
5938
|
+
# This is true except in cases where rounding down would result is
|
5939
|
+
# zero. In this case, Service Catalog sets the number as `1` instead.
|
5927
5940
|
#
|
5928
5941
|
# Note that this setting lets you specify the maximum for operations.
|
5929
5942
|
# For large deployments, under certain circumstances the actual number
|
@@ -6784,9 +6797,9 @@ module Aws::ServiceCatalog
|
|
6784
6797
|
include Aws::Structure
|
6785
6798
|
end
|
6786
6799
|
|
6787
|
-
# An
|
6800
|
+
# An CloudFormation stack, in a specific account and Region, that's
|
6788
6801
|
# part of a stack set operation. A stack instance is a reference to an
|
6789
|
-
# attempted or actual stack in a given account within a given
|
6802
|
+
# attempted or actual stack in a given account within a given Region. A
|
6790
6803
|
# stack instance can exist without a stack—for example, if the stack
|
6791
6804
|
# couldn't be created for some reason. A stack instance is associated
|
6792
6805
|
# with only one stack set. Each stack instance contains the ID of its
|
@@ -6794,13 +6807,13 @@ module Aws::ServiceCatalog
|
|
6794
6807
|
# stack status.
|
6795
6808
|
#
|
6796
6809
|
# @!attribute [rw] account
|
6797
|
-
# The name of the
|
6798
|
-
# with.
|
6810
|
+
# The name of the Amazon Web Services account that the stack instance
|
6811
|
+
# is associated with.
|
6799
6812
|
# @return [String]
|
6800
6813
|
#
|
6801
6814
|
# @!attribute [rw] region
|
6802
|
-
# The name of the
|
6803
|
-
# with.
|
6815
|
+
# The name of the Amazon Web Services Region that the stack instance
|
6816
|
+
# is associated with.
|
6804
6817
|
# @return [String]
|
6805
6818
|
#
|
6806
6819
|
# @!attribute [rw] stack_instance_status
|
@@ -6880,7 +6893,8 @@ module Aws::ServiceCatalog
|
|
6880
6893
|
# @return [String]
|
6881
6894
|
#
|
6882
6895
|
# @!attribute [rw] owner
|
6883
|
-
# The
|
6896
|
+
# The Amazon Web Services account Id of the owner account that created
|
6897
|
+
# the TagOption.
|
6884
6898
|
# @return [String]
|
6885
6899
|
#
|
6886
6900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/TagOptionDetail AWS API Documentation
|
@@ -6896,9 +6910,9 @@ module Aws::ServiceCatalog
|
|
6896
6910
|
end
|
6897
6911
|
|
6898
6912
|
# An operation requiring TagOptions failed because the TagOptions
|
6899
|
-
# migration process has not been performed for this account.
|
6900
|
-
#
|
6901
|
-
# operation.
|
6913
|
+
# migration process has not been performed for this account. Use the
|
6914
|
+
# Amazon Web Services Management Console to perform the migration
|
6915
|
+
# process before retrying the operation.
|
6902
6916
|
#
|
6903
6917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/TagOptionNotMigratedException AWS API Documentation
|
6904
6918
|
#
|
@@ -6957,7 +6971,7 @@ module Aws::ServiceCatalog
|
|
6957
6971
|
# @return [String]
|
6958
6972
|
#
|
6959
6973
|
# @!attribute [rw] ignore_errors
|
6960
|
-
# If set to true,
|
6974
|
+
# If set to true, Service Catalog stops managing the specified
|
6961
6975
|
# provisioned product even if it cannot delete the underlying
|
6962
6976
|
# resources.
|
6963
6977
|
# @return [Boolean]
|
@@ -7096,7 +7110,7 @@ module Aws::ServiceCatalog
|
|
7096
7110
|
# You also cannot have more than one `STACKSET` constraint on a
|
7097
7111
|
# product and portfolio.
|
7098
7112
|
#
|
7099
|
-
# Products with a `STACKSET` constraint will launch an
|
7113
|
+
# Products with a `STACKSET` constraint will launch an
|
7100
7114
|
# CloudFormation stack set.
|
7101
7115
|
#
|
7102
7116
|
# TEMPLATE
|
@@ -7255,8 +7269,9 @@ module Aws::ServiceCatalog
|
|
7255
7269
|
# @return [String]
|
7256
7270
|
#
|
7257
7271
|
# @!attribute [rw] account_id
|
7258
|
-
# The
|
7259
|
-
# when updating an external account to account type
|
7272
|
+
# The Amazon Web Services account Id of the recipient account. This
|
7273
|
+
# field is required when updating an external account to account type
|
7274
|
+
# share.
|
7260
7275
|
# @return [String]
|
7261
7276
|
#
|
7262
7277
|
# @!attribute [rw] organization_node
|
@@ -7588,18 +7603,19 @@ module Aws::ServiceCatalog
|
|
7588
7603
|
# `ExecuteProvisionedProductServiceAction`. Only a role ARN is valid.
|
7589
7604
|
# A user ARN is invalid.
|
7590
7605
|
#
|
7591
|
-
# The `OWNER` key accepts user ARNs
|
7592
|
-
# user that has permission to see,
|
7593
|
-
# service actions in the provisioned
|
7606
|
+
# The `OWNER` key accepts IAM user ARNs, IAM role ARNs, and STS
|
7607
|
+
# assumed-role ARNs. The owner is the user that has permission to see,
|
7608
|
+
# update, terminate, and execute service actions in the provisioned
|
7609
|
+
# product.
|
7594
7610
|
#
|
7595
7611
|
# The administrator can change the owner of a provisioned product to
|
7596
|
-
# another IAM
|
7597
|
-
# administrators can see ownership history of the
|
7598
|
-
# using the `ListRecordHistory` API. The new owner
|
7599
|
-
# past records for the provisioned product using the
|
7600
|
-
# API. The previous owner can no longer use
|
7601
|
-
# still see the product's history from when
|
7602
|
-
# `ListRecordHistory`.
|
7612
|
+
# another IAM or STS entity within the same account. Both end user
|
7613
|
+
# owners and administrators can see ownership history of the
|
7614
|
+
# provisioned product using the `ListRecordHistory` API. The new owner
|
7615
|
+
# can describe all past records for the provisioned product using the
|
7616
|
+
# `DescribeRecord` API. The previous owner can no longer use
|
7617
|
+
# `DescribeRecord`, but can still see the product's history from when
|
7618
|
+
# he was an owner using `ListRecordHistory`.
|
7603
7619
|
#
|
7604
7620
|
# If a provisioned product ownership is assigned to an end user, they
|
7605
7621
|
# can see and perform any action through the API or Service Catalog
|
@@ -7734,7 +7750,8 @@ module Aws::ServiceCatalog
|
|
7734
7750
|
# @return [Types::ProvisioningArtifactDetail]
|
7735
7751
|
#
|
7736
7752
|
# @!attribute [rw] info
|
7737
|
-
# The URL of the CloudFormation template in Amazon S3
|
7753
|
+
# The URL of the CloudFormation template in Amazon S3, Amazon Web
|
7754
|
+
# Services CodeCommit, or GitHub in JSON format.
|
7738
7755
|
# @return [Hash<String,String>]
|
7739
7756
|
#
|
7740
7757
|
# @!attribute [rw] status
|
@@ -7803,39 +7820,39 @@ module Aws::ServiceCatalog
|
|
7803
7820
|
# }
|
7804
7821
|
#
|
7805
7822
|
# @!attribute [rw] stack_set_accounts
|
7806
|
-
# One or more
|
7807
|
-
# product.
|
7823
|
+
# One or more Amazon Web Services accounts that will have access to
|
7824
|
+
# the provisioned product.
|
7808
7825
|
#
|
7809
7826
|
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
7810
7827
|
#
|
7811
|
-
# The
|
7812
|
-
# the `STACKSET` constraint. To get the list of
|
7813
|
-
# `STACKSET` constraint, use the
|
7814
|
-
# operation.
|
7828
|
+
# The Amazon Web Services accounts specified should be within the list
|
7829
|
+
# of accounts in the `STACKSET` constraint. To get the list of
|
7830
|
+
# accounts in the `STACKSET` constraint, use the
|
7831
|
+
# `DescribeProvisioningParameters` operation.
|
7815
7832
|
#
|
7816
7833
|
# If no values are specified, the default value is all accounts from
|
7817
7834
|
# the `STACKSET` constraint.
|
7818
7835
|
# @return [Array<String>]
|
7819
7836
|
#
|
7820
7837
|
# @!attribute [rw] stack_set_regions
|
7821
|
-
# One or more
|
7822
|
-
# available.
|
7838
|
+
# One or more Amazon Web Services Regions where the provisioned
|
7839
|
+
# product will be available.
|
7823
7840
|
#
|
7824
7841
|
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
7825
7842
|
#
|
7826
|
-
# The specified
|
7827
|
-
# `STACKSET` constraint. To get the list of
|
7843
|
+
# The specified Regions should be within the list of Regions from the
|
7844
|
+
# `STACKSET` constraint. To get the list of Regions in the `STACKSET`
|
7828
7845
|
# constraint, use the `DescribeProvisioningParameters` operation.
|
7829
7846
|
#
|
7830
|
-
# If no values are specified, the default value is all
|
7847
|
+
# If no values are specified, the default value is all Regions from
|
7831
7848
|
# the `STACKSET` constraint.
|
7832
7849
|
# @return [Array<String>]
|
7833
7850
|
#
|
7834
7851
|
# @!attribute [rw] stack_set_failure_tolerance_count
|
7835
|
-
# The number of accounts, per
|
7836
|
-
# fail before
|
7837
|
-
#
|
7838
|
-
#
|
7852
|
+
# The number of accounts, per Region, for which this operation can
|
7853
|
+
# fail before Service Catalog stops the operation in that Region. If
|
7854
|
+
# the operation is stopped in a Region, Service Catalog doesn't
|
7855
|
+
# attempt the operation in any subsequent Regions.
|
7839
7856
|
#
|
7840
7857
|
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
7841
7858
|
#
|
@@ -7846,14 +7863,13 @@ module Aws::ServiceCatalog
|
|
7846
7863
|
# @return [Integer]
|
7847
7864
|
#
|
7848
7865
|
# @!attribute [rw] stack_set_failure_tolerance_percentage
|
7849
|
-
# The percentage of accounts, per
|
7850
|
-
# operation can fail before
|
7851
|
-
# that
|
7852
|
-
# Catalog doesn't attempt the operation in any subsequent
|
7866
|
+
# The percentage of accounts, per Region, for which this stack
|
7867
|
+
# operation can fail before Service Catalog stops the operation in
|
7868
|
+
# that Region. If the operation is stopped in a Region, Service
|
7869
|
+
# Catalog doesn't attempt the operation in any subsequent Regions.
|
7853
7870
|
#
|
7854
7871
|
# When calculating the number of accounts based on the specified
|
7855
|
-
# percentage,
|
7856
|
-
# number.
|
7872
|
+
# percentage, Service Catalog rounds down to the next whole number.
|
7857
7873
|
#
|
7858
7874
|
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
7859
7875
|
#
|
@@ -7883,10 +7899,9 @@ module Aws::ServiceCatalog
|
|
7883
7899
|
# operation at one time.
|
7884
7900
|
#
|
7885
7901
|
# When calculating the number of accounts based on the specified
|
7886
|
-
# percentage,
|
7887
|
-
#
|
7888
|
-
#
|
7889
|
-
# `1` instead.
|
7902
|
+
# percentage, Service Catalog rounds down to the next whole number.
|
7903
|
+
# This is true except in cases where rounding down would result is
|
7904
|
+
# zero. In this case, Service Catalog sets the number as `1` instead.
|
7890
7905
|
#
|
7891
7906
|
# Note that this setting lets you specify the maximum for operations.
|
7892
7907
|
# For large deployments, under certain circumstances the actual number
|
@@ -7900,9 +7915,9 @@ module Aws::ServiceCatalog
|
|
7900
7915
|
# @return [Integer]
|
7901
7916
|
#
|
7902
7917
|
# @!attribute [rw] stack_set_operation_type
|
7903
|
-
# Determines what action
|
7904
|
-
#
|
7905
|
-
#
|
7918
|
+
# Determines what action Service Catalog performs to a stack set or a
|
7919
|
+
# stack instance represented by the provisioned product. The default
|
7920
|
+
# value is `UPDATE` if nothing is specified.
|
7906
7921
|
#
|
7907
7922
|
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
7908
7923
|
#
|
@@ -7910,7 +7925,7 @@ module Aws::ServiceCatalog
|
|
7910
7925
|
#
|
7911
7926
|
# : Creates a new stack instance in the stack set represented by the
|
7912
7927
|
# provisioned product. In this case, only new stack instances are
|
7913
|
-
# created based on accounts and
|
7928
|
+
# created based on accounts and Regions; if new ProductId or
|
7914
7929
|
# ProvisioningArtifactID are passed, they will be ignored.
|
7915
7930
|
#
|
7916
7931
|
# UPDATE
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-servicecatalog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.72.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: 2022-
|
11
|
+
date: 2022-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|