diagnostic_settings_categories
Creates, updates, deletes, gets or lists a diagnostic_settings_categories
resource.
Overview
Name | diagnostic_settings_categories |
Type | Resource |
Id | azure.monitor.diagnostic_settings_categories |
Fields
- vw_diagnostic_settings_categories
- diagnostic_settings_categories
Name | Datatype | Description |
---|---|---|
id | text | Azure resource Id |
name | text | Azure resource name |
category_groups | text | field from the properties object |
category_type | text | field from the properties object |
location | text | Resource location |
resourceUri | text | field from the properties object |
system_data | text | field from the properties object |
tags | text | Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters. |
type | text | Azure resource type |
Name | Datatype | Description |
---|---|---|
id | string | Azure resource Id |
name | string | Azure resource name |
location | string | Resource location |
properties | object | The diagnostic settings Category. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters. |
type | string | Azure resource type |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | name, resourceUri | Gets the diagnostic settings category for the specified resource. |
list | SELECT | resourceUri | Lists the diagnostic settings categories for the specified resource. |
SELECT
examples
Lists the diagnostic settings categories for the specified resource.
- vw_diagnostic_settings_categories
- diagnostic_settings_categories
SELECT
id,
name,
category_groups,
category_type,
location,
resourceUri,
system_data,
tags,
type
FROM azure.monitor.vw_diagnostic_settings_categories
WHERE resourceUri = '{{ resourceUri }}';
SELECT
id,
name,
location,
properties,
systemData,
tags,
type
FROM azure.monitor.diagnostic_settings_categories
WHERE resourceUri = '{{ resourceUri }}';