Source code for azure.mgmt.hdinsight.models.os_profile_py3

# 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 OsProfile(Model): """The Linux operation systems profile. :param linux_operating_system_profile: The Linux OS profile. :type linux_operating_system_profile: ~azure.mgmt.hdinsight.models.LinuxOperatingSystemProfile """ _attribute_map = { 'linux_operating_system_profile': {'key': 'linuxOperatingSystemProfile', 'type': 'LinuxOperatingSystemProfile'}, } def __init__(self, *, linux_operating_system_profile=None, **kwargs) -> None: super(OsProfile, self).__init__(**kwargs) self.linux_operating_system_profile = linux_operating_system_profile