1# coding=utf-8
2# --------------------------------------------------------------------------
3# Copyright (c) Microsoft Corporation. All rights reserved.
4# Licensed under the MIT License. See License.txt in the project root for license information.
5# Code generated by Microsoft (R) AutoRest Code Generator.
6# Changes may cause incorrect behavior and will be lost if the code is regenerated.
7# --------------------------------------------------------------------------
8
9from enum import Enum, EnumMeta
10from six import with_metaclass
11
12class _CaseInsensitiveEnumMeta(EnumMeta):
13    def __getitem__(self, name):
14        return super().__getitem__(name.upper())
15
16    def __getattr__(cls, name):
17        """Return the enum member matching `name`
18        We use __getattr__ instead of descriptors or inserting into the enum
19        class' __dict__ in order to support `name` and `value` being both
20        properties for enum members (which live in the class' __dict__) and
21        enum members themselves.
22        """
23        try:
24            return cls._member_map_[name.upper()]
25        except KeyError:
26            raise AttributeError(name)
27
28
29class AccessLevel(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
30
31    NONE = "None"
32    READ = "Read"
33
34class AggregatedReplicationState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
35    """This is the aggregated replication status based on all the regional replication status flags.
36    """
37
38    UNKNOWN = "Unknown"
39    IN_PROGRESS = "InProgress"
40    COMPLETED = "Completed"
41    FAILED = "Failed"
42
43class AvailabilitySetSkuTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
44    """Specifies the sku of an Availability Set. Use 'Aligned' for virtual machines with managed disks
45    and 'Classic' for virtual machines with unmanaged disks. Default value is 'Classic'.
46    """
47
48    CLASSIC = "Classic"
49    ALIGNED = "Aligned"
50
51class CachingTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
52    """Specifies the caching requirements. :code:`<br>`:code:`<br>` Possible values are:
53    :code:`<br>`:code:`<br>` **None** :code:`<br>`:code:`<br>` **ReadOnly**
54    :code:`<br>`:code:`<br>` **ReadWrite** :code:`<br>`:code:`<br>` Default: **None for Standard
55    storage. ReadOnly for Premium storage**
56    """
57
58    NONE = "None"
59    READ_ONLY = "ReadOnly"
60    READ_WRITE = "ReadWrite"
61
62class DiffDiskOptions(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
63    """Specifies the ephemeral disk option for operating system disk.
64    """
65
66    LOCAL = "Local"
67
68class DiskCreateOption(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
69    """This enumerates the possible sources of a disk's creation.
70    """
71
72    EMPTY = "Empty"
73    ATTACH = "Attach"
74    FROM_IMAGE = "FromImage"
75    IMPORT_ENUM = "Import"
76    COPY = "Copy"
77    RESTORE = "Restore"
78
79class DiskCreateOptionTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
80    """Specifies how the virtual machine should be created.:code:`<br>`:code:`<br>` Possible values
81    are::code:`<br>`:code:`<br>` **Attach** \u2013 This value is used when you are using a
82    specialized disk to create the virtual machine.:code:`<br>`:code:`<br>` **FromImage** \u2013
83    This value is used when you are using an image to create the virtual machine. If you are using
84    a platform image, you also use the imageReference element described above. If you are using a
85    marketplace image, you  also use the plan element previously described.
86    """
87
88    FROM_IMAGE = "FromImage"
89    EMPTY = "Empty"
90    ATTACH = "Attach"
91
92class DiskStorageAccountTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
93    """The sku name.
94    """
95
96    STANDARD_LRS = "Standard_LRS"
97    PREMIUM_LRS = "Premium_LRS"
98    STANDARD_SSD_LRS = "StandardSSD_LRS"
99    ULTRA_SSD_LRS = "UltraSSD_LRS"
100
101class GalleryImagePropertiesProvisioningState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
102    """The provisioning state, which only appears in the response.
103    """
104
105    CREATING = "Creating"
106    UPDATING = "Updating"
107    FAILED = "Failed"
108    SUCCEEDED = "Succeeded"
109    DELETING = "Deleting"
110    MIGRATING = "Migrating"
111
112class GalleryImageVersionPropertiesProvisioningState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
113    """The provisioning state, which only appears in the response.
114    """
115
116    CREATING = "Creating"
117    UPDATING = "Updating"
118    FAILED = "Failed"
119    SUCCEEDED = "Succeeded"
120    DELETING = "Deleting"
121    MIGRATING = "Migrating"
122
123class GalleryPropertiesProvisioningState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
124    """The provisioning state, which only appears in the response.
125    """
126
127    CREATING = "Creating"
128    UPDATING = "Updating"
129    FAILED = "Failed"
130    SUCCEEDED = "Succeeded"
131    DELETING = "Deleting"
132    MIGRATING = "Migrating"
133
134class HostCaching(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
135    """The host caching of the disk. Valid values are 'None', 'ReadOnly', and 'ReadWrite'
136    """
137
138    NONE = "None"
139    READ_ONLY = "ReadOnly"
140    READ_WRITE = "ReadWrite"
141
142class IntervalInMins(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
143    """Interval value in minutes used to create LogAnalytics call rate logs.
144    """
145
146    THREE_MINS = "ThreeMins"
147    FIVE_MINS = "FiveMins"
148    THIRTY_MINS = "ThirtyMins"
149    SIXTY_MINS = "SixtyMins"
150
151class IPVersion(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
152    """Available from Api-Version 2017-03-30 onwards, it represents whether the specific
153    ipconfiguration is IPv4 or IPv6. Default is taken as IPv4.  Possible values are: 'IPv4' and
154    'IPv6'.
155    """
156
157    I_PV4 = "IPv4"
158    I_PV6 = "IPv6"
159
160class MaintenanceOperationResultCodeTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
161    """The Last Maintenance Operation Result Code.
162    """
163
164    NONE = "None"
165    RETRY_LATER = "RetryLater"
166    MAINTENANCE_ABORTED = "MaintenanceAborted"
167    MAINTENANCE_COMPLETED = "MaintenanceCompleted"
168
169class OperatingSystemStateTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
170    """The OS State.
171    """
172
173    GENERALIZED = "Generalized"
174    SPECIALIZED = "Specialized"
175
176class OperatingSystemTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
177    """The operating system of the osDiskImage.
178    """
179
180    WINDOWS = "Windows"
181    LINUX = "Linux"
182
183class ProtocolTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
184    """Specifies the protocol of listener. :code:`<br>`:code:`<br>` Possible values are: :code:`<br>`\
185    **http** :code:`<br>`:code:`<br>` **https**
186    """
187
188    HTTP = "Http"
189    HTTPS = "Https"
190
191class ProximityPlacementGroupType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
192    """Specifies the type of the proximity placement group. :code:`<br>`:code:`<br>` Possible values
193    are: :code:`<br>`:code:`<br>` **Standard** : Co-locate resources within an Azure region or
194    Availability Zone. :code:`<br>`:code:`<br>` **Ultra** : For future use.
195    """
196
197    STANDARD = "Standard"
198    ULTRA = "Ultra"
199
200class ReplicationState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
201    """This is the regional replication state.
202    """
203
204    UNKNOWN = "Unknown"
205    REPLICATING = "Replicating"
206    COMPLETED = "Completed"
207    FAILED = "Failed"
208
209class ReplicationStatusTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
210
211    REPLICATION_STATUS = "ReplicationStatus"
212
213class ResourceIdentityType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
214    """The type of identity used for the virtual machine. The type 'SystemAssigned, UserAssigned'
215    includes both an implicitly created identity and a set of user assigned identities. The type
216    'None' will remove any identities from the virtual machine.
217    """
218
219    SYSTEM_ASSIGNED = "SystemAssigned"
220    USER_ASSIGNED = "UserAssigned"
221    SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned, UserAssigned"
222    NONE = "None"
223
224class RollingUpgradeActionType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
225    """The last action performed on the rolling upgrade.
226    """
227
228    START = "Start"
229    CANCEL = "Cancel"
230
231class RollingUpgradeStatusCode(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
232    """Code indicating the current status of the upgrade.
233    """
234
235    ROLLING_FORWARD = "RollingForward"
236    CANCELLED = "Cancelled"
237    COMPLETED = "Completed"
238    FAULTED = "Faulted"
239
240class SettingNames(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
241    """Specifies the name of the setting to which the content applies. Possible values are:
242    FirstLogonCommands and AutoLogon.
243    """
244
245    AUTO_LOGON = "AutoLogon"
246    FIRST_LOGON_COMMANDS = "FirstLogonCommands"
247
248class SnapshotStorageAccountTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
249    """The sku name.
250    """
251
252    STANDARD_LRS = "Standard_LRS"
253    PREMIUM_LRS = "Premium_LRS"
254    STANDARD_ZRS = "Standard_ZRS"
255
256class StatusLevelTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
257    """The level code.
258    """
259
260    INFO = "Info"
261    WARNING = "Warning"
262    ERROR = "Error"
263
264class StorageAccountTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
265    """Specifies the storage account type for the managed disk. NOTE: UltraSSD_LRS can only be used
266    with data disks, it cannot be used with OS Disk.
267    """
268
269    STANDARD_LRS = "Standard_LRS"
270    PREMIUM_LRS = "Premium_LRS"
271    STANDARD_SSD_LRS = "StandardSSD_LRS"
272    ULTRA_SSD_LRS = "UltraSSD_LRS"
273
274class UpgradeMode(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
275    """Specifies the mode of an upgrade to virtual machines in the scale set.:code:`<br />`:code:`<br
276    />` Possible values are::code:`<br />`:code:`<br />` **Manual** - You  control the application
277    of updates to virtual machines in the scale set. You do this by using the manualUpgrade
278    action.:code:`<br />`:code:`<br />` **Automatic** - All virtual machines in the scale set are
279    automatically updated at the same time.
280    """
281
282    AUTOMATIC = "Automatic"
283    MANUAL = "Manual"
284    ROLLING = "Rolling"
285
286class UpgradeOperationInvoker(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
287    """Invoker of the Upgrade Operation
288    """
289
290    UNKNOWN = "Unknown"
291    USER = "User"
292    PLATFORM = "Platform"
293
294class UpgradeState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
295    """Code indicating the current status of the upgrade.
296    """
297
298    ROLLING_FORWARD = "RollingForward"
299    CANCELLED = "Cancelled"
300    COMPLETED = "Completed"
301    FAULTED = "Faulted"
302
303class VirtualMachineEvictionPolicyTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
304    """Specifies the eviction policy for virtual machines in a low priority scale set.
305    :code:`<br>`:code:`<br>`Minimum api-version: 2017-10-30-preview
306    """
307
308    DEALLOCATE = "Deallocate"
309    DELETE = "Delete"
310
311class VirtualMachinePriorityTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
312    """Specifies the priority for the virtual machines in the scale set.
313    :code:`<br>`:code:`<br>`Minimum api-version: 2017-10-30-preview
314    """
315
316    REGULAR = "Regular"
317    LOW = "Low"
318
319class VirtualMachineScaleSetSkuScaleType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
320    """The scale type applicable to the sku.
321    """
322
323    AUTOMATIC = "Automatic"
324    NONE = "None"
325
326class VirtualMachineSizeTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
327    """Specifies the size of the virtual machine. For more information about virtual machine sizes,
328    see `Sizes for virtual machines
329    <https://docs.microsoft.com/azure/virtual-machines/virtual-machines-windows-sizes?toc=%2fazure%2fvirtual-machines%2fwindows%2ftoc.json>`_.
330    :code:`<br>`:code:`<br>` The available VM sizes depend on region and availability set. For a
331    list of available sizes use these APIs:  :code:`<br>`:code:`<br>` `List all available virtual
332    machine sizes in an availability set
333    <https://docs.microsoft.com/rest/api/compute/availabilitysets/listavailablesizes>`_
334    :code:`<br>`:code:`<br>` `List all available virtual machine sizes in a region
335    <https://docs.microsoft.com/rest/api/compute/virtualmachinesizes/list>`_
336    :code:`<br>`:code:`<br>` `List all available virtual machine sizes for resizing
337    <https://docs.microsoft.com/rest/api/compute/virtualmachines/listavailablesizes>`_
338    """
339
340    BASIC_A0 = "Basic_A0"
341    BASIC_A1 = "Basic_A1"
342    BASIC_A2 = "Basic_A2"
343    BASIC_A3 = "Basic_A3"
344    BASIC_A4 = "Basic_A4"
345    STANDARD_A0 = "Standard_A0"
346    STANDARD_A1 = "Standard_A1"
347    STANDARD_A2 = "Standard_A2"
348    STANDARD_A3 = "Standard_A3"
349    STANDARD_A4 = "Standard_A4"
350    STANDARD_A5 = "Standard_A5"
351    STANDARD_A6 = "Standard_A6"
352    STANDARD_A7 = "Standard_A7"
353    STANDARD_A8 = "Standard_A8"
354    STANDARD_A9 = "Standard_A9"
355    STANDARD_A10 = "Standard_A10"
356    STANDARD_A11 = "Standard_A11"
357    STANDARD_A1_V2 = "Standard_A1_v2"
358    STANDARD_A2_V2 = "Standard_A2_v2"
359    STANDARD_A4_V2 = "Standard_A4_v2"
360    STANDARD_A8_V2 = "Standard_A8_v2"
361    STANDARD_A2_M_V2 = "Standard_A2m_v2"
362    STANDARD_A4_M_V2 = "Standard_A4m_v2"
363    STANDARD_A8_M_V2 = "Standard_A8m_v2"
364    STANDARD_B1_S = "Standard_B1s"
365    STANDARD_B1_MS = "Standard_B1ms"
366    STANDARD_B2_S = "Standard_B2s"
367    STANDARD_B2_MS = "Standard_B2ms"
368    STANDARD_B4_MS = "Standard_B4ms"
369    STANDARD_B8_MS = "Standard_B8ms"
370    STANDARD_D1 = "Standard_D1"
371    STANDARD_D2 = "Standard_D2"
372    STANDARD_D3 = "Standard_D3"
373    STANDARD_D4 = "Standard_D4"
374    STANDARD_D11 = "Standard_D11"
375    STANDARD_D12 = "Standard_D12"
376    STANDARD_D13 = "Standard_D13"
377    STANDARD_D14 = "Standard_D14"
378    STANDARD_D1_V2 = "Standard_D1_v2"
379    STANDARD_D2_V2 = "Standard_D2_v2"
380    STANDARD_D3_V2 = "Standard_D3_v2"
381    STANDARD_D4_V2 = "Standard_D4_v2"
382    STANDARD_D5_V2 = "Standard_D5_v2"
383    STANDARD_D2_V3 = "Standard_D2_v3"
384    STANDARD_D4_V3 = "Standard_D4_v3"
385    STANDARD_D8_V3 = "Standard_D8_v3"
386    STANDARD_D16_V3 = "Standard_D16_v3"
387    STANDARD_D32_V3 = "Standard_D32_v3"
388    STANDARD_D64_V3 = "Standard_D64_v3"
389    STANDARD_D2_S_V3 = "Standard_D2s_v3"
390    STANDARD_D4_S_V3 = "Standard_D4s_v3"
391    STANDARD_D8_S_V3 = "Standard_D8s_v3"
392    STANDARD_D16_S_V3 = "Standard_D16s_v3"
393    STANDARD_D32_S_V3 = "Standard_D32s_v3"
394    STANDARD_D64_S_V3 = "Standard_D64s_v3"
395    STANDARD_D11_V2 = "Standard_D11_v2"
396    STANDARD_D12_V2 = "Standard_D12_v2"
397    STANDARD_D13_V2 = "Standard_D13_v2"
398    STANDARD_D14_V2 = "Standard_D14_v2"
399    STANDARD_D15_V2 = "Standard_D15_v2"
400    STANDARD_DS1 = "Standard_DS1"
401    STANDARD_DS2 = "Standard_DS2"
402    STANDARD_DS3 = "Standard_DS3"
403    STANDARD_DS4 = "Standard_DS4"
404    STANDARD_DS11 = "Standard_DS11"
405    STANDARD_DS12 = "Standard_DS12"
406    STANDARD_DS13 = "Standard_DS13"
407    STANDARD_DS14 = "Standard_DS14"
408    STANDARD_DS1_V2 = "Standard_DS1_v2"
409    STANDARD_DS2_V2 = "Standard_DS2_v2"
410    STANDARD_DS3_V2 = "Standard_DS3_v2"
411    STANDARD_DS4_V2 = "Standard_DS4_v2"
412    STANDARD_DS5_V2 = "Standard_DS5_v2"
413    STANDARD_DS11_V2 = "Standard_DS11_v2"
414    STANDARD_DS12_V2 = "Standard_DS12_v2"
415    STANDARD_DS13_V2 = "Standard_DS13_v2"
416    STANDARD_DS14_V2 = "Standard_DS14_v2"
417    STANDARD_DS15_V2 = "Standard_DS15_v2"
418    STANDARD_DS13_4_V2 = "Standard_DS13-4_v2"
419    STANDARD_DS13_2_V2 = "Standard_DS13-2_v2"
420    STANDARD_DS14_8_V2 = "Standard_DS14-8_v2"
421    STANDARD_DS14_4_V2 = "Standard_DS14-4_v2"
422    STANDARD_E2_V3 = "Standard_E2_v3"
423    STANDARD_E4_V3 = "Standard_E4_v3"
424    STANDARD_E8_V3 = "Standard_E8_v3"
425    STANDARD_E16_V3 = "Standard_E16_v3"
426    STANDARD_E32_V3 = "Standard_E32_v3"
427    STANDARD_E64_V3 = "Standard_E64_v3"
428    STANDARD_E2_S_V3 = "Standard_E2s_v3"
429    STANDARD_E4_S_V3 = "Standard_E4s_v3"
430    STANDARD_E8_S_V3 = "Standard_E8s_v3"
431    STANDARD_E16_S_V3 = "Standard_E16s_v3"
432    STANDARD_E32_S_V3 = "Standard_E32s_v3"
433    STANDARD_E64_S_V3 = "Standard_E64s_v3"
434    STANDARD_E32_16_V3 = "Standard_E32-16_v3"
435    STANDARD_E32_8_S_V3 = "Standard_E32-8s_v3"
436    STANDARD_E64_32_S_V3 = "Standard_E64-32s_v3"
437    STANDARD_E64_16_S_V3 = "Standard_E64-16s_v3"
438    STANDARD_F1 = "Standard_F1"
439    STANDARD_F2 = "Standard_F2"
440    STANDARD_F4 = "Standard_F4"
441    STANDARD_F8 = "Standard_F8"
442    STANDARD_F16 = "Standard_F16"
443    STANDARD_F1_S = "Standard_F1s"
444    STANDARD_F2_S = "Standard_F2s"
445    STANDARD_F4_S = "Standard_F4s"
446    STANDARD_F8_S = "Standard_F8s"
447    STANDARD_F16_S = "Standard_F16s"
448    STANDARD_F2_S_V2 = "Standard_F2s_v2"
449    STANDARD_F4_S_V2 = "Standard_F4s_v2"
450    STANDARD_F8_S_V2 = "Standard_F8s_v2"
451    STANDARD_F16_S_V2 = "Standard_F16s_v2"
452    STANDARD_F32_S_V2 = "Standard_F32s_v2"
453    STANDARD_F64_S_V2 = "Standard_F64s_v2"
454    STANDARD_F72_S_V2 = "Standard_F72s_v2"
455    STANDARD_G1 = "Standard_G1"
456    STANDARD_G2 = "Standard_G2"
457    STANDARD_G3 = "Standard_G3"
458    STANDARD_G4 = "Standard_G4"
459    STANDARD_G5 = "Standard_G5"
460    STANDARD_GS1 = "Standard_GS1"
461    STANDARD_GS2 = "Standard_GS2"
462    STANDARD_GS3 = "Standard_GS3"
463    STANDARD_GS4 = "Standard_GS4"
464    STANDARD_GS5 = "Standard_GS5"
465    STANDARD_GS4_8 = "Standard_GS4-8"
466    STANDARD_GS4_4 = "Standard_GS4-4"
467    STANDARD_GS5_16 = "Standard_GS5-16"
468    STANDARD_GS5_8 = "Standard_GS5-8"
469    STANDARD_H8 = "Standard_H8"
470    STANDARD_H16 = "Standard_H16"
471    STANDARD_H8_M = "Standard_H8m"
472    STANDARD_H16_M = "Standard_H16m"
473    STANDARD_H16_R = "Standard_H16r"
474    STANDARD_H16_MR = "Standard_H16mr"
475    STANDARD_L4_S = "Standard_L4s"
476    STANDARD_L8_S = "Standard_L8s"
477    STANDARD_L16_S = "Standard_L16s"
478    STANDARD_L32_S = "Standard_L32s"
479    STANDARD_M64_S = "Standard_M64s"
480    STANDARD_M64_MS = "Standard_M64ms"
481    STANDARD_M128_S = "Standard_M128s"
482    STANDARD_M128_MS = "Standard_M128ms"
483    STANDARD_M64_32_MS = "Standard_M64-32ms"
484    STANDARD_M64_16_MS = "Standard_M64-16ms"
485    STANDARD_M128_64_MS = "Standard_M128-64ms"
486    STANDARD_M128_32_MS = "Standard_M128-32ms"
487    STANDARD_NC6 = "Standard_NC6"
488    STANDARD_NC12 = "Standard_NC12"
489    STANDARD_NC24 = "Standard_NC24"
490    STANDARD_NC24_R = "Standard_NC24r"
491    STANDARD_NC6_S_V2 = "Standard_NC6s_v2"
492    STANDARD_NC12_S_V2 = "Standard_NC12s_v2"
493    STANDARD_NC24_S_V2 = "Standard_NC24s_v2"
494    STANDARD_NC24_RS_V2 = "Standard_NC24rs_v2"
495    STANDARD_NC6_S_V3 = "Standard_NC6s_v3"
496    STANDARD_NC12_S_V3 = "Standard_NC12s_v3"
497    STANDARD_NC24_S_V3 = "Standard_NC24s_v3"
498    STANDARD_NC24_RS_V3 = "Standard_NC24rs_v3"
499    STANDARD_ND6_S = "Standard_ND6s"
500    STANDARD_ND12_S = "Standard_ND12s"
501    STANDARD_ND24_S = "Standard_ND24s"
502    STANDARD_ND24_RS = "Standard_ND24rs"
503    STANDARD_NV6 = "Standard_NV6"
504    STANDARD_NV12 = "Standard_NV12"
505    STANDARD_NV24 = "Standard_NV24"
506