Update Provisioning Artifact
servicecatalog_update_provisioning_artifact | R Documentation |
Updates the specified provisioning artifact (also known as a version) for the specified product¶
Description¶
Updates the specified provisioning artifact (also known as a version) for the specified product.
You cannot update a provisioning artifact for a product that was shared with you.
Usage¶
servicecatalog_update_provisioning_artifact(AcceptLanguage, ProductId,
ProvisioningArtifactId, Name, Description, Active, Guidance)
Arguments¶
AcceptLanguage |
The language code.
|
ProductId |
[required] The product identifier. |
ProvisioningArtifactId |
[required] The identifier of the provisioning artifact. |
Name |
The updated name of the provisioning artifact. |
Description |
The updated description of the provisioning artifact. |
Active |
Indicates whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. |
Guidance |
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. The The administrator can set the guidance to |
Value¶
A list with the following syntax:
list(
ProvisioningArtifactDetail = list(
Id = "string",
Name = "string",
Description = "string",
Type = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE_AMI"|"MARKETPLACE_CAR"|"TERRAFORM_OPEN_SOURCE"|"TERRAFORM_CLOUD"|"EXTERNAL",
CreatedTime = as.POSIXct(
"2015-01-01"
),
Active = TRUE|FALSE,
Guidance = "DEFAULT"|"DEPRECATED",
SourceRevision = "string"
),
Info = list(
"string"
),
Status = "AVAILABLE"|"CREATING"|"FAILED"
)
Request syntax¶
svc$update_provisioning_artifact(
AcceptLanguage = "string",
ProductId = "string",
ProvisioningArtifactId = "string",
Name = "string",
Description = "string",
Active = TRUE|FALSE,
Guidance = "DEFAULT"|"DEPRECATED"
)