Struct google_appengine1::api::ReadinessCheck[][src]

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

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

app_start_timeout: Option<String>

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

check_interval: Option<String>

Interval between health checks.

failure_threshold: Option<u32>

Number of consecutive failed checks required before removing traffic.

host: Option<String>

Host header to send when performing a HTTP Readiness check. Example: “myapp.appspot.com”

path: Option<String>

The request path.

success_threshold: Option<u32>

Number of consecutive successful checks required before receiving traffic.

timeout: Option<String>

Time before the check is considered failed.

Trait Implementations

impl Clone for ReadinessCheck[src]

impl Debug for ReadinessCheck[src]

impl Default for ReadinessCheck[src]

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

impl Part for ReadinessCheck[src]

impl Serialize for ReadinessCheck[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> Instrument 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.