Skip to main content

diagnostic_settings_categories

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

Overview

Namediagnostic_settings_categories
TypeResource
Idazure.monitor.diagnostic_settings_categories

Fields

The following fields are returned by SELECT queries:

Successful request to get more information about diagnostic setting category

NameDatatypeDescription
idstringAzure resource Id
namestringAzure resource name
locationstringResource location
propertiesobjectThe properties of a Diagnostic Settings Category.
systemDataobjectThe system metadata related to this resource.
tagsResource tags
typestringAzure resource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceUri, nameGets the diagnostic settings category for the specified resource.
listselectresourceUriLists the diagnostic settings categories for the specified resource.

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
namestringThe name of the diagnostic setting.
resourceUristringThe identifier of the resource.

SELECT examples

Gets the diagnostic settings category for the specified resource.

SELECT
id,
name,
location,
properties,
systemData,
tags,
type
FROM azure.monitor.diagnostic_settings_categories
WHERE resourceUri = '{{ resourceUri }}' -- required
AND name = '{{ name }}' -- required
;