Services interface

Interface representing a Services.

Methods

get(string, ServicesGetOptionalParams)

Gets a specific Azure service for support ticket creation.

list(ServicesListOptionalParams)

Lists all the Azure services available for support ticket creation. For Technical issues, select the Service Id that maps to the Azure service/product as displayed in the Services drop-down list on the Azure portal's New support request page. Always use the service and its corresponding problem classification(s) obtained programmatically for support ticket creation. This practice ensures that you always have the most recent set of service and problem classification Ids.

Method Details

get(string, ServicesGetOptionalParams)

Gets a specific Azure service for support ticket creation.

function get(serviceName: string, options?: ServicesGetOptionalParams): Promise<Service>

Parameters

serviceName

string

Name of the Azure service.

options
ServicesGetOptionalParams

The options parameters.

Returns

Promise<Service>

list(ServicesListOptionalParams)

Lists all the Azure services available for support ticket creation. For Technical issues, select the Service Id that maps to the Azure service/product as displayed in the Services drop-down list on the Azure portal's New support request page. Always use the service and its corresponding problem classification(s) obtained programmatically for support ticket creation. This practice ensures that you always have the most recent set of service and problem classification Ids.

function list(options?: ServicesListOptionalParams): PagedAsyncIterableIterator<Service, Service[], PageSettings>

Parameters

options
ServicesListOptionalParams

The options parameters.

Returns