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
|
# 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 VirtualMachineScaleSetOSProfile(Model):
"""Describes a virtual machine scale set OS profile.
:param computer_name_prefix: the computer name prefix.
:type computer_name_prefix: str
:param admin_username: the admin user name.
:type admin_username: str
:param admin_password: the admin user password.
:type admin_password: str
:param custom_data: a base-64 encoded string of custom data.
:type custom_data: str
:param windows_configuration: the Windows Configuration of the OS profile.
:type windows_configuration: :class:`WindowsConfiguration
<azure.mgmt.compute.models.WindowsConfiguration>`
:param linux_configuration: the Linux Configuration of the OS profile.
:type linux_configuration: :class:`LinuxConfiguration
<azure.mgmt.compute.models.LinuxConfiguration>`
:param secrets: the List of certificates for addition to the VM.
:type secrets: list of :class:`VaultSecretGroup
<azure.mgmt.compute.models.VaultSecretGroup>`
"""
_attribute_map = {
'computer_name_prefix': {'key': 'computerNamePrefix', 'type': 'str'},
'admin_username': {'key': 'adminUsername', 'type': 'str'},
'admin_password': {'key': 'adminPassword', 'type': 'str'},
'custom_data': {'key': 'customData', 'type': 'str'},
'windows_configuration': {'key': 'windowsConfiguration', 'type': 'WindowsConfiguration'},
'linux_configuration': {'key': 'linuxConfiguration', 'type': 'LinuxConfiguration'},
'secrets': {'key': 'secrets', 'type': '[VaultSecretGroup]'},
}
def __init__(self, computer_name_prefix=None, admin_username=None, admin_password=None, custom_data=None, windows_configuration=None, linux_configuration=None, secrets=None):
self.computer_name_prefix = computer_name_prefix
self.admin_username = admin_username
self.admin_password = admin_password
self.custom_data = custom_data
self.windows_configuration = windows_configuration
self.linux_configuration = linux_configuration
self.secrets = secrets
|