class Google::Apis::DataprocV1beta2::ClusterStatus

The status of a cluster and its instances.

Attributes

detail[RW]

Output only. Optional details of cluster's state. Corresponds to the JSON property `detail` @return [String]

state[RW]

Output only. The cluster's state. Corresponds to the JSON property `state` @return [String]

state_start_time[RW]

Output only. Time when this state was entered (see JSON representation of Timestamp (developers.google.com/protocol-buffers/docs/proto3#json)). Corresponds to the JSON property `stateStartTime` @return [String]

substate[RW]

Output only. Additional state information that includes status reported by the agent. Corresponds to the JSON property `substate` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataproc_v1beta2/classes.rb, line 724
def update!(**args)
  @detail = args[:detail] if args.key?(:detail)
  @state = args[:state] if args.key?(:state)
  @state_start_time = args[:state_start_time] if args.key?(:state_start_time)
  @substate = args[:substate] if args.key?(:substate)
end