services
Creates, updates, deletes, gets or lists a services
resource.
Overview
Name | services |
Type | Resource |
Id | azure.support.services |
Fields
- vw_services
- services
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 |
resource_types | text | field from the properties object |
serviceName | text | field from the properties object |
type | text | Type of the resource 'Microsoft.Support/services'. |
Name | Datatype | Description |
---|---|---|
id | string | Id of the resource. |
name | string | Name of the resource. |
properties | object | Details about an Azure service available for support ticket creation. |
type | string | Type of the resource 'Microsoft.Support/services'. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | serviceName | Gets a specific Azure service for support ticket creation. |
list | SELECT |
| 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. |
SELECT
examples
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.
- vw_services
- services
SELECT
id,
name,
display_name,
metadata,
resource_types,
serviceName,
type
FROM azure.support.vw_services
;
SELECT
id,
name,
properties,
type
FROM azure.support.services
;