Skip to content

Commit a80efc7

Browse files
authored
chore(baremetal): remove exclude on partitioning schema type (scaleway#2234)
1 parent a8ef3b1 commit a80efc7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

api/baremetal/v1/baremetal_sdk.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,6 +1087,9 @@ type ServerInstall struct {
10871087

10881088
// ServiceURL: address of the installed service.
10891089
ServiceURL string `json:"service_url"`
1090+
1091+
// PartitioningSchema: partitioning schema.
1092+
PartitioningSchema *Schema `json:"partitioning_schema"`
10901093
}
10911094

10921095
// ServerOption: server option.
@@ -1159,6 +1162,9 @@ type CreateServerRequestInstall struct {
11591162

11601163
// ServicePassword: password used for the service to install.
11611164
ServicePassword *string `json:"service_password"`
1165+
1166+
// PartitioningSchema: partitioning schema.
1167+
PartitioningSchema *Schema `json:"partitioning_schema"`
11621168
}
11631169

11641170
// OS: os.
@@ -1614,6 +1620,9 @@ type InstallServerRequest struct {
16141620

16151621
// ServicePassword: password used for the service to install.
16161622
ServicePassword *string `json:"service_password,omitempty"`
1623+
1624+
// PartitioningSchema: partitioning schema.
1625+
PartitioningSchema *Schema `json:"partitioning_schema,omitempty"`
16171626
}
16181627

16191628
// ListOSRequest: list os request.

0 commit comments

Comments
 (0)