Class: Google::Apis::DataprocV1::ClusterOperationStatus
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DataprocV1::ClusterOperationStatus
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataproc_v1/classes.rb,
 generated/google/apis/dataproc_v1/representations.rb,
 generated/google/apis/dataproc_v1/representations.rb
Overview
The status of the operation.
Instance Attribute Summary collapse
- 
  
    
      #details  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #inner_state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #state_start_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ClusterOperationStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ClusterOperationStatus. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ClusterOperationStatus
Returns a new instance of ClusterOperationStatus
| 327 328 329 | # File 'generated/google/apis/dataproc_v1/classes.rb', line 327 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#details ⇒ String
Output only. A message containing any operation metadata details.
Corresponds to the JSON property details
| 310 311 312 | # File 'generated/google/apis/dataproc_v1/classes.rb', line 310 def details @details end | 
#inner_state ⇒ String
Output only. A message containing the detailed operation state.
Corresponds to the JSON property innerState
| 315 316 317 | # File 'generated/google/apis/dataproc_v1/classes.rb', line 315 def inner_state @inner_state end | 
#state ⇒ String
Output only. A message containing the operation state.
Corresponds to the JSON property state
| 320 321 322 | # File 'generated/google/apis/dataproc_v1/classes.rb', line 320 def state @state end | 
#state_start_time ⇒ String
Output only. The time this state was entered.
Corresponds to the JSON property stateStartTime
| 325 326 327 | # File 'generated/google/apis/dataproc_v1/classes.rb', line 325 def state_start_time @state_start_time end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 332 333 334 335 336 337 | # File 'generated/google/apis/dataproc_v1/classes.rb', line 332 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 |