Stackdriver Monitoring V3 Client - Class ConditionCombinerType (1.2.2)

Reference documentation and code samples for the Stackdriver Monitoring V3 Client class ConditionCombinerType.

Operators for combining conditions.

Protobuf type google.monitoring.v3.AlertPolicy.ConditionCombinerType

Methods

name

Parameter
NameDescription
value mixed

value

Parameter
NameDescription
name mixed

Constants

COMBINE_UNSPECIFIED

Value: 0

An unspecified combiner.

Generated from protobuf enum COMBINE_UNSPECIFIED = 0;

PBAND

Value: 1

Combine conditions using the logical AND operator. An incident is created only if all the conditions are met simultaneously. This combiner is satisfied if all conditions are met, even if they are met on completely different resources.

Generated from protobuf enum AND = 1;

PBOR

Value: 2

Combine conditions using the logical OR operator. An incident is created if any of the listed conditions is met.

Generated from protobuf enum OR = 2;

AND_WITH_MATCHING_RESOURCE

Value: 3

Combine conditions using logical AND operator, but unlike the regular AND option, an incident is created only if all conditions are met simultaneously on at least one resource.

Generated from protobuf enum AND_WITH_MATCHING_RESOURCE = 3;