< Summary

Class:Microsoft.Azure.EventGrid.Models.MediaJobError
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MediaJobError.cs
Covered lines:6
Uncovered lines:8
Coverable lines:14
Total lines:106
Line coverage:42.8% (6 of 14)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Code()-100%100%
get_Message()-0%100%
get_Category()-100%100%
get_Retry()-100%100%
get_Details()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MediaJobError.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.EventGrid.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Details of JobOutput errors.
 20    /// </summary>
 21    public partial class MediaJobError
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the MediaJobError class.
 25        /// </summary>
 226        public MediaJobError()
 27        {
 28            CustomInit();
 229        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the MediaJobError class.
 33        /// </summary>
 34        /// <param name="code">Error code describing the error. Possible values
 35        /// include: 'ServiceError', 'ServiceTransientError',
 36        /// 'DownloadNotAccessible', 'DownloadTransientError',
 37        /// 'UploadNotAccessible', 'UploadTransientError',
 38        /// 'ConfigurationUnsupported', 'ContentMalformed',
 39        /// 'ContentUnsupported'</param>
 40        /// <param name="message">A human-readable language-dependent
 41        /// representation of the error.</param>
 42        /// <param name="category">Helps with categorization of errors.
 43        /// Possible values include: 'Service', 'Download', 'Upload',
 44        /// 'Configuration', 'Content'</param>
 45        /// <param name="retry">Indicates that it may be possible to retry the
 46        /// Job. If retry is unsuccessful, please contact Azure support via
 47        /// Azure Portal. Possible values include: 'DoNotRetry',
 48        /// 'MayRetry'</param>
 49        /// <param name="details">An array of details about specific errors
 50        /// that led to this reported error.</param>
 051        public MediaJobError(MediaJobErrorCode code = default(MediaJobErrorCode), string message = default(string), Medi
 52        {
 053            Code = code;
 054            Message = message;
 055            Category = category;
 056            Retry = retry;
 057            Details = details;
 58            CustomInit();
 059        }
 60
 61        /// <summary>
 62        /// An initialization method that performs custom operations like setting defaults
 63        /// </summary>
 64        partial void CustomInit();
 65
 66        /// <summary>
 67        /// Gets error code describing the error. Possible values include:
 68        /// 'ServiceError', 'ServiceTransientError', 'DownloadNotAccessible',
 69        /// 'DownloadTransientError', 'UploadNotAccessible',
 70        /// 'UploadTransientError', 'ConfigurationUnsupported',
 71        /// 'ContentMalformed', 'ContentUnsupported'
 72        /// </summary>
 73        [JsonProperty(PropertyName = "code")]
 674        public MediaJobErrorCode Code { get; private set; }
 75
 76        /// <summary>
 77        /// Gets a human-readable language-dependent representation of the
 78        /// error.
 79        /// </summary>
 80        [JsonProperty(PropertyName = "message")]
 081        public string Message { get; private set; }
 82
 83        /// <summary>
 84        /// Gets helps with categorization of errors. Possible values include:
 85        /// 'Service', 'Download', 'Upload', 'Configuration', 'Content'
 86        /// </summary>
 87        [JsonProperty(PropertyName = "category")]
 688        public MediaJobErrorCategory Category { get; private set; }
 89
 90        /// <summary>
 91        /// Gets indicates that it may be possible to retry the Job. If retry
 92        /// is unsuccessful, please contact Azure support via Azure Portal.
 93        /// Possible values include: 'DoNotRetry', 'MayRetry'
 94        /// </summary>
 95        [JsonProperty(PropertyName = "retry")]
 496        public MediaJobRetry Retry { get; private set; }
 97
 98        /// <summary>
 99        /// Gets an array of details about specific errors that led to this
 100        /// reported error.
 101        /// </summary>
 102        [JsonProperty(PropertyName = "details")]
 4103        public IList<MediaJobErrorDetail> Details { get; private set; }
 104
 105    }
 106}