aws-sdk-servicecatalog 1.85.0 → 1.86.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-servicecatalog/client.rb +27 -23
- data/lib/aws-sdk-servicecatalog/types.rb +15 -21
- data/lib/aws-sdk-servicecatalog.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db9801f1f63f858982866d6cd6d7214b984e84932c300170a17bcaf09999b4f8
|
|
4
|
+
data.tar.gz: e791cff5df8bae8eb3e1a959cefcbf19fce1384cb142cef0be36e2687fb1754f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e9a7f2f3f47011d1268a6808b8685885f05f477ab45f37b5665871fd483a133d9730ffb5add5c62974d47e86b25f1981c87636667f3996291af5de543235f3a
|
|
7
|
+
data.tar.gz: e233e21d6ec470e44d3853ef7fe822f164168b924df8b12306b8215d1aff7bf299386dbeacd8ab0f66606bf366b1ed51b48bfd720822bba0bd35f68bf1eb2926
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.86.0 (2023-08-08)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Introduce support for HashiCorp Terraform Cloud in Service Catalog by addying TERRAFORM_CLOUD product type in CreateProduct and CreateProvisioningArtifact API.
|
|
8
|
+
|
|
4
9
|
1.85.0 (2023-07-11)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.86.0
|
|
@@ -1285,7 +1285,7 @@ module Aws::ServiceCatalog
|
|
|
1285
1285
|
# support_description: "SupportDescription",
|
|
1286
1286
|
# support_email: "SupportEmail",
|
|
1287
1287
|
# support_url: "SupportUrl",
|
|
1288
|
-
# product_type: "CLOUD_FORMATION_TEMPLATE", # required, accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE, TERRAFORM_OPEN_SOURCE
|
|
1288
|
+
# product_type: "CLOUD_FORMATION_TEMPLATE", # required, accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD
|
|
1289
1289
|
# tags: [
|
|
1290
1290
|
# {
|
|
1291
1291
|
# key: "TagKey", # required
|
|
@@ -1298,7 +1298,7 @@ module Aws::ServiceCatalog
|
|
|
1298
1298
|
# info: {
|
|
1299
1299
|
# "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
|
|
1300
1300
|
# },
|
|
1301
|
-
# type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR, TERRAFORM_OPEN_SOURCE
|
|
1301
|
+
# type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD
|
|
1302
1302
|
# disable_template_validation: false,
|
|
1303
1303
|
# },
|
|
1304
1304
|
# idempotency_token: "IdempotencyToken", # required
|
|
@@ -1322,7 +1322,7 @@ module Aws::ServiceCatalog
|
|
|
1322
1322
|
# resp.product_view_detail.product_view_summary.name #=> String
|
|
1323
1323
|
# resp.product_view_detail.product_view_summary.owner #=> String
|
|
1324
1324
|
# resp.product_view_detail.product_view_summary.short_description #=> String
|
|
1325
|
-
# resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE"
|
|
1325
|
+
# resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
1326
1326
|
# resp.product_view_detail.product_view_summary.distributor #=> String
|
|
1327
1327
|
# resp.product_view_detail.product_view_summary.has_default_path #=> Boolean
|
|
1328
1328
|
# resp.product_view_detail.product_view_summary.support_email #=> String
|
|
@@ -1344,7 +1344,7 @@ module Aws::ServiceCatalog
|
|
|
1344
1344
|
# resp.provisioning_artifact_detail.id #=> String
|
|
1345
1345
|
# resp.provisioning_artifact_detail.name #=> String
|
|
1346
1346
|
# resp.provisioning_artifact_detail.description #=> String
|
|
1347
|
-
# resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR", "TERRAFORM_OPEN_SOURCE"
|
|
1347
|
+
# resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
1348
1348
|
# resp.provisioning_artifact_detail.created_time #=> Time
|
|
1349
1349
|
# resp.provisioning_artifact_detail.active #=> Boolean
|
|
1350
1350
|
# resp.provisioning_artifact_detail.guidance #=> String, one of "DEFAULT", "DEPRECATED"
|
|
@@ -1530,7 +1530,7 @@ module Aws::ServiceCatalog
|
|
|
1530
1530
|
# info: {
|
|
1531
1531
|
# "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
|
|
1532
1532
|
# },
|
|
1533
|
-
# type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR, TERRAFORM_OPEN_SOURCE
|
|
1533
|
+
# type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD
|
|
1534
1534
|
# disable_template_validation: false,
|
|
1535
1535
|
# },
|
|
1536
1536
|
# idempotency_token: "IdempotencyToken", # required
|
|
@@ -1541,7 +1541,7 @@ module Aws::ServiceCatalog
|
|
|
1541
1541
|
# resp.provisioning_artifact_detail.id #=> String
|
|
1542
1542
|
# resp.provisioning_artifact_detail.name #=> String
|
|
1543
1543
|
# resp.provisioning_artifact_detail.description #=> String
|
|
1544
|
-
# resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR", "TERRAFORM_OPEN_SOURCE"
|
|
1544
|
+
# resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
1545
1545
|
# resp.provisioning_artifact_detail.created_time #=> Time
|
|
1546
1546
|
# resp.provisioning_artifact_detail.active #=> Boolean
|
|
1547
1547
|
# resp.provisioning_artifact_detail.guidance #=> String, one of "DEFAULT", "DEPRECATED"
|
|
@@ -2274,7 +2274,7 @@ module Aws::ServiceCatalog
|
|
|
2274
2274
|
# resp.product_view_summary.name #=> String
|
|
2275
2275
|
# resp.product_view_summary.owner #=> String
|
|
2276
2276
|
# resp.product_view_summary.short_description #=> String
|
|
2277
|
-
# resp.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE"
|
|
2277
|
+
# resp.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
2278
2278
|
# resp.product_view_summary.distributor #=> String
|
|
2279
2279
|
# resp.product_view_summary.has_default_path #=> Boolean
|
|
2280
2280
|
# resp.product_view_summary.support_email #=> String
|
|
@@ -2351,7 +2351,7 @@ module Aws::ServiceCatalog
|
|
|
2351
2351
|
# resp.product_view_detail.product_view_summary.name #=> String
|
|
2352
2352
|
# resp.product_view_detail.product_view_summary.owner #=> String
|
|
2353
2353
|
# resp.product_view_detail.product_view_summary.short_description #=> String
|
|
2354
|
-
# resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE"
|
|
2354
|
+
# resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
2355
2355
|
# resp.product_view_detail.product_view_summary.distributor #=> String
|
|
2356
2356
|
# resp.product_view_detail.product_view_summary.has_default_path #=> Boolean
|
|
2357
2357
|
# resp.product_view_detail.product_view_summary.support_email #=> String
|
|
@@ -2429,7 +2429,7 @@ module Aws::ServiceCatalog
|
|
|
2429
2429
|
# resp.product_view_summary.name #=> String
|
|
2430
2430
|
# resp.product_view_summary.owner #=> String
|
|
2431
2431
|
# resp.product_view_summary.short_description #=> String
|
|
2432
|
-
# resp.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE"
|
|
2432
|
+
# resp.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
2433
2433
|
# resp.product_view_summary.distributor #=> String
|
|
2434
2434
|
# resp.product_view_summary.has_default_path #=> Boolean
|
|
2435
2435
|
# resp.product_view_summary.support_email #=> String
|
|
@@ -2650,7 +2650,7 @@ module Aws::ServiceCatalog
|
|
|
2650
2650
|
# resp.provisioning_artifact_detail.id #=> String
|
|
2651
2651
|
# resp.provisioning_artifact_detail.name #=> String
|
|
2652
2652
|
# resp.provisioning_artifact_detail.description #=> String
|
|
2653
|
-
# resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR", "TERRAFORM_OPEN_SOURCE"
|
|
2653
|
+
# resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
2654
2654
|
# resp.provisioning_artifact_detail.created_time #=> Time
|
|
2655
2655
|
# resp.provisioning_artifact_detail.active #=> Boolean
|
|
2656
2656
|
# resp.provisioning_artifact_detail.guidance #=> String, one of "DEFAULT", "DEPRECATED"
|
|
@@ -3490,7 +3490,7 @@ module Aws::ServiceCatalog
|
|
|
3490
3490
|
# are supported on the provisioned product.
|
|
3491
3491
|
#
|
|
3492
3492
|
# Resource import only supports CloudFormation stack ARNs.
|
|
3493
|
-
# CloudFormation StackSets, and non-root nested stacks are not
|
|
3493
|
+
# CloudFormation StackSets, and non-root nested stacks, are not
|
|
3494
3494
|
# supported.
|
|
3495
3495
|
#
|
|
3496
3496
|
# The CloudFormation stack must have one of the following statuses to be
|
|
@@ -3502,9 +3502,9 @@ module Aws::ServiceCatalog
|
|
|
3502
3502
|
# matches the associated Service Catalog product provisioning artifact.
|
|
3503
3503
|
#
|
|
3504
3504
|
# <note markdown="1"> When you import an existing CloudFormation stack into a portfolio,
|
|
3505
|
-
#
|
|
3506
|
-
# during the import process.
|
|
3507
|
-
# `UpdateProvisionedProduct` for the provisioned product.
|
|
3505
|
+
# Service Catalog does not apply the product's associated constraints
|
|
3506
|
+
# during the import process. Service Catalog applies the constraints
|
|
3507
|
+
# after you call `UpdateProvisionedProduct` for the provisioned product.
|
|
3508
3508
|
#
|
|
3509
3509
|
# </note>
|
|
3510
3510
|
#
|
|
@@ -3512,6 +3512,10 @@ module Aws::ServiceCatalog
|
|
|
3512
3512
|
# `cloudformation:GetTemplate` and `cloudformation:DescribeStacks` IAM
|
|
3513
3513
|
# policy permissions.
|
|
3514
3514
|
#
|
|
3515
|
+
# You can only import one provisioned product at a time. The product's
|
|
3516
|
+
# CloudFormation stack must have the `IMPORT_COMPLETE` status before you
|
|
3517
|
+
# import another.
|
|
3518
|
+
#
|
|
3515
3519
|
# @option params [String] :accept_language
|
|
3516
3520
|
# The language code.
|
|
3517
3521
|
#
|
|
@@ -4214,7 +4218,7 @@ module Aws::ServiceCatalog
|
|
|
4214
4218
|
# resp.provisioning_artifact_details[0].id #=> String
|
|
4215
4219
|
# resp.provisioning_artifact_details[0].name #=> String
|
|
4216
4220
|
# resp.provisioning_artifact_details[0].description #=> String
|
|
4217
|
-
# resp.provisioning_artifact_details[0].type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR", "TERRAFORM_OPEN_SOURCE"
|
|
4221
|
+
# resp.provisioning_artifact_details[0].type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
4218
4222
|
# resp.provisioning_artifact_details[0].created_time #=> Time
|
|
4219
4223
|
# resp.provisioning_artifact_details[0].active #=> Boolean
|
|
4220
4224
|
# resp.provisioning_artifact_details[0].guidance #=> String, one of "DEFAULT", "DEPRECATED"
|
|
@@ -4274,7 +4278,7 @@ module Aws::ServiceCatalog
|
|
|
4274
4278
|
# resp.provisioning_artifact_views[0].product_view_summary.name #=> String
|
|
4275
4279
|
# resp.provisioning_artifact_views[0].product_view_summary.owner #=> String
|
|
4276
4280
|
# resp.provisioning_artifact_views[0].product_view_summary.short_description #=> String
|
|
4277
|
-
# resp.provisioning_artifact_views[0].product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE"
|
|
4281
|
+
# resp.provisioning_artifact_views[0].product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
4278
4282
|
# resp.provisioning_artifact_views[0].product_view_summary.distributor #=> String
|
|
4279
4283
|
# resp.provisioning_artifact_views[0].product_view_summary.has_default_path #=> Boolean
|
|
4280
4284
|
# resp.provisioning_artifact_views[0].product_view_summary.support_email #=> String
|
|
@@ -5115,7 +5119,7 @@ module Aws::ServiceCatalog
|
|
|
5115
5119
|
# resp.product_view_summaries[0].name #=> String
|
|
5116
5120
|
# resp.product_view_summaries[0].owner #=> String
|
|
5117
5121
|
# resp.product_view_summaries[0].short_description #=> String
|
|
5118
|
-
# resp.product_view_summaries[0].type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE"
|
|
5122
|
+
# resp.product_view_summaries[0].type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
5119
5123
|
# resp.product_view_summaries[0].distributor #=> String
|
|
5120
5124
|
# resp.product_view_summaries[0].has_default_path #=> Boolean
|
|
5121
5125
|
# resp.product_view_summaries[0].support_email #=> String
|
|
@@ -5199,7 +5203,7 @@ module Aws::ServiceCatalog
|
|
|
5199
5203
|
# resp.product_view_details[0].product_view_summary.name #=> String
|
|
5200
5204
|
# resp.product_view_details[0].product_view_summary.owner #=> String
|
|
5201
5205
|
# resp.product_view_details[0].product_view_summary.short_description #=> String
|
|
5202
|
-
# resp.product_view_details[0].product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE"
|
|
5206
|
+
# resp.product_view_details[0].product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
5203
5207
|
# resp.product_view_details[0].product_view_summary.distributor #=> String
|
|
5204
5208
|
# resp.product_view_details[0].product_view_summary.has_default_path #=> Boolean
|
|
5205
5209
|
# resp.product_view_details[0].product_view_summary.support_email #=> String
|
|
@@ -5247,7 +5251,7 @@ module Aws::ServiceCatalog
|
|
|
5247
5251
|
#
|
|
5248
5252
|
# When the key is `SearchQuery`, the searchable fields are `arn`,
|
|
5249
5253
|
# `createdTime`, `id`, `lastRecordId`, `idempotencyToken`, `name`,
|
|
5250
|
-
# `physicalId`, `productId`, `
|
|
5254
|
+
# `physicalId`, `productId`, `provisioningArtifactId`, `type`, `status`,
|
|
5251
5255
|
# `tags`, `userArn`, `userArnSession`, `lastProvisioningRecordId`,
|
|
5252
5256
|
# `lastSuccessfulProvisioningRecordId`, `productName`, and
|
|
5253
5257
|
# `provisioningArtifactName`.
|
|
@@ -5620,7 +5624,7 @@ module Aws::ServiceCatalog
|
|
|
5620
5624
|
# The portfolio share cannot be updated if the `CreatePortfolioShare`
|
|
5621
5625
|
# operation is `IN_PROGRESS`, as the share is not available to recipient
|
|
5622
5626
|
# entities. In this case, you must wait for the portfolio share to be
|
|
5623
|
-
#
|
|
5627
|
+
# completed.
|
|
5624
5628
|
#
|
|
5625
5629
|
# You must provide the `accountId` or organization node in the input,
|
|
5626
5630
|
# but not both.
|
|
@@ -5801,7 +5805,7 @@ module Aws::ServiceCatalog
|
|
|
5801
5805
|
# resp.product_view_detail.product_view_summary.name #=> String
|
|
5802
5806
|
# resp.product_view_detail.product_view_summary.owner #=> String
|
|
5803
5807
|
# resp.product_view_detail.product_view_summary.short_description #=> String
|
|
5804
|
-
# resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE"
|
|
5808
|
+
# resp.product_view_detail.product_view_summary.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
5805
5809
|
# resp.product_view_detail.product_view_summary.distributor #=> String
|
|
5806
5810
|
# resp.product_view_detail.product_view_summary.has_default_path #=> Boolean
|
|
5807
5811
|
# resp.product_view_detail.product_view_summary.support_email #=> String
|
|
@@ -6124,7 +6128,7 @@ module Aws::ServiceCatalog
|
|
|
6124
6128
|
# resp.provisioning_artifact_detail.id #=> String
|
|
6125
6129
|
# resp.provisioning_artifact_detail.name #=> String
|
|
6126
6130
|
# resp.provisioning_artifact_detail.description #=> String
|
|
6127
|
-
# resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR", "TERRAFORM_OPEN_SOURCE"
|
|
6131
|
+
# resp.provisioning_artifact_detail.type #=> String, one of "CLOUD_FORMATION_TEMPLATE", "MARKETPLACE_AMI", "MARKETPLACE_CAR", "TERRAFORM_OPEN_SOURCE", "TERRAFORM_CLOUD"
|
|
6128
6132
|
# resp.provisioning_artifact_detail.created_time #=> Time
|
|
6129
6133
|
# resp.provisioning_artifact_detail.active #=> Boolean
|
|
6130
6134
|
# resp.provisioning_artifact_detail.guidance #=> String, one of "DEFAULT", "DEPRECATED"
|
|
@@ -6250,7 +6254,7 @@ module Aws::ServiceCatalog
|
|
|
6250
6254
|
params: params,
|
|
6251
6255
|
config: config)
|
|
6252
6256
|
context[:gem_name] = 'aws-sdk-servicecatalog'
|
|
6253
|
-
context[:gem_version] = '1.
|
|
6257
|
+
context[:gem_version] = '1.86.0'
|
|
6254
6258
|
Seahorse::Client::Request.new(handlers, context)
|
|
6255
6259
|
end
|
|
6256
6260
|
|
|
@@ -68,7 +68,7 @@ module Aws::ServiceCatalog
|
|
|
68
68
|
#
|
|
69
69
|
# @!attribute [rw] value
|
|
70
70
|
# The user to which the access level applies. The only supported value
|
|
71
|
-
# is `
|
|
71
|
+
# is `self`.
|
|
72
72
|
# @return [String]
|
|
73
73
|
#
|
|
74
74
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AccessLevelFilter AWS API Documentation
|
|
@@ -4592,7 +4592,7 @@ module Aws::ServiceCatalog
|
|
|
4592
4592
|
# The record identifier of the last request performed on this
|
|
4593
4593
|
# provisioned product of the following types:
|
|
4594
4594
|
#
|
|
4595
|
-
# *
|
|
4595
|
+
# * ProvisionProduct
|
|
4596
4596
|
#
|
|
4597
4597
|
# * UpdateProvisionedProduct
|
|
4598
4598
|
#
|
|
@@ -4605,7 +4605,7 @@ module Aws::ServiceCatalog
|
|
|
4605
4605
|
# The record identifier of the last successful request performed on
|
|
4606
4606
|
# this provisioned product of the following types:
|
|
4607
4607
|
#
|
|
4608
|
-
# *
|
|
4608
|
+
# * ProvisionProduct
|
|
4609
4609
|
#
|
|
4610
4610
|
# * UpdateProvisionedProduct
|
|
4611
4611
|
#
|
|
@@ -4743,7 +4743,7 @@ module Aws::ServiceCatalog
|
|
|
4743
4743
|
# The record identifier of the last request performed on this
|
|
4744
4744
|
# provisioned product of the following types:
|
|
4745
4745
|
#
|
|
4746
|
-
# *
|
|
4746
|
+
# * ProvisionProduct
|
|
4747
4747
|
#
|
|
4748
4748
|
# * UpdateProvisionedProduct
|
|
4749
4749
|
#
|
|
@@ -4756,7 +4756,7 @@ module Aws::ServiceCatalog
|
|
|
4756
4756
|
# The record identifier of the last successful request performed on
|
|
4757
4757
|
# this provisioned product of the following types:
|
|
4758
4758
|
#
|
|
4759
|
-
# *
|
|
4759
|
+
# * ProvisionProduct
|
|
4760
4760
|
#
|
|
4761
4761
|
# * UpdateProvisionedProduct
|
|
4762
4762
|
#
|
|
@@ -4980,12 +4980,7 @@ module Aws::ServiceCatalog
|
|
|
4980
4980
|
# @!attribute [rw] type
|
|
4981
4981
|
# The type of provisioning artifact.
|
|
4982
4982
|
#
|
|
4983
|
-
#
|
|
4984
|
-
#
|
|
4985
|
-
# * `MARKETPLACE_AMI` - Amazon Web Services Marketplace AMI
|
|
4986
|
-
#
|
|
4987
|
-
# * `MARKETPLACE_CAR` - Amazon Web Services Marketplace Clusters and
|
|
4988
|
-
# Amazon Web Services Resources
|
|
4983
|
+
# `CLOUD_FORMATION_TEMPLATE` - CloudFormation template
|
|
4989
4984
|
# @return [String]
|
|
4990
4985
|
#
|
|
4991
4986
|
# @!attribute [rw] created_time
|
|
@@ -5164,17 +5159,15 @@ module Aws::ServiceCatalog
|
|
|
5164
5159
|
#
|
|
5165
5160
|
# * `CLOUD_FORMATION_TEMPLATE` - CloudFormation template
|
|
5166
5161
|
#
|
|
5167
|
-
# * `MARKETPLACE_AMI` - Amazon Web Services Marketplace AMI
|
|
5168
|
-
#
|
|
5169
|
-
# * `MARKETPLACE_CAR` - Amazon Web Services Marketplace Clusters and
|
|
5170
|
-
# Amazon Web Services Resources
|
|
5171
|
-
#
|
|
5172
5162
|
# * `TERRAFORM_OPEN_SOURCE` - Terraform open source configuration file
|
|
5173
5163
|
# @return [String]
|
|
5174
5164
|
#
|
|
5175
5165
|
# @!attribute [rw] disable_template_validation
|
|
5176
5166
|
# If set to true, Service Catalog stops validating the specified
|
|
5177
5167
|
# provisioning artifact even if it is invalid.
|
|
5168
|
+
#
|
|
5169
|
+
# Service Catalog does not support template validation for the
|
|
5170
|
+
# `TERRAFORM_OS` product type.
|
|
5178
5171
|
# @return [Boolean]
|
|
5179
5172
|
#
|
|
5180
5173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactProperties AWS API Documentation
|
|
@@ -5428,7 +5421,8 @@ module Aws::ServiceCatalog
|
|
|
5428
5421
|
#
|
|
5429
5422
|
# @!attribute [rw] provisioned_product_type
|
|
5430
5423
|
# The type of provisioned product. The supported values are
|
|
5431
|
-
# `CFN_STACK` and
|
|
5424
|
+
# `CFN_STACK`, `CFN_STACKSET`, `TERRAFORM_OPEN_SOURCE`, and
|
|
5425
|
+
# `TERRAFORM_CLOUD`.
|
|
5432
5426
|
# @return [String]
|
|
5433
5427
|
#
|
|
5434
5428
|
# @!attribute [rw] record_type
|
|
@@ -5951,10 +5945,10 @@ module Aws::ServiceCatalog
|
|
|
5951
5945
|
#
|
|
5952
5946
|
# When the key is `SearchQuery`, the searchable fields are `arn`,
|
|
5953
5947
|
# `createdTime`, `id`, `lastRecordId`, `idempotencyToken`, `name`,
|
|
5954
|
-
# `physicalId`, `productId`, `
|
|
5955
|
-
# `tags`, `userArn`, `userArnSession`,
|
|
5956
|
-
# `
|
|
5957
|
-
# `provisioningArtifactName`.
|
|
5948
|
+
# `physicalId`, `productId`, `provisioningArtifactId`, `type`,
|
|
5949
|
+
# `status`, `tags`, `userArn`, `userArnSession`,
|
|
5950
|
+
# `lastProvisioningRecordId`, `lastSuccessfulProvisioningRecordId`,
|
|
5951
|
+
# `productName`, and `provisioningArtifactName`.
|
|
5958
5952
|
#
|
|
5959
5953
|
# Example: `"SearchQuery":["status:AVAILABLE"]`
|
|
5960
5954
|
# @return [Hash<String,Array<String>>]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-servicecatalog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.86.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: 2023-
|
|
11
|
+
date: 2023-08-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|