Class: Google::Apis::GenomicsV1alpha2::SetOperationStatusRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GenomicsV1alpha2::SetOperationStatusRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1alpha2/classes.rb,
 generated/google/apis/genomics_v1alpha2/representations.rb,
 generated/google/apis/genomics_v1alpha2/representations.rb
Overview
Request to set operation status. Should only be used by VMs created by the Pipelines Service and not by end users.
Instance Attribute Summary collapse
- 
  
    
      #error_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property errorCode.
- 
  
    
      #error_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property errorMessage.
- 
  
    
      #operation_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property operationId.
- 
  
    
      #timestamp_events  ⇒ Array<Google::Apis::GenomicsV1alpha2::TimestampEvent> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property timestampEvents.
- 
  
    
      #validation_token  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property validationToken.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SetOperationStatusRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SetOperationStatusRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SetOperationStatusRequest
Returns a new instance of SetOperationStatusRequest
| 1316 1317 1318 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1316 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#error_code ⇒ String
Corresponds to the JSON property errorCode
| 1294 1295 1296 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1294 def error_code @error_code end | 
#error_message ⇒ String
Corresponds to the JSON property errorMessage
| 1299 1300 1301 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1299 def @error_message end | 
#operation_id ⇒ String
Corresponds to the JSON property operationId
| 1304 1305 1306 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1304 def operation_id @operation_id end | 
#timestamp_events ⇒ Array<Google::Apis::GenomicsV1alpha2::TimestampEvent>
Corresponds to the JSON property timestampEvents
| 1309 1310 1311 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1309 def @timestamp_events end | 
#validation_token ⇒ Fixnum
Corresponds to the JSON property validationToken
| 1314 1315 1316 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1314 def validation_token @validation_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1321 1322 1323 1324 1325 1326 1327 | # File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1321 def update!(**args) @error_code = args[:error_code] if args.key?(:error_code) @error_message = args[:error_message] if args.key?(:error_message) @operation_id = args[:operation_id] if args.key?(:operation_id) @timestamp_events = args[:timestamp_events] if args.key?(:timestamp_events) @validation_token = args[:validation_token] if args.key?(:validation_token) end |