Show / Hide Table of Contents

Class CloudStorageSourceStatus

CloudStorageSourceStatus represents the current state of a CloudStorageSource.

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

Properties

Conditions

Array of observed CloudStorageSourceConditions, indicating the current state of the CloudStorageSource.

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 CloudStorageSource 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