Update Provisioned Product
| servicecatalog_update_provisioned_product | R Documentation |
Requests updates to the configuration of the specified provisioned product¶
Description¶
Requests updates to the configuration of the specified provisioned product.
If there are tags associated with the object, they cannot be updated or added. Depending on the specific updates requested, this operation can update with no interruption, with some interruption, or replace the provisioned product entirely.
You can check the status of this request using describe_record.
Usage¶
servicecatalog_update_provisioned_product(AcceptLanguage,
ProvisionedProductName, ProvisionedProductId, ProductId, ProductName,
ProvisioningArtifactId, ProvisioningArtifactName, PathId, PathName,
ProvisioningParameters, ProvisioningPreferences, Tags, UpdateToken)
Arguments¶
AcceptLanguageThe language code.
jp- Japanesezh- Chinese
ProvisionedProductNameThe name of the provisioned product. You cannot specify both
ProvisionedProductNameandProvisionedProductId.ProvisionedProductIdThe identifier of the provisioned product. You must provide the name or ID, but not both.
ProductIdThe identifier of the product. You must provide the name or ID, but not both.
ProductNameThe name of the product. You must provide the name or ID, but not both.
ProvisioningArtifactIdThe identifier of the provisioning artifact.
ProvisioningArtifactNameThe name of the provisioning artifact. You must provide the name or ID, but not both.
PathIdThe path identifier. This value is optional if the product has a default path, and required if the product has more than one path. You must provide the name or ID, but not both.
PathNameThe name of the path. You must provide the name or ID, but not both.
ProvisioningParametersThe new parameters.
ProvisioningPreferencesAn object that contains information about the provisioning preferences for a stack set.
TagsOne or more tags. Requires the product to have
RESOURCE_UPDATEconstraint withTagUpdatesOnProvisionedProductset toALLOWEDto allow tag updates.UpdateToken[required] The idempotency token that uniquely identifies the provisioning update request.
Value¶
A list with the following syntax:
list(
RecordDetail = list(
RecordId = "string",
ProvisionedProductName = "string",
Status = "CREATED"|"IN_PROGRESS"|"IN_PROGRESS_IN_ERROR"|"SUCCEEDED"|"FAILED",
CreatedTime = as.POSIXct(
"2015-01-01"
),
UpdatedTime = as.POSIXct(
"2015-01-01"
),
ProvisionedProductType = "string",
RecordType = "string",
ProvisionedProductId = "string",
ProductId = "string",
ProvisioningArtifactId = "string",
PathId = "string",
RecordErrors = list(
list(
Code = "string",
Description = "string"
)
),
RecordTags = list(
list(
Key = "string",
Value = "string"
)
),
LaunchRoleArn = "string"
)
)
Request syntax¶
svc$update_provisioned_product(
AcceptLanguage = "string",
ProvisionedProductName = "string",
ProvisionedProductId = "string",
ProductId = "string",
ProductName = "string",
ProvisioningArtifactId = "string",
ProvisioningArtifactName = "string",
PathId = "string",
PathName = "string",
ProvisioningParameters = list(
list(
Key = "string",
Value = "string",
UsePreviousValue = TRUE|FALSE
)
),
ProvisioningPreferences = list(
StackSetAccounts = list(
"string"
),
StackSetRegions = list(
"string"
),
StackSetFailureToleranceCount = 123,
StackSetFailureTolerancePercentage = 123,
StackSetMaxConcurrencyCount = 123,
StackSetMaxConcurrencyPercentage = 123,
StackSetOperationType = "CREATE"|"UPDATE"|"DELETE"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
UpdateToken = "string"
)