Skip to content

Commit 917264b

Browse files
committed
Add constants for storage controller adapter types.
1 parent 6c58d14 commit 917264b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

compute/servers.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,20 @@ const (
2525
NetworkAdapterTypeFlexiblePCNET32 = "FLEXIBLE_PCNET32"
2626
)
2727

28+
const (
29+
// StorageControllerAdapterTypeBusLogicParallel represents the BusLogic Parallel storage controller adapter type.
30+
StorageControllerAdapterTypeBusLogicParallel = "BUSLOGIC_PARALLEL"
31+
32+
// StorageControllerAdapterTypeLSILogicParallel represents the LSI Logic Parallel storage controller adapter type.
33+
StorageControllerAdapterTypeLSILogicParallel = "LSI_LOGIC_PARALLEL"
34+
35+
// StorageControllerAdapterTypeLSILogicSAS represents the LSI Logic SAS storage controller adapter type.
36+
StorageControllerAdapterTypeLSILogicSAS = "LSI_LOGIC_SAS"
37+
38+
// StorageControllerAdapterTypeEnhancedVMWareParavirtual represents the VMWare Paravirtual storage controller adapter type.
39+
StorageControllerAdapterTypeEnhancedVMWareParavirtual = "VMWARE_PARAVIRTUAL"
40+
)
41+
2842
const (
2943
// ServerDiskSpeedEconomy represents the economy speed for server disks.
3044
ServerDiskSpeedEconomy = "ECONOMY"

0 commit comments

Comments
 (0)