Source code for azure.mgmt.databricks.models._azure_databricks_management_client_enums

# 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, EnumMeta
from six import with_metaclass

class _CaseInsensitiveEnumMeta(EnumMeta):
    def __getitem__(self, name):
        return super().__getitem__(name.upper())

    def __getattr__(cls, name):
        """Return the enum member matching `name`
        We use __getattr__ instead of descriptors or inserting into the enum
        class' __dict__ in order to support `name` and `value` being both
        properties for enum members (which live in the class' __dict__) and
        enum members themselves.
        """
        try:
            return cls._member_map_[name.upper()]
        except KeyError:
            raise AttributeError(name)


[docs]class CreatedByType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The type of identity that created the resource. """ USER = "User" APPLICATION = "Application" MANAGED_IDENTITY = "ManagedIdentity" KEY = "Key"
[docs]class CustomParameterType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Provisioning status of the workspace. """ BOOL = "Bool" OBJECT = "Object" STRING = "String"
[docs]class EncryptionKeySource(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Keyvault """ MICROSOFT_KEYVAULT = "Microsoft.Keyvault"
[docs]class KeySource(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The encryption keySource (provider). Possible values (case-insensitive): Default, Microsoft.Keyvault """ DEFAULT = "Default" MICROSOFT_KEYVAULT = "Microsoft.Keyvault"
[docs]class PeeringProvisioningState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The current provisioning state. """ SUCCEEDED = "Succeeded" UPDATING = "Updating" DELETING = "Deleting" FAILED = "Failed"
[docs]class PeeringState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The status of the virtual network peering. """ INITIATED = "Initiated" CONNECTED = "Connected" DISCONNECTED = "Disconnected"
[docs]class PrivateEndpointConnectionProvisioningState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The current provisioning state. """ SUCCEEDED = "Succeeded" CREATING = "Creating" UPDATING = "Updating" DELETING = "Deleting" FAILED = "Failed"
[docs]class PrivateLinkServiceConnectionStatus(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The status of a private endpoint connection """ PENDING = "Pending" APPROVED = "Approved" REJECTED = "Rejected" DISCONNECTED = "Disconnected"
[docs]class ProvisioningState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Provisioning status of the workspace. """ ACCEPTED = "Accepted" RUNNING = "Running" READY = "Ready" CREATING = "Creating" CREATED = "Created" DELETING = "Deleting" DELETED = "Deleted" CANCELED = "Canceled" FAILED = "Failed" SUCCEEDED = "Succeeded" UPDATING = "Updating"
[docs]class PublicNetworkAccess(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The network access type for accessing workspace. Set value to disabled to access workspace only via private link. """ ENABLED = "Enabled" DISABLED = "Disabled"
[docs]class RequiredNsgRules(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Gets or sets a value indicating whether data plane (clusters) to control plane communication happen over private endpoint. Supported values are 'AllRules' and 'NoAzureDatabricksRules'. 'NoAzureServiceRules' value is for internal use only. """ ALL_RULES = "AllRules" NO_AZURE_DATABRICKS_RULES = "NoAzureDatabricksRules" NO_AZURE_SERVICE_RULES = "NoAzureServiceRules"