class Google::Apis::DataprocV1beta2::ClusterOperationStatus
The status of the operation.
Attributes
details[RW]
Output only. A message containing any operation metadata details. Corresponds to the JSON property `details` @return [String]
inner_state[RW]
Output only. A message containing the detailed operation state. Corresponds to the JSON property `innerState` @return [String]
state[RW]
Output only. A message containing the operation state. Corresponds to the JSON property `state` @return [String]
state_start_time[RW]
Output only. The time this state was entered. Corresponds to the JSON property `stateStartTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataproc_v1beta2/classes.rb, line 653 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 658 def update!(**args) @details = args[:details] if args.key?(:details) @inner_state = args[:inner_state] if args.key?(:inner_state) @state = args[:state] if args.key?(:state) @state_start_time = args[:state_start_time] if args.key?(:state_start_time) end