[][src]Struct google_monitoring3::InternalChecker

pub struct InternalChecker {
    pub state: Option<String>,
    pub display_name: Option<String>,
    pub network: Option<String>,
    pub name: Option<String>,
    pub peer_project_id: Option<String>,
    pub gcp_zone: Option<String>,
}

An internal checker allows Uptime checks to run on private/internal GCP resources.

This type is not used in any activity, and only used as part of another schema.

Fields

state: Option<String>

The current operational state of the internal checker.

display_name: Option<String>

The checker's human-readable name. The display name should be unique within a Stackdriver Workspace in order to make it easier to identify; however, uniqueness is not enforced.

network: Option<String>

The GCP VPC network (https://cloud.google.com/vpc/docs/vpc) where the internal resource lives (ex: "default").

name: Option<String>

A unique resource name for this InternalChecker. The format is: projects/[PROJECT_ID_OR_NUMBER]/internalCheckers/[INTERNAL_CHECKER_ID] [PROJECT_ID_OR_NUMBER] is the Stackdriver Workspace project for the Uptime check config associated with the internal checker.

peer_project_id: Option<String>

The GCP project ID where the internal checker lives. Not necessary the same as the Workspace project.

gcp_zone: Option<String>

The GCP zone the Uptime check should egress from. Only respected for internal Uptime checks, where internal_network is specified.

Trait Implementations

impl Clone for InternalChecker[src]

impl Debug for InternalChecker[src]

impl Default for InternalChecker[src]

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

impl Part for InternalChecker[src]

impl Serialize for InternalChecker[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any