Ejemplo n.º 1
0
 /// <summary>
 /// Get problem classification details for a specific Azure service.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='serviceName'>
 /// Name of the Azure service available for support.
 /// </param>
 /// <param name='problemClassificationName'>
 /// Name of problem classification.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <ProblemClassification> GetAsync(this IProblemClassificationsOperations operations, string serviceName, string problemClassificationName, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetWithHttpMessagesAsync(serviceName, problemClassificationName, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Get problem classification details for a specific Azure service.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='serviceName'>
 /// Name of the Azure service available for support.
 /// </param>
 /// <param name='problemClassificationName'>
 /// Name of problem classification.
 /// </param>
 public static ProblemClassification Get(this IProblemClassificationsOperations operations, string serviceName, string problemClassificationName)
 {
     return(operations.GetAsync(serviceName, problemClassificationName).GetAwaiter().GetResult());
 }
Ejemplo n.º 3
0
 /// <summary>
 /// 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.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='serviceName'>
 /// Name of the Azure service for which the problem classifications need to be
 /// retrieved.
 /// </param>
 public static IEnumerable <ProblemClassification> List(this IProblemClassificationsOperations operations, string serviceName)
 {
     return(operations.ListAsync(serviceName).GetAwaiter().GetResult());
 }