Get Devices
| networkmanager_get_devices | R Documentation |
Gets information about one or more of your devices in a global network¶
Description¶
Gets information about one or more of your devices in a global network.
Usage¶
Arguments¶
GlobalNetworkId[required] The ID of the global network.
DeviceIdsOne or more device IDs. The maximum is 10.
SiteIdThe ID of the site.
MaxResultsThe maximum number of results to return.
NextTokenThe token for the next page of results.
Value¶
A list with the following syntax:
list(
Devices = list(
list(
DeviceId = "string",
DeviceArn = "string",
GlobalNetworkId = "string",
AWSLocation = list(
Zone = "string",
SubnetArn = "string"
),
Description = "string",
Type = "string",
Vendor = "string",
Model = "string",
SerialNumber = "string",
Location = list(
Address = "string",
Latitude = "string",
Longitude = "string"
),
SiteId = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
State = "PENDING"|"AVAILABLE"|"DELETING"|"UPDATING",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)