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

NameDatatypeDescription
idtextThe path ID that uniquely identifies the object.
nametextThe name of the object.
deviceNametextfield from the properties object
dns_settingstextfield from the properties object
kindtextThe Kind of the object. Currently only Series8000 is supported
managerNametextfield from the properties object
network_adapterstextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe hierarchical type of the object.
webproxy_settingstextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTdeviceName, managerName, resourceGroupName, subscriptionIdGets the network settings of the specified device.
updateUPDATEdeviceName, managerName, resourceGroupName, subscriptionId, data__propertiesUpdates the network settings on the specified device.

SELECT examples

Gets the network settings of the specified device.

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 }}';

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 }}';