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 2b04a21 commit 0a4ce2dCopy full SHA for 0a4ce2d
api/instance/v1/instance_sdk.go
@@ -1316,9 +1316,11 @@ type VolumeTemplate struct {
1316
// Default value: l_ssd
1317
VolumeType VolumeVolumeType `json:"volume_type,omitempty"`
1318
// Organization: organization ID of the volume
1319
- Organization string `json:"organization,omitempty"`
+ // Precisely one of Organization, Project must be set.
1320
+ Organization *string `json:"organization,omitempty"`
1321
// Project: project ID of the volume
- Project string `json:"project,omitempty"`
1322
1323
+ Project *string `json:"project,omitempty"`
1324
}
1325
1326
type VolumeType struct {
0 commit comments