Reference documentation and code samples for the Stackdriver Monitoring V3 Client class ComparisonType.
Specifies an ordering relationship on two arguments, called left
and
right
.
Protobuf type google.monitoring.v3.ComparisonType
Methods
name
Parameter | |
---|---|
Name | Description |
value |
mixed
|
value
Parameter | |
---|---|
Name | Description |
name |
mixed
|
Constants
COMPARISON_UNSPECIFIED
Value: 0
No ordering relationship is specified.
Generated from protobuf enum COMPARISON_UNSPECIFIED = 0;
COMPARISON_GT
Value: 1
True if the left argument is greater than the right argument.
Generated from protobuf enum COMPARISON_GT = 1;
COMPARISON_GE
Value: 2
True if the left argument is greater than or equal to the right argument.
Generated from protobuf enum COMPARISON_GE = 2;
COMPARISON_LT
Value: 3
True if the left argument is less than the right argument.
Generated from protobuf enum COMPARISON_LT = 3;
COMPARISON_LE
Value: 4
True if the left argument is less than or equal to the right argument.
Generated from protobuf enum COMPARISON_LE = 4;
COMPARISON_EQ
Value: 5
True if the left argument is equal to the right argument.
Generated from protobuf enum COMPARISON_EQ = 5;
COMPARISON_NE
Value: 6
True if the left argument is not equal to the right argument.
Generated from protobuf enum COMPARISON_NE = 6;