Class: Google::Apis::BigqueryV2::ListRoutinesResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ListRoutinesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to request the next page of results.
-
#routines ⇒ Array<Google::Apis::BigqueryV2::Routine>
Routines in the requested dataset.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListRoutinesResponse
constructor
A new instance of ListRoutinesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListRoutinesResponse
Returns a new instance of ListRoutinesResponse.
5140 5141 5142 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5140 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to request the next page of results.
Corresponds to the JSON property nextPageToken
5130 5131 5132 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5130 def next_page_token @next_page_token end |
#routines ⇒ Array<Google::Apis::BigqueryV2::Routine>
Routines in the requested dataset. Unless read_mask is set in the request,
only the following fields are populated: etag, project_id, dataset_id,
routine_id, routine_type, creation_time, last_modified_time, language, and
remote_function_options.
Corresponds to the JSON property routines
5138 5139 5140 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5138 def routines @routines end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5145 5146 5147 5148 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 5145 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @routines = args[:routines] if args.key?(:routines) end |