Skip to main content

device_settings_network_settings

Creates, updates, deletes, gets or lists a device_settings_network_settings resource.

Overview

Namedevice_settings_network_settings
TypeResource
Idazure_extras.storsimple_8000_series.device_settings_network_settings

Fields

The following fields are returned by SELECT queries:

The Network settings.

NameDatatypeDescription
idstringThe path ID that uniquely identifies the object.
namestringThe name of the object.
kindstringThe Kind of the object. Currently only Series8000 is supported
propertiesobjectThe properties of network settings of a device.
typestringThe hierarchical type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdeviceName, subscriptionId, resourceGroupName, managerNameGets the network settings of the specified device.
updateupdatedeviceName, subscriptionId, resourceGroupName, managerName, data__propertiesUpdates 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.

NameDatatypeDescription
deviceNamestringThe device name
managerNamestringThe manager name
resourceGroupNamestringThe resource group name
subscriptionIdstringThe subscription id

SELECT examples

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

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;