Class: Google::Apis::GenomicsV1beta2::JobRequest
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1beta2::JobRequest
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/genomics_v1beta2/classes.rb,
generated/google/apis/genomics_v1beta2/representations.rb,
generated/google/apis/genomics_v1beta2/representations.rb
Overview
A summary representation of the service request that spawned the job.
Instance Attribute Summary collapse
-
#destination ⇒ Array<String>
The data destination of the request, for example, a Google BigQuery Table or Dataset ID.
-
#source ⇒ Array<String>
The data source of the request, for example, a Google Cloud Storage object path or Readset ID.
-
#type ⇒ String
The original request type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobRequest
constructor
A new instance of JobRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ JobRequest
Returns a new instance of JobRequest
1127 1128 1129 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1127 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destination ⇒ Array<String>
The data destination of the request, for example, a Google BigQuery Table or
Dataset ID.
Corresponds to the JSON property destination
1114 1115 1116 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1114 def destination @destination end |
#source ⇒ Array<String>
The data source of the request, for example, a Google Cloud Storage object
path or Readset ID.
Corresponds to the JSON property source
1120 1121 1122 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1120 def source @source end |
#type ⇒ String
The original request type.
Corresponds to the JSON property type
1125 1126 1127 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 1125 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1132 1133 1134 1135 1136 |
# 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 |