[][src]Struct google_appengine1_beta4::HealthCheck

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

healthy_threshold: Option<u32>

Number of consecutive successful health checks required before receiving traffic.

restart_threshold: Option<u32>

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

timeout: Option<String>

Time before the health check is considered failed.

check_interval: Option<String>

Interval between health checks.

disable_health_check: Option<bool>

Whether to explicitly disable health checks for this instance.

host: Option<String>

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

unhealthy_threshold: Option<u32>

Number of consecutive failed health checks required before removing traffic.

Trait Implementations

impl Clone for HealthCheck[src]

impl Debug for HealthCheck[src]

impl Default for HealthCheck[src]

impl<'de> Deserialize<'de> for HealthCheck[src]

impl Part for HealthCheck[src]

impl Serialize for HealthCheck[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any