< Summary

Class:Microsoft.Azure.KeyVault.Models.KeyImportParameters
Assembly:Microsoft.Azure.KeyVault
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\KeyImportParameters.cs
Covered lines:6
Uncovered lines:9
Coverable lines:15
Total lines:95
Line coverage:40% (6 of 15)
Covered branches:0
Total branches:2
Branch coverage:0% (0 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Hsm()-100%100%
get_Key()-100%100%
get_KeyAttributes()-100%100%
get_Tags()-100%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\KeyImportParameters.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 Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Collections;
 16    using System.Collections.Generic;
 17    using System.Linq;
 18
 19    /// <summary>
 20    /// The key import parameters.
 21    /// </summary>
 22    public partial class KeyImportParameters
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the KeyImportParameters class.
 26        /// </summary>
 227        public KeyImportParameters()
 28        {
 29            CustomInit();
 230        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the KeyImportParameters class.
 34        /// </summary>
 35        /// <param name="key">The Json web key</param>
 36        /// <param name="hsm">Whether to import as a hardware key (HSM) or
 37        /// software key.</param>
 38        /// <param name="keyAttributes">The key management attributes.</param>
 39        /// <param name="tags">Application specific metadata in the form of
 40        /// key-value pairs.</param>
 041        public KeyImportParameters(Microsoft.Azure.KeyVault.WebKey.JsonWebKey key, bool? hsm = default(bool?), KeyAttrib
 42        {
 043            Hsm = hsm;
 044            Key = key;
 045            KeyAttributes = keyAttributes;
 046            Tags = tags;
 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 whether to import as a hardware key (HSM) or software
 57        /// key.
 58        /// </summary>
 59        [JsonProperty(PropertyName = "Hsm")]
 460        public bool? Hsm { get; set; }
 61
 62        /// <summary>
 63        /// Gets or sets the Json web key
 64        /// </summary>
 65        [JsonProperty(PropertyName = "key")]
 466        public Microsoft.Azure.KeyVault.WebKey.JsonWebKey Key { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets the key management attributes.
 70        /// </summary>
 71        [JsonProperty(PropertyName = "attributes")]
 472        public KeyAttributes KeyAttributes { get; set; }
 73
 74        /// <summary>
 75        /// Gets or sets application specific metadata in the form of key-value
 76        /// pairs.
 77        /// </summary>
 78        [JsonProperty(PropertyName = "tags")]
 479        public IDictionary<string, string> Tags { get; set; }
 80
 81        /// <summary>
 82        /// Validate the object.
 83        /// </summary>
 84        /// <exception cref="ValidationException">
 85        /// Thrown if validation fails
 86        /// </exception>
 87        public virtual void Validate()
 88        {
 089            if (Key == null)
 90            {
 091                throw new ValidationException(ValidationRules.CannotBeNull, "Key");
 92            }
 093        }
 94    }
 95}