@@ -13,3 +13,45 @@ const (
13
13
// ResourceStatusPendingDelete indicates that a delete operation is pending for the resource.
14
14
ResourceStatusPendingDelete = "PENDING_DELETE"
15
15
)
16
+
17
+ const (
18
+ // NetworkAdapterTypeE1000 represents the E1000 network adapter type.
19
+ NetworkAdapterTypeE1000 = "E1000"
20
+
21
+ // NetworkAdapterTypeVMXNET3 represents the VMXNET3 network adapter type.
22
+ NetworkAdapterTypeVMXNET3 = "VMXNET3"
23
+
24
+ // NetworkAdapterTypeE1000E represents the E1000e network adapter type.
25
+ NetworkAdapterTypeE1000E = "E1000E"
26
+
27
+ // NetworkAdapterTypeEnhancedVMXNET2 represents the VMXNET2/Enhanced network adapter type.
28
+ NetworkAdapterTypeEnhancedVMXNET2 = "ENHANCED_VMXNET2"
29
+
30
+ // NetworkAdapterTypeFlexiblePCNET32 represents the PCNET32/Flexible network adapter type.
31
+ NetworkAdapterTypeFlexiblePCNET32 = "FLEXIBLE_PCNET32"
32
+ )
33
+
34
+ const (
35
+ // StorageControllerAdapterTypeBusLogicParallel represents the BusLogic Parallel storage controller adapter type.
36
+ StorageControllerAdapterTypeBusLogicParallel = "BUSLOGIC_PARALLEL"
37
+
38
+ // StorageControllerAdapterTypeLSILogicParallel represents the LSI Logic Parallel storage controller adapter type.
39
+ StorageControllerAdapterTypeLSILogicParallel = "LSI_LOGIC_PARALLEL"
40
+
41
+ // StorageControllerAdapterTypeLSILogicSAS represents the LSI Logic SAS storage controller adapter type.
42
+ StorageControllerAdapterTypeLSILogicSAS = "LSI_LOGIC_SAS"
43
+
44
+ // StorageControllerAdapterTypeEnhancedVMWareParavirtual represents the VMWare Paravirtual storage controller adapter type.
45
+ StorageControllerAdapterTypeEnhancedVMWareParavirtual = "VMWARE_PARAVIRTUAL"
46
+ )
47
+
48
+ const (
49
+ // ServerDiskSpeedEconomy represents the economy speed for server disks.
50
+ ServerDiskSpeedEconomy = "ECONOMY"
51
+
52
+ // ServerDiskSpeedStandard represents the standard speed for server disks.
53
+ ServerDiskSpeedStandard = "STANDARD"
54
+
55
+ // ServerDiskSpeedHighPerformance represents the high-performance speed for server disks.
56
+ ServerDiskSpeedHighPerformance = "HIGHPERFORMANCE"
57
+ )
0 commit comments