< Summary

Class:Microsoft.Azure.ContainerRegistry.Models.ManifestAttributesBase
Assembly:Microsoft.Azure.ContainerRegistry
File(s):C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Generated\Models\ManifestAttributesBase.cs
Covered lines:8
Uncovered lines:16
Coverable lines:24
Total lines:125
Line coverage:33.3% (8 of 24)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Digest()-100%100%
get_ImageSize()-0%100%
get_CreatedTime()-0%100%
get_LastUpdateTime()-0%100%
get_Architecture()-100%100%
get_Os()-100%100%
get_MediaType()-100%100%
get_ConfigMediaType()-0%100%
get_Tags()-100%100%
get_ChangeableAttributes()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Generated\Models\ManifestAttributesBase.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    /// Manifest details
 20    /// </summary>
 21    public partial class ManifestAttributesBase
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the ManifestAttributesBase class.
 25        /// </summary>
 1426        public ManifestAttributesBase()
 27        {
 28            CustomInit();
 1429        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the ManifestAttributesBase class.
 33        /// </summary>
 34        /// <param name="digest">Manifest</param>
 35        /// <param name="imageSize">Image size</param>
 36        /// <param name="createdTime">Created time</param>
 37        /// <param name="lastUpdateTime">Last update time</param>
 38        /// <param name="architecture">CPU architecture</param>
 39        /// <param name="os">Operating system</param>
 40        /// <param name="mediaType">Media type</param>
 41        /// <param name="configMediaType">Config blob media type</param>
 42        /// <param name="tags">List of tags</param>
 43        /// <param name="changeableAttributes">Changeable attributes</param>
 044        public ManifestAttributesBase(string digest = default(string), long? imageSize = default(long?), string createdT
 45        {
 046            Digest = digest;
 047            ImageSize = imageSize;
 048            CreatedTime = createdTime;
 049            LastUpdateTime = lastUpdateTime;
 050            Architecture = architecture;
 051            Os = os;
 052            MediaType = mediaType;
 053            ConfigMediaType = configMediaType;
 054            Tags = tags;
 055            ChangeableAttributes = changeableAttributes;
 56            CustomInit();
 057        }
 58
 59        /// <summary>
 60        /// An initialization method that performs custom operations like setting defaults
 61        /// </summary>
 62        partial void CustomInit();
 63
 64        /// <summary>
 65        /// Gets or sets manifest
 66        /// </summary>
 67        [JsonProperty(PropertyName = "digest")]
 2668        public string Digest { get; set; }
 69
 70        /// <summary>
 71        /// Gets or sets image size
 72        /// </summary>
 73        [JsonProperty(PropertyName = "imageSize")]
 074        public long? ImageSize { get; set; }
 75
 76        /// <summary>
 77        /// Gets or sets created time
 78        /// </summary>
 79        [JsonProperty(PropertyName = "createdTime")]
 080        public string CreatedTime { get; set; }
 81
 82        /// <summary>
 83        /// Gets or sets last update time
 84        /// </summary>
 85        [JsonProperty(PropertyName = "lastUpdateTime")]
 086        public string LastUpdateTime { get; set; }
 87
 88        /// <summary>
 89        /// Gets or sets CPU architecture
 90        /// </summary>
 91        [JsonProperty(PropertyName = "architecture")]
 2692        public string Architecture { get; set; }
 93
 94        /// <summary>
 95        /// Gets or sets operating system
 96        /// </summary>
 97        [JsonProperty(PropertyName = "os")]
 2698        public string Os { get; set; }
 99
 100        /// <summary>
 101        /// Gets or sets media type
 102        /// </summary>
 103        [JsonProperty(PropertyName = "mediaType")]
 26104        public string MediaType { get; set; }
 105
 106        /// <summary>
 107        /// Gets or sets config blob media type
 108        /// </summary>
 109        [JsonProperty(PropertyName = "configMediaType")]
 0110        public string ConfigMediaType { get; set; }
 111
 112        /// <summary>
 113        /// Gets or sets list of tags
 114        /// </summary>
 115        [JsonProperty(PropertyName = "tags")]
 48116        public IList<string> Tags { get; set; }
 117
 118        /// <summary>
 119        /// Gets or sets changeable attributes
 120        /// </summary>
 121        [JsonProperty(PropertyName = "changeableAttributes")]
 74122        public ChangeableAttributes ChangeableAttributes { get; set; }
 123
 124    }
 125}