Source code for azure.ai.ml._restclient.v2022_01_01_preview.models._azure_machine_learning_workspaces_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
from six import with_metaclass
from azure.core import CaseInsensitiveEnumMeta


class AllocationState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
    """Allocation state of the compute. Possible values are: steady - Indicates that the compute is
    not resizing. There are no changes to the number of compute nodes in the compute in progress. A
    compute enters this state when it is created and when no operations are being performed on the
    compute to change the number of compute nodes. resizing - Indicates that the compute is
    resizing; that is, compute nodes are being added to or removed from the compute.
    """

    STEADY = "Steady"
    RESIZING = "Resizing"

class AllowRecoverSoftDeletedWorkspace(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
    """Allow a soft deleted workspace to be recovered
    """

    TRUE = "True"
    FALSE = "False"

class ApplicationSharingPolicy(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
    """Policy for sharing applications on this compute instance among users of parent workspace. If
    Personal, only the creator can access applications on this compute instance. When Shared, any
    workspace user can access applications on this instance depending on his/her assigned role.
    """

    PERSONAL = "Personal"
    SHARED = "Shared"

class BillingCurrency(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
    """Three lettered code specifying the currency of the VM price. Example: USD
    """

    USD = "USD"

class ClusterPurpose(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
    """Intended usage of the cluster
    """

    FAST_PROD = "FastProd"
    DENSE_PROD = "DenseProd"
    DEV_TEST = "DevTest"

class ComputeInstanceAuthorizationType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
    """The Compute Instance Authorization type. Available values are personal (default).
    """

    PERSONAL = "personal"

class ComputeInstanceState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)):
    """Current state of an ComputeInstance.
    """

    CREATING = "Creating"
    CREATE_FAILED = "CreateFailed"
    DELETING = "Deleting"
    RUNNING = "Running"
    RESTARTING = "Restarting"
    JOB_RUNNING = "JobRunning"
    SETTING_UP = "SettingUp"
    SETUP_FAILED = "SetupFailed"
    STARTING = "Starting"
    STOPPED = "Stopped"
    STOPPING = "Stopping"
    USER_SETTING_UP = "UserSettingUp"
    USER_SETUP_FAILED = "UserSetupFailed"
    UNKNOWN = "Unknown"
    UNUSABLE = "Unusable"

[docs]class ComputePowerAction(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The compute power action. """ START = "Start" STOP = "Stop"
class ComputeType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The type of compute """ AKS = "AKS" KUBERNETES = "Kubernetes" AML_COMPUTE = "AmlCompute" COMPUTE_INSTANCE = "ComputeInstance" DATA_FACTORY = "DataFactory" VIRTUAL_MACHINE = "VirtualMachine" HD_INSIGHT = "HDInsight" DATABRICKS = "Databricks" DATA_LAKE_ANALYTICS = "DataLakeAnalytics" SYNAPSE_SPARK = "SynapseSpark" class ConnectionAuthType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Authentication type of the connection target """ PAT = "PAT" MANAGED_IDENTITY = "ManagedIdentity" USERNAME_PASSWORD = "UsernamePassword" NONE = "None" SAS = "SAS" SERVICE_PRINCIPAL = "ServicePrincipal" class ConnectionCategory(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Category of the connection """ PYTHON_FEED = "PythonFeed" CONTAINER_REGISTRY = "ContainerRegistry" GIT = "Git" FEATURE_STORE = "FeatureStore" class CreatedByType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The type of identity that created the resource. """ USER = "User" APPLICATION = "Application" MANAGED_IDENTITY = "ManagedIdentity" KEY = "Key" class DaysOfWeek(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): SUNDAY = "Sunday" MONDAY = "Monday" TUESDAY = "Tuesday" WEDNESDAY = "Wednesday" THURSDAY = "Thursday" FRIDAY = "Friday" SATURDAY = "Saturday" class DiagnoseResultLevel(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Level of workspace setup error """ WARNING = "Warning" ERROR = "Error" INFORMATION = "Information" class EncryptionStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Indicates whether or not the encryption is enabled for the workspace. """ ENABLED = "Enabled" DISABLED = "Disabled" class LoadBalancerType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Load Balancer Type """ PUBLIC_IP = "PublicIp" INTERNAL_LOAD_BALANCER = "InternalLoadBalancer" class NodeState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """State of the compute node. Values are idle, running, preparing, unusable, leaving and preempted. """ IDLE = "idle" RUNNING = "running" PREPARING = "preparing" UNUSABLE = "unusable" LEAVING = "leaving" PREEMPTED = "preempted" class OperationName(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Name of the last operation. """ CREATE = "Create" START = "Start" STOP = "Stop" RESTART = "Restart" REIMAGE = "Reimage" DELETE = "Delete" class OperationStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Operation status. """ IN_PROGRESS = "InProgress" SUCCEEDED = "Succeeded" CREATE_FAILED = "CreateFailed" START_FAILED = "StartFailed" STOP_FAILED = "StopFailed" RESTART_FAILED = "RestartFailed" REIMAGE_FAILED = "ReimageFailed" DELETE_FAILED = "DeleteFailed" class OsType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Compute OS Type """ LINUX = "Linux" WINDOWS = "Windows" class PrivateEndpointConnectionProvisioningState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The current provisioning state. """ SUCCEEDED = "Succeeded" CREATING = "Creating" DELETING = "Deleting" FAILED = "Failed" class PrivateEndpointServiceConnectionStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The private endpoint connection status. """ PENDING = "Pending" APPROVED = "Approved" REJECTED = "Rejected" DISCONNECTED = "Disconnected" TIMEOUT = "Timeout" class ProvisioningState(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The current deployment state of workspace resource. The provisioningState is to indicate states for resource provisioning. """ UNKNOWN = "Unknown" UPDATING = "Updating" CREATING = "Creating" DELETING = "Deleting" SUCCEEDED = "Succeeded" FAILED = "Failed" CANCELED = "Canceled" class ProvisioningStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The current deployment state of schedule. """ COMPLETED = "Completed" PROVISIONING = "Provisioning" FAILED = "Failed" class PublicNetworkAccess(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Whether requests from Public Network are allowed. """ ENABLED = "Enabled" DISABLED = "Disabled" class QuotaUnit(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """An enum describing the unit of quota measurement. """ COUNT = "Count" class RecurrenceFrequency(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The recurrence frequency. """ NOT_SPECIFIED = "NotSpecified" SECOND = "Second" MINUTE = "Minute" HOUR = "Hour" DAY = "Day" WEEK = "Week" MONTH = "Month" YEAR = "Year" class RemoteLoginPortPublicAccess(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on all nodes of the cluster. Enabled - Indicates that the public ssh port is open on all nodes of the cluster. NotSpecified - Indicates that the public ssh port is closed on all nodes of the cluster if VNet is defined, else is open all public nodes. It can be default only during cluster creation time, after creation it will be either enabled or disabled. """ ENABLED = "Enabled" DISABLED = "Disabled" NOT_SPECIFIED = "NotSpecified" class ResourceIdentityType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The identity type. """ SYSTEM_ASSIGNED = "SystemAssigned" SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned,UserAssigned" USER_ASSIGNED = "UserAssigned" NONE = "None" class ScheduleStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The schedule status. """ ENABLED = "Enabled" DISABLED = "Disabled" class ScheduleType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The schedule type. """ COMPUTE_START_STOP = "ComputeStartStop" class SoftDeleteEnabled(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """create a workspace with soft delete capability """ TRUE = "True" FALSE = "False" class SshPublicAccess(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """State of the public SSH port. Possible values are: Disabled - Indicates that the public ssh port is closed on this instance. Enabled - Indicates that the public ssh port is open and accessible according to the VNet/subnet policy if applicable. """ ENABLED = "Enabled" DISABLED = "Disabled" class SslConfigurationStatus(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Enable or disable ssl for scoring """ DISABLED = "Disabled" ENABLED = "Enabled" AUTO = "Auto" class Status(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Status of update workspace quota. """ UNDEFINED = "Undefined" SUCCESS = "Success" FAILURE = "Failure" INVALID_QUOTA_BELOW_CLUSTER_MINIMUM = "InvalidQuotaBelowClusterMinimum" INVALID_QUOTA_EXCEEDS_SUBSCRIPTION_LIMIT = "InvalidQuotaExceedsSubscriptionLimit" INVALID_VM_FAMILY_NAME = "InvalidVMFamilyName" OPERATION_NOT_SUPPORTED_FOR_SKU = "OperationNotSupportedForSku" OPERATION_NOT_ENABLED_FOR_REGION = "OperationNotEnabledForRegion" class TriggerType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The schedule trigger type. """ RECURRENCE = "Recurrence" CRON = "Cron" class UnderlyingResourceAction(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): DELETE = "Delete" DETACH = "Detach" class UnitOfMeasure(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The unit of time measurement for the specified VM price. Example: OneHour """ ONE_HOUR = "OneHour" class UsageUnit(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """An enum describing the unit of usage measurement. """ COUNT = "Count" class ValueFormat(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """format for the workspace connection value """ JSON = "JSON" class VMPriceOSType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Operating system type used by the VM. """ LINUX = "Linux" WINDOWS = "Windows" class VmPriority(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Virtual Machine priority """ DEDICATED = "Dedicated" LOW_PRIORITY = "LowPriority" class VMTier(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """The type of the VM. """ STANDARD = "Standard" LOW_PRIORITY = "LowPriority" SPOT = "Spot"