ProblemClassifications interface

Interface representing a ProblemClassifications.

Methods

get(string, string, ProblemClassificationsGetOptionalParams)

Get problem classification details for a specific Azure service.

list(string, ProblemClassificationsListOptionalParams)

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.

Method Details

get(string, string, ProblemClassificationsGetOptionalParams)

Get problem classification details for a specific Azure service.

function get(serviceName: string, problemClassificationName: string, options?: ProblemClassificationsGetOptionalParams): Promise<ProblemClassification>

Parameters

serviceName

string

Name of the Azure service available for support.

problemClassificationName

string

Name of problem classification.

options
ProblemClassificationsGetOptionalParams

The options parameters.

Returns

list(string, ProblemClassificationsListOptionalParams)

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.

function list(serviceName: string, options?: ProblemClassificationsListOptionalParams): PagedAsyncIterableIterator<ProblemClassification, ProblemClassification[], PageSettings>

Parameters

serviceName

string

Name of the Azure service for which the problem classifications need to be retrieved.

options
ProblemClassificationsListOptionalParams

The options parameters.

Returns