< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_AssetName()-100%100%
Validate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\MediaJobOutputAsset.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 asset.
 18    /// </summary>
 19    [Newtonsoft.Json.JsonObject("#Microsoft.Media.JobOutputAsset")]
 20    public partial class MediaJobOutputAsset : MediaJobOutput
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the MediaJobOutputAsset class.
 24        /// </summary>
 1025        public MediaJobOutputAsset()
 26        {
 27            CustomInit();
 1028        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the MediaJobOutputAsset 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>
 39        /// <param name="assetName">Gets the Job output asset name.</param>
 40        public MediaJobOutputAsset(long progress, MediaJobState state, MediaJobError error = default(MediaJobError), str
 041            : base(progress, state, error, label)
 42        {
 043            AssetName = assetName;
 44            CustomInit();
 045        }
 46
 47        /// <summary>
 48        /// An initialization method that performs custom operations like setting defaults
 49        /// </summary>
 50        partial void CustomInit();
 51
 52        /// <summary>
 53        /// Gets the Job output asset name.
 54        /// </summary>
 55        [JsonProperty(PropertyName = "assetName")]
 1456        public string AssetName { get; set; }
 57
 58        /// <summary>
 59        /// Validate the object.
 60        /// </summary>
 61        /// <exception cref="Rest.ValidationException">
 62        /// Thrown if validation fails
 63        /// </exception>
 64        public override void Validate()
 65        {
 066            base.Validate();
 067        }
 68    }
 69}