< Summary

Class:Microsoft.Azure.KeyVault.Models.StorageAccountItem
Assembly:Microsoft.Azure.KeyVault
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Customized\StorageAccountItem.cs
C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\StorageAccountItem.cs
Covered lines:7
Uncovered lines:9
Coverable lines:16
Total lines:105
Line coverage:43.7% (7 of 16)
Covered branches:1
Total branches:2
Branch coverage:50% (1 of 2)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Customized\StorageAccountItem.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 account item containing storage account metadata.
 9    /// </summary>
 10    public partial class StorageAccountItem
 11    {
 12        /// <summary>
 13        /// The storage account identifier.
 14        /// </summary>
 15        public StorageAccountIdentifier Identifier
 16        {
 17            get
 18            {
 419                if (!string.IsNullOrWhiteSpace(Id))
 420                    return new StorageAccountIdentifier(Id);
 21                else
 022                    return null;
 23            }
 24        }
 25    }
 926}

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\StorageAccountItem.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 storage account item containing storage account metadata.
 20    /// </summary>
 21    public partial class StorageAccountItem
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the StorageAccountItem class.
 25        /// </summary>
 926        public StorageAccountItem()
 27        {
 28            CustomInit();
 929        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the StorageAccountItem class.
 33        /// </summary>
 34        /// <param name="id">Storage identifier.</param>
 35        /// <param name="resourceId">Storage account resource Id.</param>
 36        /// <param name="attributes">The storage account management
 37        /// attributes.</param>
 38        /// <param name="tags">Application specific metadata in the form of
 39        /// key-value pairs.</param>
 040        public StorageAccountItem(string id = default(string), string resourceId = default(string), StorageAccountAttrib
 41        {
 042            Id = id;
 043            ResourceId = resourceId;
 044            Attributes = attributes;
 045            Tags = tags;
 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 storage identifier.
 56        /// </summary>
 57        [JsonProperty(PropertyName = "id")]
 2458        public string Id { get; private set; }
 59
 60        /// <summary>
 61        /// Gets storage account resource Id.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "resourceId")]
 064        public string ResourceId { get; private set; }
 65
 66        /// <summary>
 67        /// Gets the storage account management attributes.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "attributes")]
 1870        public StorageAccountAttributes Attributes { get; private set; }
 71
 72        /// <summary>
 73        /// Gets application specific metadata in the form of key-value pairs.
 74        /// </summary>
 75        [JsonProperty(PropertyName = "tags")]
 076        public IDictionary<string, string> Tags { get; private set; }
 77
 78    }
 79}