class Google::Apis::DataprocV1::ClusterStatus
The status of a cluster and its instances.
Attributes
detail[RW]
Optional details of cluster's state. Corresponds to the JSON property `detail` @return [String]
state[RW]
The cluster's state. Corresponds to the JSON property `state` @return [String]
state_start_time[RW]
Time when this state was entered. Corresponds to the JSON property `stateStartTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/dataproc_v1/classes.rb, line 427 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/dataproc_v1/classes.rb, line 432 def update!(**args) @state = args[:state] if args.key?(:state) @detail = args[:detail] if args.key?(:detail) @state_start_time = args[:state_start_time] if args.key?(:state_start_time) end