< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Name()-100%100%
get_Digest()-100%100%
get_CreatedTime()-100%100%
get_LastUpdateTime()-100%100%
get_Signed()-100%100%
get_ChangeableAttributes()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Generated\Models\TagAttributesBase.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    /// <summary>
 17    /// Tag attribute details
 18    /// </summary>
 19    public partial class TagAttributesBase
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the TagAttributesBase class.
 23        /// </summary>
 27024        public TagAttributesBase()
 25        {
 26            CustomInit();
 27027        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the TagAttributesBase class.
 31        /// </summary>
 32        /// <param name="name">Tag name</param>
 33        /// <param name="digest">Tag digest</param>
 34        /// <param name="createdTime">Tag created time</param>
 35        /// <param name="lastUpdateTime">Tag last update time</param>
 36        /// <param name="signed">Is signed</param>
 37        /// <param name="changeableAttributes">Changeable attributes</param>
 038        public TagAttributesBase(string name = default(string), string digest = default(string), string createdTime = de
 39        {
 040            Name = name;
 041            Digest = digest;
 042            CreatedTime = createdTime;
 043            LastUpdateTime = lastUpdateTime;
 044            Signed = signed;
 045            ChangeableAttributes = changeableAttributes;
 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 tag name
 56        /// </summary>
 57        [JsonProperty(PropertyName = "name")]
 28658        public string Name { get; set; }
 59
 60        /// <summary>
 61        /// Gets or sets tag digest
 62        /// </summary>
 63        [JsonProperty(PropertyName = "digest")]
 28464        public string Digest { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets tag created time
 68        /// </summary>
 69        [JsonProperty(PropertyName = "createdTime")]
 28270        public string CreatedTime { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets tag last update time
 74        /// </summary>
 75        [JsonProperty(PropertyName = "lastUpdateTime")]
 28276        public string LastUpdateTime { get; set; }
 77
 78        /// <summary>
 79        /// Gets or sets is signed
 80        /// </summary>
 81        [JsonProperty(PropertyName = "signed")]
 28282        public bool? Signed { get; set; }
 83
 84        /// <summary>
 85        /// Gets or sets changeable attributes
 86        /// </summary>
 87        [JsonProperty(PropertyName = "changeableAttributes")]
 58888        public ChangeableAttributes ChangeableAttributes { get; set; }
 89
 90    }
 91}