class Google::Apis::GenomicsV1::OperationMetadata

Metadata describing an Operation.

Attributes

create_time[RW]

The time at which the job was submitted to the Genomics service. Corresponds to the JSON property `createTime` @return [String]

events[RW]

Optional event messages that were generated during the job's execution. This also contains any warnings that were generated during import or export. Corresponds to the JSON property `events` @return [Array<Google::Apis::GenomicsV1::OperationEvent>]

project_id[RW]

The Google Cloud Project in which the job is scoped. Corresponds to the JSON property `projectId` @return [String]

request[RW]

The original request that started the operation. Note that this will be in current version of the API. If the operation was started with v1beta2 API and a GetOperation is performed on v1 API, a v1 request will be returned. Corresponds to the JSON property `request` @return [Hash<String,Object>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1/classes.rb, line 3315
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/genomics_v1/classes.rb, line 3320
def update!(**args)
  @project_id = args[:project_id] if args.key?(:project_id)
  @create_time = args[:create_time] if args.key?(:create_time)
  @request = args[:request] if args.key?(:request)
  @events = args[:events] if args.key?(:events)
end