< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Customized\SecretItem.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 SecretItem
 8    {
 9        /// <summary>
 10        /// The identifier for secret object
 11        /// </summary>
 12        public SecretIdentifier Identifier
 13        {
 14            get
 15            {
 1216                if (!string.IsNullOrWhiteSpace(Id))
 1217                    return new SecretIdentifier(Id);
 18                else
 019                    return null;
 20            }
 21        }
 22    }
 23}

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\SecretItem.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 secret item containing secret metadata.
 20    /// </summary>
 21    public partial class SecretItem
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the SecretItem class.
 25        /// </summary>
 1426        public SecretItem()
 27        {
 28            CustomInit();
 1429        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the SecretItem class.
 33        /// </summary>
 34        /// <param name="id">Secret identifier.</param>
 35        /// <param name="attributes">The secret management attributes.</param>
 36        /// <param name="tags">Application specific metadata in the form of
 37        /// key-value pairs.</param>
 38        /// <param name="contentType">Type of the secret value such as a
 39        /// password.</param>
 40        /// <param name="managed">True if the secret's lifetime is managed by
 41        /// key vault. If this is a key backing a certificate, then managed
 42        /// will be true.</param>
 043        public SecretItem(string id = default(string), SecretAttributes attributes = default(SecretAttributes), IDiction
 44        {
 045            Id = id;
 046            Attributes = attributes;
 047            Tags = tags;
 048            ContentType = contentType;
 049            Managed = managed;
 50            CustomInit();
 051        }
 52
 53        /// <summary>
 54        /// An initialization method that performs custom operations like setting defaults
 55        /// </summary>
 56        partial void CustomInit();
 57
 58        /// <summary>
 59        /// Gets or sets secret identifier.
 60        /// </summary>
 61        [JsonProperty(PropertyName = "id")]
 5362        public string Id { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets the secret management attributes.
 66        /// </summary>
 67        [JsonProperty(PropertyName = "attributes")]
 3168        public SecretAttributes Attributes { get; set; }
 69
 70        /// <summary>
 71        /// Gets or sets application specific metadata in the form of key-value
 72        /// pairs.
 73        /// </summary>
 74        [JsonProperty(PropertyName = "tags")]
 275        public IDictionary<string, string> Tags { get; set; }
 76
 77        /// <summary>
 78        /// Gets or sets type of the secret value such as a password.
 79        /// </summary>
 80        [JsonProperty(PropertyName = "contentType")]
 1081        public string ContentType { get; set; }
 82
 83        /// <summary>
 84        /// Gets true if the secret's lifetime is managed by key vault. If this
 85        /// is a key backing a certificate, then managed will be true.
 86        /// </summary>
 87        [JsonProperty(PropertyName = "managed")]
 088        public bool? Managed { get; private set; }
 89
 90    }
 91}