< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_Key()-100%100%
get_Attributes()-100%100%
get_Tags()-100%100%
get_Managed()-100%100%
.ctor()-100%100%
.ctor(...)-100%100%
get_KeyIdentifier()-66.67%50%
.ctor()-100%100%
.ctor(...)-0%100%
get_Key()-100%100%
get_Attributes()-100%100%
get_Tags()-100%100%
get_Managed()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Customized\KeyBundle.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    public partial class KeyBundle
 8    {
 9        /// <summary>
 10        /// The identifier for the key object
 11        /// </summary>
 12        public KeyIdentifier KeyIdentifier
 13        {
 14            get
 15            {
 816                if (Key != null && !string.IsNullOrWhiteSpace(Key.Kid))
 817                    return new KeyIdentifier(Key.Kid);
 18                else
 019                    return null;
 20            }
 21        }
 22    }
 23}

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\KeyBundle.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    /// A KeyBundle consisting of a WebKey plus its attributes.
 20    /// </summary>
 21    public partial class KeyBundle
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the KeyBundle class.
 25        /// </summary>
 5326        public KeyBundle()
 27        {
 28            CustomInit();
 5329        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the KeyBundle class.
 33        /// </summary>
 34        /// <param name="key">The Json web key.</param>
 35        /// <param name="attributes">The key management attributes.</param>
 36        /// <param name="tags">Application specific metadata in the form of
 37        /// key-value pairs.</param>
 38        /// <param name="managed">True if the key's lifetime is managed by key
 39        /// vault. If this is a key backing a certificate, then managed will be
 40        /// true.</param>
 041        public KeyBundle(Microsoft.Azure.KeyVault.WebKey.JsonWebKey key = default(Microsoft.Azure.KeyVault.WebKey.JsonWe
 42        {
 043            Key = key;
 044            Attributes = attributes;
 045            Tags = tags;
 046            Managed = managed;
 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 the Json web key.
 57        /// </summary>
 58        [JsonProperty(PropertyName = "key")]
 15659        public Microsoft.Azure.KeyVault.WebKey.JsonWebKey Key { get; set; }
 60
 61        /// <summary>
 62        /// Gets or sets the key management attributes.
 63        /// </summary>
 64        [JsonProperty(PropertyName = "attributes")]
 14065        public KeyAttributes Attributes { get; set; }
 66
 67        /// <summary>
 68        /// Gets or sets application specific metadata in the form of key-value
 69        /// pairs.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "tags")]
 2172        public IDictionary<string, string> Tags { get; set; }
 73
 74        /// <summary>
 75        /// Gets true if the key's lifetime is managed by key vault. If this is
 76        /// a key backing a certificate, then managed will be true.
 77        /// </summary>
 78        [JsonProperty(PropertyName = "managed")]
 279        public bool? Managed { get; private set; }
 80
 81    }
 82}