Class: Google::Apis::MonitoringV3::InternalChecker

Inherits:
Object
  • Object
show all
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

Nimbus InternalCheckers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ InternalChecker

Returns a new instance of InternalChecker



1204
1205
1206
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1204

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#checker_idString

The checker ID. Corresponds to the JSON property checkerId

Returns:

  • (String)


1181
1182
1183
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1181

def checker_id
  @checker_id
end

#display_nameString

The checker's human-readable name. Corresponds to the JSON property displayName

Returns:

  • (String)


1186
1187
1188
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1186

def display_name
  @display_name
end

#gcp_zoneString

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

Returns:

  • (String)


1192
1193
1194
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1192

def gcp_zone
  @gcp_zone
end

#networkString

The internal network to perform this uptime check on. Corresponds to the JSON property network

Returns:

  • (String)


1197
1198
1199
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1197

def network
  @network
end

#project_idString

The GCP project ID. Not necessarily the same as the project_id for the config. Corresponds to the JSON property projectId

Returns:

  • (String)


1202
1203
1204
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1202

def project_id
  @project_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1209
1210
1211
1212
1213
1214
1215
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1209

def update!(**args)
  @checker_id = args[:checker_id] if args.key?(:checker_id)
  @display_name = args[:display_name] if args.key?(:display_name)
  @gcp_zone = args[:gcp_zone] if args.key?(:gcp_zone)
  @network = args[:network] if args.key?(:network)
  @project_id = args[:project_id] if args.key?(:project_id)
end