Class: Google::Apis::BigqueryV2::ListRoutinesResponse

Inherits:
Object
  • Object
show all
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

Overview

Describes the format of a single result page when listing routines.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListRoutinesResponse

Returns a new instance of ListRoutinesResponse.



6264
6265
6266
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6264

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

A token to request the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


6254
6255
6256
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6254

def next_page_token
  @next_page_token
end

#routinesArray<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



6262
6263
6264
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6262

def routines
  @routines
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6269
6270
6271
6272
# File 'lib/google/apis/bigquery_v2/classes.rb', line 6269

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @routines = args[:routines] if args.key?(:routines)
end