Show / Hide Table of Contents

Class TriggerStatus

TriggerStatus represents the current state of a Trigger.

Inheritance
System.Object
TriggerStatus
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.CloudRun.v1alpha1.Data
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class TriggerStatus : IDirectResponseSchema

Properties

Conditions

Array of observed TriggerConditions, indicating the current state of the Trigger.

Declaration
[JsonProperty("conditions")]
public virtual IList<TriggerCondition> Conditions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<TriggerCondition>

ETag

The ETag of the item.

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

ObservedGeneration

ObservedGeneration is the 'Generation' of the Trigger that was last processed by the controller.

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

SubscriberUri

SubscriberURI is the resolved URI of the receiver for this Trigger.

Declaration
[JsonProperty("subscriberUri")]
public virtual string SubscriberUri { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top