< Summary

Class:Microsoft.Azure.KeyVault.Models.DeletedSasDefinitionItem
Assembly:Microsoft.Azure.KeyVault
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\DeletedSasDefinitionItem.cs
Covered lines:0
Uncovered lines:10
Coverable lines:10
Total lines:87
Line coverage:0% (0 of 10)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_RecoveryId()-0%100%
get_ScheduledPurgeDate()-0%100%
get_DeletedDate()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\DeletedSasDefinitionItem.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.Collections;
 17    using System.Collections.Generic;
 18    using System.Linq;
 19
 20    /// <summary>
 21    /// The deleted SAS definition item containing metadata about the deleted
 22    /// SAS definition.
 23    /// </summary>
 24    public partial class DeletedSasDefinitionItem : SasDefinitionItem
 25    {
 26        /// <summary>
 27        /// Initializes a new instance of the DeletedSasDefinitionItem class.
 28        /// </summary>
 029        public DeletedSasDefinitionItem()
 30        {
 31            CustomInit();
 032        }
 33
 34        /// <summary>
 35        /// Initializes a new instance of the DeletedSasDefinitionItem class.
 36        /// </summary>
 37        /// <param name="id">The storage SAS identifier.</param>
 38        /// <param name="secretId">The storage account SAS definition secret
 39        /// id.</param>
 40        /// <param name="attributes">The SAS definition management
 41        /// attributes.</param>
 42        /// <param name="tags">Application specific metadata in the form of
 43        /// key-value pairs.</param>
 44        /// <param name="recoveryId">The url of the recovery object, used to
 45        /// identify and recover the deleted SAS definition.</param>
 46        /// <param name="scheduledPurgeDate">The time when the SAS definition
 47        /// is scheduled to be purged, in UTC</param>
 48        /// <param name="deletedDate">The time when the SAS definition was
 49        /// deleted, in UTC</param>
 50        public DeletedSasDefinitionItem(string id = default(string), string secretId = default(string), SasDefinitionAtt
 051            : base(id, secretId, attributes, tags)
 52        {
 053            RecoveryId = recoveryId;
 054            ScheduledPurgeDate = scheduledPurgeDate;
 055            DeletedDate = deletedDate;
 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 the url of the recovery object, used to identify and
 66        /// recover the deleted SAS definition.
 67        /// </summary>
 68        [JsonProperty(PropertyName = "recoveryId")]
 069        public string RecoveryId { get; set; }
 70
 71        /// <summary>
 72        /// Gets the time when the SAS definition is scheduled to be purged, in
 73        /// UTC
 74        /// </summary>
 75        [JsonConverter(typeof(UnixTimeJsonConverter))]
 76        [JsonProperty(PropertyName = "scheduledPurgeDate")]
 077        public System.DateTime? ScheduledPurgeDate { get; private set; }
 78
 79        /// <summary>
 80        /// Gets the time when the SAS definition was deleted, in UTC
 81        /// </summary>
 82        [JsonConverter(typeof(UnixTimeJsonConverter))]
 83        [JsonProperty(PropertyName = "deletedDate")]
 084        public System.DateTime? DeletedDate { get; private set; }
 85
 86    }
 87}