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: 4 additions & 0 deletions nebius/compute/v1/instance.proto
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ message InstanceSpec {
// be restarted and billed accordingly. Stop instance via API or UI to stop it to avoid recovering.
// - If set to RECOVER, instance will be restarted, if possible. It could be restarted on the same host or on another host.
// - If set to FAIL, instance will be stopped and not restarted.
// - If set to ALWAYS, keep retrying recovery indefinitely until the instance is recovered. Available only for instances in
// nvlinstancegroup
InstanceRecoveryPolicy recovery_policy = 15 [(field_behavior) = IMMUTABLE];

// Include these parameters to create a Preemptible VM and omit them to create a Regular VM
Expand Down Expand Up @@ -332,6 +334,8 @@ enum InstanceRecoveryPolicy {
RECOVER = 0;

FAIL = 1;

ALWAYS = 2;
}

message InstanceStatusInfinibandTopologyPath {
Expand Down