< Summary

Class:Microsoft.Azure.KeyVault.Models.KeyProperties
Assembly:Microsoft.Azure.KeyVault
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\KeyProperties.cs
Covered lines:6
Uncovered lines:8
Coverable lines:14
Total lines:95
Line coverage:42.8% (6 of 14)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Exportable()-100%100%
get_KeyType()-100%100%
get_KeySize()-100%100%
get_ReuseKey()-100%100%
get_Curve()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\KeyProperties.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.Linq;
 15
 16    /// <summary>
 17    /// Properties of the key pair backing a certificate.
 18    /// </summary>
 19    public partial class KeyProperties
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the KeyProperties class.
 23        /// </summary>
 13024        public KeyProperties()
 25        {
 26            CustomInit();
 13027        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the KeyProperties class.
 31        /// </summary>
 32        /// <param name="exportable">Indicates if the private key can be
 33        /// exported.</param>
 34        /// <param name="keyType">The type of key pair to be used for the
 35        /// certificate. Possible values include: 'EC', 'EC-HSM', 'RSA',
 36        /// 'RSA-HSM', 'oct'</param>
 37        /// <param name="keySize">The key size in bits. For example: 2048,
 38        /// 3072, or 4096 for RSA.</param>
 39        /// <param name="reuseKey">Indicates if the same key pair will be used
 40        /// on certificate renewal.</param>
 41        /// <param name="curve">Elliptic curve name. For valid values, see
 42        /// Microsoft.Azure.KeyVault.WebKey.JsonWebKeyCurveName. Possible values include: 'P-256', 'P-384',
 43        /// 'P-521', 'P-256K'</param>
 044        public KeyProperties(bool? exportable = default(bool?), string keyType = default(string), int? keySize = default
 45        {
 046            Exportable = exportable;
 047            KeyType = keyType;
 048            KeySize = keySize;
 049            ReuseKey = reuseKey;
 050            Curve = curve;
 51            CustomInit();
 052        }
 53
 54        /// <summary>
 55        /// An initialization method that performs custom operations like setting defaults
 56        /// </summary>
 57        partial void CustomInit();
 58
 59        /// <summary>
 60        /// Gets or sets indicates if the private key can be exported.
 61        /// </summary>
 62        [JsonProperty(PropertyName = "exportable")]
 16863        public bool? Exportable { get; set; }
 64
 65        /// <summary>
 66        /// Gets or sets the type of key pair to be used for the certificate.
 67        /// Possible values include: 'EC', 'EC-HSM', 'RSA', 'RSA-HSM', 'oct'
 68        /// </summary>
 69        [JsonProperty(PropertyName = "kty")]
 16870        public string KeyType { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets the key size in bits. For example: 2048, 3072, or 4096
 74        /// for RSA.
 75        /// </summary>
 76        [JsonProperty(PropertyName = "key_size")]
 16877        public int? KeySize { get; set; }
 78
 79        /// <summary>
 80        /// Gets or sets indicates if the same key pair will be used on
 81        /// certificate renewal.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "reuse_key")]
 16884        public bool? ReuseKey { get; set; }
 85
 86        /// <summary>
 87        /// Gets or sets elliptic curve name. For valid values, see
 88        /// Microsoft.Azure.KeyVault.WebKey.JsonWebKeyCurveName. Possible values include: 'P-256', 'P-384',
 89        /// 'P-521', 'P-256K'
 90        /// </summary>
 91        [JsonProperty(PropertyName = "crv")]
 092        public string Curve { get; set; }
 93
 94    }
 95}