Class: Google::Apis::BigqueryV2::ListRoutinesResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ListRoutinesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListRoutinesResponse
Returns a new instance of ListRoutinesResponse.
3592 3593 3594 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3592 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
3583 3584 3585 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3583 def next_page_token @next_page_token end |
#routines ⇒ Array<Google::Apis::BigqueryV2::Routine>
Routines in the requested dataset. Only the following fields are populated:
etag, project_id, dataset_id, routine_id, routine_type, creation_time,
last_modified_time, language.
Corresponds to the JSON property routines
3590 3591 3592 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3590 def routines @routines end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3597 3598 3599 3600 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3597 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @routines = args[:routines] if args.key?(:routines) end |