List Packages
panorama_list_packages | R Documentation |
Returns a list of packages¶
Description¶
Returns a list of packages.
Usage¶
panorama_list_packages(MaxResults, NextToken)
Arguments¶
MaxResults |
The maximum number of packages to return in one page of results. |
NextToken |
Specify the pagination token from a previous request to retrieve the next page of results. |
Value¶
A list with the following syntax:
list(
NextToken = "string",
Packages = list(
list(
Arn = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
PackageId = "string",
PackageName = "string",
Tags = list(
"string"
)
)
)
)
Request syntax¶
svc$list_packages(
MaxResults = 123,
NextToken = "string"
)