class Google::Apis::GenomicsV1alpha2::SetOperationStatusRequest
Request to set operation status. Should only be used by VMs created by the Pipelines Service and not by end users.
Attributes
error_code[RW]
Corresponds to the JSON property `errorCode` @return [String]
error_message[RW]
Corresponds to the JSON property `errorMessage` @return [String]
operation_id[RW]
Corresponds to the JSON property `operationId` @return [String]
timestamp_events[RW]
Corresponds to the JSON property `timestampEvents` @return [Array<Google::Apis::GenomicsV1alpha2::TimestampEvent>]
validation_token[RW]
Corresponds to the JSON property `validationToken` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 1212 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/genomics_v1alpha2/classes.rb, line 1217 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