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
1304 1305 1306 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1304 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_code ⇒ String
Corresponds to the JSON property errorCode
1282 1283 1284 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1282 def error_code @error_code end |
#error_message ⇒ String
Corresponds to the JSON property errorMessage
1287 1288 1289 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1287 def @error_message end |
#operation_id ⇒ String
Corresponds to the JSON property operationId
1292 1293 1294 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1292 def operation_id @operation_id end |
#timestamp_events ⇒ Array<Google::Apis::GenomicsV1alpha2::TimestampEvent>
Corresponds to the JSON property timestampEvents
1297 1298 1299 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1297 def @timestamp_events end |
#validation_token ⇒ Fixnum
Corresponds to the JSON property validationToken
1302 1303 1304 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1302 def validation_token @validation_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1309 1310 1311 1312 1313 1314 1315 |
# File 'generated/google/apis/genomics_v1alpha2/classes.rb', line 1309 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 |