Struct google_appengine1::api::HealthCheck [−][src]
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
check_interval: Option<String>Interval between health checks.
disable_health_check: Option<bool>Whether to explicitly disable health checks for this instance.
healthy_threshold: Option<u32>Number of consecutive successful health checks required before receiving traffic.
host: Option<String>Host header to send when performing an HTTP health check. Example: “myapp.appspot.com”
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.
unhealthy_threshold: Option<u32>Number of consecutive failed health checks required before removing traffic.
Trait Implementations
impl Clone for HealthCheck[src]
fn clone(&self) -> HealthCheck[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for HealthCheck[src]
impl Default for HealthCheck[src]
fn default() -> HealthCheck[src]
impl<'de> Deserialize<'de> for HealthCheck[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for HealthCheck[src]
impl Serialize for HealthCheck[src]
Auto Trait Implementations
impl RefUnwindSafe for HealthCheck
impl Send for HealthCheck
impl Sync for HealthCheck
impl Unpin for HealthCheck
impl UnwindSafe for HealthCheck
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,