Struct google_appengine1::ReadinessCheck[][src]

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

Readiness checking configuration for VM instances. Unhealthy instances are removed from traffic rotation.

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 Readiness check. Example: "myapp.appspot.com"

A maximum time limit on application initialization, measured from moment the application successfully replies to a healthcheck until it is ready to serve traffic.

Time before the check is considered failed.

Interval between health checks.

The request path.

Number of consecutive successful checks required before receiving traffic.

Number of consecutive failed checks required before removing traffic.

Trait Implementations

impl Default for ReadinessCheck
[src]

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

impl Clone for ReadinessCheck
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReadinessCheck
[src]

Formats the value using the given formatter. Read more

impl Part for ReadinessCheck
[src]

Auto Trait Implementations