< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_DeleteEnabled()-0%100%
get_WriteEnabled()-0%100%
get_ListEnabled()-0%100%
get_ReadEnabled()-0%100%
get_QuarantineState()-0%100%
get_QuarantineDetails()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\containerregistry\Microsoft.Azure.ContainerRegistry\src\Generated\Models\ManifestChangeableAttributes.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    /// Changeable attributes
 18    /// </summary>
 19    public partial class ManifestChangeableAttributes
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the ManifestChangeableAttributes
 23        /// class.
 24        /// </summary>
 025        public ManifestChangeableAttributes()
 26        {
 27            CustomInit();
 028        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the ManifestChangeableAttributes
 32        /// class.
 33        /// </summary>
 34        /// <param name="deleteEnabled">Delete enabled</param>
 35        /// <param name="writeEnabled">Write enabled</param>
 36        /// <param name="listEnabled">List enabled</param>
 37        /// <param name="readEnabled">Read enabled</param>
 38        /// <param name="quarantineState">Quarantine state</param>
 39        /// <param name="quarantineDetails">Quarantine details</param>
 040        public ManifestChangeableAttributes(bool? deleteEnabled = default(bool?), bool? writeEnabled = default(bool?), b
 41        {
 042            DeleteEnabled = deleteEnabled;
 043            WriteEnabled = writeEnabled;
 044            ListEnabled = listEnabled;
 045            ReadEnabled = readEnabled;
 046            QuarantineState = quarantineState;
 047            QuarantineDetails = quarantineDetails;
 48            CustomInit();
 049        }
 50
 51        /// <summary>
 52        /// An initialization method that performs custom operations like setting defaults
 53        /// </summary>
 54        partial void CustomInit();
 55
 56        /// <summary>
 57        /// Gets or sets delete enabled
 58        /// </summary>
 59        [JsonProperty(PropertyName = "deleteEnabled")]
 060        public bool? DeleteEnabled { get; set; }
 61
 62        /// <summary>
 63        /// Gets or sets write enabled
 64        /// </summary>
 65        [JsonProperty(PropertyName = "writeEnabled")]
 066        public bool? WriteEnabled { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets list enabled
 70        /// </summary>
 71        [JsonProperty(PropertyName = "listEnabled")]
 072        public bool? ListEnabled { get; set; }
 73
 74        /// <summary>
 75        /// Gets or sets read enabled
 76        /// </summary>
 77        [JsonProperty(PropertyName = "readEnabled")]
 078        public bool? ReadEnabled { get; set; }
 79
 80        /// <summary>
 81        /// Gets or sets quarantine state
 82        /// </summary>
 83        [JsonProperty(PropertyName = "quarantineState")]
 084        public string QuarantineState { get; set; }
 85
 86        /// <summary>
 87        /// Gets or sets quarantine details
 88        /// </summary>
 89        [JsonProperty(PropertyName = "quarantineDetails")]
 090        public string QuarantineDetails { get; set; }
 91
 92    }
 93}