google_api_cloud_run v0.1.0 GoogleApi.CloudRun.V1alpha1.Model.RevisionStatus View Source

RevisionStatus communicates the observed state of the Revision (from the controller).

Attributes

  • conditions (list(GoogleApi.CloudRun.V1alpha1.Model.RevisionCondition.t)): Conditions communicates information about ongoing/complete reconciliation processes that bring the "spec" inline with the observed state of the world.

As a Revision is being prepared, it will incrementally update conditions "ResourcesAvailable", "ContainerHealthy", and "Active", which contribute to the overall "Ready" condition. Defaults to nil.

  • imageDigest (String.t): ImageDigest holds the resolved digest for the image specified within .Spec.Container.Image. The digest is resolved during the creation of Revision. This field holds the digest value regardless of whether a tag or digest was originally specified in the Container object. Defaults to nil.
  • logUrl (String.t): Specifies the generated logging url for this particular revision based on the revision url template specified in the controller's config. +optional Defaults to nil.
  • observedGeneration (integer()): ObservedGeneration is the 'Generation' of the Revision 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. Defaults to nil.

  • serviceName (String.t): Not currently used by Cloud Run. Defaults to nil.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Link to this type

t() View Source
t() :: %GoogleApi.CloudRun.V1alpha1.Model.RevisionStatus{
  conditions: [GoogleApi.CloudRun.V1alpha1.Model.RevisionCondition.t()],
  imageDigest: String.t(),
  logUrl: String.t(),
  observedGeneration: integer(),
  serviceName: String.t()
}

Link to this section Functions

Link to this function

decode(value, options) View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.