Class: Google::Apis::GenomicsV1beta2::SearchVariantSetsRequest
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1beta2::SearchVariantSetsRequest
- 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
The search variant sets request.
Instance Attribute Summary collapse
-
#dataset_ids ⇒ Array<String>
Exactly one dataset ID must be provided here.
-
#page_size ⇒ Fixnum
The maximum number of variant sets to return in a request.
-
#page_token ⇒ String
The continuation token, which is used to page through large result sets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchVariantSetsRequest
constructor
A new instance of SearchVariantSetsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchVariantSetsRequest
Returns a new instance of SearchVariantSetsRequest
2788 2789 2790 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2788 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_ids ⇒ Array<String>
Exactly one dataset ID must be provided here. Only variant sets which belong
to this dataset will be returned.
Corresponds to the JSON property datasetIds
2774 2775 2776 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2774 def dataset_ids @dataset_ids end |
#page_size ⇒ Fixnum
The maximum number of variant sets to return in a request.
Corresponds to the JSON property pageSize
2779 2780 2781 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2779 def page_size @page_size end |
#page_token ⇒ String
The continuation token, which is used to page through large result sets. To
get the next page of results, set this parameter to the value of nextPageToken
from the previous response.
Corresponds to the JSON property pageToken
2786 2787 2788 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2786 def page_token @page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2793 2794 2795 2796 2797 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2793 def update!(**args) @dataset_ids = args[:dataset_ids] unless args[:dataset_ids].nil? @page_size = args[:page_size] unless args[:page_size].nil? @page_token = args[:page_token] unless args[:page_token].nil? end |