Skip to main content

problem_classifications

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

Overview

Nameproblem_classifications
TypeResource
Idazure.support.problem_classifications

Fields

NameDatatypeDescription
idtextId of the resource.
nametextName of the resource.
display_nametextfield from the properties object
metadatatextfield from the properties object
parent_problem_classificationtextfield from the properties object
problemClassificationNametextfield from the properties object
secondary_consent_enabledtextfield from the properties object
serviceNametextfield from the properties object
typetextType of the resource 'Microsoft.Support/problemClassification'.

Methods

NameAccessible byRequired ParamsDescription
getSELECTproblemClassificationName, serviceNameGet problem classification details for a specific Azure service.
listSELECTserviceNameLists 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_problemsEXECproblemServiceName, subscriptionId, data__issueSummaryClassify 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.

SELECT
id,
name,
display_name,
metadata,
parent_problem_classification,
problemClassificationName,
secondary_consent_enabled,
serviceName,
type
FROM azure.support.vw_problem_classifications
WHERE serviceName = '{{ serviceName }}';