devices_network_settings
Creates, updates, deletes, gets or lists a devices_network_settings
resource.
Overview
Name | devices_network_settings |
Type | Resource |
Id | azure.data_box_edge.devices_network_settings |
Fields
- vw_devices_network_settings
- devices_network_settings
Name | Datatype | Description |
---|---|---|
id | text | The path ID that uniquely identifies the object. |
name | text | The object name. |
deviceName | text | field from the properties object |
network_adapters | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
type | text | The hierarchical type of the object. |
Name | Datatype | Description |
---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The object name. |
properties | object | The properties of network settings. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The hierarchical type of the object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deviceName, resourceGroupName, subscriptionId | Gets the network settings of the specified Data Box Edge/Data Box Gateway device. |
SELECT
examples
Gets the network settings of the specified Data Box Edge/Data Box Gateway device.
- vw_devices_network_settings
- devices_network_settings
SELECT
id,
name,
deviceName,
network_adapters,
resourceGroupName,
subscriptionId,
system_data,
type
FROM azure.data_box_edge.vw_devices_network_settings
WHERE deviceName = '{{ deviceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_box_edge.devices_network_settings
WHERE deviceName = '{{ deviceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';