List Provisioning Artifacts For Service Action
servicecatalog_list_provisioning_artifacts_for_service_action | R Documentation |
Lists all provisioning artifacts (also known as versions) for the specified self-service action¶
Description¶
Lists all provisioning artifacts (also known as versions) for the specified self-service action.
Usage¶
servicecatalog_list_provisioning_artifacts_for_service_action(
ServiceActionId, PageSize, PageToken, AcceptLanguage)
Arguments¶
ServiceActionId
[required] The self-service action identifier. For example,
act-fs7abcd89wxyz
.PageSize
The maximum number of items to return with this call.
PageToken
The page token for the next set of results. To retrieve the first set of results, use null.
AcceptLanguage
The language code.
jp
- Japanesezh
- Chinese
Value¶
A list with the following syntax:
list(
ProvisioningArtifactViews = list(
list(
ProductViewSummary = list(
Id = "string",
ProductId = "string",
Name = "string",
Owner = "string",
ShortDescription = "string",
Type = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE"|"TERRAFORM_OPEN_SOURCE"|"TERRAFORM_CLOUD"|"EXTERNAL",
Distributor = "string",
HasDefaultPath = TRUE|FALSE,
SupportEmail = "string",
SupportDescription = "string",
SupportUrl = "string"
),
ProvisioningArtifact = list(
Id = "string",
Name = "string",
Description = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
Guidance = "DEFAULT"|"DEPRECATED"
)
)
),
NextPageToken = "string"
)