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
The following fields are returned by SELECT
queries:
- get
The Network settings.
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 network settings of a device. |
type | string | The hierarchical type of the object. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | deviceName , subscriptionId , resourceGroupName , managerName | Gets the network settings of the specified device. | |
update | update | deviceName , subscriptionId , resourceGroupName , managerName , data__properties | Updates the network settings on the specified device. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
deviceName | string | The device name |
managerName | string | The manager name |
resourceGroupName | string | The resource group name |
subscriptionId | string | The subscription id |
SELECT
examples
- get
Gets the network settings of the specified device.
SELECT
id,
name,
kind,
properties,
type
FROM azure_extras.storsimple_8000_series.device_settings_network_settings
WHERE deviceName = '{{ deviceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;
UPDATE
examples
- update
Updates the network settings on the specified device.
UPDATE azure_extras.storsimple_8000_series.device_settings_network_settings
SET
data__properties = '{{ properties }}'
WHERE
deviceName = '{{ deviceName }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND managerName = '{{ managerName }}' --required
AND data__properties = '{{ properties }}' --required
RETURNING
id,
name,
kind,
properties,
type;