List Application Instances
panorama_list_application_instances | R Documentation |
Returns a list of application instances¶
Description¶
Returns a list of application instances.
Usage¶
Arguments¶
DeviceId
The application instances' device ID.
MaxResults
The maximum number of application instances to return in one page of results.
NextToken
Specify the pagination token from a previous request to retrieve the next page of results.
StatusFilter
Only include instances with a specific status.
Value¶
A list with the following syntax:
list(
ApplicationInstances = list(
list(
ApplicationInstanceId = "string",
Arn = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
DefaultRuntimeContextDevice = "string",
DefaultRuntimeContextDeviceName = "string",
Description = "string",
HealthStatus = "RUNNING"|"ERROR"|"NOT_AVAILABLE",
Name = "string",
RuntimeContextStates = list(
list(
DesiredState = "RUNNING"|"STOPPED"|"REMOVED",
DeviceReportedStatus = "STOPPING"|"STOPPED"|"STOP_ERROR"|"REMOVAL_FAILED"|"REMOVAL_IN_PROGRESS"|"STARTING"|"RUNNING"|"INSTALL_ERROR"|"LAUNCHED"|"LAUNCH_ERROR"|"INSTALL_IN_PROGRESS",
DeviceReportedTime = as.POSIXct(
"2015-01-01"
),
RuntimeContextName = "string"
)
),
Status = "DEPLOYMENT_PENDING"|"DEPLOYMENT_REQUESTED"|"DEPLOYMENT_IN_PROGRESS"|"DEPLOYMENT_ERROR"|"DEPLOYMENT_SUCCEEDED"|"REMOVAL_PENDING"|"REMOVAL_REQUESTED"|"REMOVAL_IN_PROGRESS"|"REMOVAL_FAILED"|"REMOVAL_SUCCEEDED"|"DEPLOYMENT_FAILED",
StatusDescription = "string",
Tags = list(
"string"
)
)
),
NextToken = "string"
)