< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Provider()-0%100%
get_Credentials()-0%100%
get_OrganizationDetails()-0%100%
get_Attributes()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\CertificateIssuerUpdateParameters.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    /// The certificate issuer update parameters.
 18    /// </summary>
 19    public partial class CertificateIssuerUpdateParameters
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the CertificateIssuerUpdateParameters
 23        /// class.
 24        /// </summary>
 025        public CertificateIssuerUpdateParameters()
 26        {
 27            CustomInit();
 028        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the CertificateIssuerUpdateParameters
 32        /// class.
 33        /// </summary>
 34        /// <param name="provider">The issuer provider.</param>
 35        /// <param name="credentials">The credentials to be used for the
 36        /// issuer.</param>
 37        /// <param name="organizationDetails">Details of the organization as
 38        /// provided to the issuer.</param>
 39        /// <param name="attributes">Attributes of the issuer object.</param>
 040        public CertificateIssuerUpdateParameters(string provider = default(string), IssuerCredentials credentials = defa
 41        {
 042            Provider = provider;
 043            Credentials = credentials;
 044            OrganizationDetails = organizationDetails;
 045            Attributes = attributes;
 46            CustomInit();
 047        }
 48
 49        /// <summary>
 50        /// An initialization method that performs custom operations like setting defaults
 51        /// </summary>
 52        partial void CustomInit();
 53
 54        /// <summary>
 55        /// Gets or sets the issuer provider.
 56        /// </summary>
 57        [JsonProperty(PropertyName = "provider")]
 058        public string Provider { get; set; }
 59
 60        /// <summary>
 61        /// Gets or sets the credentials to be used for the issuer.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "credentials")]
 064        public IssuerCredentials Credentials { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets details of the organization as provided to the issuer.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "org_details")]
 070        public OrganizationDetails OrganizationDetails { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets attributes of the issuer object.
 74        /// </summary>
 75        [JsonProperty(PropertyName = "attributes")]
 076        public IssuerAttributes Attributes { get; set; }
 77
 78    }
 79}