aws-sdk-servicecatalog 1.43.0 → 1.48.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ef758ef400aee72ff1e201d5e9c7abcbc0eaf94ab7296e647665878db2e88c3
4
- data.tar.gz: 32f8f073fb6ed992f6166c727e99883e9f7736a1b20532625cc0915731197130
3
+ metadata.gz: fb5597c2fb45eb4a3c71de02de7b340278dd755eb5596d6936c1cc43f84f11e7
4
+ data.tar.gz: d73cf5643548534e63127d7cda9c566d8c83c561f621c3e25b37d9121a872f38
5
5
  SHA512:
6
- metadata.gz: f767267c89f627d37c77ad34c2722d73c9272fc1ed90c76e7df35e25af273f7816f5435541ce38b5a3f77bb585869da4fa29544907412da31c5e4f87f0964cf4
7
- data.tar.gz: 14401562f48cc6a372b0b0a19c16291af341691591b1effb2a0c91ebf4a40fddb8de0a5d473f6ede3a919768d08fd675e30fb5036d90932151b780bbcb8c2d44
6
+ metadata.gz: 1dd22d313b88ee4692f8624c27df43b581a13a2183425baba42deb6054ced672b7a3957f7ad97b39859f7336c8bdcd676b9bad47d320b7171c41b00a1b7d3bca
7
+ data.tar.gz: a3bc3f116592c0c93202a11f60329bbfbb9a7af5914585e4c56baea731a7c2c5b52936d5a41b2def29ead52beb93a8c0f2f01a080fcae85b492a549ad1df587a
@@ -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
- # @service
48
+ # @!group service
48
49
  module Aws::ServiceCatalog
49
50
 
50
- GEM_VERSION = '1.43.0'
51
+ GEM_VERSION = '1.48.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::SharedCredentials` - Used for loading credentials from a
92
- # shared file, such as `~/.aws/config`.
105
+ # * `Aws::ECSCredentials` - Used for loading credentials from
106
+ # instances running in ECS.
93
107
  #
94
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
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 are
105
- # very aggressive. Construct and pass an instance of
106
- # `Aws::InstanceProfileCredentails` to enable retries and extended
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
  #
@@ -2167,8 +2185,19 @@ module Aws::ServiceCatalog
2167
2185
  #
2168
2186
  # * `zh` - Chinese
2169
2187
  #
2170
- # @option params [required, String] :id
2171
- # The provisioned product identifier.
2188
+ # @option params [String] :id
2189
+ # The provisioned product identifier. You must provide the name or ID,
2190
+ # but not both.
2191
+ #
2192
+ # If you do not provide a name or ID, or you provide both name and ID,
2193
+ # an `InvalidParametersException` will occur.
2194
+ #
2195
+ # @option params [String] :name
2196
+ # The name of the provisioned product. You must provide the name or ID,
2197
+ # but not both.
2198
+ #
2199
+ # If you do not provide a name or ID, or you provide both name and ID,
2200
+ # an `InvalidParametersException` will occur.
2172
2201
  #
2173
2202
  # @return [Types::DescribeProvisionedProductOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2174
2203
  #
@@ -2179,7 +2208,8 @@ module Aws::ServiceCatalog
2179
2208
  #
2180
2209
  # resp = client.describe_provisioned_product({
2181
2210
  # accept_language: "AcceptLanguage",
2182
- # id: "Id", # required
2211
+ # id: "Id",
2212
+ # name: "ProvisionedProductName",
2183
2213
  # })
2184
2214
  #
2185
2215
  # @example Response structure
@@ -2193,6 +2223,8 @@ module Aws::ServiceCatalog
2193
2223
  # resp.provisioned_product_detail.created_time #=> Time
2194
2224
  # resp.provisioned_product_detail.idempotency_token #=> String
2195
2225
  # resp.provisioned_product_detail.last_record_id #=> String
2226
+ # resp.provisioned_product_detail.last_provisioning_record_id #=> String
2227
+ # resp.provisioned_product_detail.last_successful_provisioning_record_id #=> String
2196
2228
  # resp.provisioned_product_detail.product_id #=> String
2197
2229
  # resp.provisioned_product_detail.provisioning_artifact_id #=> String
2198
2230
  # resp.cloud_watch_dashboards #=> Array
@@ -2377,16 +2409,30 @@ module Aws::ServiceCatalog
2377
2409
  #
2378
2410
  # * `zh` - Chinese
2379
2411
  #
2380
- # @option params [required, String] :product_id
2381
- # The product identifier.
2412
+ # @option params [String] :product_id
2413
+ # The product identifier. You must provide the product name or ID, but
2414
+ # not both.
2382
2415
  #
2383
- # @option params [required, String] :provisioning_artifact_id
2384
- # The identifier of the provisioning artifact.
2416
+ # @option params [String] :product_name
2417
+ # The name of the product. You must provide the name or ID, but not
2418
+ # both.
2419
+ #
2420
+ # @option params [String] :provisioning_artifact_id
2421
+ # The identifier of the provisioning artifact. You must provide the name
2422
+ # or ID, but not both.
2423
+ #
2424
+ # @option params [String] :provisioning_artifact_name
2425
+ # The name of the provisioning artifact. You must provide the name or
2426
+ # ID, but not both.
2385
2427
  #
2386
2428
  # @option params [String] :path_id
2387
2429
  # The path identifier of the product. This value is optional if the
2388
2430
  # 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.
2431
+ # one path. To list the paths for a product, use ListLaunchPaths. You
2432
+ # must provide the name or ID, but not both.
2433
+ #
2434
+ # @option params [String] :path_name
2435
+ # The name of the path. You must provide the name or ID, but not both.
2390
2436
  #
2391
2437
  # @return [Types::DescribeProvisioningParametersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2392
2438
  #
@@ -2395,14 +2441,18 @@ module Aws::ServiceCatalog
2395
2441
  # * {Types::DescribeProvisioningParametersOutput#usage_instructions #usage_instructions} => Array<Types::UsageInstruction>
2396
2442
  # * {Types::DescribeProvisioningParametersOutput#tag_options #tag_options} => Array<Types::TagOptionSummary>
2397
2443
  # * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_preferences #provisioning_artifact_preferences} => Types::ProvisioningArtifactPreferences
2444
+ # * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_outputs #provisioning_artifact_outputs} => Array<Types::ProvisioningArtifactOutput>
2398
2445
  #
2399
2446
  # @example Request syntax with placeholder values
2400
2447
  #
2401
2448
  # resp = client.describe_provisioning_parameters({
2402
2449
  # accept_language: "AcceptLanguage",
2403
- # product_id: "Id", # required
2404
- # provisioning_artifact_id: "Id", # required
2450
+ # product_id: "Id",
2451
+ # product_name: "ProductViewName",
2452
+ # provisioning_artifact_id: "Id",
2453
+ # provisioning_artifact_name: "ProvisioningArtifactName",
2405
2454
  # path_id: "Id",
2455
+ # path_name: "PortfolioDisplayName",
2406
2456
  # })
2407
2457
  #
2408
2458
  # @example Response structure
@@ -2429,6 +2479,9 @@ module Aws::ServiceCatalog
2429
2479
  # resp.provisioning_artifact_preferences.stack_set_accounts[0] #=> String
2430
2480
  # resp.provisioning_artifact_preferences.stack_set_regions #=> Array
2431
2481
  # resp.provisioning_artifact_preferences.stack_set_regions[0] #=> String
2482
+ # resp.provisioning_artifact_outputs #=> Array
2483
+ # resp.provisioning_artifact_outputs[0].key #=> String
2484
+ # resp.provisioning_artifact_outputs[0].description #=> String
2432
2485
  #
2433
2486
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParameters AWS API Documentation
2434
2487
  #
@@ -4105,16 +4158,29 @@ module Aws::ServiceCatalog
4105
4158
  #
4106
4159
  # * `zh` - Chinese
4107
4160
  #
4108
- # @option params [required, String] :product_id
4109
- # The product identifier.
4161
+ # @option params [String] :product_id
4162
+ # The product identifier. You must provide the name or ID, but not both.
4110
4163
  #
4111
- # @option params [required, String] :provisioning_artifact_id
4112
- # The identifier of the provisioning artifact.
4164
+ # @option params [String] :product_name
4165
+ # The name of the product. You must provide the name or ID, but not
4166
+ # both.
4167
+ #
4168
+ # @option params [String] :provisioning_artifact_id
4169
+ # The identifier of the provisioning artifact. You must provide the name
4170
+ # or ID, but not both.
4171
+ #
4172
+ # @option params [String] :provisioning_artifact_name
4173
+ # The name of the provisioning artifact. You must provide the name or
4174
+ # ID, but not both.
4113
4175
  #
4114
4176
  # @option params [String] :path_id
4115
4177
  # The path identifier of the product. This value is optional if the
4116
4178
  # 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.
4179
+ # one path. To list the paths for a product, use ListLaunchPaths. You
4180
+ # must provide the name or ID, but not both.
4181
+ #
4182
+ # @option params [String] :path_name
4183
+ # The name of the path. You must provide the name or ID, but not both.
4118
4184
  #
4119
4185
  # @option params [required, String] :provisioned_product_name
4120
4186
  # A user-friendly name for the provisioned product. This value must be
@@ -4151,9 +4217,12 @@ module Aws::ServiceCatalog
4151
4217
  #
4152
4218
  # resp = client.provision_product({
4153
4219
  # accept_language: "AcceptLanguage",
4154
- # product_id: "Id", # required
4155
- # provisioning_artifact_id: "Id", # required
4220
+ # product_id: "Id",
4221
+ # product_name: "ProductViewName",
4222
+ # provisioning_artifact_id: "Id",
4223
+ # provisioning_artifact_name: "ProvisioningArtifactName",
4156
4224
  # path_id: "Id",
4225
+ # path_name: "PortfolioDisplayName",
4157
4226
  # provisioned_product_name: "ProvisionedProductName", # required
4158
4227
  # provisioning_parameters: [
4159
4228
  # {
@@ -4308,6 +4377,8 @@ module Aws::ServiceCatalog
4308
4377
  # resp.provisioned_products[0].created_time #=> Time
4309
4378
  # resp.provisioned_products[0].idempotency_token #=> String
4310
4379
  # resp.provisioned_products[0].last_record_id #=> String
4380
+ # resp.provisioned_products[0].last_provisioning_record_id #=> String
4381
+ # resp.provisioned_products[0].last_successful_provisioning_record_id #=> String
4311
4382
  # resp.provisioned_products[0].product_id #=> String
4312
4383
  # resp.provisioned_products[0].provisioning_artifact_id #=> String
4313
4384
  # resp.next_page_token #=> String
@@ -4505,7 +4576,9 @@ module Aws::ServiceCatalog
4505
4576
  # When the key is `SearchQuery`, the searchable fields are `arn`,
4506
4577
  # `createdTime`, `id`, `lastRecordId`, `idempotencyToken`, `name`,
4507
4578
  # `physicalId`, `productId`, `provisioningArtifact`, `type`, `status`,
4508
- # `tags`, `userArn`, and `userArnSession`.
4579
+ # `tags`, `userArn`, `userArnSession`, `lastProvisioningRecordId`,
4580
+ # `lastSuccessfulProvisioningRecordId`, `productName`, and
4581
+ # `provisioningArtifactName`.
4509
4582
  #
4510
4583
  # Example: `"SearchQuery":["status:AVAILABLE"]`
4511
4584
  #
@@ -4560,12 +4633,16 @@ module Aws::ServiceCatalog
4560
4633
  # resp.provisioned_products[0].created_time #=> Time
4561
4634
  # resp.provisioned_products[0].idempotency_token #=> String
4562
4635
  # resp.provisioned_products[0].last_record_id #=> String
4636
+ # resp.provisioned_products[0].last_provisioning_record_id #=> String
4637
+ # resp.provisioned_products[0].last_successful_provisioning_record_id #=> String
4563
4638
  # resp.provisioned_products[0].tags #=> Array
4564
4639
  # resp.provisioned_products[0].tags[0].key #=> String
4565
4640
  # resp.provisioned_products[0].tags[0].value #=> String
4566
4641
  # resp.provisioned_products[0].physical_id #=> String
4567
4642
  # resp.provisioned_products[0].product_id #=> String
4643
+ # resp.provisioned_products[0].product_name #=> String
4568
4644
  # resp.provisioned_products[0].provisioning_artifact_id #=> String
4645
+ # resp.provisioned_products[0].provisioning_artifact_name #=> String
4569
4646
  # resp.provisioned_products[0].user_arn #=> String
4570
4647
  # resp.provisioned_products[0].user_arn_session #=> String
4571
4648
  # resp.total_results_count #=> Integer
@@ -4981,18 +5058,31 @@ module Aws::ServiceCatalog
4981
5058
  # `ProvisionedProductName` and `ProvisionedProductId`.
4982
5059
  #
4983
5060
  # @option params [String] :provisioned_product_id
4984
- # The identifier of the provisioned product. You cannot specify both
4985
- # `ProvisionedProductName` and `ProvisionedProductId`.
5061
+ # The identifier of the provisioned product. You must provide the name
5062
+ # or ID, but not both.
4986
5063
  #
4987
5064
  # @option params [String] :product_id
4988
- # The identifier of the product.
5065
+ # The identifier of the product. You must provide the name or ID, but
5066
+ # not both.
5067
+ #
5068
+ # @option params [String] :product_name
5069
+ # The name of the product. You must provide the name or ID, but not
5070
+ # both.
4989
5071
  #
4990
5072
  # @option params [String] :provisioning_artifact_id
4991
5073
  # The identifier of the provisioning artifact.
4992
5074
  #
5075
+ # @option params [String] :provisioning_artifact_name
5076
+ # The name of the provisioning artifact. You must provide the name or
5077
+ # ID, but not both.
5078
+ #
4993
5079
  # @option params [String] :path_id
4994
- # The new path identifier. This value is optional if the product has a
4995
- # default path, and required if the product has more than one path.
5080
+ # The path identifier. This value is optional if the product has a
5081
+ # default path, and required if the product has more than one path. You
5082
+ # must provide the name or ID, but not both.
5083
+ #
5084
+ # @option params [String] :path_name
5085
+ # The name of the path. You must provide the name or ID, but not both.
4996
5086
  #
4997
5087
  # @option params [Array<Types::UpdateProvisioningParameter>] :provisioning_parameters
4998
5088
  # The new parameters.
@@ -5024,8 +5114,11 @@ module Aws::ServiceCatalog
5024
5114
  # provisioned_product_name: "ProvisionedProductNameOrArn",
5025
5115
  # provisioned_product_id: "Id",
5026
5116
  # product_id: "Id",
5117
+ # product_name: "ProductViewName",
5027
5118
  # provisioning_artifact_id: "Id",
5119
+ # provisioning_artifact_name: "ProvisioningArtifactName",
5028
5120
  # path_id: "Id",
5121
+ # path_name: "PortfolioDisplayName",
5029
5122
  # provisioning_parameters: [
5030
5123
  # {
5031
5124
  # key: "ParameterKey",
@@ -5355,7 +5448,7 @@ module Aws::ServiceCatalog
5355
5448
  params: params,
5356
5449
  config: config)
5357
5450
  context[:gem_name] = 'aws-sdk-servicecatalog'
5358
- context[:gem_version] = '1.43.0'
5451
+ context[:gem_version] = '1.48.0'
5359
5452
  Seahorse::Client::Request.new(handlers, context)
5360
5453
  end
5361
5454
 
@@ -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')
@@ -781,7 +785,8 @@ module Aws::ServiceCatalog
781
785
  DescribeProductViewOutput.struct_class = Types::DescribeProductViewOutput
782
786
 
783
787
  DescribeProvisionedProductInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
784
- DescribeProvisionedProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "Id"))
788
+ DescribeProvisionedProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
789
+ DescribeProvisionedProductInput.add_member(:name, Shapes::ShapeRef.new(shape: ProvisionedProductName, location_name: "Name"))
785
790
  DescribeProvisionedProductInput.struct_class = Types::DescribeProvisionedProductInput
786
791
 
787
792
  DescribeProvisionedProductOutput.add_member(:provisioned_product_detail, Shapes::ShapeRef.new(shape: ProvisionedProductDetail, location_name: "ProvisionedProductDetail"))
@@ -813,9 +818,12 @@ module Aws::ServiceCatalog
813
818
  DescribeProvisioningArtifactOutput.struct_class = Types::DescribeProvisioningArtifactOutput
814
819
 
815
820
  DescribeProvisioningParametersInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
816
- DescribeProvisioningParametersInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProductId"))
817
- DescribeProvisioningParametersInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProvisioningArtifactId"))
821
+ DescribeProvisioningParametersInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
822
+ DescribeProvisioningParametersInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
823
+ DescribeProvisioningParametersInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
824
+ DescribeProvisioningParametersInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
818
825
  DescribeProvisioningParametersInput.add_member(:path_id, Shapes::ShapeRef.new(shape: Id, location_name: "PathId"))
826
+ DescribeProvisioningParametersInput.add_member(:path_name, Shapes::ShapeRef.new(shape: PortfolioDisplayName, location_name: "PathName"))
819
827
  DescribeProvisioningParametersInput.struct_class = Types::DescribeProvisioningParametersInput
820
828
 
821
829
  DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_parameters, Shapes::ShapeRef.new(shape: ProvisioningArtifactParameters, location_name: "ProvisioningArtifactParameters"))
@@ -823,6 +831,7 @@ module Aws::ServiceCatalog
823
831
  DescribeProvisioningParametersOutput.add_member(:usage_instructions, Shapes::ShapeRef.new(shape: UsageInstructions, location_name: "UsageInstructions"))
824
832
  DescribeProvisioningParametersOutput.add_member(:tag_options, Shapes::ShapeRef.new(shape: TagOptionSummaries, location_name: "TagOptions"))
825
833
  DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_preferences, Shapes::ShapeRef.new(shape: ProvisioningArtifactPreferences, location_name: "ProvisioningArtifactPreferences"))
834
+ DescribeProvisioningParametersOutput.add_member(:provisioning_artifact_outputs, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputs, location_name: "ProvisioningArtifactOutputs"))
826
835
  DescribeProvisioningParametersOutput.struct_class = Types::DescribeProvisioningParametersOutput
827
836
 
828
837
  DescribeRecordInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
@@ -1224,9 +1233,12 @@ module Aws::ServiceCatalog
1224
1233
  ProductViewSummary.struct_class = Types::ProductViewSummary
1225
1234
 
1226
1235
  ProvisionProductInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
1227
- ProvisionProductInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProductId"))
1228
- ProvisionProductInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProvisioningArtifactId"))
1236
+ ProvisionProductInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
1237
+ ProvisionProductInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
1238
+ ProvisionProductInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
1239
+ ProvisionProductInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
1229
1240
  ProvisionProductInput.add_member(:path_id, Shapes::ShapeRef.new(shape: Id, location_name: "PathId"))
1241
+ ProvisionProductInput.add_member(:path_name, Shapes::ShapeRef.new(shape: PortfolioDisplayName, location_name: "PathName"))
1230
1242
  ProvisionProductInput.add_member(:provisioned_product_name, Shapes::ShapeRef.new(shape: ProvisionedProductName, required: true, location_name: "ProvisionedProductName"))
1231
1243
  ProvisionProductInput.add_member(:provisioning_parameters, Shapes::ShapeRef.new(shape: ProvisioningParameters, location_name: "ProvisioningParameters"))
1232
1244
  ProvisionProductInput.add_member(:provisioning_preferences, Shapes::ShapeRef.new(shape: ProvisioningPreferences, location_name: "ProvisioningPreferences"))
@@ -1247,10 +1259,14 @@ module Aws::ServiceCatalog
1247
1259
  ProvisionedProductAttribute.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "CreatedTime"))
1248
1260
  ProvisionedProductAttribute.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "IdempotencyToken"))
1249
1261
  ProvisionedProductAttribute.add_member(:last_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastRecordId"))
1262
+ ProvisionedProductAttribute.add_member(:last_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastProvisioningRecordId"))
1263
+ ProvisionedProductAttribute.add_member(:last_successful_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastSuccessfulProvisioningRecordId"))
1250
1264
  ProvisionedProductAttribute.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
1251
1265
  ProvisionedProductAttribute.add_member(:physical_id, Shapes::ShapeRef.new(shape: PhysicalId, location_name: "PhysicalId"))
1252
1266
  ProvisionedProductAttribute.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
1267
+ ProvisionedProductAttribute.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
1253
1268
  ProvisionedProductAttribute.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
1269
+ ProvisionedProductAttribute.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
1254
1270
  ProvisionedProductAttribute.add_member(:user_arn, Shapes::ShapeRef.new(shape: UserArn, location_name: "UserArn"))
1255
1271
  ProvisionedProductAttribute.add_member(:user_arn_session, Shapes::ShapeRef.new(shape: UserArnSession, location_name: "UserArnSession"))
1256
1272
  ProvisionedProductAttribute.struct_class = Types::ProvisionedProductAttribute
@@ -1266,6 +1282,8 @@ module Aws::ServiceCatalog
1266
1282
  ProvisionedProductDetail.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "CreatedTime"))
1267
1283
  ProvisionedProductDetail.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "IdempotencyToken"))
1268
1284
  ProvisionedProductDetail.add_member(:last_record_id, Shapes::ShapeRef.new(shape: LastRequestId, location_name: "LastRecordId"))
1285
+ ProvisionedProductDetail.add_member(:last_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastProvisioningRecordId"))
1286
+ ProvisionedProductDetail.add_member(:last_successful_provisioning_record_id, Shapes::ShapeRef.new(shape: Id, location_name: "LastSuccessfulProvisioningRecordId"))
1269
1287
  ProvisionedProductDetail.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
1270
1288
  ProvisionedProductDetail.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
1271
1289
  ProvisionedProductDetail.struct_class = Types::ProvisionedProductDetail
@@ -1328,6 +1346,12 @@ module Aws::ServiceCatalog
1328
1346
  ProvisioningArtifactInfo.key = Shapes::ShapeRef.new(shape: ProvisioningArtifactInfoKey)
1329
1347
  ProvisioningArtifactInfo.value = Shapes::ShapeRef.new(shape: ProvisioningArtifactInfoValue)
1330
1348
 
1349
+ ProvisioningArtifactOutput.add_member(:key, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputKey, location_name: "Key"))
1350
+ ProvisioningArtifactOutput.add_member(:description, Shapes::ShapeRef.new(shape: OutputDescription, location_name: "Description"))
1351
+ ProvisioningArtifactOutput.struct_class = Types::ProvisioningArtifactOutput
1352
+
1353
+ ProvisioningArtifactOutputs.member = Shapes::ShapeRef.new(shape: ProvisioningArtifactOutput)
1354
+
1331
1355
  ProvisioningArtifactParameter.add_member(:parameter_key, Shapes::ShapeRef.new(shape: ParameterKey, location_name: "ParameterKey"))
1332
1356
  ProvisioningArtifactParameter.add_member(:default_value, Shapes::ShapeRef.new(shape: DefaultValue, location_name: "DefaultValue"))
1333
1357
  ProvisioningArtifactParameter.add_member(:parameter_type, Shapes::ShapeRef.new(shape: ParameterType, location_name: "ParameterType"))
@@ -1644,8 +1668,11 @@ module Aws::ServiceCatalog
1644
1668
  UpdateProvisionedProductInput.add_member(:provisioned_product_name, Shapes::ShapeRef.new(shape: ProvisionedProductNameOrArn, location_name: "ProvisionedProductName"))
1645
1669
  UpdateProvisionedProductInput.add_member(:provisioned_product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisionedProductId"))
1646
1670
  UpdateProvisionedProductInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
1671
+ UpdateProvisionedProductInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
1647
1672
  UpdateProvisionedProductInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
1673
+ UpdateProvisionedProductInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
1648
1674
  UpdateProvisionedProductInput.add_member(:path_id, Shapes::ShapeRef.new(shape: Id, location_name: "PathId"))
1675
+ UpdateProvisionedProductInput.add_member(:path_name, Shapes::ShapeRef.new(shape: PortfolioDisplayName, location_name: "PathName"))
1649
1676
  UpdateProvisionedProductInput.add_member(:provisioning_parameters, Shapes::ShapeRef.new(shape: UpdateProvisioningParameters, location_name: "ProvisioningParameters"))
1650
1677
  UpdateProvisionedProductInput.add_member(:provisioning_preferences, Shapes::ShapeRef.new(shape: UpdateProvisioningPreferences, location_name: "ProvisioningPreferences"))
1651
1678
  UpdateProvisionedProductInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
@@ -2090,6 +2117,7 @@ module Aws::ServiceCatalog
2090
2117
  o.input = Shapes::ShapeRef.new(shape: DescribeProvisionedProductInput)
2091
2118
  o.output = Shapes::ShapeRef.new(shape: DescribeProvisionedProductOutput)
2092
2119
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2120
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
2093
2121
  end)
2094
2122
 
2095
2123
  api.add_operation(:describe_provisioned_product_plan, Seahorse::Model::Operation.new.tap do |o|
@@ -2113,12 +2113,19 @@ module Aws::ServiceCatalog
2113
2113
  include Aws::Structure
2114
2114
  end
2115
2115
 
2116
+ # DescribeProvisionedProductAPI input structure. AcceptLanguage -
2117
+ # \[Optional\] The language code for localization. Id - \[Optional\] The
2118
+ # provisioned product identifier. Name - \[Optional\] Another
2119
+ # provisioned product identifier. Customers must provide either Id or
2120
+ # Name.
2121
+ #
2116
2122
  # @note When making an API call, you may pass DescribeProvisionedProductInput
2117
2123
  # data as a hash:
2118
2124
  #
2119
2125
  # {
2120
2126
  # accept_language: "AcceptLanguage",
2121
- # id: "Id", # required
2127
+ # id: "Id",
2128
+ # name: "ProvisionedProductName",
2122
2129
  # }
2123
2130
  #
2124
2131
  # @!attribute [rw] accept_language
@@ -2132,14 +2139,27 @@ module Aws::ServiceCatalog
2132
2139
  # @return [String]
2133
2140
  #
2134
2141
  # @!attribute [rw] id
2135
- # The provisioned product identifier.
2142
+ # The provisioned product identifier. You must provide the name or ID,
2143
+ # but not both.
2144
+ #
2145
+ # If you do not provide a name or ID, or you provide both name and ID,
2146
+ # an `InvalidParametersException` will occur.
2147
+ # @return [String]
2148
+ #
2149
+ # @!attribute [rw] name
2150
+ # The name of the provisioned product. You must provide the name or
2151
+ # ID, but not both.
2152
+ #
2153
+ # If you do not provide a name or ID, or you provide both name and ID,
2154
+ # an `InvalidParametersException` will occur.
2136
2155
  # @return [String]
2137
2156
  #
2138
2157
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProductInput AWS API Documentation
2139
2158
  #
2140
2159
  class DescribeProvisionedProductInput < Struct.new(
2141
2160
  :accept_language,
2142
- :id)
2161
+ :id,
2162
+ :name)
2143
2163
  SENSITIVE = []
2144
2164
  include Aws::Structure
2145
2165
  end
@@ -2312,9 +2332,12 @@ module Aws::ServiceCatalog
2312
2332
  #
2313
2333
  # {
2314
2334
  # accept_language: "AcceptLanguage",
2315
- # product_id: "Id", # required
2316
- # provisioning_artifact_id: "Id", # required
2335
+ # product_id: "Id",
2336
+ # product_name: "ProductViewName",
2337
+ # provisioning_artifact_id: "Id",
2338
+ # provisioning_artifact_name: "ProvisioningArtifactName",
2317
2339
  # path_id: "Id",
2340
+ # path_name: "PortfolioDisplayName",
2318
2341
  # }
2319
2342
  #
2320
2343
  # @!attribute [rw] accept_language
@@ -2328,17 +2351,34 @@ module Aws::ServiceCatalog
2328
2351
  # @return [String]
2329
2352
  #
2330
2353
  # @!attribute [rw] product_id
2331
- # The product identifier.
2354
+ # The product identifier. You must provide the product name or ID, but
2355
+ # not both.
2356
+ # @return [String]
2357
+ #
2358
+ # @!attribute [rw] product_name
2359
+ # The name of the product. You must provide the name or ID, but not
2360
+ # both.
2332
2361
  # @return [String]
2333
2362
  #
2334
2363
  # @!attribute [rw] provisioning_artifact_id
2335
- # The identifier of the provisioning artifact.
2364
+ # The identifier of the provisioning artifact. You must provide the
2365
+ # name or ID, but not both.
2366
+ # @return [String]
2367
+ #
2368
+ # @!attribute [rw] provisioning_artifact_name
2369
+ # The name of the provisioning artifact. You must provide the name or
2370
+ # ID, but not both.
2336
2371
  # @return [String]
2337
2372
  #
2338
2373
  # @!attribute [rw] path_id
2339
2374
  # The path identifier of the product. This value is optional if the
2340
2375
  # product has a default path, and required if the product has more
2341
2376
  # than one path. To list the paths for a product, use ListLaunchPaths.
2377
+ # You must provide the name or ID, but not both.
2378
+ # @return [String]
2379
+ #
2380
+ # @!attribute [rw] path_name
2381
+ # The name of the path. You must provide the name or ID, but not both.
2342
2382
  # @return [String]
2343
2383
  #
2344
2384
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParametersInput AWS API Documentation
@@ -2346,8 +2386,11 @@ module Aws::ServiceCatalog
2346
2386
  class DescribeProvisioningParametersInput < Struct.new(
2347
2387
  :accept_language,
2348
2388
  :product_id,
2389
+ :product_name,
2349
2390
  :provisioning_artifact_id,
2350
- :path_id)
2391
+ :provisioning_artifact_name,
2392
+ :path_id,
2393
+ :path_name)
2351
2394
  SENSITIVE = []
2352
2395
  include Aws::Structure
2353
2396
  end
@@ -2375,6 +2418,10 @@ module Aws::ServiceCatalog
2375
2418
  # regions and accounts, for the provisioning artifact.
2376
2419
  # @return [Types::ProvisioningArtifactPreferences]
2377
2420
  #
2421
+ # @!attribute [rw] provisioning_artifact_outputs
2422
+ # The output of the provisioning artifact.
2423
+ # @return [Array<Types::ProvisioningArtifactOutput>]
2424
+ #
2378
2425
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParametersOutput AWS API Documentation
2379
2426
  #
2380
2427
  class DescribeProvisioningParametersOutput < Struct.new(
@@ -2382,7 +2429,8 @@ module Aws::ServiceCatalog
2382
2429
  :constraint_summaries,
2383
2430
  :usage_instructions,
2384
2431
  :tag_options,
2385
- :provisioning_artifact_preferences)
2432
+ :provisioning_artifact_preferences,
2433
+ :provisioning_artifact_outputs)
2386
2434
  SENSITIVE = []
2387
2435
  include Aws::Structure
2388
2436
  end
@@ -4528,9 +4576,12 @@ module Aws::ServiceCatalog
4528
4576
  #
4529
4577
  # {
4530
4578
  # accept_language: "AcceptLanguage",
4531
- # product_id: "Id", # required
4532
- # provisioning_artifact_id: "Id", # required
4579
+ # product_id: "Id",
4580
+ # product_name: "ProductViewName",
4581
+ # provisioning_artifact_id: "Id",
4582
+ # provisioning_artifact_name: "ProvisioningArtifactName",
4533
4583
  # path_id: "Id",
4584
+ # path_name: "PortfolioDisplayName",
4534
4585
  # provisioned_product_name: "ProvisionedProductName", # required
4535
4586
  # provisioning_parameters: [
4536
4587
  # {
@@ -4567,17 +4618,34 @@ module Aws::ServiceCatalog
4567
4618
  # @return [String]
4568
4619
  #
4569
4620
  # @!attribute [rw] product_id
4570
- # The product identifier.
4621
+ # The product identifier. You must provide the name or ID, but not
4622
+ # both.
4623
+ # @return [String]
4624
+ #
4625
+ # @!attribute [rw] product_name
4626
+ # The name of the product. You must provide the name or ID, but not
4627
+ # both.
4571
4628
  # @return [String]
4572
4629
  #
4573
4630
  # @!attribute [rw] provisioning_artifact_id
4574
- # The identifier of the provisioning artifact.
4631
+ # The identifier of the provisioning artifact. You must provide the
4632
+ # name or ID, but not both.
4633
+ # @return [String]
4634
+ #
4635
+ # @!attribute [rw] provisioning_artifact_name
4636
+ # The name of the provisioning artifact. You must provide the name or
4637
+ # ID, but not both.
4575
4638
  # @return [String]
4576
4639
  #
4577
4640
  # @!attribute [rw] path_id
4578
4641
  # The path identifier of the product. This value is optional if the
4579
4642
  # product has a default path, and required if the product has more
4580
4643
  # than one path. To list the paths for a product, use ListLaunchPaths.
4644
+ # You must provide the name or ID, but not both.
4645
+ # @return [String]
4646
+ #
4647
+ # @!attribute [rw] path_name
4648
+ # The name of the path. You must provide the name or ID, but not both.
4581
4649
  # @return [String]
4582
4650
  #
4583
4651
  # @!attribute [rw] provisioned_product_name
@@ -4618,8 +4686,11 @@ module Aws::ServiceCatalog
4618
4686
  class ProvisionProductInput < Struct.new(
4619
4687
  :accept_language,
4620
4688
  :product_id,
4689
+ :product_name,
4621
4690
  :provisioning_artifact_id,
4691
+ :provisioning_artifact_name,
4622
4692
  :path_id,
4693
+ :path_name,
4623
4694
  :provisioned_product_name,
4624
4695
  :provisioning_parameters,
4625
4696
  :provisioning_preferences,
@@ -4707,6 +4778,32 @@ module Aws::ServiceCatalog
4707
4778
  # provisioned product.
4708
4779
  # @return [String]
4709
4780
  #
4781
+ # @!attribute [rw] last_provisioning_record_id
4782
+ # The record identifier of the last request performed on this
4783
+ # provisioned product of the following types:
4784
+ #
4785
+ # * ProvisionedProduct
4786
+ #
4787
+ # * UpdateProvisionedProduct
4788
+ #
4789
+ # * ExecuteProvisionedProductPlan
4790
+ #
4791
+ # * TerminateProvisionedProduct
4792
+ # @return [String]
4793
+ #
4794
+ # @!attribute [rw] last_successful_provisioning_record_id
4795
+ # The record identifier of the last successful request performed on
4796
+ # this provisioned product of the following types:
4797
+ #
4798
+ # * ProvisionedProduct
4799
+ #
4800
+ # * UpdateProvisionedProduct
4801
+ #
4802
+ # * ExecuteProvisionedProductPlan
4803
+ #
4804
+ # * TerminateProvisionedProduct
4805
+ # @return [String]
4806
+ #
4710
4807
  # @!attribute [rw] tags
4711
4808
  # One or more tags.
4712
4809
  # @return [Array<Types::Tag>]
@@ -4720,10 +4817,18 @@ module Aws::ServiceCatalog
4720
4817
  # The product identifier.
4721
4818
  # @return [String]
4722
4819
  #
4820
+ # @!attribute [rw] product_name
4821
+ # The name of the product.
4822
+ # @return [String]
4823
+ #
4723
4824
  # @!attribute [rw] provisioning_artifact_id
4724
4825
  # The identifier of the provisioning artifact.
4725
4826
  # @return [String]
4726
4827
  #
4828
+ # @!attribute [rw] provisioning_artifact_name
4829
+ # The name of the provisioning artifact.
4830
+ # @return [String]
4831
+ #
4727
4832
  # @!attribute [rw] user_arn
4728
4833
  # The Amazon Resource Name (ARN) of the IAM user.
4729
4834
  # @return [String]
@@ -4745,10 +4850,14 @@ module Aws::ServiceCatalog
4745
4850
  :created_time,
4746
4851
  :idempotency_token,
4747
4852
  :last_record_id,
4853
+ :last_provisioning_record_id,
4854
+ :last_successful_provisioning_record_id,
4748
4855
  :tags,
4749
4856
  :physical_id,
4750
4857
  :product_id,
4858
+ :product_name,
4751
4859
  :provisioning_artifact_id,
4860
+ :provisioning_artifact_name,
4752
4861
  :user_arn,
4753
4862
  :user_arn_session)
4754
4863
  SENSITIVE = []
@@ -4820,6 +4929,32 @@ module Aws::ServiceCatalog
4820
4929
  # provisioned product.
4821
4930
  # @return [String]
4822
4931
  #
4932
+ # @!attribute [rw] last_provisioning_record_id
4933
+ # The record identifier of the last request performed on this
4934
+ # provisioned product of the following types:
4935
+ #
4936
+ # * ProvisionedProduct
4937
+ #
4938
+ # * UpdateProvisionedProduct
4939
+ #
4940
+ # * ExecuteProvisionedProductPlan
4941
+ #
4942
+ # * TerminateProvisionedProduct
4943
+ # @return [String]
4944
+ #
4945
+ # @!attribute [rw] last_successful_provisioning_record_id
4946
+ # The record identifier of the last successful request performed on
4947
+ # this provisioned product of the following types:
4948
+ #
4949
+ # * ProvisionedProduct
4950
+ #
4951
+ # * UpdateProvisionedProduct
4952
+ #
4953
+ # * ExecuteProvisionedProductPlan
4954
+ #
4955
+ # * TerminateProvisionedProduct
4956
+ # @return [String]
4957
+ #
4823
4958
  # @!attribute [rw] product_id
4824
4959
  # The product identifier. For example, `prod-abcdzk7xy33qa`.
4825
4960
  # @return [String]
@@ -4841,6 +4976,8 @@ module Aws::ServiceCatalog
4841
4976
  :created_time,
4842
4977
  :idempotency_token,
4843
4978
  :last_record_id,
4979
+ :last_provisioning_record_id,
4980
+ :last_successful_provisioning_record_id,
4844
4981
  :product_id,
4845
4982
  :provisioning_artifact_id)
4846
4983
  SENSITIVE = []
@@ -5062,6 +5199,25 @@ module Aws::ServiceCatalog
5062
5199
  include Aws::Structure
5063
5200
  end
5064
5201
 
5202
+ # Provisioning artifact output.
5203
+ #
5204
+ # @!attribute [rw] key
5205
+ # The provisioning artifact output key.
5206
+ # @return [String]
5207
+ #
5208
+ # @!attribute [rw] description
5209
+ # Description of the provisioning artifact output key.
5210
+ # @return [String]
5211
+ #
5212
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactOutput AWS API Documentation
5213
+ #
5214
+ class ProvisioningArtifactOutput < Struct.new(
5215
+ :key,
5216
+ :description)
5217
+ SENSITIVE = []
5218
+ include Aws::Structure
5219
+ end
5220
+
5065
5221
  # Information about a parameter used to provision a product.
5066
5222
  #
5067
5223
  # @!attribute [rw] parameter_key
@@ -6050,7 +6206,9 @@ module Aws::ServiceCatalog
6050
6206
  # When the key is `SearchQuery`, the searchable fields are `arn`,
6051
6207
  # `createdTime`, `id`, `lastRecordId`, `idempotencyToken`, `name`,
6052
6208
  # `physicalId`, `productId`, `provisioningArtifact`, `type`, `status`,
6053
- # `tags`, `userArn`, and `userArnSession`.
6209
+ # `tags`, `userArn`, `userArnSession`, `lastProvisioningRecordId`,
6210
+ # `lastSuccessfulProvisioningRecordId`, `productName`, and
6211
+ # `provisioningArtifactName`.
6054
6212
  #
6055
6213
  # Example: `"SearchQuery":["status:AVAILABLE"]`
6056
6214
  # @return [Hash<String,Array<String>>]
@@ -6782,8 +6940,11 @@ module Aws::ServiceCatalog
6782
6940
  # provisioned_product_name: "ProvisionedProductNameOrArn",
6783
6941
  # provisioned_product_id: "Id",
6784
6942
  # product_id: "Id",
6943
+ # product_name: "ProductViewName",
6785
6944
  # provisioning_artifact_id: "Id",
6945
+ # provisioning_artifact_name: "ProvisioningArtifactName",
6786
6946
  # path_id: "Id",
6947
+ # path_name: "PortfolioDisplayName",
6787
6948
  # provisioning_parameters: [
6788
6949
  # {
6789
6950
  # key: "ParameterKey",
@@ -6825,21 +6986,37 @@ module Aws::ServiceCatalog
6825
6986
  # @return [String]
6826
6987
  #
6827
6988
  # @!attribute [rw] provisioned_product_id
6828
- # The identifier of the provisioned product. You cannot specify both
6829
- # `ProvisionedProductName` and `ProvisionedProductId`.
6989
+ # The identifier of the provisioned product. You must provide the name
6990
+ # or ID, but not both.
6830
6991
  # @return [String]
6831
6992
  #
6832
6993
  # @!attribute [rw] product_id
6833
- # The identifier of the product.
6994
+ # The identifier of the product. You must provide the name or ID, but
6995
+ # not both.
6996
+ # @return [String]
6997
+ #
6998
+ # @!attribute [rw] product_name
6999
+ # The name of the product. You must provide the name or ID, but not
7000
+ # both.
6834
7001
  # @return [String]
6835
7002
  #
6836
7003
  # @!attribute [rw] provisioning_artifact_id
6837
7004
  # The identifier of the provisioning artifact.
6838
7005
  # @return [String]
6839
7006
  #
7007
+ # @!attribute [rw] provisioning_artifact_name
7008
+ # The name of the provisioning artifact. You must provide the name or
7009
+ # ID, but not both.
7010
+ # @return [String]
7011
+ #
6840
7012
  # @!attribute [rw] path_id
6841
- # The new path identifier. This value is optional if the product has a
7013
+ # The path identifier. This value is optional if the product has a
6842
7014
  # default path, and required if the product has more than one path.
7015
+ # You must provide the name or ID, but not both.
7016
+ # @return [String]
7017
+ #
7018
+ # @!attribute [rw] path_name
7019
+ # The name of the path. You must provide the name or ID, but not both.
6843
7020
  # @return [String]
6844
7021
  #
6845
7022
  # @!attribute [rw] provisioning_parameters
@@ -6872,8 +7049,11 @@ module Aws::ServiceCatalog
6872
7049
  :provisioned_product_name,
6873
7050
  :provisioned_product_id,
6874
7051
  :product_id,
7052
+ :product_name,
6875
7053
  :provisioning_artifact_id,
7054
+ :provisioning_artifact_name,
6876
7055
  :path_id,
7056
+ :path_name,
6877
7057
  :provisioning_parameters,
6878
7058
  :provisioning_preferences,
6879
7059
  :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.43.0
4
+ version: 1.48.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-07-02 00:00:00.000000000 Z
11
+ date: 2020-09-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core