aws-sdk-servicecatalog 1.42.0 → 1.47.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-servicecatalog.rb +3 -2
- data/lib/aws-sdk-servicecatalog/client.rb +109 -28
- data/lib/aws-sdk-servicecatalog/client_api.rb +30 -4
- data/lib/aws-sdk-servicecatalog/types.rb +175 -15
- 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: 6e22ab901a736c9a37f01a0f7543daf6af8fec838bb00c9b75b027ca859e9e3c
|
4
|
+
data.tar.gz: 498c14b7853b3d1e00bc4703e632d0fe488f046e8fc9db7416cf442d9b267758
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0ba31622a729faf7d354b2ea5a8610652e17f7911dc743dc9dd39e12e4fb7260639e6767080beee9646620ce02c3bb48f7fe875e2a7a9ea5652e5688fe56cdf
|
7
|
+
data.tar.gz: d7193a015f95fb2edb38a9083cc8778592974817e35d6632a2dd7d807834fd9db72635425b6ed027b6659d759f65e08d6a8cf52e64c9582713b7b081c998e221
|
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-servicecatalog/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::ServiceCatalog
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.47.0'
|
51
52
|
|
52
53
|
end
|
@@ -85,13 +85,28 @@ module Aws::ServiceCatalog
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::ServiceCatalog
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -969,6 +984,9 @@ module Aws::ServiceCatalog
|
|
969
984
|
# `AWSOrganizationsAccess` must be enabled in order to create a
|
970
985
|
# portfolio share to an organization node.
|
971
986
|
#
|
987
|
+
# You can't share a shared resource. This includes portfolios that
|
988
|
+
# contain a shared product.
|
989
|
+
#
|
972
990
|
# @option params [String] :accept_language
|
973
991
|
# The language code.
|
974
992
|
#
|
@@ -2193,6 +2211,8 @@ module Aws::ServiceCatalog
|
|
2193
2211
|
# resp.provisioned_product_detail.created_time #=> Time
|
2194
2212
|
# resp.provisioned_product_detail.idempotency_token #=> String
|
2195
2213
|
# resp.provisioned_product_detail.last_record_id #=> String
|
2214
|
+
# resp.provisioned_product_detail.last_provisioning_record_id #=> String
|
2215
|
+
# resp.provisioned_product_detail.last_successful_provisioning_record_id #=> String
|
2196
2216
|
# resp.provisioned_product_detail.product_id #=> String
|
2197
2217
|
# resp.provisioned_product_detail.provisioning_artifact_id #=> String
|
2198
2218
|
# resp.cloud_watch_dashboards #=> Array
|
@@ -2377,16 +2397,30 @@ module Aws::ServiceCatalog
|
|
2377
2397
|
#
|
2378
2398
|
# * `zh` - Chinese
|
2379
2399
|
#
|
2380
|
-
# @option params [
|
2381
|
-
# The product identifier.
|
2400
|
+
# @option params [String] :product_id
|
2401
|
+
# The product identifier. You must provide the product name or ID, but
|
2402
|
+
# not both.
|
2382
2403
|
#
|
2383
|
-
# @option params [
|
2384
|
-
# The
|
2404
|
+
# @option params [String] :product_name
|
2405
|
+
# The name of the product. You must provide the name or ID, but not
|
2406
|
+
# both.
|
2407
|
+
#
|
2408
|
+
# @option params [String] :provisioning_artifact_id
|
2409
|
+
# The identifier of the provisioning artifact. You must provide the name
|
2410
|
+
# or ID, but not both.
|
2411
|
+
#
|
2412
|
+
# @option params [String] :provisioning_artifact_name
|
2413
|
+
# The name of the provisioning artifact. You must provide the name or
|
2414
|
+
# ID, but not both.
|
2385
2415
|
#
|
2386
2416
|
# @option params [String] :path_id
|
2387
2417
|
# The path identifier of the product. This value is optional if the
|
2388
2418
|
# product has a default path, and required if the product has more than
|
2389
|
-
# one path. To list the paths for a product, use ListLaunchPaths.
|
2419
|
+
# one path. To list the paths for a product, use ListLaunchPaths. You
|
2420
|
+
# must provide the name or ID, but not both.
|
2421
|
+
#
|
2422
|
+
# @option params [String] :path_name
|
2423
|
+
# The name of the path. You must provide the name or ID, but not both.
|
2390
2424
|
#
|
2391
2425
|
# @return [Types::DescribeProvisioningParametersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2392
2426
|
#
|
@@ -2395,14 +2429,18 @@ module Aws::ServiceCatalog
|
|
2395
2429
|
# * {Types::DescribeProvisioningParametersOutput#usage_instructions #usage_instructions} => Array<Types::UsageInstruction>
|
2396
2430
|
# * {Types::DescribeProvisioningParametersOutput#tag_options #tag_options} => Array<Types::TagOptionSummary>
|
2397
2431
|
# * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_preferences #provisioning_artifact_preferences} => Types::ProvisioningArtifactPreferences
|
2432
|
+
# * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_outputs #provisioning_artifact_outputs} => Array<Types::ProvisioningArtifactOutput>
|
2398
2433
|
#
|
2399
2434
|
# @example Request syntax with placeholder values
|
2400
2435
|
#
|
2401
2436
|
# resp = client.describe_provisioning_parameters({
|
2402
2437
|
# accept_language: "AcceptLanguage",
|
2403
|
-
# product_id: "Id",
|
2404
|
-
#
|
2438
|
+
# product_id: "Id",
|
2439
|
+
# product_name: "ProductViewName",
|
2440
|
+
# provisioning_artifact_id: "Id",
|
2441
|
+
# provisioning_artifact_name: "ProvisioningArtifactName",
|
2405
2442
|
# path_id: "Id",
|
2443
|
+
# path_name: "PortfolioDisplayName",
|
2406
2444
|
# })
|
2407
2445
|
#
|
2408
2446
|
# @example Response structure
|
@@ -2429,6 +2467,9 @@ module Aws::ServiceCatalog
|
|
2429
2467
|
# resp.provisioning_artifact_preferences.stack_set_accounts[0] #=> String
|
2430
2468
|
# resp.provisioning_artifact_preferences.stack_set_regions #=> Array
|
2431
2469
|
# resp.provisioning_artifact_preferences.stack_set_regions[0] #=> String
|
2470
|
+
# resp.provisioning_artifact_outputs #=> Array
|
2471
|
+
# resp.provisioning_artifact_outputs[0].key #=> String
|
2472
|
+
# resp.provisioning_artifact_outputs[0].description #=> String
|
2432
2473
|
#
|
2433
2474
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParameters AWS API Documentation
|
2434
2475
|
#
|
@@ -4105,16 +4146,29 @@ module Aws::ServiceCatalog
|
|
4105
4146
|
#
|
4106
4147
|
# * `zh` - Chinese
|
4107
4148
|
#
|
4108
|
-
# @option params [
|
4109
|
-
# The product identifier.
|
4149
|
+
# @option params [String] :product_id
|
4150
|
+
# The product identifier. You must provide the name or ID, but not both.
|
4110
4151
|
#
|
4111
|
-
# @option params [
|
4112
|
-
# The
|
4152
|
+
# @option params [String] :product_name
|
4153
|
+
# The name of the product. You must provide the name or ID, but not
|
4154
|
+
# both.
|
4155
|
+
#
|
4156
|
+
# @option params [String] :provisioning_artifact_id
|
4157
|
+
# The identifier of the provisioning artifact. You must provide the name
|
4158
|
+
# or ID, but not both.
|
4159
|
+
#
|
4160
|
+
# @option params [String] :provisioning_artifact_name
|
4161
|
+
# The name of the provisioning artifact. You must provide the name or
|
4162
|
+
# ID, but not both.
|
4113
4163
|
#
|
4114
4164
|
# @option params [String] :path_id
|
4115
4165
|
# The path identifier of the product. This value is optional if the
|
4116
4166
|
# product has a default path, and required if the product has more than
|
4117
|
-
# one path. To list the paths for a product, use ListLaunchPaths.
|
4167
|
+
# one path. To list the paths for a product, use ListLaunchPaths. You
|
4168
|
+
# must provide the name or ID, but not both.
|
4169
|
+
#
|
4170
|
+
# @option params [String] :path_name
|
4171
|
+
# The name of the path. You must provide the name or ID, but not both.
|
4118
4172
|
#
|
4119
4173
|
# @option params [required, String] :provisioned_product_name
|
4120
4174
|
# A user-friendly name for the provisioned product. This value must be
|
@@ -4151,9 +4205,12 @@ module Aws::ServiceCatalog
|
|
4151
4205
|
#
|
4152
4206
|
# resp = client.provision_product({
|
4153
4207
|
# accept_language: "AcceptLanguage",
|
4154
|
-
# product_id: "Id",
|
4155
|
-
#
|
4208
|
+
# product_id: "Id",
|
4209
|
+
# product_name: "ProductViewName",
|
4210
|
+
# provisioning_artifact_id: "Id",
|
4211
|
+
# provisioning_artifact_name: "ProvisioningArtifactName",
|
4156
4212
|
# path_id: "Id",
|
4213
|
+
# path_name: "PortfolioDisplayName",
|
4157
4214
|
# provisioned_product_name: "ProvisionedProductName", # required
|
4158
4215
|
# provisioning_parameters: [
|
4159
4216
|
# {
|
@@ -4308,6 +4365,8 @@ module Aws::ServiceCatalog
|
|
4308
4365
|
# resp.provisioned_products[0].created_time #=> Time
|
4309
4366
|
# resp.provisioned_products[0].idempotency_token #=> String
|
4310
4367
|
# resp.provisioned_products[0].last_record_id #=> String
|
4368
|
+
# resp.provisioned_products[0].last_provisioning_record_id #=> String
|
4369
|
+
# resp.provisioned_products[0].last_successful_provisioning_record_id #=> String
|
4311
4370
|
# resp.provisioned_products[0].product_id #=> String
|
4312
4371
|
# resp.provisioned_products[0].provisioning_artifact_id #=> String
|
4313
4372
|
# resp.next_page_token #=> String
|
@@ -4505,7 +4564,9 @@ module Aws::ServiceCatalog
|
|
4505
4564
|
# When the key is `SearchQuery`, the searchable fields are `arn`,
|
4506
4565
|
# `createdTime`, `id`, `lastRecordId`, `idempotencyToken`, `name`,
|
4507
4566
|
# `physicalId`, `productId`, `provisioningArtifact`, `type`, `status`,
|
4508
|
-
# `tags`, `userArn`,
|
4567
|
+
# `tags`, `userArn`, `userArnSession`, `lastProvisioningRecordId`,
|
4568
|
+
# `lastSuccessfulProvisioningRecordId`, `productName`, and
|
4569
|
+
# `provisioningArtifactName`.
|
4509
4570
|
#
|
4510
4571
|
# Example: `"SearchQuery":["status:AVAILABLE"]`
|
4511
4572
|
#
|
@@ -4560,12 +4621,16 @@ module Aws::ServiceCatalog
|
|
4560
4621
|
# resp.provisioned_products[0].created_time #=> Time
|
4561
4622
|
# resp.provisioned_products[0].idempotency_token #=> String
|
4562
4623
|
# resp.provisioned_products[0].last_record_id #=> String
|
4624
|
+
# resp.provisioned_products[0].last_provisioning_record_id #=> String
|
4625
|
+
# resp.provisioned_products[0].last_successful_provisioning_record_id #=> String
|
4563
4626
|
# resp.provisioned_products[0].tags #=> Array
|
4564
4627
|
# resp.provisioned_products[0].tags[0].key #=> String
|
4565
4628
|
# resp.provisioned_products[0].tags[0].value #=> String
|
4566
4629
|
# resp.provisioned_products[0].physical_id #=> String
|
4567
4630
|
# resp.provisioned_products[0].product_id #=> String
|
4631
|
+
# resp.provisioned_products[0].product_name #=> String
|
4568
4632
|
# resp.provisioned_products[0].provisioning_artifact_id #=> String
|
4633
|
+
# resp.provisioned_products[0].provisioning_artifact_name #=> String
|
4569
4634
|
# resp.provisioned_products[0].user_arn #=> String
|
4570
4635
|
# resp.provisioned_products[0].user_arn_session #=> String
|
4571
4636
|
# resp.total_results_count #=> Integer
|
@@ -4981,18 +5046,31 @@ module Aws::ServiceCatalog
|
|
4981
5046
|
# `ProvisionedProductName` and `ProvisionedProductId`.
|
4982
5047
|
#
|
4983
5048
|
# @option params [String] :provisioned_product_id
|
4984
|
-
# The identifier of the provisioned product. You
|
4985
|
-
#
|
5049
|
+
# The identifier of the provisioned product. You must provide the name
|
5050
|
+
# or ID, but not both.
|
4986
5051
|
#
|
4987
5052
|
# @option params [String] :product_id
|
4988
|
-
# The identifier of the product.
|
5053
|
+
# The identifier of the product. You must provide the name or ID, but
|
5054
|
+
# not both.
|
5055
|
+
#
|
5056
|
+
# @option params [String] :product_name
|
5057
|
+
# The name of the product. You must provide the name or ID, but not
|
5058
|
+
# both.
|
4989
5059
|
#
|
4990
5060
|
# @option params [String] :provisioning_artifact_id
|
4991
5061
|
# The identifier of the provisioning artifact.
|
4992
5062
|
#
|
5063
|
+
# @option params [String] :provisioning_artifact_name
|
5064
|
+
# The name of the provisioning artifact. You must provide the name or
|
5065
|
+
# ID, but not both.
|
5066
|
+
#
|
4993
5067
|
# @option params [String] :path_id
|
4994
|
-
# The
|
4995
|
-
# default path, and required if the product has more than one path.
|
5068
|
+
# The path identifier. This value is optional if the product has a
|
5069
|
+
# default path, and required if the product has more than one path. You
|
5070
|
+
# must provide the name or ID, but not both.
|
5071
|
+
#
|
5072
|
+
# @option params [String] :path_name
|
5073
|
+
# The name of the path. You must provide the name or ID, but not both.
|
4996
5074
|
#
|
4997
5075
|
# @option params [Array<Types::UpdateProvisioningParameter>] :provisioning_parameters
|
4998
5076
|
# The new parameters.
|
@@ -5024,8 +5102,11 @@ module Aws::ServiceCatalog
|
|
5024
5102
|
# provisioned_product_name: "ProvisionedProductNameOrArn",
|
5025
5103
|
# provisioned_product_id: "Id",
|
5026
5104
|
# product_id: "Id",
|
5105
|
+
# product_name: "ProductViewName",
|
5027
5106
|
# provisioning_artifact_id: "Id",
|
5107
|
+
# provisioning_artifact_name: "ProvisioningArtifactName",
|
5028
5108
|
# path_id: "Id",
|
5109
|
+
# path_name: "PortfolioDisplayName",
|
5029
5110
|
# provisioning_parameters: [
|
5030
5111
|
# {
|
5031
5112
|
# key: "ParameterKey",
|
@@ -5355,7 +5436,7 @@ module Aws::ServiceCatalog
|
|
5355
5436
|
params: params,
|
5356
5437
|
config: config)
|
5357
5438
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
5358
|
-
context[:gem_version] = '1.
|
5439
|
+
context[:gem_version] = '1.47.0'
|
5359
5440
|
Seahorse::Client::Request.new(handlers, context)
|
5360
5441
|
end
|
5361
5442
|
|
@@ -225,6 +225,7 @@ module Aws::ServiceCatalog
|
|
225
225
|
OrganizationNodeType = Shapes::StringShape.new(name: 'OrganizationNodeType')
|
226
226
|
OrganizationNodeValue = Shapes::StringShape.new(name: 'OrganizationNodeValue')
|
227
227
|
OrganizationNodes = Shapes::ListShape.new(name: 'OrganizationNodes')
|
228
|
+
OutputDescription = Shapes::StringShape.new(name: 'OutputDescription')
|
228
229
|
OutputKey = Shapes::StringShape.new(name: 'OutputKey')
|
229
230
|
OutputValue = Shapes::StringShape.new(name: 'OutputValue')
|
230
231
|
PageSize = Shapes::IntegerShape.new(name: 'PageSize')
|
@@ -304,6 +305,9 @@ module Aws::ServiceCatalog
|
|
304
305
|
ProvisioningArtifactInfoKey = Shapes::StringShape.new(name: 'ProvisioningArtifactInfoKey')
|
305
306
|
ProvisioningArtifactInfoValue = Shapes::StringShape.new(name: 'ProvisioningArtifactInfoValue')
|
306
307
|
ProvisioningArtifactName = Shapes::StringShape.new(name: 'ProvisioningArtifactName')
|
308
|
+
ProvisioningArtifactOutput = Shapes::StructureShape.new(name: 'ProvisioningArtifactOutput')
|
309
|
+
ProvisioningArtifactOutputKey = Shapes::StringShape.new(name: 'ProvisioningArtifactOutputKey')
|
310
|
+
ProvisioningArtifactOutputs = Shapes::ListShape.new(name: 'ProvisioningArtifactOutputs')
|
307
311
|
ProvisioningArtifactParameter = Shapes::StructureShape.new(name: 'ProvisioningArtifactParameter')
|
308
312
|
ProvisioningArtifactParameters = Shapes::ListShape.new(name: 'ProvisioningArtifactParameters')
|
309
313
|
ProvisioningArtifactPreferences = Shapes::StructureShape.new(name: 'ProvisioningArtifactPreferences')
|
@@ -813,9 +817,12 @@ module Aws::ServiceCatalog
|
|
813
817
|
DescribeProvisioningArtifactOutput.struct_class = Types::DescribeProvisioningArtifactOutput
|
814
818
|
|
815
819
|
DescribeProvisioningParametersInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
816
|
-
DescribeProvisioningParametersInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id,
|
817
|
-
DescribeProvisioningParametersInput.add_member(:
|
820
|
+
DescribeProvisioningParametersInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
|
821
|
+
DescribeProvisioningParametersInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
|
822
|
+
DescribeProvisioningParametersInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
|
823
|
+
DescribeProvisioningParametersInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
|
818
824
|
DescribeProvisioningParametersInput.add_member(:path_id, Shapes::ShapeRef.new(shape: Id, location_name: "PathId"))
|
825
|
+
DescribeProvisioningParametersInput.add_member(:path_name, Shapes::ShapeRef.new(shape: PortfolioDisplayName, location_name: "PathName"))
|
819
826
|
DescribeProvisioningParametersInput.struct_class = Types::DescribeProvisioningParametersInput
|
820
827
|
|
821
828
|
DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_parameters, Shapes::ShapeRef.new(shape: ProvisioningArtifactParameters, location_name: "ProvisioningArtifactParameters"))
|
@@ -823,6 +830,7 @@ module Aws::ServiceCatalog
|
|
823
830
|
DescribeProvisioningParametersOutput.add_member(:usage_instructions, Shapes::ShapeRef.new(shape: UsageInstructions, location_name: "UsageInstructions"))
|
824
831
|
DescribeProvisioningParametersOutput.add_member(:tag_options, Shapes::ShapeRef.new(shape: TagOptionSummaries, location_name: "TagOptions"))
|
825
832
|
DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_preferences, Shapes::ShapeRef.new(shape: ProvisioningArtifactPreferences, location_name: "ProvisioningArtifactPreferences"))
|
833
|
+
DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_outputs, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputs, location_name: "ProvisioningArtifactOutputs"))
|
826
834
|
DescribeProvisioningParametersOutput.struct_class = Types::DescribeProvisioningParametersOutput
|
827
835
|
|
828
836
|
DescribeRecordInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
@@ -1224,9 +1232,12 @@ module Aws::ServiceCatalog
|
|
1224
1232
|
ProductViewSummary.struct_class = Types::ProductViewSummary
|
1225
1233
|
|
1226
1234
|
ProvisionProductInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
|
1227
|
-
ProvisionProductInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id,
|
1228
|
-
ProvisionProductInput.add_member(:
|
1235
|
+
ProvisionProductInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
|
1236
|
+
ProvisionProductInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
|
1237
|
+
ProvisionProductInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
|
1238
|
+
ProvisionProductInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
|
1229
1239
|
ProvisionProductInput.add_member(:path_id, Shapes::ShapeRef.new(shape: Id, location_name: "PathId"))
|
1240
|
+
ProvisionProductInput.add_member(:path_name, Shapes::ShapeRef.new(shape: PortfolioDisplayName, location_name: "PathName"))
|
1230
1241
|
ProvisionProductInput.add_member(:provisioned_product_name, Shapes::ShapeRef.new(shape: ProvisionedProductName, required: true, location_name: "ProvisionedProductName"))
|
1231
1242
|
ProvisionProductInput.add_member(:provisioning_parameters, Shapes::ShapeRef.new(shape: ProvisioningParameters, location_name: "ProvisioningParameters"))
|
1232
1243
|
ProvisionProductInput.add_member(:provisioning_preferences, Shapes::ShapeRef.new(shape: ProvisioningPreferences, location_name: "ProvisioningPreferences"))
|
@@ -1247,10 +1258,14 @@ module Aws::ServiceCatalog
|
|
1247
1258
|
ProvisionedProductAttribute.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "CreatedTime"))
|
1248
1259
|
ProvisionedProductAttribute.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "IdempotencyToken"))
|
1249
1260
|
ProvisionedProductAttribute.add_member(:last_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastRecordId"))
|
1261
|
+
ProvisionedProductAttribute.add_member(:last_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastProvisioningRecordId"))
|
1262
|
+
ProvisionedProductAttribute.add_member(:last_successful_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastSuccessfulProvisioningRecordId"))
|
1250
1263
|
ProvisionedProductAttribute.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
1251
1264
|
ProvisionedProductAttribute.add_member(:physical_id, Shapes::ShapeRef.new(shape: PhysicalId, location_name: "PhysicalId"))
|
1252
1265
|
ProvisionedProductAttribute.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
|
1266
|
+
ProvisionedProductAttribute.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
|
1253
1267
|
ProvisionedProductAttribute.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
|
1268
|
+
ProvisionedProductAttribute.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
|
1254
1269
|
ProvisionedProductAttribute.add_member(:user_arn, Shapes::ShapeRef.new(shape: UserArn, location_name: "UserArn"))
|
1255
1270
|
ProvisionedProductAttribute.add_member(:user_arn_session, Shapes::ShapeRef.new(shape: UserArnSession, location_name: "UserArnSession"))
|
1256
1271
|
ProvisionedProductAttribute.struct_class = Types::ProvisionedProductAttribute
|
@@ -1266,6 +1281,8 @@ module Aws::ServiceCatalog
|
|
1266
1281
|
ProvisionedProductDetail.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "CreatedTime"))
|
1267
1282
|
ProvisionedProductDetail.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "IdempotencyToken"))
|
1268
1283
|
ProvisionedProductDetail.add_member(:last_record_id, Shapes::ShapeRef.new(shape: LastRequestId, location_name: "LastRecordId"))
|
1284
|
+
ProvisionedProductDetail.add_member(:last_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastProvisioningRecordId"))
|
1285
|
+
ProvisionedProductDetail.add_member(:last_successful_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastSuccessfulProvisioningRecordId"))
|
1269
1286
|
ProvisionedProductDetail.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
|
1270
1287
|
ProvisionedProductDetail.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
|
1271
1288
|
ProvisionedProductDetail.struct_class = Types::ProvisionedProductDetail
|
@@ -1328,6 +1345,12 @@ module Aws::ServiceCatalog
|
|
1328
1345
|
ProvisioningArtifactInfo.key = Shapes::ShapeRef.new(shape: ProvisioningArtifactInfoKey)
|
1329
1346
|
ProvisioningArtifactInfo.value = Shapes::ShapeRef.new(shape: ProvisioningArtifactInfoValue)
|
1330
1347
|
|
1348
|
+
ProvisioningArtifactOutput.add_member(:key, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputKey, location_name: "Key"))
|
1349
|
+
ProvisioningArtifactOutput.add_member(:description, Shapes::ShapeRef.new(shape: OutputDescription, location_name: "Description"))
|
1350
|
+
ProvisioningArtifactOutput.struct_class = Types::ProvisioningArtifactOutput
|
1351
|
+
|
1352
|
+
ProvisioningArtifactOutputs.member = Shapes::ShapeRef.new(shape: ProvisioningArtifactOutput)
|
1353
|
+
|
1331
1354
|
ProvisioningArtifactParameter.add_member(:parameter_key, Shapes::ShapeRef.new(shape: ParameterKey, location_name: "ParameterKey"))
|
1332
1355
|
ProvisioningArtifactParameter.add_member(:default_value, Shapes::ShapeRef.new(shape: DefaultValue, location_name: "DefaultValue"))
|
1333
1356
|
ProvisioningArtifactParameter.add_member(:parameter_type, Shapes::ShapeRef.new(shape: ParameterType, location_name: "ParameterType"))
|
@@ -1644,8 +1667,11 @@ module Aws::ServiceCatalog
|
|
1644
1667
|
UpdateProvisionedProductInput.add_member(:provisioned_product_name, Shapes::ShapeRef.new(shape: ProvisionedProductNameOrArn, location_name: "ProvisionedProductName"))
|
1645
1668
|
UpdateProvisionedProductInput.add_member(:provisioned_product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisionedProductId"))
|
1646
1669
|
UpdateProvisionedProductInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
|
1670
|
+
UpdateProvisionedProductInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
|
1647
1671
|
UpdateProvisionedProductInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
|
1672
|
+
UpdateProvisionedProductInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
|
1648
1673
|
UpdateProvisionedProductInput.add_member(:path_id, Shapes::ShapeRef.new(shape: Id, location_name: "PathId"))
|
1674
|
+
UpdateProvisionedProductInput.add_member(:path_name, Shapes::ShapeRef.new(shape: PortfolioDisplayName, location_name: "PathName"))
|
1649
1675
|
UpdateProvisionedProductInput.add_member(:provisioning_parameters, Shapes::ShapeRef.new(shape: UpdateProvisioningParameters, location_name: "ProvisioningParameters"))
|
1650
1676
|
UpdateProvisionedProductInput.add_member(:provisioning_preferences, Shapes::ShapeRef.new(shape: UpdateProvisioningPreferences, location_name: "ProvisioningPreferences"))
|
1651
1677
|
UpdateProvisionedProductInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
@@ -2312,9 +2312,12 @@ module Aws::ServiceCatalog
|
|
2312
2312
|
#
|
2313
2313
|
# {
|
2314
2314
|
# accept_language: "AcceptLanguage",
|
2315
|
-
# product_id: "Id",
|
2316
|
-
#
|
2315
|
+
# product_id: "Id",
|
2316
|
+
# product_name: "ProductViewName",
|
2317
|
+
# provisioning_artifact_id: "Id",
|
2318
|
+
# provisioning_artifact_name: "ProvisioningArtifactName",
|
2317
2319
|
# path_id: "Id",
|
2320
|
+
# path_name: "PortfolioDisplayName",
|
2318
2321
|
# }
|
2319
2322
|
#
|
2320
2323
|
# @!attribute [rw] accept_language
|
@@ -2328,17 +2331,34 @@ module Aws::ServiceCatalog
|
|
2328
2331
|
# @return [String]
|
2329
2332
|
#
|
2330
2333
|
# @!attribute [rw] product_id
|
2331
|
-
# The product identifier.
|
2334
|
+
# The product identifier. You must provide the product name or ID, but
|
2335
|
+
# not both.
|
2336
|
+
# @return [String]
|
2337
|
+
#
|
2338
|
+
# @!attribute [rw] product_name
|
2339
|
+
# The name of the product. You must provide the name or ID, but not
|
2340
|
+
# both.
|
2332
2341
|
# @return [String]
|
2333
2342
|
#
|
2334
2343
|
# @!attribute [rw] provisioning_artifact_id
|
2335
|
-
# The identifier of the provisioning artifact.
|
2344
|
+
# The identifier of the provisioning artifact. You must provide the
|
2345
|
+
# name or ID, but not both.
|
2346
|
+
# @return [String]
|
2347
|
+
#
|
2348
|
+
# @!attribute [rw] provisioning_artifact_name
|
2349
|
+
# The name of the provisioning artifact. You must provide the name or
|
2350
|
+
# ID, but not both.
|
2336
2351
|
# @return [String]
|
2337
2352
|
#
|
2338
2353
|
# @!attribute [rw] path_id
|
2339
2354
|
# The path identifier of the product. This value is optional if the
|
2340
2355
|
# product has a default path, and required if the product has more
|
2341
2356
|
# than one path. To list the paths for a product, use ListLaunchPaths.
|
2357
|
+
# You must provide the name or ID, but not both.
|
2358
|
+
# @return [String]
|
2359
|
+
#
|
2360
|
+
# @!attribute [rw] path_name
|
2361
|
+
# The name of the path. You must provide the name or ID, but not both.
|
2342
2362
|
# @return [String]
|
2343
2363
|
#
|
2344
2364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParametersInput AWS API Documentation
|
@@ -2346,8 +2366,11 @@ module Aws::ServiceCatalog
|
|
2346
2366
|
class DescribeProvisioningParametersInput < Struct.new(
|
2347
2367
|
:accept_language,
|
2348
2368
|
:product_id,
|
2369
|
+
:product_name,
|
2349
2370
|
:provisioning_artifact_id,
|
2350
|
-
:
|
2371
|
+
:provisioning_artifact_name,
|
2372
|
+
:path_id,
|
2373
|
+
:path_name)
|
2351
2374
|
SENSITIVE = []
|
2352
2375
|
include Aws::Structure
|
2353
2376
|
end
|
@@ -2375,6 +2398,10 @@ module Aws::ServiceCatalog
|
|
2375
2398
|
# regions and accounts, for the provisioning artifact.
|
2376
2399
|
# @return [Types::ProvisioningArtifactPreferences]
|
2377
2400
|
#
|
2401
|
+
# @!attribute [rw] provisioning_artifact_outputs
|
2402
|
+
# The output of the provisioning artifact.
|
2403
|
+
# @return [Array<Types::ProvisioningArtifactOutput>]
|
2404
|
+
#
|
2378
2405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParametersOutput AWS API Documentation
|
2379
2406
|
#
|
2380
2407
|
class DescribeProvisioningParametersOutput < Struct.new(
|
@@ -2382,7 +2409,8 @@ module Aws::ServiceCatalog
|
|
2382
2409
|
:constraint_summaries,
|
2383
2410
|
:usage_instructions,
|
2384
2411
|
:tag_options,
|
2385
|
-
:provisioning_artifact_preferences
|
2412
|
+
:provisioning_artifact_preferences,
|
2413
|
+
:provisioning_artifact_outputs)
|
2386
2414
|
SENSITIVE = []
|
2387
2415
|
include Aws::Structure
|
2388
2416
|
end
|
@@ -4528,9 +4556,12 @@ module Aws::ServiceCatalog
|
|
4528
4556
|
#
|
4529
4557
|
# {
|
4530
4558
|
# accept_language: "AcceptLanguage",
|
4531
|
-
# product_id: "Id",
|
4532
|
-
#
|
4559
|
+
# product_id: "Id",
|
4560
|
+
# product_name: "ProductViewName",
|
4561
|
+
# provisioning_artifact_id: "Id",
|
4562
|
+
# provisioning_artifact_name: "ProvisioningArtifactName",
|
4533
4563
|
# path_id: "Id",
|
4564
|
+
# path_name: "PortfolioDisplayName",
|
4534
4565
|
# provisioned_product_name: "ProvisionedProductName", # required
|
4535
4566
|
# provisioning_parameters: [
|
4536
4567
|
# {
|
@@ -4567,17 +4598,34 @@ module Aws::ServiceCatalog
|
|
4567
4598
|
# @return [String]
|
4568
4599
|
#
|
4569
4600
|
# @!attribute [rw] product_id
|
4570
|
-
# The product identifier.
|
4601
|
+
# The product identifier. You must provide the name or ID, but not
|
4602
|
+
# both.
|
4603
|
+
# @return [String]
|
4604
|
+
#
|
4605
|
+
# @!attribute [rw] product_name
|
4606
|
+
# The name of the product. You must provide the name or ID, but not
|
4607
|
+
# both.
|
4571
4608
|
# @return [String]
|
4572
4609
|
#
|
4573
4610
|
# @!attribute [rw] provisioning_artifact_id
|
4574
|
-
# The identifier of the provisioning artifact.
|
4611
|
+
# The identifier of the provisioning artifact. You must provide the
|
4612
|
+
# name or ID, but not both.
|
4613
|
+
# @return [String]
|
4614
|
+
#
|
4615
|
+
# @!attribute [rw] provisioning_artifact_name
|
4616
|
+
# The name of the provisioning artifact. You must provide the name or
|
4617
|
+
# ID, but not both.
|
4575
4618
|
# @return [String]
|
4576
4619
|
#
|
4577
4620
|
# @!attribute [rw] path_id
|
4578
4621
|
# The path identifier of the product. This value is optional if the
|
4579
4622
|
# product has a default path, and required if the product has more
|
4580
4623
|
# than one path. To list the paths for a product, use ListLaunchPaths.
|
4624
|
+
# You must provide the name or ID, but not both.
|
4625
|
+
# @return [String]
|
4626
|
+
#
|
4627
|
+
# @!attribute [rw] path_name
|
4628
|
+
# The name of the path. You must provide the name or ID, but not both.
|
4581
4629
|
# @return [String]
|
4582
4630
|
#
|
4583
4631
|
# @!attribute [rw] provisioned_product_name
|
@@ -4618,8 +4666,11 @@ module Aws::ServiceCatalog
|
|
4618
4666
|
class ProvisionProductInput < Struct.new(
|
4619
4667
|
:accept_language,
|
4620
4668
|
:product_id,
|
4669
|
+
:product_name,
|
4621
4670
|
:provisioning_artifact_id,
|
4671
|
+
:provisioning_artifact_name,
|
4622
4672
|
:path_id,
|
4673
|
+
:path_name,
|
4623
4674
|
:provisioned_product_name,
|
4624
4675
|
:provisioning_parameters,
|
4625
4676
|
:provisioning_preferences,
|
@@ -4707,6 +4758,32 @@ module Aws::ServiceCatalog
|
|
4707
4758
|
# provisioned product.
|
4708
4759
|
# @return [String]
|
4709
4760
|
#
|
4761
|
+
# @!attribute [rw] last_provisioning_record_id
|
4762
|
+
# The record identifier of the last request performed on this
|
4763
|
+
# provisioned product of the following types:
|
4764
|
+
#
|
4765
|
+
# * ProvisionedProduct
|
4766
|
+
#
|
4767
|
+
# * UpdateProvisionedProduct
|
4768
|
+
#
|
4769
|
+
# * ExecuteProvisionedProductPlan
|
4770
|
+
#
|
4771
|
+
# * TerminateProvisionedProduct
|
4772
|
+
# @return [String]
|
4773
|
+
#
|
4774
|
+
# @!attribute [rw] last_successful_provisioning_record_id
|
4775
|
+
# The record identifier of the last successful request performed on
|
4776
|
+
# this provisioned product of the following types:
|
4777
|
+
#
|
4778
|
+
# * ProvisionedProduct
|
4779
|
+
#
|
4780
|
+
# * UpdateProvisionedProduct
|
4781
|
+
#
|
4782
|
+
# * ExecuteProvisionedProductPlan
|
4783
|
+
#
|
4784
|
+
# * TerminateProvisionedProduct
|
4785
|
+
# @return [String]
|
4786
|
+
#
|
4710
4787
|
# @!attribute [rw] tags
|
4711
4788
|
# One or more tags.
|
4712
4789
|
# @return [Array<Types::Tag>]
|
@@ -4720,10 +4797,18 @@ module Aws::ServiceCatalog
|
|
4720
4797
|
# The product identifier.
|
4721
4798
|
# @return [String]
|
4722
4799
|
#
|
4800
|
+
# @!attribute [rw] product_name
|
4801
|
+
# The name of the product.
|
4802
|
+
# @return [String]
|
4803
|
+
#
|
4723
4804
|
# @!attribute [rw] provisioning_artifact_id
|
4724
4805
|
# The identifier of the provisioning artifact.
|
4725
4806
|
# @return [String]
|
4726
4807
|
#
|
4808
|
+
# @!attribute [rw] provisioning_artifact_name
|
4809
|
+
# The name of the provisioning artifact.
|
4810
|
+
# @return [String]
|
4811
|
+
#
|
4727
4812
|
# @!attribute [rw] user_arn
|
4728
4813
|
# The Amazon Resource Name (ARN) of the IAM user.
|
4729
4814
|
# @return [String]
|
@@ -4745,10 +4830,14 @@ module Aws::ServiceCatalog
|
|
4745
4830
|
:created_time,
|
4746
4831
|
:idempotency_token,
|
4747
4832
|
:last_record_id,
|
4833
|
+
:last_provisioning_record_id,
|
4834
|
+
:last_successful_provisioning_record_id,
|
4748
4835
|
:tags,
|
4749
4836
|
:physical_id,
|
4750
4837
|
:product_id,
|
4838
|
+
:product_name,
|
4751
4839
|
:provisioning_artifact_id,
|
4840
|
+
:provisioning_artifact_name,
|
4752
4841
|
:user_arn,
|
4753
4842
|
:user_arn_session)
|
4754
4843
|
SENSITIVE = []
|
@@ -4820,6 +4909,32 @@ module Aws::ServiceCatalog
|
|
4820
4909
|
# provisioned product.
|
4821
4910
|
# @return [String]
|
4822
4911
|
#
|
4912
|
+
# @!attribute [rw] last_provisioning_record_id
|
4913
|
+
# The record identifier of the last request performed on this
|
4914
|
+
# provisioned product of the following types:
|
4915
|
+
#
|
4916
|
+
# * ProvisionedProduct
|
4917
|
+
#
|
4918
|
+
# * UpdateProvisionedProduct
|
4919
|
+
#
|
4920
|
+
# * ExecuteProvisionedProductPlan
|
4921
|
+
#
|
4922
|
+
# * TerminateProvisionedProduct
|
4923
|
+
# @return [String]
|
4924
|
+
#
|
4925
|
+
# @!attribute [rw] last_successful_provisioning_record_id
|
4926
|
+
# The record identifier of the last successful request performed on
|
4927
|
+
# this provisioned product of the following types:
|
4928
|
+
#
|
4929
|
+
# * ProvisionedProduct
|
4930
|
+
#
|
4931
|
+
# * UpdateProvisionedProduct
|
4932
|
+
#
|
4933
|
+
# * ExecuteProvisionedProductPlan
|
4934
|
+
#
|
4935
|
+
# * TerminateProvisionedProduct
|
4936
|
+
# @return [String]
|
4937
|
+
#
|
4823
4938
|
# @!attribute [rw] product_id
|
4824
4939
|
# The product identifier. For example, `prod-abcdzk7xy33qa`.
|
4825
4940
|
# @return [String]
|
@@ -4841,6 +4956,8 @@ module Aws::ServiceCatalog
|
|
4841
4956
|
:created_time,
|
4842
4957
|
:idempotency_token,
|
4843
4958
|
:last_record_id,
|
4959
|
+
:last_provisioning_record_id,
|
4960
|
+
:last_successful_provisioning_record_id,
|
4844
4961
|
:product_id,
|
4845
4962
|
:provisioning_artifact_id)
|
4846
4963
|
SENSITIVE = []
|
@@ -5062,6 +5179,25 @@ module Aws::ServiceCatalog
|
|
5062
5179
|
include Aws::Structure
|
5063
5180
|
end
|
5064
5181
|
|
5182
|
+
# Provisioning artifact output.
|
5183
|
+
#
|
5184
|
+
# @!attribute [rw] key
|
5185
|
+
# The provisioning artifact output key.
|
5186
|
+
# @return [String]
|
5187
|
+
#
|
5188
|
+
# @!attribute [rw] description
|
5189
|
+
# Description of the provisioning artifact output key.
|
5190
|
+
# @return [String]
|
5191
|
+
#
|
5192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactOutput AWS API Documentation
|
5193
|
+
#
|
5194
|
+
class ProvisioningArtifactOutput < Struct.new(
|
5195
|
+
:key,
|
5196
|
+
:description)
|
5197
|
+
SENSITIVE = []
|
5198
|
+
include Aws::Structure
|
5199
|
+
end
|
5200
|
+
|
5065
5201
|
# Information about a parameter used to provision a product.
|
5066
5202
|
#
|
5067
5203
|
# @!attribute [rw] parameter_key
|
@@ -6050,7 +6186,9 @@ module Aws::ServiceCatalog
|
|
6050
6186
|
# When the key is `SearchQuery`, the searchable fields are `arn`,
|
6051
6187
|
# `createdTime`, `id`, `lastRecordId`, `idempotencyToken`, `name`,
|
6052
6188
|
# `physicalId`, `productId`, `provisioningArtifact`, `type`, `status`,
|
6053
|
-
# `tags`, `userArn`,
|
6189
|
+
# `tags`, `userArn`, `userArnSession`, `lastProvisioningRecordId`,
|
6190
|
+
# `lastSuccessfulProvisioningRecordId`, `productName`, and
|
6191
|
+
# `provisioningArtifactName`.
|
6054
6192
|
#
|
6055
6193
|
# Example: `"SearchQuery":["status:AVAILABLE"]`
|
6056
6194
|
# @return [Hash<String,Array<String>>]
|
@@ -6782,8 +6920,11 @@ module Aws::ServiceCatalog
|
|
6782
6920
|
# provisioned_product_name: "ProvisionedProductNameOrArn",
|
6783
6921
|
# provisioned_product_id: "Id",
|
6784
6922
|
# product_id: "Id",
|
6923
|
+
# product_name: "ProductViewName",
|
6785
6924
|
# provisioning_artifact_id: "Id",
|
6925
|
+
# provisioning_artifact_name: "ProvisioningArtifactName",
|
6786
6926
|
# path_id: "Id",
|
6927
|
+
# path_name: "PortfolioDisplayName",
|
6787
6928
|
# provisioning_parameters: [
|
6788
6929
|
# {
|
6789
6930
|
# key: "ParameterKey",
|
@@ -6825,21 +6966,37 @@ module Aws::ServiceCatalog
|
|
6825
6966
|
# @return [String]
|
6826
6967
|
#
|
6827
6968
|
# @!attribute [rw] provisioned_product_id
|
6828
|
-
# The identifier of the provisioned product. You
|
6829
|
-
#
|
6969
|
+
# The identifier of the provisioned product. You must provide the name
|
6970
|
+
# or ID, but not both.
|
6830
6971
|
# @return [String]
|
6831
6972
|
#
|
6832
6973
|
# @!attribute [rw] product_id
|
6833
|
-
# The identifier of the product.
|
6974
|
+
# The identifier of the product. You must provide the name or ID, but
|
6975
|
+
# not both.
|
6976
|
+
# @return [String]
|
6977
|
+
#
|
6978
|
+
# @!attribute [rw] product_name
|
6979
|
+
# The name of the product. You must provide the name or ID, but not
|
6980
|
+
# both.
|
6834
6981
|
# @return [String]
|
6835
6982
|
#
|
6836
6983
|
# @!attribute [rw] provisioning_artifact_id
|
6837
6984
|
# The identifier of the provisioning artifact.
|
6838
6985
|
# @return [String]
|
6839
6986
|
#
|
6987
|
+
# @!attribute [rw] provisioning_artifact_name
|
6988
|
+
# The name of the provisioning artifact. You must provide the name or
|
6989
|
+
# ID, but not both.
|
6990
|
+
# @return [String]
|
6991
|
+
#
|
6840
6992
|
# @!attribute [rw] path_id
|
6841
|
-
# The
|
6993
|
+
# The path identifier. This value is optional if the product has a
|
6842
6994
|
# default path, and required if the product has more than one path.
|
6995
|
+
# You must provide the name or ID, but not both.
|
6996
|
+
# @return [String]
|
6997
|
+
#
|
6998
|
+
# @!attribute [rw] path_name
|
6999
|
+
# The name of the path. You must provide the name or ID, but not both.
|
6843
7000
|
# @return [String]
|
6844
7001
|
#
|
6845
7002
|
# @!attribute [rw] provisioning_parameters
|
@@ -6872,8 +7029,11 @@ module Aws::ServiceCatalog
|
|
6872
7029
|
:provisioned_product_name,
|
6873
7030
|
:provisioned_product_id,
|
6874
7031
|
:product_id,
|
7032
|
+
:product_name,
|
6875
7033
|
:provisioning_artifact_id,
|
7034
|
+
:provisioning_artifact_name,
|
6876
7035
|
:path_id,
|
7036
|
+
:path_name,
|
6877
7037
|
:provisioning_parameters,
|
6878
7038
|
:provisioning_preferences,
|
6879
7039
|
:tags,
|
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.47.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: 2020-
|
11
|
+
date: 2020-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|