Class: Google::Apis::MonitoringV3::UptimeCheckIp

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb

Overview

Contains the region, location, and list of IP addresses where checkers in the location run from.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UptimeCheckIp

Returns a new instance of UptimeCheckIp.



5179
5180
5181
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5179

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

Instance Attribute Details

#ip_addressString

The IP address from which the Uptime check originates. This is a fully specified IP address (not an IP address range). Most IP addresses, as of this publication, are in IPv4 format; however, one should not rely on the IP addresses being in IPv4 format indefinitely, and should support interpreting this field in either IPv4 or IPv6 format. Corresponds to the JSON property ipAddress

Returns:

  • (String)


5165
5166
5167
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5165

def ip_address
  @ip_address
end

#locationString

A more specific location within the region that typically encodes a particular city/town/metro (and its containing state/province or country) within the broader umbrella region category. Corresponds to the JSON property location

Returns:

  • (String)


5172
5173
5174
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5172

def location
  @location
end

#regionString

A broad region category in which the IP address is located. Corresponds to the JSON property region

Returns:

  • (String)


5177
5178
5179
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5177

def region
  @region
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5184
5185
5186
5187
5188
# File 'lib/google/apis/monitoring_v3/classes.rb', line 5184

def update!(**args)
  @ip_address = args[:ip_address] if args.key?(:ip_address)
  @location = args[:location] if args.key?(:location)
  @region = args[:region] if args.key?(:region)
end