# 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 enum import Enum
[docs]class DirectoryType(str, Enum):
active_directory = "ActiveDirectory"
[docs]class OSType(str, Enum):
windows = "Windows"
linux = "Linux"
[docs]class Tier(str, Enum):
standard = "Standard"
premium = "Premium"
[docs]class HDInsightClusterProvisioningState(str, Enum):
in_progress = "InProgress"
failed = "Failed"
succeeded = "Succeeded"
canceled = "Canceled"
deleting = "Deleting"
[docs]class AsyncOperationState(str, Enum):
in_progress = "InProgress"
succeeded = "Succeeded"
failed = "Failed"