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
|
# 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 LinuxUserConfiguration(Model):
"""Properties used to create a user account on a Linux node.
:param uid: The user ID of the user account. The uid and gid properties
must be specified together or not at all. If not specified the underlying
operating system picks the uid.
:type uid: int
:param gid: The group ID for the user account. The uid and gid properties
must be specified together or not at all. If not specified the underlying
operating system picks the gid.
:type gid: int
:param ssh_private_key: The SSH private key for the user account. The
private key must not be password protected. The private key is used to
automatically configure asymmetric-key based authentication for SSH
between nodes in a Linux pool when the pool's enableInterNodeCommunication
property is true (it is ignored if enableInterNodeCommunication is false).
It does this by placing the key pair into the user's .ssh directory. If
not specified, password-less SSH is not configured between nodes (no
modification of the user's .ssh directory is done).
:type ssh_private_key: str
"""
_attribute_map = {
'uid': {'key': 'uid', 'type': 'int'},
'gid': {'key': 'gid', 'type': 'int'},
'ssh_private_key': {'key': 'sshPrivateKey', 'type': 'str'},
}
def __init__(self, uid=None, gid=None, ssh_private_key=None):
super(LinuxUserConfiguration, self).__init__()
self.uid = uid
self.gid = gid
self.ssh_private_key = ssh_private_key
|