class Google::Apis::RunV1::ConfigurationStatus

ConfigurationStatus communicates the observed state of the Configuration (from the controller).

Attributes

conditions[RW]

Conditions communicates information about ongoing/complete reconciliation processes that bring the “spec” inline with the observed state of the world. Corresponds to the JSON property `conditions` @return [Array<Google::Apis::RunV1::GoogleCloudRunV1Condition>]

latest_created_revision_name[RW]

LatestCreatedRevisionName is the last revision that was created from this Configuration. It might not be ready yet, for that use LatestReadyRevisionName. Corresponds to the JSON property `latestCreatedRevisionName` @return [String]

latest_ready_revision_name[RW]

LatestReadyRevisionName holds the name of the latest Revision stamped out from this Configuration that has had its “Ready” condition become “True”. Corresponds to the JSON property `latestReadyRevisionName` @return [String]

observed_generation[RW]

ObservedGeneration is the 'Generation' of the Configuration that was last processed by the controller. The observed generation is updated even if the controller failed to process the spec and create the Revision. Clients polling for completed reconciliation should poll until observedGeneration = metadata. generation, and the Ready condition's status is True or False. Corresponds to the JSON property `observedGeneration` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/run_v1/classes.rb, line 442
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/run_v1/classes.rb, line 447
def update!(**args)
  @conditions = args[:conditions] if args.key?(:conditions)
  @latest_created_revision_name = args[:latest_created_revision_name] if args.key?(:latest_created_revision_name)
  @latest_ready_revision_name = args[:latest_ready_revision_name] if args.key?(:latest_ready_revision_name)
  @observed_generation = args[:observed_generation] if args.key?(:observed_generation)
end