aws-sdk-servicecatalog 1.43.0 → 1.44.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
  SHA256:
3
- metadata.gz: 0ef758ef400aee72ff1e201d5e9c7abcbc0eaf94ab7296e647665878db2e88c3
4
- data.tar.gz: 32f8f073fb6ed992f6166c727e99883e9f7736a1b20532625cc0915731197130
3
+ metadata.gz: c67180a0777794ec88e13cf77eb59ea5053fa110988fa83bea3aebcd5b3d142d
4
+ data.tar.gz: 74e37ef106b887e8a8e481837b8b7e17376ec47400dcf0aa611763b280756cd3
5
5
  SHA512:
6
- metadata.gz: f767267c89f627d37c77ad34c2722d73c9272fc1ed90c76e7df35e25af273f7816f5435541ce38b5a3f77bb585869da4fa29544907412da31c5e4f87f0964cf4
7
- data.tar.gz: 14401562f48cc6a372b0b0a19c16291af341691591b1effb2a0c91ebf4a40fddb8de0a5d473f6ede3a919768d08fd675e30fb5036d90932151b780bbcb8c2d44
6
+ metadata.gz: 66a6274ffc92ebac0731cb82e177e4e6b295299662cca61f4c9d21e7d11634c7ee0c871266fbab4edcf36acf1be2c3b3c5e328c285971f7b12c3250d747bfe9d
7
+ data.tar.gz: 45c6d02ac9b9239506cdd09060e578e26ca5a2b1cc2ada393e203d5d10e067e55abccfc269dea5c5845062899dc33817f9a44e35df3bbcbb85a966df61ae0fc8
@@ -47,6 +47,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
47
47
  # @service
48
48
  module Aws::ServiceCatalog
49
49
 
50
- GEM_VERSION = '1.43.0'
50
+ GEM_VERSION = '1.44.0'
51
51
 
52
52
  end
@@ -969,6 +969,9 @@ module Aws::ServiceCatalog
969
969
  # `AWSOrganizationsAccess` must be enabled in order to create a
970
970
  # portfolio share to an organization node.
971
971
  #
972
+ # You can't share a shared resource. This includes portfolios that
973
+ # contain a shared product.
974
+ #
972
975
  # @option params [String] :accept_language
973
976
  # The language code.
974
977
  #
@@ -2377,16 +2380,30 @@ module Aws::ServiceCatalog
2377
2380
  #
2378
2381
  # * `zh` - Chinese
2379
2382
  #
2380
- # @option params [required, String] :product_id
2381
- # The product identifier.
2383
+ # @option params [String] :product_id
2384
+ # The product identifier. You must provide the product name or ID, but
2385
+ # not both.
2382
2386
  #
2383
- # @option params [required, String] :provisioning_artifact_id
2384
- # The identifier of the provisioning artifact.
2387
+ # @option params [String] :product_name
2388
+ # The name of the product. You must provide the name or ID, but not
2389
+ # both.
2390
+ #
2391
+ # @option params [String] :provisioning_artifact_id
2392
+ # The identifier of the provisioning artifact. You must provide the name
2393
+ # or ID, but not both.
2394
+ #
2395
+ # @option params [String] :provisioning_artifact_name
2396
+ # The name of the provisioning artifact. You must provide the name or
2397
+ # ID, but not both.
2385
2398
  #
2386
2399
  # @option params [String] :path_id
2387
2400
  # The path identifier of the product. This value is optional if the
2388
2401
  # 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.
2402
+ # one path. To list the paths for a product, use ListLaunchPaths. You
2403
+ # must provide the name or ID, but not both.
2404
+ #
2405
+ # @option params [String] :path_name
2406
+ # The name of the path. You must provide the name or ID, but not both.
2390
2407
  #
2391
2408
  # @return [Types::DescribeProvisioningParametersOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2392
2409
  #
@@ -2395,14 +2412,18 @@ module Aws::ServiceCatalog
2395
2412
  # * {Types::DescribeProvisioningParametersOutput#usage_instructions #usage_instructions} => Array<Types::UsageInstruction>
2396
2413
  # * {Types::DescribeProvisioningParametersOutput#tag_options #tag_options} => Array<Types::TagOptionSummary>
2397
2414
  # * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_preferences #provisioning_artifact_preferences} => Types::ProvisioningArtifactPreferences
2415
+ # * {Types::DescribeProvisioningParametersOutput#provisioning_artifact_outputs #provisioning_artifact_outputs} => Array<Types::ProvisioningArtifactOutput>
2398
2416
  #
2399
2417
  # @example Request syntax with placeholder values
2400
2418
  #
2401
2419
  # resp = client.describe_provisioning_parameters({
2402
2420
  # accept_language: "AcceptLanguage",
2403
- # product_id: "Id", # required
2404
- # provisioning_artifact_id: "Id", # required
2421
+ # product_id: "Id",
2422
+ # product_name: "ProductViewName",
2423
+ # provisioning_artifact_id: "Id",
2424
+ # provisioning_artifact_name: "ProvisioningArtifactName",
2405
2425
  # path_id: "Id",
2426
+ # path_name: "PortfolioDisplayName",
2406
2427
  # })
2407
2428
  #
2408
2429
  # @example Response structure
@@ -2429,6 +2450,9 @@ module Aws::ServiceCatalog
2429
2450
  # resp.provisioning_artifact_preferences.stack_set_accounts[0] #=> String
2430
2451
  # resp.provisioning_artifact_preferences.stack_set_regions #=> Array
2431
2452
  # resp.provisioning_artifact_preferences.stack_set_regions[0] #=> String
2453
+ # resp.provisioning_artifact_outputs #=> Array
2454
+ # resp.provisioning_artifact_outputs[0].key #=> String
2455
+ # resp.provisioning_artifact_outputs[0].description #=> String
2432
2456
  #
2433
2457
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningParameters AWS API Documentation
2434
2458
  #
@@ -4105,16 +4129,29 @@ module Aws::ServiceCatalog
4105
4129
  #
4106
4130
  # * `zh` - Chinese
4107
4131
  #
4108
- # @option params [required, String] :product_id
4109
- # The product identifier.
4132
+ # @option params [String] :product_id
4133
+ # The product identifier. You must provide the name or ID, but not both.
4110
4134
  #
4111
- # @option params [required, String] :provisioning_artifact_id
4112
- # The identifier of the provisioning artifact.
4135
+ # @option params [String] :product_name
4136
+ # The name of the product. You must provide the name or ID, but not
4137
+ # both.
4138
+ #
4139
+ # @option params [String] :provisioning_artifact_id
4140
+ # The identifier of the provisioning artifact. You must provide the name
4141
+ # or ID, but not both.
4142
+ #
4143
+ # @option params [String] :provisioning_artifact_name
4144
+ # The name of the provisioning artifact. You must provide the name or
4145
+ # ID, but not both.
4113
4146
  #
4114
4147
  # @option params [String] :path_id
4115
4148
  # The path identifier of the product. This value is optional if the
4116
4149
  # 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.
4150
+ # one path. To list the paths for a product, use ListLaunchPaths. You
4151
+ # must provide the name or ID, but not both.
4152
+ #
4153
+ # @option params [String] :path_name
4154
+ # The name of the path. You must provide the name or ID, but not both.
4118
4155
  #
4119
4156
  # @option params [required, String] :provisioned_product_name
4120
4157
  # A user-friendly name for the provisioned product. This value must be
@@ -4151,9 +4188,12 @@ module Aws::ServiceCatalog
4151
4188
  #
4152
4189
  # resp = client.provision_product({
4153
4190
  # accept_language: "AcceptLanguage",
4154
- # product_id: "Id", # required
4155
- # provisioning_artifact_id: "Id", # required
4191
+ # product_id: "Id",
4192
+ # product_name: "ProductViewName",
4193
+ # provisioning_artifact_id: "Id",
4194
+ # provisioning_artifact_name: "ProvisioningArtifactName",
4156
4195
  # path_id: "Id",
4196
+ # path_name: "PortfolioDisplayName",
4157
4197
  # provisioned_product_name: "ProvisionedProductName", # required
4158
4198
  # provisioning_parameters: [
4159
4199
  # {
@@ -4981,18 +5021,31 @@ module Aws::ServiceCatalog
4981
5021
  # `ProvisionedProductName` and `ProvisionedProductId`.
4982
5022
  #
4983
5023
  # @option params [String] :provisioned_product_id
4984
- # The identifier of the provisioned product. You cannot specify both
4985
- # `ProvisionedProductName` and `ProvisionedProductId`.
5024
+ # The identifier of the provisioned product. You must provide the name
5025
+ # or ID, but not both.
4986
5026
  #
4987
5027
  # @option params [String] :product_id
4988
- # The identifier of the product.
5028
+ # The identifier of the product. You must provide the name or ID, but
5029
+ # not both.
5030
+ #
5031
+ # @option params [String] :product_name
5032
+ # The name of the product. You must provide the name or ID, but not
5033
+ # both.
4989
5034
  #
4990
5035
  # @option params [String] :provisioning_artifact_id
4991
5036
  # The identifier of the provisioning artifact.
4992
5037
  #
5038
+ # @option params [String] :provisioning_artifact_name
5039
+ # The name of the provisioning artifact. You must provide the name or
5040
+ # ID, but not both.
5041
+ #
4993
5042
  # @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.
5043
+ # The path identifier. This value is optional if the product has a
5044
+ # default path, and required if the product has more than one path. You
5045
+ # must provide the name or ID, but not both.
5046
+ #
5047
+ # @option params [String] :path_name
5048
+ # The name of the path. You must provide the name or ID, but not both.
4996
5049
  #
4997
5050
  # @option params [Array<Types::UpdateProvisioningParameter>] :provisioning_parameters
4998
5051
  # The new parameters.
@@ -5024,8 +5077,11 @@ module Aws::ServiceCatalog
5024
5077
  # provisioned_product_name: "ProvisionedProductNameOrArn",
5025
5078
  # provisioned_product_id: "Id",
5026
5079
  # product_id: "Id",
5080
+ # product_name: "ProductViewName",
5027
5081
  # provisioning_artifact_id: "Id",
5082
+ # provisioning_artifact_name: "ProvisioningArtifactName",
5028
5083
  # path_id: "Id",
5084
+ # path_name: "PortfolioDisplayName",
5029
5085
  # provisioning_parameters: [
5030
5086
  # {
5031
5087
  # key: "ParameterKey",
@@ -5355,7 +5411,7 @@ module Aws::ServiceCatalog
5355
5411
  params: params,
5356
5412
  config: config)
5357
5413
  context[:gem_name] = 'aws-sdk-servicecatalog'
5358
- context[:gem_version] = '1.43.0'
5414
+ context[:gem_version] = '1.44.0'
5359
5415
  Seahorse::Client::Request.new(handlers, context)
5360
5416
  end
5361
5417
 
@@ -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, required: true, location_name: "ProductId"))
817
- DescribeProvisioningParametersInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProvisioningArtifactId"))
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, required: true, location_name: "ProductId"))
1228
- ProvisionProductInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProvisioningArtifactId"))
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"))
@@ -1328,6 +1339,12 @@ module Aws::ServiceCatalog
1328
1339
  ProvisioningArtifactInfo.key = Shapes::ShapeRef.new(shape: ProvisioningArtifactInfoKey)
1329
1340
  ProvisioningArtifactInfo.value = Shapes::ShapeRef.new(shape: ProvisioningArtifactInfoValue)
1330
1341
 
1342
+ ProvisioningArtifactOutput.add_member(:key, Shapes::ShapeRef.new(shape: ProvisioningArtifactOutputKey, location_name: "Key"))
1343
+ ProvisioningArtifactOutput.add_member(:description, Shapes::ShapeRef.new(shape: OutputDescription, location_name: "Description"))
1344
+ ProvisioningArtifactOutput.struct_class = Types::ProvisioningArtifactOutput
1345
+
1346
+ ProvisioningArtifactOutputs.member = Shapes::ShapeRef.new(shape: ProvisioningArtifactOutput)
1347
+
1331
1348
  ProvisioningArtifactParameter.add_member(:parameter_key, Shapes::ShapeRef.new(shape: ParameterKey, location_name: "ParameterKey"))
1332
1349
  ProvisioningArtifactParameter.add_member(:default_value, Shapes::ShapeRef.new(shape: DefaultValue, location_name: "DefaultValue"))
1333
1350
  ProvisioningArtifactParameter.add_member(:parameter_type, Shapes::ShapeRef.new(shape: ParameterType, location_name: "ParameterType"))
@@ -1644,8 +1661,11 @@ module Aws::ServiceCatalog
1644
1661
  UpdateProvisionedProductInput.add_member(:provisioned_product_name, Shapes::ShapeRef.new(shape: ProvisionedProductNameOrArn, location_name: "ProvisionedProductName"))
1645
1662
  UpdateProvisionedProductInput.add_member(:provisioned_product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisionedProductId"))
1646
1663
  UpdateProvisionedProductInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProductId"))
1664
+ UpdateProvisionedProductInput.add_member(:product_name, Shapes::ShapeRef.new(shape: ProductViewName, location_name: "ProductName"))
1647
1665
  UpdateProvisionedProductInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, location_name: "ProvisioningArtifactId"))
1666
+ UpdateProvisionedProductInput.add_member(:provisioning_artifact_name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "ProvisioningArtifactName"))
1648
1667
  UpdateProvisionedProductInput.add_member(:path_id, Shapes::ShapeRef.new(shape: Id, location_name: "PathId"))
1668
+ UpdateProvisionedProductInput.add_member(:path_name, Shapes::ShapeRef.new(shape: PortfolioDisplayName, location_name: "PathName"))
1649
1669
  UpdateProvisionedProductInput.add_member(:provisioning_parameters, Shapes::ShapeRef.new(shape: UpdateProvisioningParameters, location_name: "ProvisioningParameters"))
1650
1670
  UpdateProvisionedProductInput.add_member(:provisioning_preferences, Shapes::ShapeRef.new(shape: UpdateProvisioningPreferences, location_name: "ProvisioningPreferences"))
1651
1671
  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", # required
2316
- # provisioning_artifact_id: "Id", # required
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
- :path_id)
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", # required
4532
- # provisioning_artifact_id: "Id", # required
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,
@@ -5062,6 +5113,25 @@ module Aws::ServiceCatalog
5062
5113
  include Aws::Structure
5063
5114
  end
5064
5115
 
5116
+ # Provisioning artifact output.
5117
+ #
5118
+ # @!attribute [rw] key
5119
+ # The provisioning artifact output key.
5120
+ # @return [String]
5121
+ #
5122
+ # @!attribute [rw] description
5123
+ # Description of the provisioning artifact output key.
5124
+ # @return [String]
5125
+ #
5126
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactOutput AWS API Documentation
5127
+ #
5128
+ class ProvisioningArtifactOutput < Struct.new(
5129
+ :key,
5130
+ :description)
5131
+ SENSITIVE = []
5132
+ include Aws::Structure
5133
+ end
5134
+
5065
5135
  # Information about a parameter used to provision a product.
5066
5136
  #
5067
5137
  # @!attribute [rw] parameter_key
@@ -6782,8 +6852,11 @@ module Aws::ServiceCatalog
6782
6852
  # provisioned_product_name: "ProvisionedProductNameOrArn",
6783
6853
  # provisioned_product_id: "Id",
6784
6854
  # product_id: "Id",
6855
+ # product_name: "ProductViewName",
6785
6856
  # provisioning_artifact_id: "Id",
6857
+ # provisioning_artifact_name: "ProvisioningArtifactName",
6786
6858
  # path_id: "Id",
6859
+ # path_name: "PortfolioDisplayName",
6787
6860
  # provisioning_parameters: [
6788
6861
  # {
6789
6862
  # key: "ParameterKey",
@@ -6825,21 +6898,37 @@ module Aws::ServiceCatalog
6825
6898
  # @return [String]
6826
6899
  #
6827
6900
  # @!attribute [rw] provisioned_product_id
6828
- # The identifier of the provisioned product. You cannot specify both
6829
- # `ProvisionedProductName` and `ProvisionedProductId`.
6901
+ # The identifier of the provisioned product. You must provide the name
6902
+ # or ID, but not both.
6830
6903
  # @return [String]
6831
6904
  #
6832
6905
  # @!attribute [rw] product_id
6833
- # The identifier of the product.
6906
+ # The identifier of the product. You must provide the name or ID, but
6907
+ # not both.
6908
+ # @return [String]
6909
+ #
6910
+ # @!attribute [rw] product_name
6911
+ # The name of the product. You must provide the name or ID, but not
6912
+ # both.
6834
6913
  # @return [String]
6835
6914
  #
6836
6915
  # @!attribute [rw] provisioning_artifact_id
6837
6916
  # The identifier of the provisioning artifact.
6838
6917
  # @return [String]
6839
6918
  #
6919
+ # @!attribute [rw] provisioning_artifact_name
6920
+ # The name of the provisioning artifact. You must provide the name or
6921
+ # ID, but not both.
6922
+ # @return [String]
6923
+ #
6840
6924
  # @!attribute [rw] path_id
6841
- # The new path identifier. This value is optional if the product has a
6925
+ # The path identifier. This value is optional if the product has a
6842
6926
  # default path, and required if the product has more than one path.
6927
+ # You must provide the name or ID, but not both.
6928
+ # @return [String]
6929
+ #
6930
+ # @!attribute [rw] path_name
6931
+ # The name of the path. You must provide the name or ID, but not both.
6843
6932
  # @return [String]
6844
6933
  #
6845
6934
  # @!attribute [rw] provisioning_parameters
@@ -6872,8 +6961,11 @@ module Aws::ServiceCatalog
6872
6961
  :provisioned_product_name,
6873
6962
  :provisioned_product_id,
6874
6963
  :product_id,
6964
+ :product_name,
6875
6965
  :provisioning_artifact_id,
6966
+ :provisioning_artifact_name,
6876
6967
  :path_id,
6968
+ :path_name,
6877
6969
  :provisioning_parameters,
6878
6970
  :provisioning_preferences,
6879
6971
  :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.44.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-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core