Class: Google::Apis::MonitoringV3::LatencyCriteria

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

Parameters for a latency threshold SLI.

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) ⇒ LatencyCriteria

Returns a new instance of LatencyCriteria.



1606
1607
1608
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1606

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

Instance Attribute Details

#thresholdString

Good service is defined to be the count of requests made to this service that return in no more than threshold. Corresponds to the JSON property threshold

Returns:

  • (String)


1604
1605
1606
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1604

def threshold
  @threshold
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1611
1612
1613
# File 'generated/google/apis/monitoring_v3/classes.rb', line 1611

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