Class: Google::Apis::GenomicsV1::SearchAnnotationSetsRequest
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::SearchAnnotationSetsRequest
- 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
Instance Attribute Summary collapse
-
#dataset_ids ⇒ Array<String>
Required.
-
#name ⇒ String
Only return annotations sets for which a substring of the name matches this string (case insensitive).
-
#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.
-
#reference_set_id ⇒ String
If specified, only annotation sets associated with the given reference set are returned.
-
#types ⇒ Array<String>
If specified, only annotation sets that have any of these types are returned.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchAnnotationSetsRequest
constructor
A new instance of SearchAnnotationSetsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchAnnotationSetsRequest
Returns a new instance of SearchAnnotationSetsRequest
126 127 128 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 126 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_ids ⇒ Array<String>
Required. The dataset IDs to search within. Caller must have READ access
to these datasets.
Corresponds to the JSON property datasetIds
118 119 120 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 118 def dataset_ids @dataset_ids end |
#name ⇒ String
Only return annotations sets for which a substring of the name matches this
string (case insensitive).
Corresponds to the JSON property name
93 94 95 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 93 def name @name end |
#page_size ⇒ Fixnum
The maximum number of results to return in a single page. If unspecified,
defaults to 128. The maximum value is 1024.
Corresponds to the JSON property pageSize
112 113 114 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 112 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
106 107 108 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 106 def page_token @page_token end |
#reference_set_id ⇒ String
If specified, only annotation sets associated with the given reference set
are returned.
Corresponds to the JSON property referenceSetId
99 100 101 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 99 def reference_set_id @reference_set_id end |
#types ⇒ Array<String>
If specified, only annotation sets that have any of these types are
returned.
Corresponds to the JSON property types
124 125 126 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 124 def types @types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
131 132 133 134 135 136 137 138 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 131 def update!(**args) @name = args[:name] if args.key?(:name) @reference_set_id = args[:reference_set_id] if args.key?(:reference_set_id) @page_token = args[:page_token] if args.key?(:page_token) @page_size = args[:page_size] if args.key?(:page_size) @dataset_ids = args[:dataset_ids] if args.key?(:dataset_ids) @types = args[:types] if args.key?(:types) end |