Class: Google::Apis::DataprocV1::ClusterOperation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb

Overview

The cluster operation triggered by a workflow.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClusterOperation

Returns a new instance of ClusterOperation.



1629
1630
1631
# File 'lib/google/apis/dataproc_v1/classes.rb', line 1629

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#doneBoolean Also known as: done?

Output only. Indicates the operation is done. Corresponds to the JSON property done

Returns:

  • (Boolean)


1616
1617
1618
# File 'lib/google/apis/dataproc_v1/classes.rb', line 1616

def done
  @done
end

#errorString

Output only. Error, if operation failed. Corresponds to the JSON property error

Returns:

  • (String)


1622
1623
1624
# File 'lib/google/apis/dataproc_v1/classes.rb', line 1622

def error
  @error
end

#operation_idString

Output only. The id of the cluster operation. Corresponds to the JSON property operationId

Returns:

  • (String)


1627
1628
1629
# File 'lib/google/apis/dataproc_v1/classes.rb', line 1627

def operation_id
  @operation_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1634
1635
1636
1637
1638
# File 'lib/google/apis/dataproc_v1/classes.rb', line 1634

def update!(**args)
  @done = args[:done] if args.key?(:done)
  @error = args[:error] if args.key?(:error)
  @operation_id = args[:operation_id] if args.key?(:operation_id)
end