We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f5cf5a commit e4cef73Copy full SHA for e4cef73
api/instance/v1/instance_sdk.go
@@ -1436,6 +1436,16 @@ type ServerType struct {
1436
Baremetal bool `json:"baremetal"`
1437
// Network: network available for the instance
1438
Network *ServerTypeNetwork `json:"network"`
1439
+ // Capabilities: capabilities
1440
+ Capabilities *ServerTypeCapabilities `json:"capabilities"`
1441
+}
1442
+
1443
+// ServerTypeCapabilities: server type. capabilities
1444
+type ServerTypeCapabilities struct {
1445
+ // BlockStorage: true if server supports block storage
1446
+ BlockStorage *bool `json:"block_storage"`
1447
+ // BootTypes: list of supported boot types
1448
+ BootTypes []BootType `json:"boot_types"`
1449
}
1450
1451
// ServerTypeNetwork: server type. network
0 commit comments