diagnostic_settings_diagnostic_remote_support_settings
Creates, updates, deletes, gets or lists a diagnostic_settings_diagnostic_remote_support_settings
resource.
Overview
Name | diagnostic_settings_diagnostic_remote_support_settings |
Type | Resource |
Id | azure.data_box_edge.diagnostic_settings_diagnostic_remote_support_settings |
Fields
- vw_diagnostic_settings_diagnostic_remote_support_settings
- diagnostic_settings_diagnostic_remote_support_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 |
remote_support_settings_list | 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 remote support 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 diagnostic remote support settings of the specified Data Box Edge/Data Box Gateway device. |
update | REPLACE | deviceName, resourceGroupName, subscriptionId, data__properties | Updates the diagnostic remote support settings on a Data Box Edge/Data Box Gateway device. |
SELECT
examples
Gets the diagnostic remote support settings of the specified Data Box Edge/Data Box Gateway device.
- vw_diagnostic_settings_diagnostic_remote_support_settings
- diagnostic_settings_diagnostic_remote_support_settings
SELECT
id,
name,
deviceName,
remote_support_settings_list,
resourceGroupName,
subscriptionId,
system_data,
type
FROM azure.data_box_edge.vw_diagnostic_settings_diagnostic_remote_support_settings
WHERE deviceName = '{{ deviceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.data_box_edge.diagnostic_settings_diagnostic_remote_support_settings
WHERE deviceName = '{{ deviceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
REPLACE
example
Replaces all fields in the specified diagnostic_settings_diagnostic_remote_support_settings
resource.
/*+ update */
REPLACE azure.data_box_edge.diagnostic_settings_diagnostic_remote_support_settings
SET
properties = '{{ properties }}'
WHERE
deviceName = '{{ deviceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__properties = '{{ data__properties }}';