aws-sdk-servicecatalog 1.0.0.rc5 → 1.0.0.rc6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 87fe1af5e4b60693d8150685d8769407f329926d
4
- data.tar.gz: 84f16c17cf93ff6e82d814672cf1a62d0f72c6f6
3
+ metadata.gz: 1f79186c95d1d369df149b181f05c41de29c1fb1
4
+ data.tar.gz: 96b592748f68eaac063bae91e2b9acf3dc22ccb5
5
5
  SHA512:
6
- metadata.gz: 0af3f66cda2ef74ba5f0d2424c2e2c5ae4ef021ff3e61cdf57df1944790b4d7ad99720b146646f6dff2b8941e0d48c8a2ae70a88556b247817ce24b4ed741e98
7
- data.tar.gz: a9d05669a57ab47a7fd7baeb9c0fe468c26446ad6b8043a6b00280e685d85d6693a630596216398a95941b68a6eaaed07ab237846cf1ec179516514a90513b1e
6
+ metadata.gz: 12b240857b3b45d4011aed5454ddd5bb9699e912e19bcc3b3a67ebbc50d9ade63f02246122456fd46ef61959c9bb5fc932d3d9d97d569bb7ffc666ef3fab1fed
7
+ data.tar.gz: f1488b1c85581d5eaff248dabf1704650584cd2771466edb8a14fee3fb5590650fc2d841a0a9de78c31e75a162f57acb79c16d9930d09751f3c2ff897a144bcb
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
42
42
  # @service
43
43
  module Aws::ServiceCatalog
44
44
 
45
- GEM_VERSION = '1.0.0.rc5'
45
+ GEM_VERSION = '1.0.0.rc6'
46
46
 
47
47
  end
@@ -276,7 +276,12 @@ module Aws::ServiceCatalog
276
276
  req.send_request(options)
277
277
  end
278
278
 
279
- # Creates a new constraint.
279
+ # Creates a new constraint. For more information, see [Using
280
+ # Constraints][1].
281
+ #
282
+ #
283
+ #
284
+ # [1]: http://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints.html
280
285
  #
281
286
  # @option params [String] :accept_language
282
287
  # The language code to use for this operation. Supported language codes
@@ -297,10 +302,18 @@ module Aws::ServiceCatalog
297
302
  # The product identifier.
298
303
  #
299
304
  # @option params [required, String] :parameters
300
- # The constraint parameters.
305
+ # The constraint parameters. Expected values vary depending on which
306
+ # **Type** is specified. For examples, see the bottom of this topic.
307
+ #
308
+ # For Type `LAUNCH`, the `RoleArn` property is required.
309
+ #
310
+ # For Type `NOTIFICATION`, the `NotificationArns` property is required.
311
+ #
312
+ # For Type `TEMPLATE`, the `Rules` property is required.
301
313
  #
302
314
  # @option params [required, String] :type
303
- # The type of the constraint.
315
+ # The type of the constraint. Case-sensitive valid values are: `LAUNCH`,
316
+ # `NOTIFICATION`, or `TEMPLATE`.
304
317
  #
305
318
  # @option params [String] :description
306
319
  # The text description of the constraint.
@@ -533,7 +546,7 @@ module Aws::ServiceCatalog
533
546
  # support_description: "SupportDescription",
534
547
  # support_email: "SupportEmail",
535
548
  # support_url: "SupportUrl",
536
- # product_type: "CLOUD_FORMATION_TEMPLATE", # required, accepts CLOUD_FORMATION_TEMPLATE
549
+ # product_type: "CLOUD_FORMATION_TEMPLATE", # required, accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE
537
550
  # tags: [
538
551
  # {
539
552
  # key: "TagKey", # required
@@ -546,7 +559,7 @@ module Aws::ServiceCatalog
546
559
  # info: { # required
547
560
  # "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
548
561
  # },
549
- # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE
562
+ # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
550
563
  # },
551
564
  # idempotency_token: "IdempotencyToken", # required
552
565
  # })
@@ -558,7 +571,7 @@ module Aws::ServiceCatalog
558
571
  # resp.product_view_detail.product_view_summary.name #=> String
559
572
  # resp.product_view_detail.product_view_summary.owner #=> String
560
573
  # resp.product_view_detail.product_view_summary.short_description #=> String
561
- # resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
574
+ # resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE"
562
575
  # resp.product_view_detail.product_view_summary.distributor #=> String
563
576
  # resp.product_view_detail.product_view_summary.has_default_path #=> Boolean
564
577
  # resp.product_view_detail.product_view_summary.support_email #=> String
@@ -570,7 +583,7 @@ module Aws::ServiceCatalog
570
583
  # resp.provisioning_artifact_detail.id #=> String
571
584
  # resp.provisioning_artifact_detail.name #=> String
572
585
  # resp.provisioning_artifact_detail.description #=> String
573
- # resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
586
+ # resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR"
574
587
  # resp.provisioning_artifact_detail.created_time #=> Time
575
588
  # resp.tags #=> Array
576
589
  # resp.tags[0].key #=> String
@@ -586,7 +599,9 @@ module Aws::ServiceCatalog
586
599
  end
587
600
 
588
601
  # Create a new provisioning artifact for the specified product. This
589
- # operation will not work with a product that has been shared with you.
602
+ # operation does not work with a product that has been shared with you.
603
+ #
604
+ # See the bottom of this topic for an example JSON request.
590
605
  #
591
606
  # @option params [String] :accept_language
592
607
  # The language code to use for this operation. Supported language codes
@@ -631,7 +646,7 @@ module Aws::ServiceCatalog
631
646
  # info: { # required
632
647
  # "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
633
648
  # },
634
- # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE
649
+ # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
635
650
  # },
636
651
  # idempotency_token: "IdempotencyToken", # required
637
652
  # })
@@ -641,7 +656,7 @@ module Aws::ServiceCatalog
641
656
  # resp.provisioning_artifact_detail.id #=> String
642
657
  # resp.provisioning_artifact_detail.name #=> String
643
658
  # resp.provisioning_artifact_detail.description #=> String
644
- # resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
659
+ # resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR"
645
660
  # resp.provisioning_artifact_detail.created_time #=> Time
646
661
  # resp.info #=> Hash
647
662
  # resp.info["ProvisioningArtifactInfoKey"] #=> String
@@ -691,7 +706,7 @@ module Aws::ServiceCatalog
691
706
  req.send_request(options)
692
707
  end
693
708
 
694
- # Deletes the specified portfolio. This operation will not work with a
709
+ # Deletes the specified portfolio. This operation does not work with a
695
710
  # portfolio that has been shared with you or if it has products, users,
696
711
  # constraints, or shared accounts associated with it.
697
712
  #
@@ -767,7 +782,7 @@ module Aws::ServiceCatalog
767
782
  req.send_request(options)
768
783
  end
769
784
 
770
- # Deletes the specified product. This operation will not work with a
785
+ # Deletes the specified product. This operation does not work with a
771
786
  # product that has been shared with you or is associated with a
772
787
  # portfolio.
773
788
  #
@@ -804,7 +819,7 @@ module Aws::ServiceCatalog
804
819
  req.send_request(options)
805
820
  end
806
821
 
807
- # Deletes the specified provisioning artifact. This operation will not
822
+ # Deletes the specified provisioning artifact. This operation does not
808
823
  # work on a provisioning artifact associated with a product that has
809
824
  # been shared with you, or on the last provisioning artifact associated
810
825
  # with a product (a product must have at least one provisioning
@@ -827,6 +842,7 @@ module Aws::ServiceCatalog
827
842
  #
828
843
  # @option params [required, String] :provisioning_artifact_id
829
844
  # The identifier of the provisioning artifact for the delete request.
845
+ # This is sometimes referred to as the product version.
830
846
  #
831
847
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
832
848
  #
@@ -985,7 +1001,7 @@ module Aws::ServiceCatalog
985
1001
  # resp.product_view_summary.name #=> String
986
1002
  # resp.product_view_summary.owner #=> String
987
1003
  # resp.product_view_summary.short_description #=> String
988
- # resp.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
1004
+ # resp.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE"
989
1005
  # resp.product_view_summary.distributor #=> String
990
1006
  # resp.product_view_summary.has_default_path #=> Boolean
991
1007
  # resp.product_view_summary.support_email #=> String
@@ -1027,6 +1043,7 @@ module Aws::ServiceCatalog
1027
1043
  # @return [Types::DescribeProductAsAdminOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1028
1044
  #
1029
1045
  # * {Types::DescribeProductAsAdminOutput#product_view_detail #product_view_detail} => Types::ProductViewDetail
1046
+ # * {Types::DescribeProductAsAdminOutput#provisioning_artifact_summaries #provisioning_artifact_summaries} => Array<Types::ProvisioningArtifactSummary>
1030
1047
  # * {Types::DescribeProductAsAdminOutput#tags #tags} => Array<Types::Tag>
1031
1048
  #
1032
1049
  # @example Request syntax with placeholder values
@@ -1043,7 +1060,7 @@ module Aws::ServiceCatalog
1043
1060
  # resp.product_view_detail.product_view_summary.name #=> String
1044
1061
  # resp.product_view_detail.product_view_summary.owner #=> String
1045
1062
  # resp.product_view_detail.product_view_summary.short_description #=> String
1046
- # resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
1063
+ # resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE"
1047
1064
  # resp.product_view_detail.product_view_summary.distributor #=> String
1048
1065
  # resp.product_view_detail.product_view_summary.has_default_path #=> Boolean
1049
1066
  # resp.product_view_detail.product_view_summary.support_email #=> String
@@ -1052,6 +1069,13 @@ module Aws::ServiceCatalog
1052
1069
  # resp.product_view_detail.status #=> String, one of "AVAILABLE", "CREATING", "FAILED"
1053
1070
  # resp.product_view_detail.product_arn #=> String
1054
1071
  # resp.product_view_detail.created_time #=> Time
1072
+ # resp.provisioning_artifact_summaries #=> Array
1073
+ # resp.provisioning_artifact_summaries[0].id #=> String
1074
+ # resp.provisioning_artifact_summaries[0].name #=> String
1075
+ # resp.provisioning_artifact_summaries[0].description #=> String
1076
+ # resp.provisioning_artifact_summaries[0].created_time #=> Time
1077
+ # resp.provisioning_artifact_summaries[0].provisioning_artifact_metadata #=> Hash
1078
+ # resp.provisioning_artifact_summaries[0].provisioning_artifact_metadata["ProvisioningArtifactInfoKey"] #=> String
1055
1079
  # resp.tags #=> Array
1056
1080
  # resp.tags[0].key #=> String
1057
1081
  # resp.tags[0].value #=> String
@@ -1104,7 +1128,7 @@ module Aws::ServiceCatalog
1104
1128
  # resp.product_view_summary.name #=> String
1105
1129
  # resp.product_view_summary.owner #=> String
1106
1130
  # resp.product_view_summary.short_description #=> String
1107
- # resp.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
1131
+ # resp.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE"
1108
1132
  # resp.product_view_summary.distributor #=> String
1109
1133
  # resp.product_view_summary.has_default_path #=> Boolean
1110
1134
  # resp.product_view_summary.support_email #=> String
@@ -1125,6 +1149,55 @@ module Aws::ServiceCatalog
1125
1149
  req.send_request(options)
1126
1150
  end
1127
1151
 
1152
+ # Retrieve detailed information about the provisioned product.
1153
+ #
1154
+ # @option params [String] :accept_language
1155
+ # The language code to use for this operation. Supported language codes
1156
+ # are as follows:
1157
+ #
1158
+ # "en" (English)
1159
+ #
1160
+ # "jp" (Japanese)
1161
+ #
1162
+ # "zh" (Chinese)
1163
+ #
1164
+ # If no code is specified, "en" is used as the default.
1165
+ #
1166
+ # @option params [required, String] :id
1167
+ # The provisioned product identifier.
1168
+ #
1169
+ # @return [Types::DescribeProvisionedProductOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1170
+ #
1171
+ # * {Types::DescribeProvisionedProductOutput#provisioned_product_detail #provisioned_product_detail} => Types::ProvisionedProductDetail
1172
+ #
1173
+ # @example Request syntax with placeholder values
1174
+ #
1175
+ # resp = client.describe_provisioned_product({
1176
+ # accept_language: "AcceptLanguage",
1177
+ # id: "Id", # required
1178
+ # })
1179
+ #
1180
+ # @example Response structure
1181
+ #
1182
+ # resp.provisioned_product_detail.name #=> String
1183
+ # resp.provisioned_product_detail.arn #=> String
1184
+ # resp.provisioned_product_detail.type #=> String
1185
+ # resp.provisioned_product_detail.id #=> String
1186
+ # resp.provisioned_product_detail.status #=> String, one of "AVAILABLE", "UNDER_CHANGE", "TAINTED", "ERROR"
1187
+ # resp.provisioned_product_detail.status_message #=> String
1188
+ # resp.provisioned_product_detail.created_time #=> Time
1189
+ # resp.provisioned_product_detail.idempotency_token #=> String
1190
+ # resp.provisioned_product_detail.last_record_id #=> String
1191
+ #
1192
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProduct AWS API Documentation
1193
+ #
1194
+ # @overload describe_provisioned_product(params = {})
1195
+ # @param [Hash] params ({})
1196
+ def describe_provisioned_product(params = {}, options = {})
1197
+ req = build_request(:describe_provisioned_product, params)
1198
+ req.send_request(options)
1199
+ end
1200
+
1128
1201
  # Retrieves detailed information about the specified provisioning
1129
1202
  # artifact.
1130
1203
  #
@@ -1141,11 +1214,16 @@ module Aws::ServiceCatalog
1141
1214
  # If no code is specified, "en" is used as the default.
1142
1215
  #
1143
1216
  # @option params [required, String] :provisioning_artifact_id
1144
- # The identifier of the provisioning artifact.
1217
+ # The identifier of the provisioning artifact. This is sometimes
1218
+ # referred to as the product version.
1145
1219
  #
1146
1220
  # @option params [required, String] :product_id
1147
1221
  # The product identifier.
1148
1222
  #
1223
+ # @option params [Boolean] :verbose
1224
+ # Selects verbose results. If set to true, the CloudFormation template
1225
+ # is returned.
1226
+ #
1149
1227
  # @return [Types::DescribeProvisioningArtifactOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1150
1228
  #
1151
1229
  # * {Types::DescribeProvisioningArtifactOutput#provisioning_artifact_detail #provisioning_artifact_detail} => Types::ProvisioningArtifactDetail
@@ -1158,6 +1236,7 @@ module Aws::ServiceCatalog
1158
1236
  # accept_language: "AcceptLanguage",
1159
1237
  # provisioning_artifact_id: "Id", # required
1160
1238
  # product_id: "Id", # required
1239
+ # verbose: false,
1161
1240
  # })
1162
1241
  #
1163
1242
  # @example Response structure
@@ -1165,7 +1244,7 @@ module Aws::ServiceCatalog
1165
1244
  # resp.provisioning_artifact_detail.id #=> String
1166
1245
  # resp.provisioning_artifact_detail.name #=> String
1167
1246
  # resp.provisioning_artifact_detail.description #=> String
1168
- # resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
1247
+ # resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR"
1169
1248
  # resp.provisioning_artifact_detail.created_time #=> Time
1170
1249
  # resp.info #=> Hash
1171
1250
  # resp.info["ProvisioningArtifactInfoKey"] #=> String
@@ -1201,7 +1280,8 @@ module Aws::ServiceCatalog
1201
1280
  # The product identifier.
1202
1281
  #
1203
1282
  # @option params [required, String] :provisioning_artifact_id
1204
- # The provisioning artifact identifier for this product.
1283
+ # The provisioning artifact identifier for this product. This is
1284
+ # sometimes referred to as the product version.
1205
1285
  #
1206
1286
  # @option params [String] :path_id
1207
1287
  # The identifier of the path for this product's provisioning. This
@@ -1299,7 +1379,7 @@ module Aws::ServiceCatalog
1299
1379
  #
1300
1380
  # resp.record_detail.record_id #=> String
1301
1381
  # resp.record_detail.provisioned_product_name #=> String
1302
- # resp.record_detail.status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "ERROR"
1382
+ # resp.record_detail.status #=> String, one of "CREATED", "IN_PROGRESS", "IN_PROGRESS_IN_ERROR", "SUCCEEDED", "FAILED"
1303
1383
  # resp.record_detail.created_time #=> Time
1304
1384
  # resp.record_detail.updated_time #=> Time
1305
1385
  # resp.record_detail.provisioned_product_type #=> String
@@ -1847,7 +1927,7 @@ module Aws::ServiceCatalog
1847
1927
  # resp.provisioning_artifact_details[0].id #=> String
1848
1928
  # resp.provisioning_artifact_details[0].name #=> String
1849
1929
  # resp.provisioning_artifact_details[0].description #=> String
1850
- # resp.provisioning_artifact_details[0].type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
1930
+ # resp.provisioning_artifact_details[0].type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR"
1851
1931
  # resp.provisioning_artifact_details[0].created_time #=> Time
1852
1932
  # resp.next_page_token #=> String
1853
1933
  #
@@ -1917,7 +1997,7 @@ module Aws::ServiceCatalog
1917
1997
  # resp.record_details #=> Array
1918
1998
  # resp.record_details[0].record_id #=> String
1919
1999
  # resp.record_details[0].provisioned_product_name #=> String
1920
- # resp.record_details[0].status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "ERROR"
2000
+ # resp.record_details[0].status #=> String, one of "CREATED", "IN_PROGRESS", "IN_PROGRESS_IN_ERROR", "SUCCEEDED", "FAILED"
1921
2001
  # resp.record_details[0].created_time #=> Time
1922
2002
  # resp.record_details[0].updated_time #=> Time
1923
2003
  # resp.record_details[0].provisioned_product_type #=> String
@@ -1943,7 +2023,7 @@ module Aws::ServiceCatalog
1943
2023
  req.send_request(options)
1944
2024
  end
1945
2025
 
1946
- # Requests a *Provision* of a specified product. A *ProvisionedProduct*
2026
+ # Requests a *provision* of a specified product. A *provisioned product*
1947
2027
  # is a resourced instance for a product. For example, provisioning a
1948
2028
  # CloudFormation-template-backed product results in launching a
1949
2029
  # CloudFormation stack and all the underlying resources that come with
@@ -1968,7 +2048,8 @@ module Aws::ServiceCatalog
1968
2048
  # The product identifier.
1969
2049
  #
1970
2050
  # @option params [required, String] :provisioning_artifact_id
1971
- # The provisioning artifact identifier for this product.
2051
+ # The provisioning artifact identifier for this product. This is
2052
+ # sometimes referred to as the product version.
1972
2053
  #
1973
2054
  # @option params [String] :path_id
1974
2055
  # The identifier of the path for this product's provisioning. This
@@ -2030,7 +2111,7 @@ module Aws::ServiceCatalog
2030
2111
  #
2031
2112
  # resp.record_detail.record_id #=> String
2032
2113
  # resp.record_detail.provisioned_product_name #=> String
2033
- # resp.record_detail.status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "ERROR"
2114
+ # resp.record_detail.status #=> String, one of "CREATED", "IN_PROGRESS", "IN_PROGRESS_IN_ERROR", "SUCCEEDED", "FAILED"
2034
2115
  # resp.record_detail.created_time #=> Time
2035
2116
  # resp.record_detail.updated_time #=> Time
2036
2117
  # resp.record_detail.provisioned_product_type #=> String
@@ -2142,7 +2223,7 @@ module Aws::ServiceCatalog
2142
2223
  # resp.provisioned_products[0].arn #=> String
2143
2224
  # resp.provisioned_products[0].type #=> String
2144
2225
  # resp.provisioned_products[0].id #=> String
2145
- # resp.provisioned_products[0].status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "ERROR"
2226
+ # resp.provisioned_products[0].status #=> String, one of "AVAILABLE", "UNDER_CHANGE", "TAINTED", "ERROR"
2146
2227
  # resp.provisioned_products[0].status_message #=> String
2147
2228
  # resp.provisioned_products[0].created_time #=> Time
2148
2229
  # resp.provisioned_products[0].idempotency_token #=> String
@@ -2225,7 +2306,7 @@ module Aws::ServiceCatalog
2225
2306
  # resp.product_view_summaries[0].name #=> String
2226
2307
  # resp.product_view_summaries[0].owner #=> String
2227
2308
  # resp.product_view_summaries[0].short_description #=> String
2228
- # resp.product_view_summaries[0].type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
2309
+ # resp.product_view_summaries[0].type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE"
2229
2310
  # resp.product_view_summaries[0].distributor #=> String
2230
2311
  # resp.product_view_summaries[0].has_default_path #=> Boolean
2231
2312
  # resp.product_view_summaries[0].support_email #=> String
@@ -2319,7 +2400,7 @@ module Aws::ServiceCatalog
2319
2400
  # resp.product_view_details[0].product_view_summary.name #=> String
2320
2401
  # resp.product_view_details[0].product_view_summary.owner #=> String
2321
2402
  # resp.product_view_details[0].product_view_summary.short_description #=> String
2322
- # resp.product_view_details[0].product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
2403
+ # resp.product_view_details[0].product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE"
2323
2404
  # resp.product_view_details[0].product_view_summary.distributor #=> String
2324
2405
  # resp.product_view_details[0].product_view_summary.has_default_path #=> Boolean
2325
2406
  # resp.product_view_details[0].product_view_summary.support_email #=> String
@@ -2350,14 +2431,13 @@ module Aws::ServiceCatalog
2350
2431
  # operation.
2351
2432
  #
2352
2433
  # @option params [String] :provisioned_product_name
2353
- # The name of the ProvisionedProduct object to terminate. You must
2354
- # specify either `ProvisionedProductName` or `ProvisionedProductId`, but
2355
- # not both.
2434
+ # The name of the ProvisionedProduct object to terminate. Specify either
2435
+ # `ProvisionedProductName` or `ProvisionedProductId`, but not both.
2356
2436
  #
2357
2437
  # @option params [String] :provisioned_product_id
2358
- # The identifier of the ProvisionedProduct object to terminate. You must
2359
- # specify either `ProvisionedProductName` or `ProvisionedProductId`, but
2360
- # not both.
2438
+ # The identifier of the ProvisionedProduct object to terminate. Specify
2439
+ # either `ProvisionedProductName` or `ProvisionedProductId`, but not
2440
+ # both.
2361
2441
  #
2362
2442
  # @option params [required, String] :terminate_token
2363
2443
  # An idempotency token that uniquely identifies the termination request.
@@ -2404,7 +2484,7 @@ module Aws::ServiceCatalog
2404
2484
  #
2405
2485
  # resp.record_detail.record_id #=> String
2406
2486
  # resp.record_detail.provisioned_product_name #=> String
2407
- # resp.record_detail.status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "ERROR"
2487
+ # resp.record_detail.status #=> String, one of "CREATED", "IN_PROGRESS", "IN_PROGRESS_IN_ERROR", "SUCCEEDED", "FAILED"
2408
2488
  # resp.record_detail.created_time #=> Time
2409
2489
  # resp.record_detail.updated_time #=> Time
2410
2490
  # resp.record_detail.provisioned_product_type #=> String
@@ -2481,7 +2561,7 @@ module Aws::ServiceCatalog
2481
2561
  req.send_request(options)
2482
2562
  end
2483
2563
 
2484
- # Updates the specified portfolio's details. This operation will not
2564
+ # Updates the specified portfolio's details. This operation does not
2485
2565
  # work with a product that has been shared with you.
2486
2566
  #
2487
2567
  # @option params [String] :accept_language
@@ -2637,7 +2717,7 @@ module Aws::ServiceCatalog
2637
2717
  # resp.product_view_detail.product_view_summary.name #=> String
2638
2718
  # resp.product_view_detail.product_view_summary.owner #=> String
2639
2719
  # resp.product_view_detail.product_view_summary.short_description #=> String
2640
- # resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
2720
+ # resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE"
2641
2721
  # resp.product_view_detail.product_view_summary.distributor #=> String
2642
2722
  # resp.product_view_detail.product_view_summary.has_default_path #=> Boolean
2643
2723
  # resp.product_view_detail.product_view_summary.support_email #=> String
@@ -2682,20 +2762,20 @@ module Aws::ServiceCatalog
2682
2762
  # If no code is specified, "en" is used as the default.
2683
2763
  #
2684
2764
  # @option params [String] :provisioned_product_name
2685
- # The updated name of the ProvisionedProduct object . You must specify
2686
- # either `ProvisionedProductName` or `ProvisionedProductId`, but not
2687
- # both.
2765
+ # The updated name of the ProvisionedProduct object. Specify either
2766
+ # `ProvisionedProductName` or `ProvisionedProductId`, but not both.
2688
2767
  #
2689
2768
  # @option params [String] :provisioned_product_id
2690
- # The identifier of the ProvisionedProduct object to update. You must
2691
- # specify either `ProvisionedProductName` or `ProvisionedProductId`, but
2692
- # not both.
2769
+ # The identifier of the ProvisionedProduct object to update. Specify
2770
+ # either `ProvisionedProductName` or `ProvisionedProductId`, but not
2771
+ # both.
2693
2772
  #
2694
2773
  # @option params [String] :product_id
2695
2774
  # The identifier of the ProvisionedProduct object.
2696
2775
  #
2697
2776
  # @option params [String] :provisioning_artifact_id
2698
- # The provisioning artifact identifier for this product.
2777
+ # The provisioning artifact identifier for this product. This is
2778
+ # sometimes referred to as the product version.
2699
2779
  #
2700
2780
  # @option params [String] :path_id
2701
2781
  # The identifier of the path to use in the updated ProvisionedProduct
@@ -2740,7 +2820,7 @@ module Aws::ServiceCatalog
2740
2820
  #
2741
2821
  # resp.record_detail.record_id #=> String
2742
2822
  # resp.record_detail.provisioned_product_name #=> String
2743
- # resp.record_detail.status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "ERROR"
2823
+ # resp.record_detail.status #=> String, one of "CREATED", "IN_PROGRESS", "IN_PROGRESS_IN_ERROR", "SUCCEEDED", "FAILED"
2744
2824
  # resp.record_detail.created_time #=> Time
2745
2825
  # resp.record_detail.updated_time #=> Time
2746
2826
  # resp.record_detail.provisioned_product_type #=> String
@@ -2766,7 +2846,7 @@ module Aws::ServiceCatalog
2766
2846
  end
2767
2847
 
2768
2848
  # Updates an existing provisioning artifact's information. This
2769
- # operation will not work on a provisioning artifact associated with a
2849
+ # operation does not work on a provisioning artifact associated with a
2770
2850
  # product that has been shared with you.
2771
2851
  #
2772
2852
  # @option params [String] :accept_language
@@ -2786,6 +2866,7 @@ module Aws::ServiceCatalog
2786
2866
  #
2787
2867
  # @option params [required, String] :provisioning_artifact_id
2788
2868
  # The identifier of the provisioning artifact for the update request.
2869
+ # This is sometimes referred to as the product version.
2789
2870
  #
2790
2871
  # @option params [String] :name
2791
2872
  # The updated name of the provisioning artifact.
@@ -2814,7 +2895,7 @@ module Aws::ServiceCatalog
2814
2895
  # resp.provisioning_artifact_detail.id #=> String
2815
2896
  # resp.provisioning_artifact_detail.name #=> String
2816
2897
  # resp.provisioning_artifact_detail.description #=> String
2817
- # resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE"
2898
+ # resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR"
2818
2899
  # resp.provisioning_artifact_detail.created_time #=> Time
2819
2900
  # resp.info #=> Hash
2820
2901
  # resp.info["ProvisioningArtifactInfoKey"] #=> String
@@ -2842,7 +2923,7 @@ module Aws::ServiceCatalog
2842
2923
  params: params,
2843
2924
  config: config)
2844
2925
  context[:gem_name] = 'aws-sdk-servicecatalog'
2845
- context[:gem_version] = '1.0.0.rc5'
2926
+ context[:gem_version] = '1.0.0.rc6'
2846
2927
  Seahorse::Client::Request.new(handlers, context)
2847
2928
  end
2848
2929
 
@@ -68,6 +68,8 @@ module Aws::ServiceCatalog
68
68
  DescribeProductOutput = Shapes::StructureShape.new(name: 'DescribeProductOutput')
69
69
  DescribeProductViewInput = Shapes::StructureShape.new(name: 'DescribeProductViewInput')
70
70
  DescribeProductViewOutput = Shapes::StructureShape.new(name: 'DescribeProductViewOutput')
71
+ DescribeProvisionedProductInput = Shapes::StructureShape.new(name: 'DescribeProvisionedProductInput')
72
+ DescribeProvisionedProductOutput = Shapes::StructureShape.new(name: 'DescribeProvisionedProductOutput')
71
73
  DescribeProvisioningArtifactInput = Shapes::StructureShape.new(name: 'DescribeProvisioningArtifactInput')
72
74
  DescribeProvisioningArtifactOutput = Shapes::StructureShape.new(name: 'DescribeProvisioningArtifactOutput')
73
75
  DescribeProvisioningParametersInput = Shapes::StructureShape.new(name: 'DescribeProvisioningParametersInput')
@@ -159,6 +161,7 @@ module Aws::ServiceCatalog
159
161
  ProvisionedProductId = Shapes::StringShape.new(name: 'ProvisionedProductId')
160
162
  ProvisionedProductName = Shapes::StringShape.new(name: 'ProvisionedProductName')
161
163
  ProvisionedProductNameOrArn = Shapes::StringShape.new(name: 'ProvisionedProductNameOrArn')
164
+ ProvisionedProductStatus = Shapes::StringShape.new(name: 'ProvisionedProductStatus')
162
165
  ProvisionedProductStatusMessage = Shapes::StringShape.new(name: 'ProvisionedProductStatusMessage')
163
166
  ProvisionedProductType = Shapes::StringShape.new(name: 'ProvisionedProductType')
164
167
  ProvisioningArtifact = Shapes::StructureShape.new(name: 'ProvisioningArtifact')
@@ -173,6 +176,8 @@ module Aws::ServiceCatalog
173
176
  ProvisioningArtifactParameter = Shapes::StructureShape.new(name: 'ProvisioningArtifactParameter')
174
177
  ProvisioningArtifactParameters = Shapes::ListShape.new(name: 'ProvisioningArtifactParameters')
175
178
  ProvisioningArtifactProperties = Shapes::StructureShape.new(name: 'ProvisioningArtifactProperties')
179
+ ProvisioningArtifactSummaries = Shapes::ListShape.new(name: 'ProvisioningArtifactSummaries')
180
+ ProvisioningArtifactSummary = Shapes::StructureShape.new(name: 'ProvisioningArtifactSummary')
176
181
  ProvisioningArtifactType = Shapes::StringShape.new(name: 'ProvisioningArtifactType')
177
182
  ProvisioningArtifacts = Shapes::ListShape.new(name: 'ProvisioningArtifacts')
178
183
  ProvisioningParameter = Shapes::StructureShape.new(name: 'ProvisioningParameter')
@@ -230,6 +235,7 @@ module Aws::ServiceCatalog
230
235
  UsageInstruction = Shapes::StructureShape.new(name: 'UsageInstruction')
231
236
  UsageInstructions = Shapes::ListShape.new(name: 'UsageInstructions')
232
237
  UsePreviousValue = Shapes::BooleanShape.new(name: 'UsePreviousValue')
238
+ Verbose = Shapes::BooleanShape.new(name: 'Verbose')
233
239
 
234
240
  AcceptPortfolioShareInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
235
241
  AcceptPortfolioShareInput.add_member(:portfolio_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "PortfolioId"))
@@ -394,6 +400,7 @@ module Aws::ServiceCatalog
394
400
  DescribeProductAsAdminInput.struct_class = Types::DescribeProductAsAdminInput
395
401
 
396
402
  DescribeProductAsAdminOutput.add_member(:product_view_detail, Shapes::ShapeRef.new(shape: ProductViewDetail, location_name: "ProductViewDetail"))
403
+ DescribeProductAsAdminOutput.add_member(:provisioning_artifact_summaries, Shapes::ShapeRef.new(shape: ProvisioningArtifactSummaries, location_name: "ProvisioningArtifactSummaries"))
397
404
  DescribeProductAsAdminOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
398
405
  DescribeProductAsAdminOutput.struct_class = Types::DescribeProductAsAdminOutput
399
406
 
@@ -413,9 +420,17 @@ module Aws::ServiceCatalog
413
420
  DescribeProductViewOutput.add_member(:provisioning_artifacts, Shapes::ShapeRef.new(shape: ProvisioningArtifacts, location_name: "ProvisioningArtifacts"))
414
421
  DescribeProductViewOutput.struct_class = Types::DescribeProductViewOutput
415
422
 
423
+ DescribeProvisionedProductInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
424
+ DescribeProvisionedProductInput.add_member(:id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "Id"))
425
+ DescribeProvisionedProductInput.struct_class = Types::DescribeProvisionedProductInput
426
+
427
+ DescribeProvisionedProductOutput.add_member(:provisioned_product_detail, Shapes::ShapeRef.new(shape: ProvisionedProductDetail, location_name: "ProvisionedProductDetail"))
428
+ DescribeProvisionedProductOutput.struct_class = Types::DescribeProvisionedProductOutput
429
+
416
430
  DescribeProvisioningArtifactInput.add_member(:accept_language, Shapes::ShapeRef.new(shape: AcceptLanguage, location_name: "AcceptLanguage"))
417
431
  DescribeProvisioningArtifactInput.add_member(:provisioning_artifact_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProvisioningArtifactId"))
418
432
  DescribeProvisioningArtifactInput.add_member(:product_id, Shapes::ShapeRef.new(shape: Id, required: true, location_name: "ProductId"))
433
+ DescribeProvisioningArtifactInput.add_member(:verbose, Shapes::ShapeRef.new(shape: Verbose, location_name: "Verbose"))
419
434
  DescribeProvisioningArtifactInput.struct_class = Types::DescribeProvisioningArtifactInput
420
435
 
421
436
  DescribeProvisioningArtifactOutput.add_member(:provisioning_artifact_detail, Shapes::ShapeRef.new(shape: ProvisioningArtifactDetail, location_name: "ProvisioningArtifactDetail"))
@@ -633,7 +648,7 @@ module Aws::ServiceCatalog
633
648
  ProvisionedProductDetail.add_member(:arn, Shapes::ShapeRef.new(shape: ProvisionedProductNameOrArn, location_name: "Arn"))
634
649
  ProvisionedProductDetail.add_member(:type, Shapes::ShapeRef.new(shape: ProvisionedProductType, location_name: "Type"))
635
650
  ProvisionedProductDetail.add_member(:id, Shapes::ShapeRef.new(shape: ProvisionedProductId, location_name: "Id"))
636
- ProvisionedProductDetail.add_member(:status, Shapes::ShapeRef.new(shape: RecordStatus, location_name: "Status"))
651
+ ProvisionedProductDetail.add_member(:status, Shapes::ShapeRef.new(shape: ProvisionedProductStatus, location_name: "Status"))
637
652
  ProvisionedProductDetail.add_member(:status_message, Shapes::ShapeRef.new(shape: ProvisionedProductStatusMessage, location_name: "StatusMessage"))
638
653
  ProvisionedProductDetail.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "CreatedTime"))
639
654
  ProvisionedProductDetail.add_member(:idempotency_token, Shapes::ShapeRef.new(shape: IdempotencyToken, location_name: "IdempotencyToken"))
@@ -676,6 +691,15 @@ module Aws::ServiceCatalog
676
691
  ProvisioningArtifactProperties.add_member(:type, Shapes::ShapeRef.new(shape: ProvisioningArtifactType, location_name: "Type"))
677
692
  ProvisioningArtifactProperties.struct_class = Types::ProvisioningArtifactProperties
678
693
 
694
+ ProvisioningArtifactSummaries.member = Shapes::ShapeRef.new(shape: ProvisioningArtifactSummary)
695
+
696
+ ProvisioningArtifactSummary.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
697
+ ProvisioningArtifactSummary.add_member(:name, Shapes::ShapeRef.new(shape: ProvisioningArtifactName, location_name: "Name"))
698
+ ProvisioningArtifactSummary.add_member(:description, Shapes::ShapeRef.new(shape: ProvisioningArtifactDescription, location_name: "Description"))
699
+ ProvisioningArtifactSummary.add_member(:created_time, Shapes::ShapeRef.new(shape: ProvisioningArtifactCreatedTime, location_name: "CreatedTime"))
700
+ ProvisioningArtifactSummary.add_member(:provisioning_artifact_metadata, Shapes::ShapeRef.new(shape: ProvisioningArtifactInfo, location_name: "ProvisioningArtifactMetadata"))
701
+ ProvisioningArtifactSummary.struct_class = Types::ProvisioningArtifactSummary
702
+
679
703
  ProvisioningArtifacts.member = Shapes::ShapeRef.new(shape: ProvisioningArtifact)
680
704
 
681
705
  ProvisioningParameter.add_member(:key, Shapes::ShapeRef.new(shape: ParameterKey, location_name: "Key"))
@@ -1060,6 +1084,15 @@ module Aws::ServiceCatalog
1060
1084
  o.errors << Shapes::ShapeRef.new(shape: InvalidParametersException)
1061
1085
  end)
1062
1086
 
1087
+ api.add_operation(:describe_provisioned_product, Seahorse::Model::Operation.new.tap do |o|
1088
+ o.name = "DescribeProvisionedProduct"
1089
+ o.http_method = "POST"
1090
+ o.http_request_uri = "/"
1091
+ o.input = Shapes::ShapeRef.new(shape: DescribeProvisionedProductInput)
1092
+ o.output = Shapes::ShapeRef.new(shape: DescribeProvisionedProductOutput)
1093
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1094
+ end)
1095
+
1063
1096
  api.add_operation(:describe_provisioning_artifact, Seahorse::Model::Operation.new.tap do |o|
1064
1097
  o.name = "DescribeProvisioningArtifact"
1065
1098
  o.http_method = "POST"
@@ -259,11 +259,20 @@ module Aws::ServiceCatalog
259
259
  # @return [String]
260
260
  #
261
261
  # @!attribute [rw] parameters
262
- # The constraint parameters.
262
+ # The constraint parameters. Expected values vary depending on which
263
+ # **Type** is specified. For examples, see the bottom of this topic.
264
+ #
265
+ # For Type `LAUNCH`, the `RoleArn` property is required.
266
+ #
267
+ # For Type `NOTIFICATION`, the `NotificationArns` property is
268
+ # required.
269
+ #
270
+ # For Type `TEMPLATE`, the `Rules` property is required.
263
271
  # @return [String]
264
272
  #
265
273
  # @!attribute [rw] type
266
- # The type of the constraint.
274
+ # The type of the constraint. Case-sensitive valid values are:
275
+ # `LAUNCH`, `NOTIFICATION`, or `TEMPLATE`.
267
276
  # @return [String]
268
277
  #
269
278
  # @!attribute [rw] description
@@ -451,7 +460,7 @@ module Aws::ServiceCatalog
451
460
  # support_description: "SupportDescription",
452
461
  # support_email: "SupportEmail",
453
462
  # support_url: "SupportUrl",
454
- # product_type: "CLOUD_FORMATION_TEMPLATE", # required, accepts CLOUD_FORMATION_TEMPLATE
463
+ # product_type: "CLOUD_FORMATION_TEMPLATE", # required, accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE
455
464
  # tags: [
456
465
  # {
457
466
  # key: "TagKey", # required
@@ -464,7 +473,7 @@ module Aws::ServiceCatalog
464
473
  # info: { # required
465
474
  # "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
466
475
  # },
467
- # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE
476
+ # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
468
477
  # },
469
478
  # idempotency_token: "IdempotencyToken", # required
470
479
  # }
@@ -582,7 +591,7 @@ module Aws::ServiceCatalog
582
591
  # info: { # required
583
592
  # "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
584
593
  # },
585
- # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE
594
+ # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
586
595
  # },
587
596
  # idempotency_token: "IdempotencyToken", # required
588
597
  # }
@@ -632,8 +641,8 @@ module Aws::ServiceCatalog
632
641
  # @return [Types::ProvisioningArtifactDetail]
633
642
  #
634
643
  # @!attribute [rw] info
635
- # Additional information about the provisioning artifact create
636
- # request.
644
+ # Additional information about the creation request for the
645
+ # provisioning artifact.
637
646
  # @return [Hash<String,String>]
638
647
  #
639
648
  # @!attribute [rw] status
@@ -831,6 +840,7 @@ module Aws::ServiceCatalog
831
840
  #
832
841
  # @!attribute [rw] provisioning_artifact_id
833
842
  # The identifier of the provisioning artifact for the delete request.
843
+ # This is sometimes referred to as the product version.
834
844
  # @return [String]
835
845
  #
836
846
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteProvisioningArtifactInput AWS API Documentation
@@ -986,6 +996,10 @@ module Aws::ServiceCatalog
986
996
  # Detailed product view information.
987
997
  # @return [Types::ProductViewDetail]
988
998
  #
999
+ # @!attribute [rw] provisioning_artifact_summaries
1000
+ # A list of provisioning artifact summaries for the product.
1001
+ # @return [Array<Types::ProvisioningArtifactSummary>]
1002
+ #
989
1003
  # @!attribute [rw] tags
990
1004
  # Tags associated with the product.
991
1005
  # @return [Array<Types::Tag>]
@@ -994,6 +1008,7 @@ module Aws::ServiceCatalog
994
1008
  #
995
1009
  class DescribeProductAsAdminOutput < Struct.new(
996
1010
  :product_view_detail,
1011
+ :provisioning_artifact_summaries,
997
1012
  :tags)
998
1013
  include Aws::Structure
999
1014
  end
@@ -1100,6 +1115,50 @@ module Aws::ServiceCatalog
1100
1115
  include Aws::Structure
1101
1116
  end
1102
1117
 
1118
+ # @note When making an API call, you may pass DescribeProvisionedProductInput
1119
+ # data as a hash:
1120
+ #
1121
+ # {
1122
+ # accept_language: "AcceptLanguage",
1123
+ # id: "Id", # required
1124
+ # }
1125
+ #
1126
+ # @!attribute [rw] accept_language
1127
+ # The language code to use for this operation. Supported language
1128
+ # codes are as follows:
1129
+ #
1130
+ # "en" (English)
1131
+ #
1132
+ # "jp" (Japanese)
1133
+ #
1134
+ # "zh" (Chinese)
1135
+ #
1136
+ # If no code is specified, "en" is used as the default.
1137
+ # @return [String]
1138
+ #
1139
+ # @!attribute [rw] id
1140
+ # The provisioned product identifier.
1141
+ # @return [String]
1142
+ #
1143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProductInput AWS API Documentation
1144
+ #
1145
+ class DescribeProvisionedProductInput < Struct.new(
1146
+ :accept_language,
1147
+ :id)
1148
+ include Aws::Structure
1149
+ end
1150
+
1151
+ # @!attribute [rw] provisioned_product_detail
1152
+ # Detailed provisioned product information.
1153
+ # @return [Types::ProvisionedProductDetail]
1154
+ #
1155
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProductOutput AWS API Documentation
1156
+ #
1157
+ class DescribeProvisionedProductOutput < Struct.new(
1158
+ :provisioned_product_detail)
1159
+ include Aws::Structure
1160
+ end
1161
+
1103
1162
  # @note When making an API call, you may pass DescribeProvisioningArtifactInput
1104
1163
  # data as a hash:
1105
1164
  #
@@ -1107,6 +1166,7 @@ module Aws::ServiceCatalog
1107
1166
  # accept_language: "AcceptLanguage",
1108
1167
  # provisioning_artifact_id: "Id", # required
1109
1168
  # product_id: "Id", # required
1169
+ # verbose: false,
1110
1170
  # }
1111
1171
  #
1112
1172
  # @!attribute [rw] accept_language
@@ -1123,19 +1183,26 @@ module Aws::ServiceCatalog
1123
1183
  # @return [String]
1124
1184
  #
1125
1185
  # @!attribute [rw] provisioning_artifact_id
1126
- # The identifier of the provisioning artifact.
1186
+ # The identifier of the provisioning artifact. This is sometimes
1187
+ # referred to as the product version.
1127
1188
  # @return [String]
1128
1189
  #
1129
1190
  # @!attribute [rw] product_id
1130
1191
  # The product identifier.
1131
1192
  # @return [String]
1132
1193
  #
1194
+ # @!attribute [rw] verbose
1195
+ # Selects verbose results. If set to true, the CloudFormation template
1196
+ # is returned.
1197
+ # @return [Boolean]
1198
+ #
1133
1199
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisioningArtifactInput AWS API Documentation
1134
1200
  #
1135
1201
  class DescribeProvisioningArtifactInput < Struct.new(
1136
1202
  :accept_language,
1137
1203
  :provisioning_artifact_id,
1138
- :product_id)
1204
+ :product_id,
1205
+ :verbose)
1139
1206
  include Aws::Structure
1140
1207
  end
1141
1208
 
@@ -1188,7 +1255,8 @@ module Aws::ServiceCatalog
1188
1255
  # @return [String]
1189
1256
  #
1190
1257
  # @!attribute [rw] provisioning_artifact_id
1191
- # The provisioning artifact identifier for this product.
1258
+ # The provisioning artifact identifier for this product. This is
1259
+ # sometimes referred to as the product version.
1192
1260
  # @return [String]
1193
1261
  #
1194
1262
  # @!attribute [rw] path_id
@@ -2112,6 +2180,12 @@ module Aws::ServiceCatalog
2112
2180
  #
2113
2181
  # @!attribute [rw] status
2114
2182
  # Current status of the product.
2183
+ #
2184
+ # `AVAILABLE` - Product is available for use.
2185
+ #
2186
+ # `CREATING` - Creation of product started, not ready for use.
2187
+ #
2188
+ # `FAILED` - Action on product failed.
2115
2189
  # @return [String]
2116
2190
  #
2117
2191
  # @!attribute [rw] product_arn
@@ -2157,7 +2231,8 @@ module Aws::ServiceCatalog
2157
2231
  #
2158
2232
  # @!attribute [rw] type
2159
2233
  # The product type. Contact the product administrator for the
2160
- # significance of this value.
2234
+ # significance of this value. If this value is `MARKETPLACE`, the
2235
+ # product was created by AWS Marketplace.
2161
2236
  # @return [String]
2162
2237
  #
2163
2238
  # @!attribute [rw] distributor
@@ -2246,7 +2321,8 @@ module Aws::ServiceCatalog
2246
2321
  # @return [String]
2247
2322
  #
2248
2323
  # @!attribute [rw] provisioning_artifact_id
2249
- # The provisioning artifact identifier for this product.
2324
+ # The provisioning artifact identifier for this product. This is
2325
+ # sometimes referred to as the product version.
2250
2326
  # @return [String]
2251
2327
  #
2252
2328
  # @!attribute [rw] path_id
@@ -2332,6 +2408,23 @@ module Aws::ServiceCatalog
2332
2408
  #
2333
2409
  # @!attribute [rw] status
2334
2410
  # The current status of the ProvisionedProduct.
2411
+ #
2412
+ # `AVAILABLE` - Stable state, ready to perform any operation. The most
2413
+ # recent action request succeeded and completed.
2414
+ #
2415
+ # `UNDER_CHANGE` - Transitive state, operations performed may or may
2416
+ # not have valid results. Wait for an `AVAILABLE` status before
2417
+ # performing operations.
2418
+ #
2419
+ # `TAINTED` - Stable state, ready to perform any operation. The stack
2420
+ # has completed the requested operation but is not exactly what was
2421
+ # requested. For example, a request to update to a new version failed
2422
+ # and the stack rolled back to the current version.
2423
+ #
2424
+ # `ERROR` - Something unexpected happened such that the provisioned
2425
+ # product exists but the stack is not running. For example,
2426
+ # CloudFormation received an invalid parameter value and could not
2427
+ # launch the stack.
2335
2428
  # @return [String]
2336
2429
  #
2337
2430
  # @!attribute [rw] status_message
@@ -2372,7 +2465,8 @@ module Aws::ServiceCatalog
2372
2465
  # provisioned.
2373
2466
  #
2374
2467
  # @!attribute [rw] id
2375
- # The identifier for the artifact.
2468
+ # The identifier for the artifact. This is sometimes referred to as
2469
+ # the product version.
2376
2470
  # @return [String]
2377
2471
  #
2378
2472
  # @!attribute [rw] name
@@ -2400,7 +2494,8 @@ module Aws::ServiceCatalog
2400
2494
  # Detailed provisioning artifact information.
2401
2495
  #
2402
2496
  # @!attribute [rw] id
2403
- # The identifier of the provisioning artifact.
2497
+ # The identifier of the provisioning artifact. This is sometimes
2498
+ # referred to as the product version.
2404
2499
  # @return [String]
2405
2500
  #
2406
2501
  # @!attribute [rw] name
@@ -2412,7 +2507,12 @@ module Aws::ServiceCatalog
2412
2507
  # @return [String]
2413
2508
  #
2414
2509
  # @!attribute [rw] type
2415
- # The type of the provisioning artifact.
2510
+ # The type of the provisioning artifact. The following provisioning
2511
+ # artifact types are used by AWS Marketplace products:
2512
+ #
2513
+ # `MARKETPLACE_AMI` - AMI products.
2514
+ #
2515
+ # `MARKETPLACE_CAR` - CAR (Cluster and AWS Resources) products.
2416
2516
  # @return [String]
2417
2517
  #
2418
2518
  # @!attribute [rw] created_time
@@ -2472,7 +2572,8 @@ module Aws::ServiceCatalog
2472
2572
  include Aws::Structure
2473
2573
  end
2474
2574
 
2475
- # Provisioning artifact properties.
2575
+ # Provisioning artifact properties. For example request JSON, see
2576
+ # CreateProvisioningArtifact.
2476
2577
  #
2477
2578
  # @note When making an API call, you may pass ProvisioningArtifactProperties
2478
2579
  # data as a hash:
@@ -2483,7 +2584,7 @@ module Aws::ServiceCatalog
2483
2584
  # info: { # required
2484
2585
  # "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
2485
2586
  # },
2486
- # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE
2587
+ # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
2487
2588
  # }
2488
2589
  #
2489
2590
  # @!attribute [rw] name
@@ -2496,10 +2597,19 @@ module Aws::ServiceCatalog
2496
2597
  #
2497
2598
  # @!attribute [rw] info
2498
2599
  # Additional information about the provisioning artifact properties.
2600
+ # When using this element in a request, you must specify
2601
+ # `LoadTemplateFromURL`. For more information, see
2602
+ # CreateProvisioningArtifact.
2499
2603
  # @return [Hash<String,String>]
2500
2604
  #
2501
2605
  # @!attribute [rw] type
2502
- # The type of the provisioning artifact properties.
2606
+ # The type of the provisioning artifact properties. The following
2607
+ # provisioning artifact property types are used by AWS Marketplace
2608
+ # products:
2609
+ #
2610
+ # `MARKETPLACE_AMI` - AMI products.
2611
+ #
2612
+ # `MARKETPLACE_CAR` - CAR (Cluster and AWS Resources) products.
2503
2613
  # @return [String]
2504
2614
  #
2505
2615
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactProperties AWS API Documentation
@@ -2512,7 +2622,41 @@ module Aws::ServiceCatalog
2512
2622
  include Aws::Structure
2513
2623
  end
2514
2624
 
2515
- # The arameter key/value pairs used to provision a product.
2625
+ # Summary information about a provisioning artifact.
2626
+ #
2627
+ # @!attribute [rw] id
2628
+ # The provisioning artifact identifier.
2629
+ # @return [String]
2630
+ #
2631
+ # @!attribute [rw] name
2632
+ # The provisioning artifact name.
2633
+ # @return [String]
2634
+ #
2635
+ # @!attribute [rw] description
2636
+ # The provisioning artifact description.
2637
+ # @return [String]
2638
+ #
2639
+ # @!attribute [rw] created_time
2640
+ # The UTC timestamp of the creation time.
2641
+ # @return [Time]
2642
+ #
2643
+ # @!attribute [rw] provisioning_artifact_metadata
2644
+ # The provisioning artifact metadata. This data is used with products
2645
+ # created by AWS Marketplace.
2646
+ # @return [Hash<String,String>]
2647
+ #
2648
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactSummary AWS API Documentation
2649
+ #
2650
+ class ProvisioningArtifactSummary < Struct.new(
2651
+ :id,
2652
+ :name,
2653
+ :description,
2654
+ :created_time,
2655
+ :provisioning_artifact_metadata)
2656
+ include Aws::Structure
2657
+ end
2658
+
2659
+ # The parameter key-value pairs used to provision a product.
2516
2660
  #
2517
2661
  # @note When making an API call, you may pass ProvisioningParameter
2518
2662
  # data as a hash:
@@ -2552,6 +2696,19 @@ module Aws::ServiceCatalog
2552
2696
  #
2553
2697
  # @!attribute [rw] status
2554
2698
  # The status of the ProvisionedProduct object.
2699
+ #
2700
+ # `CREATED` - Request created but the operation has not yet started.
2701
+ #
2702
+ # `IN_PROGRESS` - The requested operation is in-progress.
2703
+ #
2704
+ # `IN_PROGRESS_IN_ERROR` - The provisioned product is under change but
2705
+ # the requested operation failed and some remediation is occurring.
2706
+ # For example, a roll-back.
2707
+ #
2708
+ # `SUCCEEDED` - The requested operation has successfully completed.
2709
+ #
2710
+ # `FAILED` - The requested operation has completed but has failed.
2711
+ # Investigate using the error messages returned.
2555
2712
  # @return [String]
2556
2713
  #
2557
2714
  # @!attribute [rw] created_time
@@ -2580,7 +2737,8 @@ module Aws::ServiceCatalog
2580
2737
  # @return [String]
2581
2738
  #
2582
2739
  # @!attribute [rw] provisioning_artifact_id
2583
- # The provisioning artifact identifier for this product.
2740
+ # The provisioning artifact identifier for this product. This is
2741
+ # sometimes referred to as the product version.
2584
2742
  # @return [String]
2585
2743
  #
2586
2744
  # @!attribute [rw] path_id
@@ -2982,7 +3140,7 @@ module Aws::ServiceCatalog
2982
3140
  # @return [String]
2983
3141
  #
2984
3142
  # @!attribute [rw] value
2985
- # The esired value for this key.
3143
+ # The desired value for this key.
2986
3144
  # @return [String]
2987
3145
  #
2988
3146
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/Tag AWS API Documentation
@@ -3005,15 +3163,15 @@ module Aws::ServiceCatalog
3005
3163
  # }
3006
3164
  #
3007
3165
  # @!attribute [rw] provisioned_product_name
3008
- # The name of the ProvisionedProduct object to terminate. You must
3009
- # specify either `ProvisionedProductName` or `ProvisionedProductId`,
3010
- # but not both.
3166
+ # The name of the ProvisionedProduct object to terminate. Specify
3167
+ # either `ProvisionedProductName` or `ProvisionedProductId`, but not
3168
+ # both.
3011
3169
  # @return [String]
3012
3170
  #
3013
3171
  # @!attribute [rw] provisioned_product_id
3014
- # The identifier of the ProvisionedProduct object to terminate. You
3015
- # must specify either `ProvisionedProductName` or
3016
- # `ProvisionedProductId`, but not both.
3172
+ # The identifier of the ProvisionedProduct object to terminate.
3173
+ # Specify either `ProvisionedProductName` or `ProvisionedProductId`,
3174
+ # but not both.
3017
3175
  # @return [String]
3018
3176
  #
3019
3177
  # @!attribute [rw] terminate_token
@@ -3361,15 +3519,14 @@ module Aws::ServiceCatalog
3361
3519
  # @return [String]
3362
3520
  #
3363
3521
  # @!attribute [rw] provisioned_product_name
3364
- # The updated name of the ProvisionedProduct object . You must specify
3365
- # either `ProvisionedProductName` or `ProvisionedProductId`, but not
3366
- # both.
3522
+ # The updated name of the ProvisionedProduct object. Specify either
3523
+ # `ProvisionedProductName` or `ProvisionedProductId`, but not both.
3367
3524
  # @return [String]
3368
3525
  #
3369
3526
  # @!attribute [rw] provisioned_product_id
3370
- # The identifier of the ProvisionedProduct object to update. You must
3371
- # specify either `ProvisionedProductName` or `ProvisionedProductId`,
3372
- # but not both.
3527
+ # The identifier of the ProvisionedProduct object to update. Specify
3528
+ # either `ProvisionedProductName` or `ProvisionedProductId`, but not
3529
+ # both.
3373
3530
  # @return [String]
3374
3531
  #
3375
3532
  # @!attribute [rw] product_id
@@ -3377,7 +3534,8 @@ module Aws::ServiceCatalog
3377
3534
  # @return [String]
3378
3535
  #
3379
3536
  # @!attribute [rw] provisioning_artifact_id
3380
- # The provisioning artifact identifier for this product.
3537
+ # The provisioning artifact identifier for this product. This is
3538
+ # sometimes referred to as the product version.
3381
3539
  # @return [String]
3382
3540
  #
3383
3541
  # @!attribute [rw] path_id
@@ -3458,6 +3616,7 @@ module Aws::ServiceCatalog
3458
3616
  #
3459
3617
  # @!attribute [rw] provisioning_artifact_id
3460
3618
  # The identifier of the provisioning artifact for the update request.
3619
+ # This is sometimes referred to as the product version.
3461
3620
  # @return [String]
3462
3621
  #
3463
3622
  # @!attribute [rw] name
@@ -3501,7 +3660,7 @@ module Aws::ServiceCatalog
3501
3660
  include Aws::Structure
3502
3661
  end
3503
3662
 
3504
- # The parameter key/value pair used to update a ProvisionedProduct
3663
+ # The parameter key-value pair used to update a ProvisionedProduct
3505
3664
  # object. If `UsePreviousValue` is set to true, `Value` is ignored and
3506
3665
  # the value for `Key` is kept as previously set (current value).
3507
3666
  #
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.0.0.rc5
4
+ version: 1.0.0.rc6
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: 2017-05-23 00:00:00.000000000 Z
11
+ date: 2017-06-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 3.0.0.rc12
19
+ version: 3.0.0.rc13
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 3.0.0.rc12
26
+ version: 3.0.0.rc13
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: aws-sigv4
29
29
  requirement: !ruby/object:Gem::Requirement