< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_CertificateBundleBackup()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\CertificateRestoreParameters.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 Microsoft.Rest.Serialization;
 15    using Newtonsoft.Json;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// The certificate restore parameters.
 20    /// </summary>
 21    public partial class CertificateRestoreParameters
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the CertificateRestoreParameters
 25        /// class.
 26        /// </summary>
 027        public CertificateRestoreParameters()
 28        {
 29            CustomInit();
 030        }
 31
 32        /// <summary>
 33        /// Initializes a new instance of the CertificateRestoreParameters
 34        /// class.
 35        /// </summary>
 36        /// <param name="certificateBundleBackup">The backup blob associated
 37        /// with a certificate bundle.</param>
 038        public CertificateRestoreParameters(byte[] certificateBundleBackup)
 39        {
 040            CertificateBundleBackup = certificateBundleBackup;
 41            CustomInit();
 042        }
 43
 44        /// <summary>
 45        /// An initialization method that performs custom operations like setting defaults
 46        /// </summary>
 47        partial void CustomInit();
 48
 49        /// <summary>
 50        /// Gets or sets the backup blob associated with a certificate bundle.
 51        /// </summary>
 52        [JsonConverter(typeof(Base64UrlJsonConverter))]
 53        [JsonProperty(PropertyName = "value")]
 054        public byte[] CertificateBundleBackup { get; set; }
 55
 56        /// <summary>
 57        /// Validate the object.
 58        /// </summary>
 59        /// <exception cref="ValidationException">
 60        /// Thrown if validation fails
 61        /// </exception>
 62        public virtual void Validate()
 63        {
 064            if (CertificateBundleBackup == null)
 65            {
 066                throw new ValidationException(ValidationRules.CannotBeNull, "CertificateBundleBackup");
 67            }
 068        }
 69    }
 70}