Struct google_appengine1::HealthCheck
source · 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>,
}
Expand description
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§
source§impl Clone for HealthCheck
impl Clone for HealthCheck
source§fn clone(&self) -> HealthCheck
fn clone(&self) -> HealthCheck
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HealthCheck
impl Debug for HealthCheck
source§impl Default for HealthCheck
impl Default for HealthCheck
source§fn default() -> HealthCheck
fn default() -> HealthCheck
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for HealthCheck
impl<'de> Deserialize<'de> for HealthCheck
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for HealthCheck
impl Serialize for HealthCheck
impl Part for HealthCheck
Auto Trait Implementations§
impl Freeze for HealthCheck
impl RefUnwindSafe for HealthCheck
impl Send for HealthCheck
impl Sync for HealthCheck
impl Unpin for HealthCheck
impl UnwindSafe for HealthCheck
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more