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>,
}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
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
Returns the “default value” for a type. Read more
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
Auto Trait Implementations
impl RefUnwindSafe for ReadinessCheck
impl Send for ReadinessCheck
impl Sync for ReadinessCheck
impl Unpin for ReadinessCheck
impl UnwindSafe for ReadinessCheck
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more