Show / Hide Table of Contents

Class InternalChecker

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

Inheritance
System.Object
InternalChecker
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Monitoring.v3.Data
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class InternalChecker : IDirectResponseSchema

Properties

DisplayName

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.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GcpZone

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

Declaration
[JsonProperty("gcpZone")]
public virtual string GcpZone { get; set; }
Property Value
Type Description
System.String

Name

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.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

Network

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

Declaration
[JsonProperty("network")]
public virtual string Network { get; set; }
Property Value
Type Description
System.String

PeerProjectId

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

Declaration
[JsonProperty("peerProjectId")]
public virtual string PeerProjectId { get; set; }
Property Value
Type Description
System.String

State

The current operational state of the internal checker.

Declaration
[JsonProperty("state")]
public virtual string State { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top