class Google::Apis::GenomicsV2alpha1::CheckInRequest
The parameters to the CheckIn method.
Attributes
A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo ` rpc Bar(google. protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for `Empty` is empty JSON object ““. Corresponds to the JSON property `deadlineExpired` @return [Google::Apis::GenomicsV2alpha1::Empty]
A workflow specific event occurred. Corresponds to the JSON property `event` @return [Hash<String,Object>]
A list of timestamped events. Corresponds to the JSON property `events` @return [Array<Google::Apis::GenomicsV2alpha1::TimestampedEvent>]
The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [ gRPC](github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https: //cloud.google.com/apis/design/errors). Corresponds to the JSON property `result` @return [Google::Apis::GenomicsV2alpha1::Status]
An SOS report for an unexpected VM failure. Corresponds to the JSON property `sosReport` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]
The status of the worker VM. Corresponds to the JSON property `workerStatus` @return [Google::Apis::GenomicsV2alpha1::WorkerStatus]
Public Class Methods
# File lib/google/apis/genomics_v2alpha1/classes.rb, line 250 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/genomics_v2alpha1/classes.rb, line 255 def update!(**args) @deadline_expired = args[:deadline_expired] if args.key?(:deadline_expired) @event = args[:event] if args.key?(:event) @events = args[:events] if args.key?(:events) @result = args[:result] if args.key?(:result) @sos_report = args[:sos_report] if args.key?(:sos_report) @worker_status = args[:worker_status] if args.key?(:worker_status) end