Struct google_appengine1::ReadinessCheck
source · pub struct ReadinessCheck {
pub host: Option<String>,
pub timeout: Option<String>,
pub check_interval: Option<String>,
pub path: Option<String>,
pub success_threshold: Option<u32>,
pub failure_threshold: Option<u32>,
}Expand description
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§
§host: Option<String>Host header to send when performing a HTTP Readiness check. Example: “myapp.appspot.com”
timeout: Option<String>Time before the check is considered failed.
check_interval: Option<String>Interval between health checks.
path: Option<String>The request path.
success_threshold: Option<u32>Number of consecutive successful checks required before receiving traffic.
failure_threshold: Option<u32>Number of consecutive failed checks required before removing traffic.
Trait Implementations§
source§impl Clone for ReadinessCheck
impl Clone for ReadinessCheck
source§fn clone(&self) -> ReadinessCheck
fn clone(&self) -> ReadinessCheck
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 ReadinessCheck
impl Debug for ReadinessCheck
source§impl Default for ReadinessCheck
impl Default for ReadinessCheck
source§fn default() -> ReadinessCheck
fn default() -> ReadinessCheck
Returns the “default value” for a type. Read more
source§impl Deserialize for ReadinessCheck
impl Deserialize for ReadinessCheck
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for ReadinessCheck
impl Serialize for ReadinessCheck
impl Part for ReadinessCheck
Auto Trait Implementations§
impl Freeze for ReadinessCheck
impl RefUnwindSafe for ReadinessCheck
impl Send for ReadinessCheck
impl Sync for ReadinessCheck
impl Unpin for ReadinessCheck
impl UnwindSafe for ReadinessCheck
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