Updates the specified portfolio.
You cannot update a product that was shared with you.
servicecatalog_update_portfolio(AcceptLanguage, Id, DisplayName,
Description, ProviderName, AddTags, RemoveTags)
A list with the following syntax:
list(
PortfolioDetail = list(
Id = "string",
ARN = "string",
DisplayName = "string",
Description = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
ProviderName = "string"
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
The language code.
en
- English (default)
jp
- Japanese
zh
- Chinese
[required] The portfolio identifier.
The name to use for display purposes.
The updated description of the portfolio.
The updated name of the portfolio provider.
The tags to add.
The tags to remove.
svc$update_portfolio(
AcceptLanguage = "string",
Id = "string",
DisplayName = "string",
Description = "string",
ProviderName = "string",
AddTags = list(
list(
Key = "string",
Value = "string"
)
),
RemoveTags = list(
"string"
)
)