Show / Hide Table of Contents

Class CloudSchedulerSourceStatus

CloudSchedulerSourceStatus represents the current state of a CloudSchedulerSource.

Inheritance
System.Object
CloudSchedulerSourceStatus
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 CloudSchedulerSourceStatus : IDirectResponseSchema

Properties

Conditions

Array of observed CloudSchedulerSourceConditions, indicating the current state of the CloudSchedulerSource.

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

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 CloudSchedulerSource that was last processed by the controller.

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

SinkUri

SinkURI is the current active sink URI that has been configured for the Source.

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

Implements

IDirectResponseSchema
Back to top