# 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 SshPublicKey(Model):
"""The SSH public key for the cluster nodes.
:param certificate_data: The certificate for SSH.
:type certificate_data: str
"""
_attribute_map = {
'certificate_data': {'key': 'certificateData', 'type': 'str'},
}
def __init__(self, *, certificate_data: str=None, **kwargs) -> None:
super(SshPublicKey, self).__init__(**kwargs)
self.certificate_data = certificate_data