Class: Google::Apis::DataprocV1beta2::ClusterOperation
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DataprocV1beta2::ClusterOperation
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataproc_v1beta2/classes.rb,
 generated/google/apis/dataproc_v1beta2/representations.rb,
 generated/google/apis/dataproc_v1beta2/representations.rb
Overview
The cluster operation triggered by a workflow.
Instance Attribute Summary collapse
- 
  
    
      #done  ⇒ Boolean 
    
    
      (also: #done?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #error  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #operation_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ClusterOperation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ClusterOperation. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ClusterOperation
Returns a new instance of ClusterOperation
| 307 308 309 | # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 307 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#done ⇒ Boolean Also known as: done?
Output only. Indicates the operation is done.
Corresponds to the JSON property done
| 294 295 296 | # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 294 def done @done end | 
#error ⇒ String
Output only. Error, if operation failed.
Corresponds to the JSON property error
| 300 301 302 | # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 300 def error @error end | 
#operation_id ⇒ String
Output only. The id of the cluster operation.
Corresponds to the JSON property operationId
| 305 306 307 | # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 305 def operation_id @operation_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 312 313 314 315 316 | # File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 312 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 |