Source code for azure.keyvault.models.certificate_issuer_set_parameters_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class CertificateIssuerSetParameters(Model): """The certificate issuer set parameters. All required parameters must be populated in order to send to Azure. :param provider: Required. The issuer provider. :type provider: str :param credentials: The credentials to be used for the issuer. :type credentials: ~azure.keyvault.models.IssuerCredentials :param organization_details: Details of the organization as provided to the issuer. :type organization_details: ~azure.keyvault.models.OrganizationDetails :param attributes: Attributes of the issuer object. :type attributes: ~azure.keyvault.models.IssuerAttributes """ _validation = { 'provider': {'required': True}, } _attribute_map = { 'provider': {'key': 'provider', 'type': 'str'}, 'credentials': {'key': 'credentials', 'type': 'IssuerCredentials'}, 'organization_details': {'key': 'org_details', 'type': 'OrganizationDetails'}, 'attributes': {'key': 'attributes', 'type': 'IssuerAttributes'}, } def __init__(self, *, provider: str, credentials=None, organization_details=None, attributes=None, **kwargs) -> None: super(CertificateIssuerSetParameters, self).__init__(**kwargs) self.provider = provider self.credentials = credentials self.organization_details = organization_details self.attributes = attributes