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

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListRoutinesResponse

Returns a new instance of ListRoutinesResponse



3385
3386
3387
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3385

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)


3376
3377
3378
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3376

def next_page_token
  @next_page_token
end

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



3383
3384
3385
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3383

def routines
  @routines
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3390
3391
3392
3393
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3390

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