Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions api/instance/v2alpha1/instance_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -2301,11 +2301,11 @@ type DeleteServerRequest struct {
// Precisely one of DeleteAllIPs, DeleteIPIDs must be set.
DeleteIPIDs *[]string `json:"delete_ip_ids,omitempty"`

// DeleteAllVolumes: whether to delete all volumes attached to the server.
// DeleteAllVolumes: whether to delete all volumes attached to the server. Deletion of SBS volumes is not supported yet.
// Precisely one of DeleteAllVolumes, DeleteVolumeIDs must be set.
DeleteAllVolumes *bool `json:"delete_all_volumes,omitempty"`

// DeleteVolumeIDs: list of volume IDs to delete.
// DeleteVolumeIDs: list of volume IDs to delete. Deletion of SBS volumes is not supported yet.
// Precisely one of DeleteAllVolumes, DeleteVolumeIDs must be set.
DeleteVolumeIDs *[]string `json:"delete_volume_ids,omitempty"`

Expand Down
Loading