aws-sdk-servicecatalog 1.12.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f89599140241a0c42ce4da9ac2bae67c5cb3d274
|
4
|
+
data.tar.gz: d4b61d460df5f3c70302ae91fc042f750a409c04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b5f86071f3f13b789aefc3ec874b6b32a12a80b284c98fa356ee334c2a65af5cc46397716bdcf246ec49d28162c824c606a37afd73fb8ad9d3d44f89d9dfc5a
|
7
|
+
data.tar.gz: 6ced3c51420c301afbf9126f941728870927fc7c8ca12de595fbb382f79bfc13c5f5b9b012bd9c84eb3e19f55c86996715853e28dd3aaf7c21fc411b23e121e7
|
@@ -15,6 +15,7 @@ require 'aws-sdk-core/plugins/helpful_socket_errors.rb'
|
|
15
15
|
require 'aws-sdk-core/plugins/retry_errors.rb'
|
16
16
|
require 'aws-sdk-core/plugins/global_configuration.rb'
|
17
17
|
require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
18
|
+
require 'aws-sdk-core/plugins/endpoint_discovery.rb'
|
18
19
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
20
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
21
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
@@ -45,6 +46,7 @@ module Aws::ServiceCatalog
|
|
45
46
|
add_plugin(Aws::Plugins::RetryErrors)
|
46
47
|
add_plugin(Aws::Plugins::GlobalConfiguration)
|
47
48
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
49
|
+
add_plugin(Aws::Plugins::EndpointDiscovery)
|
48
50
|
add_plugin(Aws::Plugins::ResponsePaging)
|
49
51
|
add_plugin(Aws::Plugins::StubResponses)
|
50
52
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
@@ -98,6 +100,10 @@ module Aws::ServiceCatalog
|
|
98
100
|
#
|
99
101
|
# @option options [String] :access_key_id
|
100
102
|
#
|
103
|
+
# @option options [Boolean] :active_endpoint_cache (false)
|
104
|
+
# When set to `true`, a thread polling for endpoints will be running in
|
105
|
+
# the background every 60 secs (default). Defaults to `false`.
|
106
|
+
#
|
101
107
|
# @option options [Boolean] :client_side_monitoring (false)
|
102
108
|
# When `true`, client-side metrics will be collected for all API requests from
|
103
109
|
# this client.
|
@@ -123,6 +129,21 @@ module Aws::ServiceCatalog
|
|
123
129
|
# option. You should only configure an `:endpoint` when connecting
|
124
130
|
# to test endpoints. This should be avalid HTTP(S) URI.
|
125
131
|
#
|
132
|
+
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
133
|
+
# Used for the maximum size limit of the LRU cache storing endpoints data
|
134
|
+
# for endpoint discovery enabled operations. Defaults to 1000.
|
135
|
+
#
|
136
|
+
# @option options [Integer] :endpoint_cache_max_threads (10)
|
137
|
+
# Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.
|
138
|
+
#
|
139
|
+
# @option options [Integer] :endpoint_cache_poll_interval (60)
|
140
|
+
# When :endpoint_discovery and :active_endpoint_cache is enabled,
|
141
|
+
# Use this option to config the time interval in seconds for making
|
142
|
+
# requests fetching endpoints information. Defaults to 60 sec.
|
143
|
+
#
|
144
|
+
# @option options [Boolean] :endpoint_discovery (false)
|
145
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
|
146
|
+
#
|
126
147
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
127
148
|
# The log formatter.
|
128
149
|
#
|
@@ -589,14 +610,35 @@ module Aws::ServiceCatalog
|
|
589
610
|
#
|
590
611
|
# : Specify the `RoleArn` property as follows:
|
591
612
|
#
|
592
|
-
#
|
613
|
+
# `\{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"\}`
|
614
|
+
#
|
615
|
+
# You cannot have both a `LAUNCH` and a `STACKSET` constraint.
|
616
|
+
#
|
617
|
+
# You also cannot have more than one `LAUNCH` constraint on a product
|
618
|
+
# and portfolio.
|
593
619
|
#
|
594
620
|
# NOTIFICATION
|
595
621
|
#
|
596
622
|
# : Specify the `NotificationArns` property as follows:
|
597
623
|
#
|
598
|
-
#
|
599
|
-
#
|
624
|
+
# `\{"NotificationArns" :
|
625
|
+
# ["arn:aws:sns:us-east-1:123456789012:Topic"]\}`
|
626
|
+
#
|
627
|
+
# STACKSET
|
628
|
+
#
|
629
|
+
# : Specify the `Parameters` property as follows:
|
630
|
+
#
|
631
|
+
# `\{"Version": "String", "Properties": \{"AccountList": [ "String" ],
|
632
|
+
# "RegionList": [ "String" ], "AdminRole": "String", "ExecutionRole":
|
633
|
+
# "String"\}\}`
|
634
|
+
#
|
635
|
+
# You cannot have both a `LAUNCH` and a `STACKSET` constraint.
|
636
|
+
#
|
637
|
+
# You also cannot have more than one `STACKSET` constraint on a
|
638
|
+
# product and portfolio.
|
639
|
+
#
|
640
|
+
# Products with a `STACKSET` constraint will launch an AWS
|
641
|
+
# CloudFormation stack set.
|
600
642
|
#
|
601
643
|
# TEMPLATE
|
602
644
|
#
|
@@ -614,6 +656,8 @@ module Aws::ServiceCatalog
|
|
614
656
|
#
|
615
657
|
# * `NOTIFICATION`
|
616
658
|
#
|
659
|
+
# * `STACKSET`
|
660
|
+
#
|
617
661
|
# * `TEMPLATE`
|
618
662
|
#
|
619
663
|
# @option params [String] :description
|
@@ -2105,6 +2149,7 @@ module Aws::ServiceCatalog
|
|
2105
2149
|
# * {Types::DescribeProvisioningParametersOutput#constraint_summaries #constraint_summaries} => Array<Types::ConstraintSummary>
|
2106
2150
|
# * {Types::DescribeProvisioningParametersOutput#usage_instructions #usage_instructions} => Array<Types::UsageInstruction>
|
2107
2151
|
# * {Types::DescribeProvisioningParametersOutput#tag_options #tag_options} => Array<Types::TagOptionSummary>
|
2152
|
+
# * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_preferences #provisioning_artifact_preferences} => Types::ProvisioningArtifactPreferences
|
2108
2153
|
#
|
2109
2154
|
# @example Request syntax with placeholder values
|
2110
2155
|
#
|
@@ -2135,6 +2180,10 @@ module Aws::ServiceCatalog
|
|
2135
2180
|
# resp.tag_options[0].key #=> String
|
2136
2181
|
# resp.tag_options[0].values #=> Array
|
2137
2182
|
# resp.tag_options[0].values[0] #=> String
|
2183
|
+
# resp.provisioning_artifact_preferences.stack_set_accounts #=> Array
|
2184
|
+
# resp.provisioning_artifact_preferences.stack_set_accounts[0] #=> String
|
2185
|
+
# resp.provisioning_artifact_preferences.stack_set_regions #=> Array
|
2186
|
+
# resp.provisioning_artifact_preferences.stack_set_regions[0] #=> String
|
2138
2187
|
#
|
2139
2188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParameters AWS API Documentation
|
2140
2189
|
#
|
@@ -3564,6 +3613,10 @@ module Aws::ServiceCatalog
|
|
3564
3613
|
# Parameters specified by the administrator that are required for
|
3565
3614
|
# provisioning the product.
|
3566
3615
|
#
|
3616
|
+
# @option params [Types::ProvisioningPreferences] :provisioning_preferences
|
3617
|
+
# An object that contains information about the provisioning preferences
|
3618
|
+
# for a stack set.
|
3619
|
+
#
|
3567
3620
|
# @option params [Array<Types::Tag>] :tags
|
3568
3621
|
# One or more tags.
|
3569
3622
|
#
|
@@ -3596,6 +3649,14 @@ module Aws::ServiceCatalog
|
|
3596
3649
|
# value: "ParameterValue",
|
3597
3650
|
# },
|
3598
3651
|
# ],
|
3652
|
+
# provisioning_preferences: {
|
3653
|
+
# stack_set_accounts: ["AccountId"],
|
3654
|
+
# stack_set_regions: ["Region"],
|
3655
|
+
# stack_set_failure_tolerance_count: 1,
|
3656
|
+
# stack_set_failure_tolerance_percentage: 1,
|
3657
|
+
# stack_set_max_concurrency_count: 1,
|
3658
|
+
# stack_set_max_concurrency_percentage: 1,
|
3659
|
+
# },
|
3599
3660
|
# tags: [
|
3600
3661
|
# {
|
3601
3662
|
# key: "TagKey", # required
|
@@ -4340,6 +4401,10 @@ module Aws::ServiceCatalog
|
|
4340
4401
|
# @option params [Array<Types::UpdateProvisioningParameter>] :provisioning_parameters
|
4341
4402
|
# The new parameters.
|
4342
4403
|
#
|
4404
|
+
# @option params [Types::UpdateProvisioningPreferences] :provisioning_preferences
|
4405
|
+
# An object that contains information about the provisioning preferences
|
4406
|
+
# for a stack set.
|
4407
|
+
#
|
4343
4408
|
# @option params [required, String] :update_token
|
4344
4409
|
# The idempotency token that uniquely identifies the provisioning update
|
4345
4410
|
# request.
|
@@ -4367,6 +4432,15 @@ module Aws::ServiceCatalog
|
|
4367
4432
|
# use_previous_value: false,
|
4368
4433
|
# },
|
4369
4434
|
# ],
|
4435
|
+
# provisioning_preferences: {
|
4436
|
+
# stack_set_accounts: ["AccountId"],
|
4437
|
+
# stack_set_regions: ["Region"],
|
4438
|
+
# stack_set_failure_tolerance_count: 1,
|
4439
|
+
# stack_set_failure_tolerance_percentage: 1,
|
4440
|
+
# stack_set_max_concurrency_count: 1,
|
4441
|
+
# stack_set_max_concurrency_percentage: 1,
|
4442
|
+
# stack_set_operation_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
4443
|
+
# },
|
4370
4444
|
# update_token: "IdempotencyToken", # required
|
4371
4445
|
# })
|
4372
4446
|
#
|
@@ -4576,7 +4650,7 @@ module Aws::ServiceCatalog
|
|
4576
4650
|
params: params,
|
4577
4651
|
config: config)
|
4578
4652
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
4579
|
-
context[:gem_version] = '1.
|
4653
|
+
context[:gem_version] = '1.13.0'
|
4580
4654
|
Seahorse::Client::Request.new(handlers, context)
|
4581
4655
|
end
|
4582
4656
|
|
@@ -278,6 +278,7 @@ module Aws::ServiceCatalog
|
|
278
278
|
ProvisioningArtifactName = Shapes::StringShape.new(name: 'ProvisioningArtifactName')
|
279
279
|
ProvisioningArtifactParameter = Shapes::StructureShape.new(name: 'ProvisioningArtifactParameter')
|
280
280
|
ProvisioningArtifactParameters = Shapes::ListShape.new(name: 'ProvisioningArtifactParameters')
|
281
|
+
ProvisioningArtifactPreferences = Shapes::StructureShape.new(name: 'ProvisioningArtifactPreferences')
|
281
282
|
ProvisioningArtifactProperties = Shapes::StructureShape.new(name: 'ProvisioningArtifactProperties')
|
282
283
|
ProvisioningArtifactPropertyName = Shapes::StringShape.new(name: 'ProvisioningArtifactPropertyName')
|
283
284
|
ProvisioningArtifactPropertyValue = Shapes::StringShape.new(name: 'ProvisioningArtifactPropertyValue')
|
@@ -289,6 +290,7 @@ module Aws::ServiceCatalog
|
|
289
290
|
ProvisioningArtifacts = Shapes::ListShape.new(name: 'ProvisioningArtifacts')
|
290
291
|
ProvisioningParameter = Shapes::StructureShape.new(name: 'ProvisioningParameter')
|
291
292
|
ProvisioningParameters = Shapes::ListShape.new(name: 'ProvisioningParameters')
|
293
|
+
ProvisioningPreferences = Shapes::StructureShape.new(name: 'ProvisioningPreferences')
|
292
294
|
RecordDetail = Shapes::StructureShape.new(name: 'RecordDetail')
|
293
295
|
RecordDetails = Shapes::ListShape.new(name: 'RecordDetails')
|
294
296
|
RecordError = Shapes::StructureShape.new(name: 'RecordError')
|
@@ -301,6 +303,7 @@ module Aws::ServiceCatalog
|
|
301
303
|
RecordTagValue = Shapes::StringShape.new(name: 'RecordTagValue')
|
302
304
|
RecordTags = Shapes::ListShape.new(name: 'RecordTags')
|
303
305
|
RecordType = Shapes::StringShape.new(name: 'RecordType')
|
306
|
+
Region = Shapes::StringShape.new(name: 'Region')
|
304
307
|
RejectPortfolioShareInput = Shapes::StructureShape.new(name: 'RejectPortfolioShareInput')
|
305
308
|
RejectPortfolioShareOutput = Shapes::StructureShape.new(name: 'RejectPortfolioShareOutput')
|
306
309
|
Replacement = Shapes::StringShape.new(name: 'Replacement')
|
@@ -356,6 +359,13 @@ module Aws::ServiceCatalog
|
|
356
359
|
SortOrder = Shapes::StringShape.new(name: 'SortOrder')
|
357
360
|
SourceProvisioningArtifactProperties = Shapes::ListShape.new(name: 'SourceProvisioningArtifactProperties')
|
358
361
|
SourceProvisioningArtifactPropertiesMap = Shapes::MapShape.new(name: 'SourceProvisioningArtifactPropertiesMap')
|
362
|
+
StackSetAccounts = Shapes::ListShape.new(name: 'StackSetAccounts')
|
363
|
+
StackSetFailureToleranceCount = Shapes::IntegerShape.new(name: 'StackSetFailureToleranceCount')
|
364
|
+
StackSetFailureTolerancePercentage = Shapes::IntegerShape.new(name: 'StackSetFailureTolerancePercentage')
|
365
|
+
StackSetMaxConcurrencyCount = Shapes::IntegerShape.new(name: 'StackSetMaxConcurrencyCount')
|
366
|
+
StackSetMaxConcurrencyPercentage = Shapes::IntegerShape.new(name: 'StackSetMaxConcurrencyPercentage')
|
367
|
+
StackSetOperationType = Shapes::StringShape.new(name: 'StackSetOperationType')
|
368
|
+
StackSetRegions = Shapes::ListShape.new(name: 'StackSetRegions')
|
359
369
|
Status = Shapes::StringShape.new(name: 'Status')
|
360
370
|
StatusDetail = Shapes::StringShape.new(name: 'StatusDetail')
|
361
371
|
StatusMessage = Shapes::StringShape.new(name: 'StatusMessage')
|
@@ -393,6 +403,7 @@ module Aws::ServiceCatalog
|
|
393
403
|
UpdateProvisioningArtifactOutput = Shapes::StructureShape.new(name: 'UpdateProvisioningArtifactOutput')
|
394
404
|
UpdateProvisioningParameter = Shapes::StructureShape.new(name: 'UpdateProvisioningParameter')
|
395
405
|
UpdateProvisioningParameters = Shapes::ListShape.new(name: 'UpdateProvisioningParameters')
|
406
|
+
UpdateProvisioningPreferences = Shapes::StructureShape.new(name: 'UpdateProvisioningPreferences')
|
396
407
|
UpdateServiceActionInput = Shapes::StructureShape.new(name: 'UpdateServiceActionInput')
|
397
408
|
UpdateServiceActionOutput = Shapes::StructureShape.new(name: 'UpdateServiceActionOutput')
|
398
409
|
UpdateTagOptionInput = Shapes::StructureShape.new(name: 'UpdateTagOptionInput')
|
@@ -757,6 +768,7 @@ module Aws::ServiceCatalog
|
|
757
768
|
DescribeProvisioningParametersOutput.add_member(:constraint_summaries, Shapes::ShapeRef.new(shape: ConstraintSummaries, location_name: "ConstraintSummaries"))
|
758
769
|
DescribeProvisioningParametersOutput.add_member(:usage_instructions, Shapes::ShapeRef.new(shape: UsageInstructions, location_name: "UsageInstructions"))
|
759
770
|
DescribeProvisioningParametersOutput.add_member(:tag_options, Shapes::ShapeRef.new(shape: TagOptionSummaries, location_name: "TagOptions"))
|
771
|
+
DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_preferences, Shapes::ShapeRef.new(shape: ProvisioningArtifactPreferences, location_name: "ProvisioningArtifactPreferences"))
|
760
772
|
DescribeProvisioningParametersOutput.struct_class = Types::DescribeProvisioningParametersOutput
|
761
773
|
|
762
774
|
DescribeRecordInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
@@ -1097,6 +1109,7 @@ module Aws::ServiceCatalog
|
|
1097
1109
|
ProvisionProductInput.add_member(:path_id, Shapes::ShapeRef.new(shape: Id, location_name: "PathId"))
|
1098
1110
|
ProvisionProductInput.add_member(:provisioned_product_name, Shapes::ShapeRef.new(shape: ProvisionedProductName, required: true, location_name: "ProvisionedProductName"))
|
1099
1111
|
ProvisionProductInput.add_member(:provisioning_parameters, Shapes::ShapeRef.new(shape: ProvisioningParameters, location_name: "ProvisioningParameters"))
|
1112
|
+
ProvisionProductInput.add_member(:provisioning_preferences, Shapes::ShapeRef.new(shape: ProvisioningPreferences, location_name: "ProvisioningPreferences"))
|
1100
1113
|
ProvisionProductInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
1101
1114
|
ProvisionProductInput.add_member(:notification_arns, Shapes::ShapeRef.new(shape: NotificationArns, location_name: "NotificationArns"))
|
1102
1115
|
ProvisionProductInput.add_member(:provision_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "ProvisionToken", metadata: {"idempotencyToken"=>true}))
|
@@ -1200,6 +1213,10 @@ module Aws::ServiceCatalog
|
|
1200
1213
|
|
1201
1214
|
ProvisioningArtifactParameters.member = Shapes::ShapeRef.new(shape: ProvisioningArtifactParameter)
|
1202
1215
|
|
1216
|
+
ProvisioningArtifactPreferences.add_member(:stack_set_accounts, Shapes::ShapeRef.new(shape: StackSetAccounts, location_name: "StackSetAccounts"))
|
1217
|
+
ProvisioningArtifactPreferences.add_member(:stack_set_regions, Shapes::ShapeRef.new(shape: StackSetRegions, location_name: "StackSetRegions"))
|
1218
|
+
ProvisioningArtifactPreferences.struct_class = Types::ProvisioningArtifactPreferences
|
1219
|
+
|
1203
1220
|
ProvisioningArtifactProperties.add_member(:name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "Name"))
|
1204
1221
|
ProvisioningArtifactProperties.add_member(:description, Shapes::ShapeRef.new(shape: ProvisioningArtifactDescription, location_name: "Description"))
|
1205
1222
|
ProvisioningArtifactProperties.add_member(:info, Shapes::ShapeRef.new(shape: ProvisioningArtifactInfo, required: true, location_name: "Info"))
|
@@ -1229,6 +1246,14 @@ module Aws::ServiceCatalog
|
|
1229
1246
|
|
1230
1247
|
ProvisioningParameters.member = Shapes::ShapeRef.new(shape: ProvisioningParameter)
|
1231
1248
|
|
1249
|
+
ProvisioningPreferences.add_member(:stack_set_accounts, Shapes::ShapeRef.new(shape: StackSetAccounts, location_name: "StackSetAccounts"))
|
1250
|
+
ProvisioningPreferences.add_member(:stack_set_regions, Shapes::ShapeRef.new(shape: StackSetRegions, location_name: "StackSetRegions"))
|
1251
|
+
ProvisioningPreferences.add_member(:stack_set_failure_tolerance_count, Shapes::ShapeRef.new(shape: StackSetFailureToleranceCount, location_name: "StackSetFailureToleranceCount"))
|
1252
|
+
ProvisioningPreferences.add_member(:stack_set_failure_tolerance_percentage, Shapes::ShapeRef.new(shape: StackSetFailureTolerancePercentage, location_name: "StackSetFailureTolerancePercentage"))
|
1253
|
+
ProvisioningPreferences.add_member(:stack_set_max_concurrency_count, Shapes::ShapeRef.new(shape: StackSetMaxConcurrencyCount, location_name: "StackSetMaxConcurrencyCount"))
|
1254
|
+
ProvisioningPreferences.add_member(:stack_set_max_concurrency_percentage, Shapes::ShapeRef.new(shape: StackSetMaxConcurrencyPercentage, location_name: "StackSetMaxConcurrencyPercentage"))
|
1255
|
+
ProvisioningPreferences.struct_class = Types::ProvisioningPreferences
|
1256
|
+
|
1232
1257
|
RecordDetail.add_member(:record_id, Shapes::ShapeRef.new(shape: Id, location_name: "RecordId"))
|
1233
1258
|
RecordDetail.add_member(:provisioned_product_name, Shapes::ShapeRef.new(shape: ProvisionedProductName, location_name: "ProvisionedProductName"))
|
1234
1259
|
RecordDetail.add_member(:status, Shapes::ShapeRef.new(shape: RecordStatus, location_name: "Status"))
|
@@ -1395,6 +1420,10 @@ module Aws::ServiceCatalog
|
|
1395
1420
|
SourceProvisioningArtifactPropertiesMap.key = Shapes::ShapeRef.new(shape: ProvisioningArtifactPropertyName)
|
1396
1421
|
SourceProvisioningArtifactPropertiesMap.value = Shapes::ShapeRef.new(shape: ProvisioningArtifactPropertyValue)
|
1397
1422
|
|
1423
|
+
StackSetAccounts.member = Shapes::ShapeRef.new(shape: AccountId)
|
1424
|
+
|
1425
|
+
StackSetRegions.member = Shapes::ShapeRef.new(shape: Region)
|
1426
|
+
|
1398
1427
|
SuccessfulShares.member = Shapes::ShapeRef.new(shape: AccountId)
|
1399
1428
|
|
1400
1429
|
Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
|
@@ -1478,6 +1507,7 @@ module Aws::ServiceCatalog
|
|
1478
1507
|
UpdateProvisionedProductInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
|
1479
1508
|
UpdateProvisionedProductInput.add_member(:path_id, Shapes::ShapeRef.new(shape: Id, location_name: "PathId"))
|
1480
1509
|
UpdateProvisionedProductInput.add_member(:provisioning_parameters, Shapes::ShapeRef.new(shape: UpdateProvisioningParameters, location_name: "ProvisioningParameters"))
|
1510
|
+
UpdateProvisionedProductInput.add_member(:provisioning_preferences, Shapes::ShapeRef.new(shape: UpdateProvisioningPreferences, location_name: "ProvisioningPreferences"))
|
1481
1511
|
UpdateProvisionedProductInput.add_member(:update_token, Shapes::ShapeRef.new(shape: IdempotencyToken, required: true, location_name: "UpdateToken", metadata: {"idempotencyToken"=>true}))
|
1482
1512
|
UpdateProvisionedProductInput.struct_class = Types::UpdateProvisionedProductInput
|
1483
1513
|
|
@@ -1504,6 +1534,15 @@ module Aws::ServiceCatalog
|
|
1504
1534
|
|
1505
1535
|
UpdateProvisioningParameters.member = Shapes::ShapeRef.new(shape: UpdateProvisioningParameter)
|
1506
1536
|
|
1537
|
+
UpdateProvisioningPreferences.add_member(:stack_set_accounts, Shapes::ShapeRef.new(shape: StackSetAccounts, location_name: "StackSetAccounts"))
|
1538
|
+
UpdateProvisioningPreferences.add_member(:stack_set_regions, Shapes::ShapeRef.new(shape: StackSetRegions, location_name: "StackSetRegions"))
|
1539
|
+
UpdateProvisioningPreferences.add_member(:stack_set_failure_tolerance_count, Shapes::ShapeRef.new(shape: StackSetFailureToleranceCount, location_name: "StackSetFailureToleranceCount"))
|
1540
|
+
UpdateProvisioningPreferences.add_member(:stack_set_failure_tolerance_percentage, Shapes::ShapeRef.new(shape: StackSetFailureTolerancePercentage, location_name: "StackSetFailureTolerancePercentage"))
|
1541
|
+
UpdateProvisioningPreferences.add_member(:stack_set_max_concurrency_count, Shapes::ShapeRef.new(shape: StackSetMaxConcurrencyCount, location_name: "StackSetMaxConcurrencyCount"))
|
1542
|
+
UpdateProvisioningPreferences.add_member(:stack_set_max_concurrency_percentage, Shapes::ShapeRef.new(shape: StackSetMaxConcurrencyPercentage, location_name: "StackSetMaxConcurrencyPercentage"))
|
1543
|
+
UpdateProvisioningPreferences.add_member(:stack_set_operation_type, Shapes::ShapeRef.new(shape: StackSetOperationType, location_name: "StackSetOperationType"))
|
1544
|
+
UpdateProvisioningPreferences.struct_class = Types::UpdateProvisioningPreferences
|
1545
|
+
|
1507
1546
|
UpdateServiceActionInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "Id"))
|
1508
1547
|
UpdateServiceActionInput.add_member(:name, Shapes::ShapeRef.new(shape: ServiceActionName, location_name: "Name"))
|
1509
1548
|
UpdateServiceActionInput.add_member(:definition, Shapes::ShapeRef.new(shape: ServiceActionDefinitionMap, location_name: "Definition"))
|
@@ -556,15 +556,35 @@ module Aws::ServiceCatalog
|
|
556
556
|
#
|
557
557
|
# : Specify the `RoleArn` property as follows:
|
558
558
|
#
|
559
|
-
#
|
560
|
-
#
|
559
|
+
# `\{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"\}`
|
560
|
+
#
|
561
|
+
# You cannot have both a `LAUNCH` and a `STACKSET` constraint.
|
562
|
+
#
|
563
|
+
# You also cannot have more than one `LAUNCH` constraint on a
|
564
|
+
# product and portfolio.
|
561
565
|
#
|
562
566
|
# NOTIFICATION
|
563
567
|
#
|
564
568
|
# : Specify the `NotificationArns` property as follows:
|
565
569
|
#
|
566
|
-
#
|
567
|
-
#
|
570
|
+
# `\{"NotificationArns" :
|
571
|
+
# ["arn:aws:sns:us-east-1:123456789012:Topic"]\}`
|
572
|
+
#
|
573
|
+
# STACKSET
|
574
|
+
#
|
575
|
+
# : Specify the `Parameters` property as follows:
|
576
|
+
#
|
577
|
+
# `\{"Version": "String", "Properties": \{"AccountList": [ "String"
|
578
|
+
# ], "RegionList": [ "String" ], "AdminRole": "String",
|
579
|
+
# "ExecutionRole": "String"\}\}`
|
580
|
+
#
|
581
|
+
# You cannot have both a `LAUNCH` and a `STACKSET` constraint.
|
582
|
+
#
|
583
|
+
# You also cannot have more than one `STACKSET` constraint on a
|
584
|
+
# product and portfolio.
|
585
|
+
#
|
586
|
+
# Products with a `STACKSET` constraint will launch an AWS
|
587
|
+
# CloudFormation stack set.
|
568
588
|
#
|
569
589
|
# TEMPLATE
|
570
590
|
#
|
@@ -583,6 +603,8 @@ module Aws::ServiceCatalog
|
|
583
603
|
#
|
584
604
|
# * `NOTIFICATION`
|
585
605
|
#
|
606
|
+
# * `STACKSET`
|
607
|
+
#
|
586
608
|
# * `TEMPLATE`
|
587
609
|
# @return [String]
|
588
610
|
#
|
@@ -2139,13 +2161,19 @@ module Aws::ServiceCatalog
|
|
2139
2161
|
# Information about the TagOptions associated with the resource.
|
2140
2162
|
# @return [Array<Types::TagOptionSummary>]
|
2141
2163
|
#
|
2164
|
+
# @!attribute [rw] provisioning_artifact_preferences
|
2165
|
+
# An object that contains information about preferences, such as
|
2166
|
+
# regions and accounts, for the provisioning artifact.
|
2167
|
+
# @return [Types::ProvisioningArtifactPreferences]
|
2168
|
+
#
|
2142
2169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParametersOutput AWS API Documentation
|
2143
2170
|
#
|
2144
2171
|
class DescribeProvisioningParametersOutput < Struct.new(
|
2145
2172
|
:provisioning_artifact_parameters,
|
2146
2173
|
:constraint_summaries,
|
2147
2174
|
:usage_instructions,
|
2148
|
-
:tag_options
|
2175
|
+
:tag_options,
|
2176
|
+
:provisioning_artifact_preferences)
|
2149
2177
|
include Aws::Structure
|
2150
2178
|
end
|
2151
2179
|
|
@@ -3923,6 +3951,14 @@ module Aws::ServiceCatalog
|
|
3923
3951
|
# value: "ParameterValue",
|
3924
3952
|
# },
|
3925
3953
|
# ],
|
3954
|
+
# provisioning_preferences: {
|
3955
|
+
# stack_set_accounts: ["AccountId"],
|
3956
|
+
# stack_set_regions: ["Region"],
|
3957
|
+
# stack_set_failure_tolerance_count: 1,
|
3958
|
+
# stack_set_failure_tolerance_percentage: 1,
|
3959
|
+
# stack_set_max_concurrency_count: 1,
|
3960
|
+
# stack_set_max_concurrency_percentage: 1,
|
3961
|
+
# },
|
3926
3962
|
# tags: [
|
3927
3963
|
# {
|
3928
3964
|
# key: "TagKey", # required
|
@@ -3968,6 +4004,11 @@ module Aws::ServiceCatalog
|
|
3968
4004
|
# provisioning the product.
|
3969
4005
|
# @return [Array<Types::ProvisioningParameter>]
|
3970
4006
|
#
|
4007
|
+
# @!attribute [rw] provisioning_preferences
|
4008
|
+
# An object that contains information about the provisioning
|
4009
|
+
# preferences for a stack set.
|
4010
|
+
# @return [Types::ProvisioningPreferences]
|
4011
|
+
#
|
3971
4012
|
# @!attribute [rw] tags
|
3972
4013
|
# One or more tags.
|
3973
4014
|
# @return [Array<Types::Tag>]
|
@@ -3994,6 +4035,7 @@ module Aws::ServiceCatalog
|
|
3994
4035
|
:path_id,
|
3995
4036
|
:provisioned_product_name,
|
3996
4037
|
:provisioning_parameters,
|
4038
|
+
:provisioning_preferences,
|
3997
4039
|
:tags,
|
3998
4040
|
:notification_arns,
|
3999
4041
|
:provision_token)
|
@@ -4022,7 +4064,8 @@ module Aws::ServiceCatalog
|
|
4022
4064
|
# @return [String]
|
4023
4065
|
#
|
4024
4066
|
# @!attribute [rw] type
|
4025
|
-
# The type of provisioned product. The supported
|
4067
|
+
# The type of provisioned product. The supported values are
|
4068
|
+
# `CFN_STACK` and `CFN_STACKSET`.
|
4026
4069
|
# @return [String]
|
4027
4070
|
#
|
4028
4071
|
# @!attribute [rw] id
|
@@ -4127,7 +4170,8 @@ module Aws::ServiceCatalog
|
|
4127
4170
|
# @return [String]
|
4128
4171
|
#
|
4129
4172
|
# @!attribute [rw] type
|
4130
|
-
# The type of provisioned product. The supported
|
4173
|
+
# The type of provisioned product. The supported values are
|
4174
|
+
# `CFN_STACK` and `CFN_STACKSET`.
|
4131
4175
|
# @return [String]
|
4132
4176
|
#
|
4133
4177
|
# @!attribute [rw] id
|
@@ -4439,6 +4483,44 @@ module Aws::ServiceCatalog
|
|
4439
4483
|
include Aws::Structure
|
4440
4484
|
end
|
4441
4485
|
|
4486
|
+
# The user-defined preferences that will be applied during product
|
4487
|
+
# provisioning, unless overridden by `ProvisioningPreferences` or
|
4488
|
+
# `UpdateProvisioningPreferences`.
|
4489
|
+
#
|
4490
|
+
# For more information on maximum concurrent accounts and failure
|
4491
|
+
# tolerance, see [Stack set operation options][1] in the *AWS
|
4492
|
+
# CloudFormation User Guide*.
|
4493
|
+
#
|
4494
|
+
#
|
4495
|
+
#
|
4496
|
+
# [1]: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-concepts.html#stackset-ops-options
|
4497
|
+
#
|
4498
|
+
# @!attribute [rw] stack_set_accounts
|
4499
|
+
# One or more AWS accounts where stack instances are deployed from the
|
4500
|
+
# stack set. These accounts can be scoped in
|
4501
|
+
# `ProvisioningPreferences$StackSetAccounts` and
|
4502
|
+
# `UpdateProvisioningPreferences$StackSetAccounts`.
|
4503
|
+
#
|
4504
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
4505
|
+
# @return [Array<String>]
|
4506
|
+
#
|
4507
|
+
# @!attribute [rw] stack_set_regions
|
4508
|
+
# One or more AWS Regions where stack instances are deployed from the
|
4509
|
+
# stack set. These regions can be scoped in
|
4510
|
+
# `ProvisioningPreferences$StackSetRegions` and
|
4511
|
+
# `UpdateProvisioningPreferences$StackSetRegions`.
|
4512
|
+
#
|
4513
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
4514
|
+
# @return [Array<String>]
|
4515
|
+
#
|
4516
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactPreferences AWS API Documentation
|
4517
|
+
#
|
4518
|
+
class ProvisioningArtifactPreferences < Struct.new(
|
4519
|
+
:stack_set_accounts,
|
4520
|
+
:stack_set_regions)
|
4521
|
+
include Aws::Structure
|
4522
|
+
end
|
4523
|
+
|
4442
4524
|
# Information about a provisioning artifact (also known as a version)
|
4443
4525
|
# for a product.
|
4444
4526
|
#
|
@@ -4573,6 +4655,131 @@ module Aws::ServiceCatalog
|
|
4573
4655
|
include Aws::Structure
|
4574
4656
|
end
|
4575
4657
|
|
4658
|
+
# The user-defined preferences that will be applied when updating a
|
4659
|
+
# provisioned product. Not all preferences are applicable to all
|
4660
|
+
# provisioned product types.
|
4661
|
+
#
|
4662
|
+
# @note When making an API call, you may pass ProvisioningPreferences
|
4663
|
+
# data as a hash:
|
4664
|
+
#
|
4665
|
+
# {
|
4666
|
+
# stack_set_accounts: ["AccountId"],
|
4667
|
+
# stack_set_regions: ["Region"],
|
4668
|
+
# stack_set_failure_tolerance_count: 1,
|
4669
|
+
# stack_set_failure_tolerance_percentage: 1,
|
4670
|
+
# stack_set_max_concurrency_count: 1,
|
4671
|
+
# stack_set_max_concurrency_percentage: 1,
|
4672
|
+
# }
|
4673
|
+
#
|
4674
|
+
# @!attribute [rw] stack_set_accounts
|
4675
|
+
# One or more AWS accounts that will have access to the provisioned
|
4676
|
+
# product.
|
4677
|
+
#
|
4678
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
4679
|
+
#
|
4680
|
+
# The AWS accounts specified should be within the list of accounts in
|
4681
|
+
# the `STACKSET` constraint. To get the list of accounts in the
|
4682
|
+
# `STACKSET` constraint, use the `DescribeProvisioningParameters`
|
4683
|
+
# operation.
|
4684
|
+
#
|
4685
|
+
# If no values are specified, the default value is all accounts from
|
4686
|
+
# the `STACKSET` constraint.
|
4687
|
+
# @return [Array<String>]
|
4688
|
+
#
|
4689
|
+
# @!attribute [rw] stack_set_regions
|
4690
|
+
# One or more AWS Regions where the provisioned product will be
|
4691
|
+
# available.
|
4692
|
+
#
|
4693
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
4694
|
+
#
|
4695
|
+
# The specified regions should be within the list of regions from the
|
4696
|
+
# `STACKSET` constraint. To get the list of regions in the `STACKSET`
|
4697
|
+
# constraint, use the `DescribeProvisioningParameters` operation.
|
4698
|
+
#
|
4699
|
+
# If no values are specified, the default value is all regions from
|
4700
|
+
# the `STACKSET` constraint.
|
4701
|
+
# @return [Array<String>]
|
4702
|
+
#
|
4703
|
+
# @!attribute [rw] stack_set_failure_tolerance_count
|
4704
|
+
# The number of accounts, per region, for which this operation can
|
4705
|
+
# fail before AWS Service Catalog stops the operation in that region.
|
4706
|
+
# If the operation is stopped in a region, AWS Service Catalog
|
4707
|
+
# doesn't attempt the operation in any subsequent regions.
|
4708
|
+
#
|
4709
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
4710
|
+
#
|
4711
|
+
# Conditional: You must specify either `StackSetFailureToleranceCount`
|
4712
|
+
# or `StackSetFailureTolerancePercentage`, but not both.
|
4713
|
+
#
|
4714
|
+
# The default value is `0` if no value is specified.
|
4715
|
+
# @return [Integer]
|
4716
|
+
#
|
4717
|
+
# @!attribute [rw] stack_set_failure_tolerance_percentage
|
4718
|
+
# The percentage of accounts, per region, for which this stack
|
4719
|
+
# operation can fail before AWS Service Catalog stops the operation in
|
4720
|
+
# that region. If the operation is stopped in a region, AWS Service
|
4721
|
+
# Catalog doesn't attempt the operation in any subsequent regions.
|
4722
|
+
#
|
4723
|
+
# When calculating the number of accounts based on the specified
|
4724
|
+
# percentage, AWS Service Catalog rounds down to the next whole
|
4725
|
+
# number.
|
4726
|
+
#
|
4727
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
4728
|
+
#
|
4729
|
+
# Conditional: You must specify either `StackSetFailureToleranceCount`
|
4730
|
+
# or `StackSetFailureTolerancePercentage`, but not both.
|
4731
|
+
# @return [Integer]
|
4732
|
+
#
|
4733
|
+
# @!attribute [rw] stack_set_max_concurrency_count
|
4734
|
+
# The maximum number of accounts in which to perform this operation at
|
4735
|
+
# one time. This is dependent on the value of
|
4736
|
+
# `StackSetFailureToleranceCount`. `StackSetMaxConcurrentCount` is at
|
4737
|
+
# most one more than the `StackSetFailureToleranceCount`.
|
4738
|
+
#
|
4739
|
+
# Note that this setting lets you specify the maximum for operations.
|
4740
|
+
# For large deployments, under certain circumstances the actual number
|
4741
|
+
# of accounts acted upon concurrently may be lower due to service
|
4742
|
+
# throttling.
|
4743
|
+
#
|
4744
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
4745
|
+
#
|
4746
|
+
# Conditional: You must specify either `StackSetMaxConcurrentCount` or
|
4747
|
+
# `StackSetMaxConcurrentPercentage`, but not both.
|
4748
|
+
# @return [Integer]
|
4749
|
+
#
|
4750
|
+
# @!attribute [rw] stack_set_max_concurrency_percentage
|
4751
|
+
# The maximum percentage of accounts in which to perform this
|
4752
|
+
# operation at one time.
|
4753
|
+
#
|
4754
|
+
# When calculating the number of accounts based on the specified
|
4755
|
+
# percentage, AWS Service Catalog rounds down to the next whole
|
4756
|
+
# number. This is true except in cases where rounding down would
|
4757
|
+
# result is zero. In this case, AWS Service Catalog sets the number as
|
4758
|
+
# `1` instead.
|
4759
|
+
#
|
4760
|
+
# Note that this setting lets you specify the maximum for operations.
|
4761
|
+
# For large deployments, under certain circumstances the actual number
|
4762
|
+
# of accounts acted upon concurrently may be lower due to service
|
4763
|
+
# throttling.
|
4764
|
+
#
|
4765
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
4766
|
+
#
|
4767
|
+
# Conditional: You must specify either `StackSetMaxConcurrentCount` or
|
4768
|
+
# `StackSetMaxConcurrentPercentage`, but not both.
|
4769
|
+
# @return [Integer]
|
4770
|
+
#
|
4771
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningPreferences AWS API Documentation
|
4772
|
+
#
|
4773
|
+
class ProvisioningPreferences < Struct.new(
|
4774
|
+
:stack_set_accounts,
|
4775
|
+
:stack_set_regions,
|
4776
|
+
:stack_set_failure_tolerance_count,
|
4777
|
+
:stack_set_failure_tolerance_percentage,
|
4778
|
+
:stack_set_max_concurrency_count,
|
4779
|
+
:stack_set_max_concurrency_percentage)
|
4780
|
+
include Aws::Structure
|
4781
|
+
end
|
4782
|
+
|
4576
4783
|
# Information about a request operation.
|
4577
4784
|
#
|
4578
4785
|
# @!attribute [rw] record_id
|
@@ -4610,7 +4817,8 @@ module Aws::ServiceCatalog
|
|
4610
4817
|
# @return [Time]
|
4611
4818
|
#
|
4612
4819
|
# @!attribute [rw] provisioned_product_type
|
4613
|
-
# The type of provisioned product. The supported
|
4820
|
+
# The type of provisioned product. The supported values are
|
4821
|
+
# `CFN_STACK` and `CFN_STACKSET`.
|
4614
4822
|
# @return [String]
|
4615
4823
|
#
|
4616
4824
|
# @!attribute [rw] record_type
|
@@ -5768,6 +5976,15 @@ module Aws::ServiceCatalog
|
|
5768
5976
|
# use_previous_value: false,
|
5769
5977
|
# },
|
5770
5978
|
# ],
|
5979
|
+
# provisioning_preferences: {
|
5980
|
+
# stack_set_accounts: ["AccountId"],
|
5981
|
+
# stack_set_regions: ["Region"],
|
5982
|
+
# stack_set_failure_tolerance_count: 1,
|
5983
|
+
# stack_set_failure_tolerance_percentage: 1,
|
5984
|
+
# stack_set_max_concurrency_count: 1,
|
5985
|
+
# stack_set_max_concurrency_percentage: 1,
|
5986
|
+
# stack_set_operation_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
5987
|
+
# },
|
5771
5988
|
# update_token: "IdempotencyToken", # required
|
5772
5989
|
# }
|
5773
5990
|
#
|
@@ -5808,6 +6025,11 @@ module Aws::ServiceCatalog
|
|
5808
6025
|
# The new parameters.
|
5809
6026
|
# @return [Array<Types::UpdateProvisioningParameter>]
|
5810
6027
|
#
|
6028
|
+
# @!attribute [rw] provisioning_preferences
|
6029
|
+
# An object that contains information about the provisioning
|
6030
|
+
# preferences for a stack set.
|
6031
|
+
# @return [Types::UpdateProvisioningPreferences]
|
6032
|
+
#
|
5811
6033
|
# @!attribute [rw] update_token
|
5812
6034
|
# The idempotency token that uniquely identifies the provisioning
|
5813
6035
|
# update request.
|
@@ -5826,6 +6048,7 @@ module Aws::ServiceCatalog
|
|
5826
6048
|
:provisioning_artifact_id,
|
5827
6049
|
:path_id,
|
5828
6050
|
:provisioning_parameters,
|
6051
|
+
:provisioning_preferences,
|
5829
6052
|
:update_token)
|
5830
6053
|
include Aws::Structure
|
5831
6054
|
end
|
@@ -5949,6 +6172,158 @@ module Aws::ServiceCatalog
|
|
5949
6172
|
include Aws::Structure
|
5950
6173
|
end
|
5951
6174
|
|
6175
|
+
# The user-defined preferences that will be applied when updating a
|
6176
|
+
# provisioned product. Not all preferences are applicable to all
|
6177
|
+
# provisioned product types.
|
6178
|
+
#
|
6179
|
+
# @note When making an API call, you may pass UpdateProvisioningPreferences
|
6180
|
+
# data as a hash:
|
6181
|
+
#
|
6182
|
+
# {
|
6183
|
+
# stack_set_accounts: ["AccountId"],
|
6184
|
+
# stack_set_regions: ["Region"],
|
6185
|
+
# stack_set_failure_tolerance_count: 1,
|
6186
|
+
# stack_set_failure_tolerance_percentage: 1,
|
6187
|
+
# stack_set_max_concurrency_count: 1,
|
6188
|
+
# stack_set_max_concurrency_percentage: 1,
|
6189
|
+
# stack_set_operation_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
6190
|
+
# }
|
6191
|
+
#
|
6192
|
+
# @!attribute [rw] stack_set_accounts
|
6193
|
+
# One or more AWS accounts that will have access to the provisioned
|
6194
|
+
# product.
|
6195
|
+
#
|
6196
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
6197
|
+
#
|
6198
|
+
# The AWS accounts specified should be within the list of accounts in
|
6199
|
+
# the `STACKSET` constraint. To get the list of accounts in the
|
6200
|
+
# `STACKSET` constraint, use the `DescribeProvisioningParameters`
|
6201
|
+
# operation.
|
6202
|
+
#
|
6203
|
+
# If no values are specified, the default value is all accounts from
|
6204
|
+
# the `STACKSET` constraint.
|
6205
|
+
# @return [Array<String>]
|
6206
|
+
#
|
6207
|
+
# @!attribute [rw] stack_set_regions
|
6208
|
+
# One or more AWS Regions where the provisioned product will be
|
6209
|
+
# available.
|
6210
|
+
#
|
6211
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
6212
|
+
#
|
6213
|
+
# The specified regions should be within the list of regions from the
|
6214
|
+
# `STACKSET` constraint. To get the list of regions in the `STACKSET`
|
6215
|
+
# constraint, use the `DescribeProvisioningParameters` operation.
|
6216
|
+
#
|
6217
|
+
# If no values are specified, the default value is all regions from
|
6218
|
+
# the `STACKSET` constraint.
|
6219
|
+
# @return [Array<String>]
|
6220
|
+
#
|
6221
|
+
# @!attribute [rw] stack_set_failure_tolerance_count
|
6222
|
+
# The number of accounts, per region, for which this operation can
|
6223
|
+
# fail before AWS Service Catalog stops the operation in that region.
|
6224
|
+
# If the operation is stopped in a region, AWS Service Catalog
|
6225
|
+
# doesn't attempt the operation in any subsequent regions.
|
6226
|
+
#
|
6227
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
6228
|
+
#
|
6229
|
+
# Conditional: You must specify either `StackSetFailureToleranceCount`
|
6230
|
+
# or `StackSetFailureTolerancePercentage`, but not both.
|
6231
|
+
#
|
6232
|
+
# The default value is `0` if no value is specified.
|
6233
|
+
# @return [Integer]
|
6234
|
+
#
|
6235
|
+
# @!attribute [rw] stack_set_failure_tolerance_percentage
|
6236
|
+
# The percentage of accounts, per region, for which this stack
|
6237
|
+
# operation can fail before AWS Service Catalog stops the operation in
|
6238
|
+
# that region. If the operation is stopped in a region, AWS Service
|
6239
|
+
# Catalog doesn't attempt the operation in any subsequent regions.
|
6240
|
+
#
|
6241
|
+
# When calculating the number of accounts based on the specified
|
6242
|
+
# percentage, AWS Service Catalog rounds down to the next whole
|
6243
|
+
# number.
|
6244
|
+
#
|
6245
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
6246
|
+
#
|
6247
|
+
# Conditional: You must specify either `StackSetFailureToleranceCount`
|
6248
|
+
# or `StackSetFailureTolerancePercentage`, but not both.
|
6249
|
+
# @return [Integer]
|
6250
|
+
#
|
6251
|
+
# @!attribute [rw] stack_set_max_concurrency_count
|
6252
|
+
# The maximum number of accounts in which to perform this operation at
|
6253
|
+
# one time. This is dependent on the value of
|
6254
|
+
# `StackSetFailureToleranceCount`. `StackSetMaxConcurrentCount` is at
|
6255
|
+
# most one more than the `StackSetFailureToleranceCount`.
|
6256
|
+
#
|
6257
|
+
# Note that this setting lets you specify the maximum for operations.
|
6258
|
+
# For large deployments, under certain circumstances the actual number
|
6259
|
+
# of accounts acted upon concurrently may be lower due to service
|
6260
|
+
# throttling.
|
6261
|
+
#
|
6262
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
6263
|
+
#
|
6264
|
+
# Conditional: You must specify either `StackSetMaxConcurrentCount` or
|
6265
|
+
# `StackSetMaxConcurrentPercentage`, but not both.
|
6266
|
+
# @return [Integer]
|
6267
|
+
#
|
6268
|
+
# @!attribute [rw] stack_set_max_concurrency_percentage
|
6269
|
+
# The maximum percentage of accounts in which to perform this
|
6270
|
+
# operation at one time.
|
6271
|
+
#
|
6272
|
+
# When calculating the number of accounts based on the specified
|
6273
|
+
# percentage, AWS Service Catalog rounds down to the next whole
|
6274
|
+
# number. This is true except in cases where rounding down would
|
6275
|
+
# result is zero. In this case, AWS Service Catalog sets the number as
|
6276
|
+
# `1` instead.
|
6277
|
+
#
|
6278
|
+
# Note that this setting lets you specify the maximum for operations.
|
6279
|
+
# For large deployments, under certain circumstances the actual number
|
6280
|
+
# of accounts acted upon concurrently may be lower due to service
|
6281
|
+
# throttling.
|
6282
|
+
#
|
6283
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
6284
|
+
#
|
6285
|
+
# Conditional: You must specify either `StackSetMaxConcurrentCount` or
|
6286
|
+
# `StackSetMaxConcurrentPercentage`, but not both.
|
6287
|
+
# @return [Integer]
|
6288
|
+
#
|
6289
|
+
# @!attribute [rw] stack_set_operation_type
|
6290
|
+
# Determines what action AWS Service Catalog performs to a stack set
|
6291
|
+
# or a stack instance represented by the provisioned product. The
|
6292
|
+
# default value is `UPDATE` if nothing is specified.
|
6293
|
+
#
|
6294
|
+
# Applicable only to a `CFN_STACKSET` provisioned product type.
|
6295
|
+
#
|
6296
|
+
# CREATE
|
6297
|
+
#
|
6298
|
+
# : Creates a new stack instance in the stack set represented by the
|
6299
|
+
# provisioned product. In this case, only new stack instances are
|
6300
|
+
# created based on accounts and regions; if new ProductId or
|
6301
|
+
# ProvisioningArtifactID are passed, they will be ignored.
|
6302
|
+
#
|
6303
|
+
# UPDATE
|
6304
|
+
#
|
6305
|
+
# : Updates the stack set represented by the provisioned product and
|
6306
|
+
# also its stack instances.
|
6307
|
+
#
|
6308
|
+
# DELETE
|
6309
|
+
#
|
6310
|
+
# : Deletes a stack instance in the stack set represented by the
|
6311
|
+
# provisioned product.
|
6312
|
+
# @return [String]
|
6313
|
+
#
|
6314
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateProvisioningPreferences AWS API Documentation
|
6315
|
+
#
|
6316
|
+
class UpdateProvisioningPreferences < Struct.new(
|
6317
|
+
:stack_set_accounts,
|
6318
|
+
:stack_set_regions,
|
6319
|
+
:stack_set_failure_tolerance_count,
|
6320
|
+
:stack_set_failure_tolerance_percentage,
|
6321
|
+
:stack_set_max_concurrency_count,
|
6322
|
+
:stack_set_max_concurrency_percentage,
|
6323
|
+
:stack_set_operation_type)
|
6324
|
+
include Aws::Structure
|
6325
|
+
end
|
6326
|
+
|
5952
6327
|
# @note When making an API call, you may pass UpdateServiceActionInput
|
5953
6328
|
# data as a hash:
|
5954
6329
|
#
|
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.13.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: 2018-11-
|
11
|
+
date: 2018-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|