< Summary

Class:Microsoft.Azure.EventGrid.Models.MediaJobOutput
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MediaJobOutput.cs
Covered lines:5
Uncovered lines:8
Coverable lines:13
Total lines:89
Line coverage:38.4% (5 of 13)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Error()-100%100%
get_Label()-0%100%
get_Progress()-100%100%
get_State()-100%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MediaJobOutput.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.Linq;
 15
 16    /// <summary>
 17    /// The event data for a Job output.
 18    /// </summary>
 19    [Newtonsoft.Json.JsonObject("MediaJobOutput")]
 20    public partial class MediaJobOutput
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the MediaJobOutput class.
 24        /// </summary>
 1025        public MediaJobOutput()
 26        {
 27            CustomInit();
 1028        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the MediaJobOutput class.
 32        /// </summary>
 33        /// <param name="progress">Gets the Job output progress.</param>
 34        /// <param name="state">Gets the Job output state. Possible values
 35        /// include: 'Canceled', 'Canceling', 'Error', 'Finished',
 36        /// 'Processing', 'Queued', 'Scheduled'</param>
 37        /// <param name="error">Gets the Job output error.</param>
 38        /// <param name="label">Gets the Job output label.</param>
 039        public MediaJobOutput(long progress, MediaJobState state, MediaJobError error = default(MediaJobError), string l
 40        {
 041            Error = error;
 042            Label = label;
 043            Progress = progress;
 044            State = state;
 45            CustomInit();
 046        }
 47
 48        /// <summary>
 49        /// An initialization method that performs custom operations like setting defaults
 50        /// </summary>
 51        partial void CustomInit();
 52
 53        /// <summary>
 54        /// Gets the Job output error.
 55        /// </summary>
 56        [JsonProperty(PropertyName = "error")]
 1757        public MediaJobError Error { get; set; }
 58
 59        /// <summary>
 60        /// Gets the Job output label.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "label")]
 063        public string Label { get; set; }
 64
 65        /// <summary>
 66        /// Gets the Job output progress.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "progress")]
 1369        public long Progress { get; set; }
 70
 71        /// <summary>
 72        /// Gets the Job output state. Possible values include: 'Canceled',
 73        /// 'Canceling', 'Error', 'Finished', 'Processing', 'Queued',
 74        /// 'Scheduled'
 75        /// </summary>
 76        [JsonProperty(PropertyName = "state")]
 2077        public MediaJobState State { get; set; }
 78
 79        /// <summary>
 80        /// Validate the object.
 81        /// </summary>
 82        /// <exception cref="Rest.ValidationException">
 83        /// Thrown if validation fails
 84        /// </exception>
 85        public virtual void Validate()
 86        {
 087        }
 88    }
 89}