Class: Google::Apis::RunV1::ServiceStatus
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::ServiceStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
The current state of the Service. Output only.
Instance Attribute Summary collapse
-
#address ⇒ Google::Apis::RunV1::Addressable
Information for connecting over HTTP(s).
-
#conditions ⇒ Array<Google::Apis::RunV1::GoogleCloudRunV1Condition>
Conditions communicates information about ongoing/complete reconciliation processes that bring the "spec" inline with the observed state of the world.
-
#latest_created_revision_name ⇒ String
From ConfigurationStatus.
-
#latest_ready_revision_name ⇒ String
From ConfigurationStatus.
-
#observed_generation ⇒ Fixnum
ObservedGeneration is the 'Generation' of the Route that was last processed by the controller.
-
#traffic ⇒ Array<Google::Apis::RunV1::TrafficTarget>
From RouteStatus.
-
#url ⇒ String
From RouteStatus.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ServiceStatus
constructor
A new instance of ServiceStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ServiceStatus
Returns a new instance of ServiceStatus.
3176 3177 3178 |
# File 'lib/google/apis/run_v1/classes.rb', line 3176 def initialize(**args) update!(**args) end |
Instance Attribute Details
#address ⇒ Google::Apis::RunV1::Addressable
Information for connecting over HTTP(s).
Corresponds to the JSON property address
3127 3128 3129 |
# File 'lib/google/apis/run_v1/classes.rb', line 3127 def address @address end |
#conditions ⇒ Array<Google::Apis::RunV1::GoogleCloudRunV1Condition>
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.
Corresponds to the JSON property conditions
3137 3138 3139 |
# File 'lib/google/apis/run_v1/classes.rb', line 3137 def conditions @conditions end |
#latest_created_revision_name ⇒ String
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.
Corresponds to the JSON property latestCreatedRevisionName
3144 3145 3146 |
# File 'lib/google/apis/run_v1/classes.rb', line 3144 def latest_created_revision_name @latest_created_revision_name end |
#latest_ready_revision_name ⇒ String
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".
Corresponds to the JSON property latestReadyRevisionName
3151 3152 3153 |
# File 'lib/google/apis/run_v1/classes.rb', line 3151 def latest_ready_revision_name @latest_ready_revision_name end |
#observed_generation ⇒ Fixnum
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.
Corresponds to the JSON property observedGeneration
3159 3160 3161 |
# File 'lib/google/apis/run_v1/classes.rb', line 3159 def observed_generation @observed_generation end |
#traffic ⇒ Array<Google::Apis::RunV1::TrafficTarget>
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.
Corresponds to the JSON property traffic
3167 3168 3169 |
# File 'lib/google/apis/run_v1/classes.rb', line 3167 def traffic @traffic end |
#url ⇒ String
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
Corresponds to the JSON property url
3174 3175 3176 |
# File 'lib/google/apis/run_v1/classes.rb', line 3174 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3181 3182 3183 3184 3185 3186 3187 3188 3189 |
# File 'lib/google/apis/run_v1/classes.rb', line 3181 def update!(**args) @address = args[:address] if args.key?(:address) @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) @traffic = args[:traffic] if args.key?(:traffic) @url = args[:url] if args.key?(:url) end |