< Summary

Class:Microsoft.Azure.KeyVault.Models.Attributes
Assembly:Microsoft.Azure.KeyVault
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\Attributes.cs
Covered lines:7
Uncovered lines:7
Coverable lines:14
Total lines:90
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_Enabled()-100%100%
get_NotBefore()-100%100%
get_Expires()-100%100%
get_Created()-100%100%
get_Updated()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\Attributes.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.KeyVault.Models
 12{
 13    using Microsoft.Rest;
 14    using Microsoft.Rest.Serialization;
 15    using Newtonsoft.Json;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// The object attributes managed by the KeyVault service.
 20    /// </summary>
 21    public partial class Attributes
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the Attributes class.
 25        /// </summary>
 54026        public Attributes()
 27        {
 28            CustomInit();
 54029        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the Attributes class.
 33        /// </summary>
 34        /// <param name="enabled">Determines whether the object is
 35        /// enabled.</param>
 36        /// <param name="notBefore">Not before date in UTC.</param>
 37        /// <param name="expires">Expiry date in UTC.</param>
 38        /// <param name="created">Creation time in UTC.</param>
 39        /// <param name="updated">Last updated time in UTC.</param>
 040        public Attributes(bool? enabled = default(bool?), System.DateTime? notBefore = default(System.DateTime?), System
 41        {
 042            Enabled = enabled;
 043            NotBefore = notBefore;
 044            Expires = expires;
 045            Created = created;
 046            Updated = updated;
 47            CustomInit();
 048        }
 49
 50        /// <summary>
 51        /// An initialization method that performs custom operations like setting defaults
 52        /// </summary>
 53        partial void CustomInit();
 54
 55        /// <summary>
 56        /// Gets or sets determines whether the object is enabled.
 57        /// </summary>
 58        [JsonProperty(PropertyName = "enabled")]
 55859        public bool? Enabled { get; set; }
 60
 61        /// <summary>
 62        /// Gets or sets not before date in UTC.
 63        /// </summary>
 64        [JsonConverter(typeof(UnixTimeJsonConverter))]
 65        [JsonProperty(PropertyName = "nbf")]
 44266        public System.DateTime? NotBefore { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets expiry date in UTC.
 70        /// </summary>
 71        [JsonConverter(typeof(UnixTimeJsonConverter))]
 72        [JsonProperty(PropertyName = "exp")]
 41473        public System.DateTime? Expires { get; set; }
 74
 75        /// <summary>
 76        /// Gets creation time in UTC.
 77        /// </summary>
 78        [JsonConverter(typeof(UnixTimeJsonConverter))]
 79        [JsonProperty(PropertyName = "created")]
 104480        public System.DateTime? Created { get; private set; }
 81
 82        /// <summary>
 83        /// Gets last updated time in UTC.
 84        /// </summary>
 85        [JsonConverter(typeof(UnixTimeJsonConverter))]
 86        [JsonProperty(PropertyName = "updated")]
 104487        public System.DateTime? Updated { get; private set; }
 88
 89    }
 90}