Struct google_appengine1_beta5::BasicScaling[][src]

pub struct BasicScaling {
    pub idle_timeout: Option<String>,
    pub max_instances: Option<i32>,
}

A service with basic scaling will create an instance when the application receives a request. The instance will be turned down when the app becomes idle. Basic scaling is ideal for work that is intermittent or driven by user activity.

This type is not used in any activity, and only used as part of another schema.

Fields

Duration of time after the last request that an instance must wait before the instance is shut down.

Maximum number of instances to create for this version.

Trait Implementations

impl Default for BasicScaling
[src]

Returns the "default value" for a type. Read more

impl Clone for BasicScaling
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BasicScaling
[src]

Formats the value using the given formatter. Read more

impl Part for BasicScaling
[src]

Auto Trait Implementations