Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(instance): add option to disable IPv6 during the migration to routed IPs #2261

Merged
merged 1 commit into from
Oct 17, 2024
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: 4 additions & 0 deletions api/instance/v1/instance_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -3455,6 +3455,10 @@ type ServerActionRequest struct {
// Volumes: for each volume UUID, the snapshot parameters of the volume.
// This field should only be specified when performing a backup action.
Volumes map[string]*ServerActionRequestVolumeBackupTemplate `json:"volumes,omitempty"`

// DisableIPv6: disable IPv6 on the Instance while performing migration to routed IPs.
// This field should only be specified when performing a enable_routed_ip action.
DisableIPv6 *bool `json:"disable_ipv6,omitempty"`
}

// ServerActionResponse: server action response.
Expand Down