Search Provisioned Products
servicecatalog_search_provisioned_products | R Documentation |
Gets information about the provisioned products that meet the specified criteria¶
Description¶
Gets information about the provisioned products that meet the specified criteria.
Usage¶
servicecatalog_search_provisioned_products(AcceptLanguage,
AccessLevelFilter, Filters, SortBy, SortOrder, PageSize, PageToken)
Arguments¶
AcceptLanguage
The language code.
jp
- Japanesezh
- Chinese
AccessLevelFilter
The access level to use to obtain results. The default is
User
.Filters
The search filters.
When the key is
SearchQuery
, the searchable fields arearn
,createdTime
,id
,lastRecordId
,idempotencyToken
,name
,physicalId
,productId
,provisioningArtifactId
,type
,status
,tags
,userArn
,userArnSession
,lastProvisioningRecordId
,lastSuccessfulProvisioningRecordId
,productName
, andprovisioningArtifactName
.Example:
"SearchQuery":["status:AVAILABLE"]
SortBy
The sort field. If no value is specified, the results are not sorted. The valid values are
arn
,id
,name
, andlastRecordId
.SortOrder
The sort order. If no value is specified, the results are not sorted.
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.
Value¶
A list with the following syntax:
list(
ProvisionedProducts = list(
list(
Name = "string",
Arn = "string",
Type = "string",
Id = "string",
Status = "AVAILABLE"|"UNDER_CHANGE"|"TAINTED"|"ERROR"|"PLAN_IN_PROGRESS",
StatusMessage = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
IdempotencyToken = "string",
LastRecordId = "string",
LastProvisioningRecordId = "string",
LastSuccessfulProvisioningRecordId = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
PhysicalId = "string",
ProductId = "string",
ProductName = "string",
ProvisioningArtifactId = "string",
ProvisioningArtifactName = "string",
UserArn = "string",
UserArnSession = "string"
)
),
TotalResultsCount = 123,
NextPageToken = "string"
)