problem_classifications
Creates, updates, deletes, gets or lists a problem_classifications
resource.
Overview
Name | problem_classifications |
Type | Resource |
Id | azure.support.problem_classifications |
Fields
- vw_problem_classifications
- problem_classifications
Name | Datatype | Description |
---|---|---|
id | text | Id of the resource. |
name | text | Name of the resource. |
display_name | text | field from the properties object |
metadata | text | field from the properties object |
parent_problem_classification | text | field from the properties object |
problemClassificationName | text | field from the properties object |
secondary_consent_enabled | text | field from the properties object |
serviceName | text | field from the properties object |
type | text | Type of the resource 'Microsoft.Support/problemClassification'. |
Name | Datatype | Description |
---|---|---|
id | string | Id of the resource. |
name | string | Name of the resource. |
properties | object | Details about a problem classification available for an Azure service. |
type | string | Type of the resource 'Microsoft.Support/problemClassification'. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | problemClassificationName, serviceName | Get problem classification details for a specific Azure service. |
list | SELECT | serviceName | Lists all the problem classifications (categories) available for a specific Azure service. Always use the service and problem classifications obtained programmatically. This practice ensures that you always have the most recent set of service and problem classification Ids. |
classify_problems | EXEC | problemServiceName, subscriptionId, data__issueSummary | Classify the right problem classifications (categories) available for a specific Azure service. |
SELECT
examples
Lists all the problem classifications (categories) available for a specific Azure service. Always use the service and problem classifications obtained programmatically. This practice ensures that you always have the most recent set of service and problem classification Ids.
- vw_problem_classifications
- problem_classifications
SELECT
id,
name,
display_name,
metadata,
parent_problem_classification,
problemClassificationName,
secondary_consent_enabled,
serviceName,
type
FROM azure.support.vw_problem_classifications
WHERE serviceName = '{{ serviceName }}';
SELECT
id,
name,
properties,
type
FROM azure.support.problem_classifications
WHERE serviceName = '{{ serviceName }}';