class Google::Apis::GenomicsV1beta2::JobRequest

A summary representation of the service request that spawned the job.

Attributes

destination[RW]

The data destination of the request, for example, a Google BigQuery Table or Dataset ID. Corresponds to the JSON property `destination` @return [Array<String>]

source[RW]

The data source of the request, for example, a Google Cloud Storage object path or Readset ID. Corresponds to the JSON property `source` @return [Array<String>]

type[RW]

The original request type. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1beta2/classes.rb, line 1127
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_v1beta2/classes.rb, line 1132
def update!(**args)
  @destination = args[:destination] unless args[:destination].nil?
  @source = args[:source] unless args[:source].nil?
  @type = args[:type] unless args[:type].nil?
end