< Summary

Class:Microsoft.Azure.ContainerRegistry.Models.Descriptor
Assembly:Microsoft.Azure.ContainerRegistry
File(s):C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Generated\Models\Descriptor.cs
Covered lines:7
Uncovered lines:7
Coverable lines:14
Total lines:85
Line coverage:50% (7 of 14)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_MediaType()-100%100%
get_Size()-100%100%
get_Digest()-100%100%
get_Urls()-100%100%
get_Annotations()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Generated\Models\Descriptor.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.ContainerRegistry.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Docker V2 image layer descriptor including config and layers
 20    /// </summary>
 21    public partial class Descriptor
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the Descriptor class.
 25        /// </summary>
 3226        public Descriptor()
 27        {
 28            CustomInit();
 3229        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the Descriptor class.
 33        /// </summary>
 34        /// <param name="mediaType">Layer media type</param>
 35        /// <param name="size">Layer size</param>
 36        /// <param name="digest">Layer digest</param>
 37        /// <param name="urls">Specifies a list of URIs from which this object
 38        /// may be downloaded.</param>
 039        public Descriptor(string mediaType = default(string), long? size = default(long?), string digest = default(strin
 40        {
 041            MediaType = mediaType;
 042            Size = size;
 043            Digest = digest;
 044            Urls = urls;
 045            Annotations = annotations;
 46            CustomInit();
 047        }
 48
 49        /// <summary>
 50        /// An initialization method that performs custom operations like setting defaults
 51        /// </summary>
 52        partial void CustomInit();
 53
 54        /// <summary>
 55        /// Gets or sets layer media type
 56        /// </summary>
 57        [JsonProperty(PropertyName = "mediaType")]
 8058        public string MediaType { get; set; }
 59
 60        /// <summary>
 61        /// Gets or sets layer size
 62        /// </summary>
 63        [JsonProperty(PropertyName = "size")]
 8064        public long? Size { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets layer digest
 68        /// </summary>
 69        [JsonProperty(PropertyName = "digest")]
 8070        public string Digest { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets specifies a list of URIs from which this object may be
 74        /// downloaded.
 75        /// </summary>
 76        [JsonProperty(PropertyName = "urls")]
 1277        public IList<string> Urls { get; set; }
 78
 79        /// <summary>
 80        /// </summary>
 81        [JsonProperty(PropertyName = "annotations")]
 2482        public Annotations Annotations { get; set; }
 83
 84    }
 85}