Struct google_appengine1::LivenessCheck [] [src]

pub struct LivenessCheck {
    pub host: Option<String>,
    pub timeout: Option<String>,
    pub check_interval: Option<String>,
    pub path: Option<String>,
    pub success_threshold: Option<u32>,
    pub initial_delay: Option<String>,
    pub failure_threshold: Option<u32>,
}

Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances.

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

Fields

Host header to send when performing a HTTP Liveness check. Example: "myapp.appspot.com"

Time before the check is considered failed.

Interval between health checks.

The request path.

Number of consecutive successful checks required before considering the VM healthy.

The initial delay before starting to execute the checks.

Number of consecutive failed checks required before considering the VM unhealthy.

Trait Implementations

impl Default for LivenessCheck
[src]

[src]

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

impl Clone for LivenessCheck
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for LivenessCheck
[src]

[src]

Formats the value using the given formatter.

impl Part for LivenessCheck
[src]