Source code for azure.keyvault.models.issuer_credentials_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 IssuerCredentials(Model): """The credentials to be used for the certificate issuer. :param account_id: The user name/account name/account id. :type account_id: str :param password: The password/secret/account key. :type password: str """ _attribute_map = { 'account_id': {'key': 'account_id', 'type': 'str'}, 'password': {'key': 'pwd', 'type': 'str'}, } def __init__(self, *, account_id: str=None, password: str=None, **kwargs) -> None: super(IssuerCredentials, self).__init__(**kwargs) self.account_id = account_id self.password = password