Share via


ProblemClassifications Interface

public interface ProblemClassifications

Resource collection API of ProblemClassifications.

Method Summary

Modifier and Type Method and Description
abstract ProblemClassification get(String serviceName, String problemClassificationName)

Get problem classification details for a specific Azure service.

abstract Response<ProblemClassification> getWithResponse(String serviceName, String problemClassificationName, Context context)

Get problem classification details for a specific Azure service.

abstract PagedIterable<ProblemClassification> list(String serviceName)

Lists all the problem classifications (categories) available for a specific Azure service.

abstract PagedIterable<ProblemClassification> list(String serviceName, Context context)

Lists all the problem classifications (categories) available for a specific Azure service.

Method Details

get

public abstract ProblemClassification get(String serviceName, String problemClassificationName)

Get problem classification details for a specific Azure service.

Parameters:

serviceName - Name of the Azure service available for support.
problemClassificationName - Name of problem classification.

Returns:

problem classification details for a specific Azure service.

getWithResponse

public abstract Response<ProblemClassification> getWithResponse(String serviceName, String problemClassificationName, Context context)

Get problem classification details for a specific Azure service.

Parameters:

serviceName - Name of the Azure service available for support.
problemClassificationName - Name of problem classification.
context - The context to associate with this operation.

Returns:

problem classification details for a specific Azure service along with Response<T>.

list

public abstract PagedIterable<ProblemClassification> list(String 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.

Parameters:

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

Returns:

collection of ProblemClassification resources as paginated response with PagedIterable<T>.

list

public abstract PagedIterable<ProblemClassification> list(String serviceName, Context context)

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.

Parameters:

serviceName - Name of the Azure service for which the problem classifications need to be retrieved.
context - The context to associate with this operation.

Returns:

collection of ProblemClassification resources as paginated response with PagedIterable<T>.

Applies to