Skip to content

List Devices Jobs

panorama_list_devices_jobs R Documentation

Returns a list of jobs

Description

Returns a list of jobs.

Usage

panorama_list_devices_jobs(DeviceId, MaxResults, NextToken)

Arguments

DeviceId

Filter results by the job's target device ID.

MaxResults

The maximum number of device jobs 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(
  DeviceJobs = list(
    list(
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      DeviceId = "string",
      DeviceName = "string",
      JobId = "string",
      JobType = "OTA"|"REBOOT"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_devices_jobs(
  DeviceId = "string",
  MaxResults = 123,
  NextToken = "string"
)