Module: Google::Cloud::Monitoring::V3::ComparisonType

Defined in:
proto_docs/google/monitoring/v3/common.rb

Overview

Specifies an ordering relationship on two arguments, called left and right.

Constant Summary collapse

COMPARISON_UNSPECIFIED =

No ordering relationship is specified.

0
COMPARISON_GT =

True if the left argument is greater than the right argument.

1
COMPARISON_GE =

True if the left argument is greater than or equal to the right argument.

2
COMPARISON_LT =

True if the left argument is less than the right argument.

3
COMPARISON_LE =

True if the left argument is less than or equal to the right argument.

4
COMPARISON_EQ =

True if the left argument is equal to the right argument.

5
COMPARISON_NE =

True if the left argument is not equal to the right argument.

6