< Summary

Class:Microsoft.Azure.ContainerRegistry.Models.ManifestListAttributes
Assembly:Microsoft.Azure.ContainerRegistry
File(s):C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Generated\Models\ManifestListAttributes.cs
Covered lines:3
Uncovered lines:9
Coverable lines:12
Total lines:77
Line coverage:25% (3 of 12)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Generated\Models\ManifestListAttributes.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.Linq;
 15
 16    public partial class ManifestListAttributes
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the ManifestListAttributes class.
 20        /// </summary>
 1621        public ManifestListAttributes()
 22        {
 23            CustomInit();
 1624        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the ManifestListAttributes class.
 28        /// </summary>
 29        /// <param name="mediaType">The MIME type of the referenced object.
 30        /// This will generally be
 31        /// application/vnd.docker.image.manifest.v2+json, but it could also be
 32        /// application/vnd.docker.image.manifest.v1+json</param>
 33        /// <param name="size">The size in bytes of the object</param>
 34        /// <param name="digest">The digest of the content, as defined by the
 35        /// Registry V2 HTTP API Specification</param>
 036        public ManifestListAttributes(string mediaType = default(string), long? size = default(long?), string digest = d
 37        {
 038            MediaType = mediaType;
 039            Size = size;
 040            Digest = digest;
 041            Platform = platform;
 42            CustomInit();
 043        }
 44
 45        /// <summary>
 46        /// An initialization method that performs custom operations like setting defaults
 47        /// </summary>
 48        partial void CustomInit();
 49
 50        /// <summary>
 51        /// Gets or sets the MIME type of the referenced object. This will
 52        /// generally be application/vnd.docker.image.manifest.v2+json, but it
 53        /// could also be application/vnd.docker.image.manifest.v1+json
 54        /// </summary>
 55        [JsonProperty(PropertyName = "mediaType")]
 056        public string MediaType { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets the size in bytes of the object
 60        /// </summary>
 61        [JsonProperty(PropertyName = "size")]
 062        public long? Size { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets the digest of the content, as defined by the Registry
 66        /// V2 HTTP API Specification
 67        /// </summary>
 68        [JsonProperty(PropertyName = "digest")]
 069        public string Digest { get; set; }
 70
 71        /// <summary>
 72        /// </summary>
 73        [JsonProperty(PropertyName = "platform")]
 2474        public Platform Platform { get; set; }
 75
 76    }
 77}