Struct google_appengine1_beta5::HealthCheck [] [src]

pub struct HealthCheck {
    pub healthy_threshold: Option<u32>,
    pub restart_threshold: Option<u32>,
    pub timeout: Option<String>,
    pub check_interval: Option<String>,
    pub disable_health_check: Option<bool>,
    pub host: Option<String>,
    pub unhealthy_threshold: Option<u32>,
}

Health checking configuration for VM instances. Unhealthy instances are killed and replaced with new instances. Only applicable for instances in App Engine flexible environment.

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

Fields

Number of consecutive successful health checks required before receiving traffic.

Number of consecutive failed health checks required before an instance is restarted.

Time before the health check is considered failed.

Interval between health checks.

Whether to explicitly disable health checks for this instance.

Host header to send when performing an HTTP health check. Example: "myapp.appspot.com"

Number of consecutive failed health checks required before removing traffic.

Trait Implementations

impl Default for HealthCheck
[src]

[src]

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

impl Clone for HealthCheck
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for HealthCheck
[src]

[src]

Formats the value using the given formatter.

impl Part for HealthCheck
[src]