Class: Google::Apis::MonitoringV3::InternalChecker
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::InternalChecker
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/google/apis/monitoring_v3/representations.rb
Overview
An internal checker allows uptime checks to run on private/internal GCP resources.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The checker's human-readable name.
-
#gcp_zone ⇒ String
The GCP zone the uptime check should egress from.
-
#name ⇒ String
A unique resource name for this InternalChecker.
-
#network ⇒ String
The GCP VPC network (https://cloud.google.com/vpc/docs/vpc) where the internal resource lives (ex: "default").
-
#peer_project_id ⇒ String
The GCP project_id where the internal checker lives.
-
#state ⇒ String
The current operational state of the internal checker.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InternalChecker
constructor
A new instance of InternalChecker.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InternalChecker
Returns a new instance of InternalChecker
1191 1192 1193 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1191 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ 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.
Corresponds to the JSON property displayName
1158 1159 1160 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1158 def display_name @display_name end |
#gcp_zone ⇒ String
The GCP zone the uptime check should egress from. Only respected for internal
uptime checks, where internal_network is specified.
Corresponds to the JSON property gcpZone
1164 1165 1166 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1164 def gcp_zone @gcp_zone end |
#name ⇒ String
A unique resource name for this InternalChecker. The format is:projects/[
PROJECT_ID]/internalCheckers/[INTERNAL_CHECKER_ID].PROJECT_ID is the
stackdriver workspace project for the uptime check config associated with the
internal checker.
Corresponds to the JSON property name
1172 1173 1174 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1172 def name @name end |
#network ⇒ String
The GCP VPC network (https://cloud.google.com/vpc/docs/vpc) where the internal
resource lives (ex: "default").
Corresponds to the JSON property network
1178 1179 1180 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1178 def network @network end |
#peer_project_id ⇒ String
The GCP project_id where the internal checker lives. Not necessary the same as
the workspace project.
Corresponds to the JSON property peerProjectId
1184 1185 1186 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1184 def peer_project_id @peer_project_id end |
#state ⇒ String
The current operational state of the internal checker.
Corresponds to the JSON property state
1189 1190 1191 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1189 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1196 1197 1198 1199 1200 1201 1202 1203 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1196 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @gcp_zone = args[:gcp_zone] if args.key?(:gcp_zone) @name = args[:name] if args.key?(:name) @network = args[:network] if args.key?(:network) @peer_project_id = args[:peer_project_id] if args.key?(:peer_project_id) @state = args[:state] if args.key?(:state) end |