Struct google_appengine1::api::StandardSchedulerSettings [−][src]
pub struct StandardSchedulerSettings {
pub max_instances: Option<i32>,
pub min_instances: Option<i32>,
pub target_cpu_utilization: Option<f64>,
pub target_throughput_utilization: Option<f64>,
}Expand description
Scheduler settings for standard environment.
This type is not used in any activity, and only used as part of another schema.
Fields
max_instances: Option<i32>Maximum number of instances to run for this version. Set to zero to disable max_instances configuration.
min_instances: Option<i32>Minimum number of instances to run for this version. Set to zero to disable min_instances configuration.
target_cpu_utilization: Option<f64>Target CPU utilization ratio to maintain when scaling.
target_throughput_utilization: Option<f64>Target throughput utilization ratio to maintain when scaling
Trait Implementations
Returns the “default value” for a type. Read more
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for StandardSchedulerSettings
impl Send for StandardSchedulerSettings
impl Sync for StandardSchedulerSettings
impl Unpin for StandardSchedulerSettings
impl UnwindSafe for StandardSchedulerSettings
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more