Struct google_monitoring3::InternalChecker[][src]

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

Nimbus InternalCheckers. The API currently only allows reading of internal checkers, creation of internal checkers is a manual process.

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

Fields

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.

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

A unique resource name for this InternalChecker. The format is:projects/[PROJECT_ID]/internalCheckers/[CHECKER_ID].PROJECT_ID is the GCP project ID where the internal resource lives. Not necessarily the same as the project_id for the config.

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

Trait Implementations

impl Default for InternalChecker
[src]

Returns the "default value" for a type. Read more

impl Clone for InternalChecker
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InternalChecker
[src]

Formats the value using the given formatter. Read more

impl Part for InternalChecker
[src]

Auto Trait Implementations