device_settings_network_settings
Creates, updates, deletes, gets or lists a device_settings_network_settings
resource.
Overview
Name | device_settings_network_settings |
Type | Resource |
Id | azure_extras.storsimple_8000_series.device_settings_network_settings |
Fields
- vw_device_settings_network_settings
- device_settings_network_settings
Name | Datatype | Description |
---|---|---|
id | text | The path ID that uniquely identifies the object. |
name | text | The name of the object. |
deviceName | text | field from the properties object |
dns_settings | text | field from the properties object |
kind | text | The Kind of the object. Currently only Series8000 is supported |
managerName | 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 |
type | text | The hierarchical type of the object. |
webproxy_settings | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The name of the object. |
kind | string | The Kind of the object. Currently only Series8000 is supported |
properties | object | The properties of the network settings of device. |
type | string | The hierarchical type of the object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deviceName, managerName, resourceGroupName, subscriptionId | Gets the network settings of the specified device. |
update | UPDATE | deviceName, managerName, resourceGroupName, subscriptionId, data__properties | Updates the network settings on the specified device. |
SELECT
examples
Gets the network settings of the specified device.
- vw_device_settings_network_settings
- device_settings_network_settings
SELECT
id,
name,
deviceName,
dns_settings,
kind,
managerName,
network_adapters,
resourceGroupName,
subscriptionId,
type,
webproxy_settings
FROM azure_extras.storsimple_8000_series.vw_device_settings_network_settings
WHERE deviceName = '{{ deviceName }}'
AND managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
kind,
properties,
type
FROM azure_extras.storsimple_8000_series.device_settings_network_settings
WHERE deviceName = '{{ deviceName }}'
AND managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
UPDATE
example
Updates a device_settings_network_settings
resource.
/*+ update */
UPDATE azure_extras.storsimple_8000_series.device_settings_network_settings
SET
properties = '{{ properties }}'
WHERE
deviceName = '{{ deviceName }}'
AND managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__properties = '{{ data__properties }}';