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
|
# 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 UserAccount(Model):
"""Properties used to create a user on an Azure Batch node.
:param name: The name of the user account.
:type name: str
:param password: The password for the user account.
:type password: str
:param elevation_level: The elevation level of the user account. nonAdmin
- The auto user is a standard user without elevated access. admin - The
auto user is a user with elevated access and operates with full
Administrator permissions. The default value is nonAdmin. Possible values
include: 'NonAdmin', 'Admin'
:type elevation_level: str or ~azure.mgmt.batch.models.ElevationLevel
:param linux_user_configuration: The Linux-specific user configuration for
the user account. This property is ignored if specified on a Windows pool.
If not specified, the user is created with the default options.
:type linux_user_configuration:
~azure.mgmt.batch.models.LinuxUserConfiguration
"""
_validation = {
'name': {'required': True},
'password': {'required': True},
}
_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'password': {'key': 'password', 'type': 'str'},
'elevation_level': {'key': 'elevationLevel', 'type': 'ElevationLevel'},
'linux_user_configuration': {'key': 'linuxUserConfiguration', 'type': 'LinuxUserConfiguration'},
}
def __init__(self, name, password, elevation_level=None, linux_user_configuration=None):
super(UserAccount, self).__init__()
self.name = name
self.password = password
self.elevation_level = elevation_level
self.linux_user_configuration = linux_user_configuration
|