File: batch_management_client_enums.py

package info (click to toggle)
python-azure 20181112%2Bgit-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 407,300 kB
  • sloc: python: 717,190; makefile: 201; sh: 76
file content (143 lines) | stat: -rw-r--r-- 2,537 bytes parent folder | download
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# 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


class PoolAllocationMode(Enum):

    batch_service = "BatchService"
    user_subscription = "UserSubscription"


class ProvisioningState(Enum):

    invalid = "Invalid"
    creating = "Creating"
    deleting = "Deleting"
    succeeded = "Succeeded"
    failed = "Failed"
    cancelled = "Cancelled"


class AccountKeyType(Enum):

    primary = "Primary"
    secondary = "Secondary"


class PackageState(Enum):

    pending = "Pending"
    active = "Active"
    unmapped = "Unmapped"


class CertificateFormat(Enum):

    pfx = "Pfx"
    cer = "Cer"


class CertificateProvisioningState(Enum):

    succeeded = "Succeeded"
    deleting = "Deleting"
    failed = "Failed"


class PoolProvisioningState(Enum):

    succeeded = "Succeeded"
    deleting = "Deleting"


class AllocationState(Enum):

    steady = "Steady"
    resizing = "Resizing"
    stopping = "Stopping"


class CachingType(Enum):

    none = "None"
    read_only = "ReadOnly"
    read_write = "ReadWrite"


class StorageAccountType(Enum):

    standard_lrs = "Standard_LRS"
    premium_lrs = "Premium_LRS"


class ComputeNodeDeallocationOption(Enum):

    requeue = "Requeue"
    terminate = "Terminate"
    task_completion = "TaskCompletion"
    retained_data = "RetainedData"


class InterNodeCommunicationState(Enum):

    enabled = "Enabled"
    disabled = "Disabled"


class InboundEndpointProtocol(Enum):

    tcp = "TCP"
    udp = "UDP"


class NetworkSecurityGroupRuleAccess(Enum):

    allow = "Allow"
    deny = "Deny"


class ComputeNodeFillType(Enum):

    spread = "Spread"
    pack = "Pack"


class ElevationLevel(Enum):

    non_admin = "NonAdmin"
    admin = "Admin"


class AutoUserScope(Enum):

    task = "Task"
    pool = "Pool"


class CertificateStoreLocation(Enum):

    current_user = "CurrentUser"
    local_machine = "LocalMachine"


class CertificateVisibility(Enum):

    start_task = "StartTask"
    task = "Task"
    remote_user = "RemoteUser"


class NameAvailabilityReason(Enum):

    invalid = "Invalid"
    already_exists = "AlreadyExists"