Updates the specified product.
servicecatalog_update_product(AcceptLanguage, Id, Name, Owner,
Description, Distributor, SupportDescription, SupportEmail, SupportUrl,
AddTags, RemoveTags)
A list with the following syntax:
list(
ProductViewDetail = list(
ProductViewSummary = list(
Id = "string",
ProductId = "string",
Name = "string",
Owner = "string",
ShortDescription = "string",
Type = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE",
Distributor = "string",
HasDefaultPath = TRUE|FALSE,
SupportEmail = "string",
SupportDescription = "string",
SupportUrl = "string"
),
Status = "AVAILABLE"|"CREATING"|"FAILED",
ProductARN = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
)
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
The language code.
en
- English (default)
jp
- Japanese
zh
- Chinese
[required] The product identifier.
The updated product name.
The updated owner of the product.
The updated description of the product.
The updated distributor of the product.
The updated support description for the product.
The updated support email for the product.
The updated support URL for the product.
The tags to add to the product.
The tags to remove from the product.
svc$update_product(
AcceptLanguage = "string",
Id = "string",
Name = "string",
Owner = "string",
Description = "string",
Distributor = "string",
SupportDescription = "string",
SupportEmail = "string",
SupportUrl = "string",
AddTags = list(
list(
Key = "string",
Value = "string"
)
),
RemoveTags = list(
"string"
)
)