< Summary

Class:Microsoft.Azure.KeyVault.Models.SasDefinitionItem
Assembly:Microsoft.Azure.KeyVault
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Customized\SasDefinitionItem.cs
C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\SasDefinitionItem.cs
Covered lines:0
Uncovered lines:16
Coverable lines:16
Total lines:106
Line coverage:0% (0 of 16)
Covered branches:0
Total branches:2
Branch coverage:0% (0 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_Id()-100%100%
get_SecretId()-100%100%
get_Attributes()-100%100%
get_Tags()-100%100%
.ctor(...)-100%100%
get_Identifier()-0%0%
.ctor()-0%100%
.ctor()-0%100%
.ctor(...)-0%100%
get_Id()-0%100%
get_SecretId()-0%100%
get_Attributes()-0%100%
get_Tags()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Customized\SasDefinitionItem.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License. See License.txt in the project root for
 3// license information.
 4
 5namespace Microsoft.Azure.KeyVault.Models
 6{
 7    /// <summary>
 8    /// The storage SAS definition item containing storage SAS definition metadata.
 9    /// </summary>
 10    public partial class SasDefinitionItem
 11    {
 12        /// <summary>
 13        /// The key vault storage SAS definition identifier.
 14        /// </summary>
 15        public SasDefinitionIdentifier Identifier
 16        {
 17            get
 18            {
 019                if (!string.IsNullOrWhiteSpace(Id))
 020                    return new SasDefinitionIdentifier(Id);
 21                else
 022                    return null;
 23            }
 24        }
 25    }
 026}

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\SasDefinitionItem.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 Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// The SAS definition item containing storage SAS definition metadata.
 20    /// </summary>
 21    public partial class SasDefinitionItem
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the SasDefinitionItem class.
 25        /// </summary>
 026        public SasDefinitionItem()
 27        {
 28            CustomInit();
 029        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the SasDefinitionItem class.
 33        /// </summary>
 34        /// <param name="id">The storage SAS identifier.</param>
 35        /// <param name="secretId">The storage account SAS definition secret
 36        /// id.</param>
 37        /// <param name="attributes">The SAS definition management
 38        /// attributes.</param>
 39        /// <param name="tags">Application specific metadata in the form of
 40        /// key-value pairs.</param>
 041        public SasDefinitionItem(string id = default(string), string secretId = default(string), SasDefinitionAttributes
 42        {
 043            Id = id;
 044            SecretId = secretId;
 045            Attributes = attributes;
 046            Tags = tags;
 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 the storage SAS identifier.
 57        /// </summary>
 58        [JsonProperty(PropertyName = "id")]
 059        public string Id { get; private set; }
 60
 61        /// <summary>
 62        /// Gets the storage account SAS definition secret id.
 63        /// </summary>
 64        [JsonProperty(PropertyName = "sid")]
 065        public string SecretId { get; private set; }
 66
 67        /// <summary>
 68        /// Gets the SAS definition management attributes.
 69        /// </summary>
 70        [JsonProperty(PropertyName = "attributes")]
 071        public SasDefinitionAttributes Attributes { get; private set; }
 72
 73        /// <summary>
 74        /// Gets application specific metadata in the form of key-value pairs.
 75        /// </summary>
 76        [JsonProperty(PropertyName = "tags")]
 077        public IDictionary<string, string> Tags { get; private set; }
 78
 79    }
 80}