SupportTicketData Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SupportTicketData() |
Initializes a new instance of SupportTicketData. |
SupportTicketData(String, String, SupportSeverityLevel, AdvancedDiagnosticConsent, SupportContactProfile, String, String) |
Initializes a new instance of SupportTicketData. |
SupportTicketData()
- Source:
- SupportTicketData.cs
Initializes a new instance of SupportTicketData.
public SupportTicketData ();
Public Sub New ()
Applies to
SupportTicketData(String, String, SupportSeverityLevel, AdvancedDiagnosticConsent, SupportContactProfile, String, String)
- Source:
- SupportTicketData.cs
Initializes a new instance of SupportTicketData.
public SupportTicketData (string description, string problemClassificationId, Azure.ResourceManager.Support.Models.SupportSeverityLevel severity, Azure.ResourceManager.Support.Models.AdvancedDiagnosticConsent advancedDiagnosticConsent, Azure.ResourceManager.Support.Models.SupportContactProfile contactDetails, string title, string serviceId);
new Azure.ResourceManager.Support.SupportTicketData : string * string * Azure.ResourceManager.Support.Models.SupportSeverityLevel * Azure.ResourceManager.Support.Models.AdvancedDiagnosticConsent * Azure.ResourceManager.Support.Models.SupportContactProfile * string * string -> Azure.ResourceManager.Support.SupportTicketData
Public Sub New (description As String, problemClassificationId As String, severity As SupportSeverityLevel, advancedDiagnosticConsent As AdvancedDiagnosticConsent, contactDetails As SupportContactProfile, title As String, serviceId As String)
Parameters
- description
- String
Detailed description of the question or issue.
- problemClassificationId
- String
Each Azure service has its own set of issue categories, also known as problem classification. This parameter is the unique Id for the type of problem you are experiencing.
- severity
- SupportSeverityLevel
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. Note: 'Highest critical impact', also known as the 'Emergency - Severe impact' level in the Azure portal is reserved only for our Premium customers.
- advancedDiagnosticConsent
- AdvancedDiagnosticConsent
Advanced diagnostic consent to be updated on the support ticket.
- contactDetails
- SupportContactProfile
Contact information of the user requesting to create a support ticket.
- title
- String
Title of the support ticket.
- serviceId
- String
This is the resource Id of the Azure service resource associated with the support ticket.
Exceptions
description
, problemClassificationId
, contactDetails
, title
or serviceId
is null.
Applies to
Azure SDK for .NET