Update Portfolio
servicecatalog_update_portfolio | R Documentation |
Updates the specified portfolio¶
Description¶
Updates the specified portfolio.
You cannot update a product that was shared with you.
Usage¶
servicecatalog_update_portfolio(AcceptLanguage, Id, DisplayName,
Description, ProviderName, AddTags, RemoveTags)
Arguments¶
AcceptLanguage |
The language code.
|
Id |
[required] The portfolio identifier. |
DisplayName |
The name to use for display purposes. |
Description |
The updated description of the portfolio. |
ProviderName |
The updated name of the portfolio provider. |
AddTags |
The tags to add. |
RemoveTags |
The tags to remove. |
Value¶
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"
)
)
)
Request syntax¶
svc$update_portfolio(
AcceptLanguage = "string",
Id = "string",
DisplayName = "string",
Description = "string",
ProviderName = "string",
AddTags = list(
list(
Key = "string",
Value = "string"
)
),
RemoveTags = list(
"string"
)
)