[][src]Struct google_compute1::HealthCheck

pub struct HealthCheck {
    pub description: Option<String>,
    pub timeout_sec: Option<i32>,
    pub http_health_check: Option<HTTPHealthCheck>,
    pub unhealthy_threshold: Option<i32>,
    pub http2_health_check: Option<HTTP2HealthCheck>,
    pub https_health_check: Option<HTTPSHealthCheck>,
    pub creation_timestamp: Option<String>,
    pub id: Option<String>,
    pub kind: Option<String>,
    pub name: Option<String>,
    pub check_interval_sec: Option<i32>,
    pub tcp_health_check: Option<TCPHealthCheck>,
    pub healthy_threshold: Option<i32>,
    pub type_: Option<String>,
    pub ssl_health_check: Option<SSLHealthCheck>,
    pub self_link: Option<String>,
}

An HealthCheck resource. This resource defines a template for how individual virtual machines should be checked for health, via one of the supported protocols.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

description: Option<String>

An optional description of this resource. Provide this property when you create the resource.

timeout_sec: Option<i32>

How long (in seconds) to wait before claiming failure. The default value is 5 seconds. It is invalid for timeoutSec to have greater value than checkIntervalSec.

http_health_check: Option<HTTPHealthCheck>

no description provided

unhealthy_threshold: Option<i32>

A so-far healthy instance will be marked unhealthy after this many consecutive failures. The default value is 2.

http2_health_check: Option<HTTP2HealthCheck>

no description provided

https_health_check: Option<HTTPSHealthCheck>

no description provided

creation_timestamp: Option<String>

[Output Only] Creation timestamp in 3339 text format.

id: Option<String>

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

kind: Option<String>

Type of the resource.

name: Option<String>

Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

check_interval_sec: Option<i32>

How often (in seconds) to send a health check. The default value is 5 seconds.

tcp_health_check: Option<TCPHealthCheck>

no description provided

healthy_threshold: Option<i32>

A so-far unhealthy instance will be marked healthy after this many consecutive successes. The default value is 2.

type_: Option<String>

Specifies the type of the healthCheck, either TCP, SSL, HTTP, HTTPS or HTTP2. If not specified, the default is TCP. Exactly one of the protocol-specific health check field must be specified, which must match type field.

ssl_health_check: Option<SSLHealthCheck>

no description provided

self_link: Option<String>

[Output Only] Server-defined URL for the resource.

Trait Implementations

impl Resource for HealthCheck[src]

impl ResponseResult for HealthCheck[src]

impl RequestValue for HealthCheck[src]

impl Default for HealthCheck[src]

impl Clone for HealthCheck[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for HealthCheck[src]

impl Serialize for HealthCheck[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]