Show / Hide Table of Contents

Class Trigger

Specifies how many time series must fail a predicate to trigger a condition. If not specified, then a {count: 1} trigger is used.

Inheritance
System.Object
Trigger
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Monitoring.v3.Data
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class Trigger : IDirectResponseSchema

Properties

Count

The absolute number of time series that must fail the predicate for the condition to be triggered.

Declaration
[JsonProperty("count")]
public virtual int? Count { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Percent

The percentage of time series that must fail the predicate for the condition to be triggered.

Declaration
[JsonProperty("percent")]
public virtual double? Percent { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Implements

IDirectResponseSchema
Back to top