Provision Device
panorama_provision_device | R Documentation |
Creates a device and returns a configuration archive¶
Description¶
Creates a device and returns a configuration archive. The configuration
archive is a ZIP file that contains a provisioning certificate that is
valid for 5 minutes. Name the configuration archive
certificates-omni_device-name.zip
and transfer it to the device within
5 minutes. Use the included USB storage device and connect it to the USB
3.0 port next to the HDMI output.
Usage¶
Arguments¶
Description
A description for the device.
Name
[required] A name for the device.
NetworkingConfiguration
A networking configuration for the device.
Tags
Tags for the device.
Value¶
A list with the following syntax:
list(
Arn = "string",
Certificates = raw,
DeviceId = "string",
IotThingName = "string",
Status = "AWAITING_PROVISIONING"|"PENDING"|"SUCCEEDED"|"FAILED"|"ERROR"|"DELETING"
)
Request syntax¶
svc$provision_device(
Description = "string",
Name = "string",
NetworkingConfiguration = list(
Ethernet0 = list(
ConnectionType = "STATIC_IP"|"DHCP",
StaticIpConnectionInfo = list(
DefaultGateway = "string",
Dns = list(
"string"
),
IpAddress = "string",
Mask = "string"
)
),
Ethernet1 = list(
ConnectionType = "STATIC_IP"|"DHCP",
StaticIpConnectionInfo = list(
DefaultGateway = "string",
Dns = list(
"string"
),
IpAddress = "string",
Mask = "string"
)
),
Ntp = list(
NtpServers = list(
"string"
)
)
),
Tags = list(
"string"
)
)