class Google::Apis::BigqueryV2::ListRoutinesResponse
Attributes
next_page_token[RW]
A token to request the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]
routines[RW]
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, and language. Corresponds to the JSON property `routines` @return [Array<Google::Apis::BigqueryV2::Routine>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 4411 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquery_v2/classes.rb, line 4416 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @routines = args[:routines] if args.key?(:routines) end