Skip to content

Commit a99be82

Browse files
authored
Merge pull request #11 from jeffstoner/constants
added missing disk storage tier and nic adapters
2 parents 4bd9886 + c9b261f commit a99be82

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

compute/servers.go

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ const (
1414

1515
// NetworkAdapterTypeVMXNET3 represents the VMXNET3 network adapter type.
1616
NetworkAdapterTypeVMXNET3 = "VMXNET3"
17+
18+
// NetworkAdapterTypeE1000E represents the E1000e network adapter type.
19+
NetworkAdapterTypeE1000E = "E1000E"
20+
21+
// NetworkAdapterTypeENHANCED_VMXNET2 represents the VMXNET2/Enhanced network adapter type.
22+
NetworkAdapterTypeENHANCED_VMXNET2 = "ENHANCED_VMXNET2"
23+
24+
// NetworkAdapterTypeFLEXIBLE_PCNET32 represents the PCNET32/Flexible network adapter type.
25+
NetworkAdapterTypeFLEXIBLE_PCNET32 = "FLEXIBLE_PCNET32"
1726
)
1827

1928
const (
@@ -22,6 +31,9 @@ const (
2231

2332
// ServerDiskSpeedHighPerformance represents the high-performance speed for server disks.
2433
ServerDiskSpeedHighPerformance = "HIGHPERFORMANCE"
34+
35+
// ServerDiskSpeedEconomy represents the economy speed for server disks.
36+
ServerDiskSpeedEcomony = "ECONOMY"
2537
)
2638

2739
// Server represents a virtual machine.

0 commit comments

Comments
 (0)