Show / Hide Table of Contents

Class ServiceStatus

The current state of the Service. Output only.

Inheritance
System.Object
ServiceStatus
Implements
IDirectResponseSchema
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class ServiceStatus : object, IDirectResponseSchema

Properties

Address

From RouteStatus. Similar to url, information on where the service is available on HTTP.

Declaration
public virtual Addressable Address { get; set; }
Property Value
Type Description
Addressable

Conditions

Conditions communicates information about ongoing/complete reconciliation processes that bring the "spec" inline with the observed state of the world. Service-specific conditions include: * "ConfigurationsReady": true when the underlying Configuration is ready. * "RoutesReady": true when the underlying Route is ready. * "Ready": true when both the underlying Route and Configuration are ready.

Declaration
public virtual IList<GoogleCloudRunV1Condition> Conditions { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudRunV1Condition>

ETag

The ETag of the item.

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

LatestCreatedRevisionName

From ConfigurationStatus. LatestCreatedRevisionName is the last revision that was created from this Service's Configuration. It might not be ready yet, for that use LatestReadyRevisionName.

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

LatestReadyRevisionName

From ConfigurationStatus. LatestReadyRevisionName holds the name of the latest Revision stamped out from this Service's Configuration that has had its "Ready" condition become "True".

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

ObservedGeneration

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

Clients polling for completed reconciliation should poll until observedGeneration = metadata.generation and the Ready condition's status is True or False.

Declaration
public virtual Nullable<int> ObservedGeneration { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Traffic

From RouteStatus. Traffic holds the configured traffic distribution. These entries will always contain RevisionName references. When ConfigurationName appears in the spec, this will hold the LatestReadyRevisionName that we last observed.

Declaration
public virtual IList<TrafficTarget> Traffic { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<TrafficTarget>

Url

From RouteStatus. URL holds the url that will distribute traffic over the provided traffic targets. It generally has the form https://{route-hash}-{project-hash}-{cluster-level-suffix}.a.run.app

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

Implements

IDirectResponseSchema
Back to top