pub struct Scheduling {
pub automatic_restart: Option<bool>,
pub instance_termination_action: Option<String>,
pub local_ssd_recovery_timeout: Option<Duration>,
pub location_hint: Option<String>,
pub max_run_duration: Option<Duration>,
pub min_node_cpus: Option<i32>,
pub node_affinities: Option<Vec<SchedulingNodeAffinity>>,
pub on_host_maintenance: Option<String>,
pub on_instance_stop_action: Option<SchedulingOnInstanceStopAction>,
pub preemptible: Option<bool>,
pub provisioning_model: Option<String>,
pub termination_time: Option<String>,
}
Expand description
Sets the scheduling options for an Instance.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- set scheduling instances (request)
Fields§
§automatic_restart: Option<bool>
Specifies whether the instance should be automatically restarted if it is terminated by Compute Engine (not terminated by a user). You can only set the automatic restart option for standard instances. Preemptible instances cannot be automatically restarted. By default, this is set to true so an instance is automatically restarted if it is terminated by Compute Engine.
instance_termination_action: Option<String>
Specifies the termination action for the instance.
local_ssd_recovery_timeout: Option<Duration>
Specifies the maximum amount of time a Local Ssd Vm should wait while recovery of the Local Ssd state is attempted. Its value should be in between 0 and 168 hours with hour granularity and the default value being 1 hour.
location_hint: Option<String>
An opaque location hint used to place the instance close to other resources. This field is for use by internal tools that use the public API.
max_run_duration: Option<Duration>
Specifies the max run duration for the given instance. If specified, the instance termination action will be performed at the end of the run duration.
min_node_cpus: Option<i32>
The minimum number of virtual CPUs this instance will consume when running on a sole-tenant node.
node_affinities: Option<Vec<SchedulingNodeAffinity>>
A set of node affinity and anti-affinity configurations. Refer to Configuring node affinity for more information. Overrides reservationAffinity.
on_host_maintenance: Option<String>
Defines the maintenance behavior for this instance. For standard instances, the default behavior is MIGRATE. For preemptible instances, the default and only possible behavior is TERMINATE. For more information, see Set VM host maintenance policy.
on_instance_stop_action: Option<SchedulingOnInstanceStopAction>
no description provided
preemptible: Option<bool>
Defines whether the instance is preemptible. This can only be set during instance creation or while the instance is stopped and therefore, in a TERMINATED
state. See Instance Life Cycle for more information on the possible instance states.
provisioning_model: Option<String>
Specifies the provisioning model of the instance.
termination_time: Option<String>
Specifies the timestamp, when the instance will be terminated, in RFC3339 text format. If specified, the instance termination action will be performed at the termination time.
Trait Implementations§
Source§impl Clone for Scheduling
impl Clone for Scheduling
Source§fn clone(&self) -> Scheduling
fn clone(&self) -> Scheduling
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for Scheduling
impl Debug for Scheduling
Source§impl Default for Scheduling
impl Default for Scheduling
Source§fn default() -> Scheduling
fn default() -> Scheduling
Source§impl<'de> Deserialize<'de> for Scheduling
impl<'de> Deserialize<'de> for Scheduling
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for Scheduling
impl Serialize for Scheduling
impl RequestValue for Scheduling
Auto Trait Implementations§
impl Freeze for Scheduling
impl RefUnwindSafe for Scheduling
impl Send for Scheduling
impl Sync for Scheduling
impl Unpin for Scheduling
impl UnwindSafe for Scheduling
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more