Class: Google::Apis::GenomicsV1::SearchVariantSetsRequest
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::SearchVariantSetsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1/classes.rb,
generated/google/apis/genomics_v1/representations.rb,
generated/google/apis/genomics_v1/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 results to return in a single page.
-
#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::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchVariantSetsRequest
Returns a new instance of SearchVariantSetsRequest.
2726 2727 2728 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2726 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
2711 2712 2713 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2711 def dataset_ids @dataset_ids end |
#page_size ⇒ Fixnum
The maximum number of results to return in a single page. If unspecified,
defaults to 1024.
Corresponds to the JSON property pageSize
2724 2725 2726 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2724 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
2718 2719 2720 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2718 def page_token @page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2731 2732 2733 2734 2735 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2731 def update!(**args) @dataset_ids = args[:dataset_ids] if args.key?(:dataset_ids) @page_token = args[:page_token] if args.key?(:page_token) @page_size = args[:page_size] if args.key?(:page_size) end |