< Summary

Class:Microsoft.Azure.KeyVault.Models.SecretUpdateParameters
Assembly:Microsoft.Azure.KeyVault
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\SecretUpdateParameters.cs
Covered lines:0
Uncovered lines:10
Coverable lines:10
Total lines:73
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_ContentType()-0%100%
get_SecretAttributes()-0%100%
get_Tags()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\SecretUpdateParameters.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 update parameters.
 20    /// </summary>
 21    public partial class SecretUpdateParameters
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the SecretUpdateParameters class.
 25        /// </summary>
 026        public SecretUpdateParameters()
 27        {
 28            CustomInit();
 029        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the SecretUpdateParameters class.
 33        /// </summary>
 34        /// <param name="contentType">Type of the secret value such as a
 35        /// password.</param>
 36        /// <param name="secretAttributes">The secret management
 37        /// attributes.</param>
 38        /// <param name="tags">Application specific metadata in the form of
 39        /// key-value pairs.</param>
 040        public SecretUpdateParameters(string contentType = default(string), SecretAttributes secretAttributes = default(
 41        {
 042            ContentType = contentType;
 043            SecretAttributes = secretAttributes;
 044            Tags = tags;
 45            CustomInit();
 046        }
 47
 48        /// <summary>
 49        /// An initialization method that performs custom operations like setting defaults
 50        /// </summary>
 51        partial void CustomInit();
 52
 53        /// <summary>
 54        /// Gets or sets type of the secret value such as a password.
 55        /// </summary>
 56        [JsonProperty(PropertyName = "contentType")]
 057        public string ContentType { get; set; }
 58
 59        /// <summary>
 60        /// Gets or sets the secret management attributes.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "attributes")]
 063        public SecretAttributes SecretAttributes { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets application specific metadata in the form of key-value
 67        /// pairs.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "tags")]
 070        public IDictionary<string, string> Tags { get; set; }
 71
 72    }
 73}