class Google::Apis::DataprocV1::ClusterOperationStatus

The status of the operation.

Attributes

details[RW]

A message containing any operation metadata details. Corresponds to the JSON property `details` @return [String]

inner_state[RW]

A message containing the detailed operation state. Corresponds to the JSON property `innerState` @return [String]

state[RW]

A message containing the operation state. Corresponds to the JSON property `state` @return [String]

state_start_time[RW]

The time 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 1434
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 1439
def update!(**args)
  @state = args[:state] if args.key?(:state)
  @inner_state = args[:inner_state] if args.key?(:inner_state)
  @details = args[:details] if args.key?(:details)
  @state_start_time = args[:state_start_time] if args.key?(:state_start_time)
end