1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
# 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
class CertificateAddParameter(Model):
"""A certificate that can be installed on compute nodes and can be used to
authenticate operations on the machine.
:param thumbprint: The X.509 thumbprint of the certificate. This is a
sequence of up to 40 hex digits (it may include spaces but these are
removed).
:type thumbprint: str
:param thumbprint_algorithm: The algorithm used to derive the thumbprint.
This must be sha1.
:type thumbprint_algorithm: str
:param data: The base64-encoded contents of the certificate. The maximum
size is 10KB.
:type data: str
:param certificate_format: The format of the certificate data. Possible
values include: 'pfx', 'cer', 'unmapped'
:type certificate_format: str or :class:`CertificateFormat
<azure.batch.models.CertificateFormat>`
:param password: The password to access the certificate's private key.
:type password: str
"""
_validation = {
'thumbprint': {'required': True},
'thumbprint_algorithm': {'required': True},
'data': {'required': True},
}
_attribute_map = {
'thumbprint': {'key': 'thumbprint', 'type': 'str'},
'thumbprint_algorithm': {'key': 'thumbprintAlgorithm', 'type': 'str'},
'data': {'key': 'data', 'type': 'str'},
'certificate_format': {'key': 'certificateFormat', 'type': 'CertificateFormat'},
'password': {'key': 'password', 'type': 'str'},
}
def __init__(self, thumbprint, thumbprint_algorithm, data, certificate_format=None, password=None):
self.thumbprint = thumbprint
self.thumbprint_algorithm = thumbprint_algorithm
self.data = data
self.certificate_format = certificate_format
self.password = password
|