Bicep resource definition
The supportTickets resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.Support/supportTickets resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Support/supportTickets@2019-05-01-preview' = {
name: 'string'
properties: {
contactDetails: {
additionalEmailAddresses: [
'string'
]
country: 'string'
firstName: 'string'
lastName: 'string'
phoneNumber: 'string'
preferredContactMethod: 'string'
preferredSupportLanguage: 'string'
preferredTimeZone: 'string'
primaryEmailAddress: 'string'
}
description: 'string'
problemClassificationId: 'string'
problemStartTime: 'string'
quotaTicketDetails: {
quotaChangeRequests: [
{
payload: 'string'
region: 'string'
}
]
quotaChangeRequestSubType: 'string'
quotaChangeRequestVersion: 'string'
}
require24X7Response: bool
serviceId: 'string'
serviceLevelAgreement: {}
severity: 'string'
supportEngineer: {}
supportTicketId: 'string'
technicalTicketDetails: {
resourceId: 'string'
}
title: 'string'
}
}
Property Values
Microsoft.Support/supportTickets
| Name |
Description |
Value |
| additionalEmailAddresses |
Additional email addresses listed will be copied on any correspondence about the support ticket. |
string[] |
| country |
Country/region of the user. This is the ISO 3166-1 alpha-3 code. |
string (required) |
| firstName |
First name. |
string (required) |
| lastName |
Last name. |
string (required) |
| phoneNumber |
Phone number. This is required if preferred contact method is phone. |
string |
| preferredContactMethod |
Preferred contact method. |
'email' 'phone' (required) |
| preferredSupportLanguage |
Preferred language of support from Azure. Support languages vary based on the severity you choose for your support ticket. Learn more at <a target='_blank' href='https://azure.microsoft.com/support/plans/response/'>Azure Severity and responsiveness</a>. Use the standard language-country code. Valid values are 'en-us' for English, 'zh-hans' for Chinese, 'es-es' for Spanish, 'fr-fr' for French, 'ja-jp' for Japanese, 'ko-kr' for Korean, 'ru-ru' for Russian, 'pt-br' for Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for German. |
string (required) |
| preferredTimeZone |
Time zone of the user. This is the name of the time zone from <a target='_blank' href='https://support.microsoft.com/en-us/help/973627/microsoft-time-zone-index-values'>Microsoft Time Zone Index Values</a>. |
string (required) |
| primaryEmailAddress |
Primary email address. |
string (required) |
QuotaChangeRequest
| Name |
Description |
Value |
| payload |
Payload of the quota increase request. |
string |
| region |
Region for which the quota increase request is being made. |
string |
QuotaTicketDetails
| Name |
Description |
Value |
| quotaChangeRequests |
This property is required for providing the region and new quota limits. |
QuotaChangeRequest[] |
| quotaChangeRequestSubType |
Required for certain quota types when there is a sub type that you are requesting quota increase for. Example: Batch |
string |
| quotaChangeRequestVersion |
Quota change request version |
string |
ServiceLevelAgreement
SupportEngineer
SupportTicketDetailsProperties
| Name |
Description |
Value |
| contactDetails |
Contact information of the user requesting to create a support ticket. |
ContactProfile (required) |
| description |
Detailed description of the question or issue. |
string (required) |
| problemClassificationId |
Each Azure service has its own set of issue category called problem classification that corresponds to the type of problem you're experiencing. This parameter is the resource id of ProblemClassification resource. |
string (required) |
| problemStartTime |
Time in UTC (ISO 8601 format) when the problem started. |
string |
| quotaTicketDetails |
Additional ticket details associated with a quota support ticket request. |
QuotaTicketDetails |
| require24X7Response |
Indicates if this requires a 24x7 response from Azure. |
bool |
| serviceId |
This is the resource id of the Azure service resource associated with the support ticket. |
string (required) |
| serviceLevelAgreement |
Service Level Agreement information for this support ticket. |
ServiceLevelAgreement |
| severity |
A value that indicates the urgency of the case, which in turn determines the response time according to the service level agreement of the technical support plan you have with Azure. |
'critical' 'minimal' 'moderate' (required) |
| supportEngineer |
Information about support engineer working on this support ticket. |
SupportEngineer |
| supportTicketId |
System generated support ticket id that is unique. |
string |
| technicalTicketDetails |
Additional ticket details associated with a technical support ticket request. |
TechnicalTicketDetails |
| title |
Title of the support ticket. |
string (required) |
TechnicalTicketDetails
| Name |
Description |
Value |
| resourceId |
This is the resource id of the Azure service resource (For example: A virtual machine resource or an HDInsight resource) for which the support ticket is created. |
string |
ARM template resource definition
The supportTickets resource type can be deployed with operations that target:
Usage Examples
To create a Microsoft.Support/supportTickets resource, add the following JSON to your template.
{
"type": "Microsoft.Support/supportTickets",
"apiVersion": "2019-05-01-preview",
"name": "string",
"properties": {
"contactDetails": {
"additionalEmailAddresses": [ "string" ],
"country": "string",
"firstName": "string",
"lastName": "string",
"phoneNumber": "string",
"preferredContactMethod": "string",
"preferredSupportLanguage": "string",
"preferredTimeZone": "string",
"primaryEmailAddress": "string"
},
"description": "string",
"problemClassificationId": "string",
"problemStartTime": "string",
"quotaTicketDetails": {
"quotaChangeRequests": [
{
"payload": "string",
"region": "string"
}
],
"quotaChangeRequestSubType": "string",
"quotaChangeRequestVersion": "string"
},
"require24X7Response": "bool",
"serviceId": "string",
"serviceLevelAgreement": {
},
"severity": "string",
"supportEngineer": {
},
"supportTicketId": "string",
"technicalTicketDetails": {
"resourceId": "string"
},
"title": "string"
}
}
Property Values
Microsoft.Support/supportTickets
| Name |
Description |
Value |
| apiVersion |
The api version |
'2019-05-01-preview' |
| name |
The resource name |
string (required) |
| properties |
Properties of the resource |
SupportTicketDetailsProperties |
| type |
The resource type |
'Microsoft.Support/supportTickets' |
| Name |
Description |
Value |
| additionalEmailAddresses |
Additional email addresses listed will be copied on any correspondence about the support ticket. |
string[] |
| country |
Country/region of the user. This is the ISO 3166-1 alpha-3 code. |
string (required) |
| firstName |
First name. |
string (required) |
| lastName |
Last name. |
string (required) |
| phoneNumber |
Phone number. This is required if preferred contact method is phone. |
string |
| preferredContactMethod |
Preferred contact method. |
'email' 'phone' (required) |
| preferredSupportLanguage |
Preferred language of support from Azure. Support languages vary based on the severity you choose for your support ticket. Learn more at <a target='_blank' href='https://azure.microsoft.com/support/plans/response/'>Azure Severity and responsiveness</a>. Use the standard language-country code. Valid values are 'en-us' for English, 'zh-hans' for Chinese, 'es-es' for Spanish, 'fr-fr' for French, 'ja-jp' for Japanese, 'ko-kr' for Korean, 'ru-ru' for Russian, 'pt-br' for Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for German. |
string (required) |
| preferredTimeZone |
Time zone of the user. This is the name of the time zone from <a target='_blank' href='https://support.microsoft.com/en-us/help/973627/microsoft-time-zone-index-values'>Microsoft Time Zone Index Values</a>. |
string (required) |
| primaryEmailAddress |
Primary email address. |
string (required) |
QuotaChangeRequest
| Name |
Description |
Value |
| payload |
Payload of the quota increase request. |
string |
| region |
Region for which the quota increase request is being made. |
string |
QuotaTicketDetails
| Name |
Description |
Value |
| quotaChangeRequests |
This property is required for providing the region and new quota limits. |
QuotaChangeRequest[] |
| quotaChangeRequestSubType |
Required for certain quota types when there is a sub type that you are requesting quota increase for. Example: Batch |
string |
| quotaChangeRequestVersion |
Quota change request version |
string |
ServiceLevelAgreement
SupportEngineer
SupportTicketDetailsProperties
| Name |
Description |
Value |
| contactDetails |
Contact information of the user requesting to create a support ticket. |
ContactProfile (required) |
| description |
Detailed description of the question or issue. |
string (required) |
| problemClassificationId |
Each Azure service has its own set of issue category called problem classification that corresponds to the type of problem you're experiencing. This parameter is the resource id of ProblemClassification resource. |
string (required) |
| problemStartTime |
Time in UTC (ISO 8601 format) when the problem started. |
string |
| quotaTicketDetails |
Additional ticket details associated with a quota support ticket request. |
QuotaTicketDetails |
| require24X7Response |
Indicates if this requires a 24x7 response from Azure. |
bool |
| serviceId |
This is the resource id of the Azure service resource associated with the support ticket. |
string (required) |
| serviceLevelAgreement |
Service Level Agreement information for this support ticket. |
ServiceLevelAgreement |
| severity |
A value that indicates the urgency of the case, which in turn determines the response time according to the service level agreement of the technical support plan you have with Azure. |
'critical' 'minimal' 'moderate' (required) |
| supportEngineer |
Information about support engineer working on this support ticket. |
SupportEngineer |
| supportTicketId |
System generated support ticket id that is unique. |
string |
| technicalTicketDetails |
Additional ticket details associated with a technical support ticket request. |
TechnicalTicketDetails |
| title |
Title of the support ticket. |
string (required) |
TechnicalTicketDetails
| Name |
Description |
Value |
| resourceId |
This is the resource id of the Azure service resource (For example: A virtual machine resource or an HDInsight resource) for which the support ticket is created. |
string |
The supportTickets resource type can be deployed with operations that target:
- Subscription
For a list of changed properties in each API version, see change log.
To create a Microsoft.Support/supportTickets resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Support/supportTickets@2019-05-01-preview"
name = "string"
parent_id = "string"
body = {
properties = {
contactDetails = {
additionalEmailAddresses = [
"string"
]
country = "string"
firstName = "string"
lastName = "string"
phoneNumber = "string"
preferredContactMethod = "string"
preferredSupportLanguage = "string"
preferredTimeZone = "string"
primaryEmailAddress = "string"
}
description = "string"
problemClassificationId = "string"
problemStartTime = "string"
quotaTicketDetails = {
quotaChangeRequests = [
{
payload = "string"
region = "string"
}
]
quotaChangeRequestSubType = "string"
quotaChangeRequestVersion = "string"
}
require24X7Response = bool
serviceId = "string"
serviceLevelAgreement = {
}
severity = "string"
supportEngineer = {
}
supportTicketId = "string"
technicalTicketDetails = {
resourceId = "string"
}
title = "string"
}
}
}
Property Values
Microsoft.Support/supportTickets
| Name |
Description |
Value |
| name |
The resource name |
string (required) |
| properties |
Properties of the resource |
SupportTicketDetailsProperties |
| type |
The resource type |
"Microsoft.Support/supportTickets@2019-05-01-preview" |
| Name |
Description |
Value |
| additionalEmailAddresses |
Additional email addresses listed will be copied on any correspondence about the support ticket. |
string[] |
| country |
Country/region of the user. This is the ISO 3166-1 alpha-3 code. |
string (required) |
| firstName |
First name. |
string (required) |
| lastName |
Last name. |
string (required) |
| phoneNumber |
Phone number. This is required if preferred contact method is phone. |
string |
| preferredContactMethod |
Preferred contact method. |
'email' 'phone' (required) |
| preferredSupportLanguage |
Preferred language of support from Azure. Support languages vary based on the severity you choose for your support ticket. Learn more at <a target='_blank' href='https://azure.microsoft.com/support/plans/response/'>Azure Severity and responsiveness</a>. Use the standard language-country code. Valid values are 'en-us' for English, 'zh-hans' for Chinese, 'es-es' for Spanish, 'fr-fr' for French, 'ja-jp' for Japanese, 'ko-kr' for Korean, 'ru-ru' for Russian, 'pt-br' for Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for German. |
string (required) |
| preferredTimeZone |
Time zone of the user. This is the name of the time zone from <a target='_blank' href='https://support.microsoft.com/en-us/help/973627/microsoft-time-zone-index-values'>Microsoft Time Zone Index Values</a>. |
string (required) |
| primaryEmailAddress |
Primary email address. |
string (required) |
QuotaChangeRequest
| Name |
Description |
Value |
| payload |
Payload of the quota increase request. |
string |
| region |
Region for which the quota increase request is being made. |
string |
QuotaTicketDetails
| Name |
Description |
Value |
| quotaChangeRequests |
This property is required for providing the region and new quota limits. |
QuotaChangeRequest[] |
| quotaChangeRequestSubType |
Required for certain quota types when there is a sub type that you are requesting quota increase for. Example: Batch |
string |
| quotaChangeRequestVersion |
Quota change request version |
string |
ServiceLevelAgreement
SupportEngineer
SupportTicketDetailsProperties
| Name |
Description |
Value |
| contactDetails |
Contact information of the user requesting to create a support ticket. |
ContactProfile (required) |
| description |
Detailed description of the question or issue. |
string (required) |
| problemClassificationId |
Each Azure service has its own set of issue category called problem classification that corresponds to the type of problem you're experiencing. This parameter is the resource id of ProblemClassification resource. |
string (required) |
| problemStartTime |
Time in UTC (ISO 8601 format) when the problem started. |
string |
| quotaTicketDetails |
Additional ticket details associated with a quota support ticket request. |
QuotaTicketDetails |
| require24X7Response |
Indicates if this requires a 24x7 response from Azure. |
bool |
| serviceId |
This is the resource id of the Azure service resource associated with the support ticket. |
string (required) |
| serviceLevelAgreement |
Service Level Agreement information for this support ticket. |
ServiceLevelAgreement |
| severity |
A value that indicates the urgency of the case, which in turn determines the response time according to the service level agreement of the technical support plan you have with Azure. |
'critical' 'minimal' 'moderate' (required) |
| supportEngineer |
Information about support engineer working on this support ticket. |
SupportEngineer |
| supportTicketId |
System generated support ticket id that is unique. |
string |
| technicalTicketDetails |
Additional ticket details associated with a technical support ticket request. |
TechnicalTicketDetails |
| title |
Title of the support ticket. |
string (required) |
TechnicalTicketDetails
| Name |
Description |
Value |
| resourceId |
This is the resource id of the Azure service resource (For example: A virtual machine resource or an HDInsight resource) for which the support ticket is created. |
string |