class Google::Apis::BigqueryV2::RoutineReference
Attributes
dataset_id[RW]
- Required
-
The ID of the dataset containing this routine.
Corresponds to the JSON property `datasetId` @return [String]
project_id[RW]
- Required
-
The ID of the project containing this routine.
Corresponds to the JSON property `projectId` @return [String]
routine_id[RW]
- Required
-
The ID of the routine. The ID must contain only letters (a-z, A-Z),
numbers (0-9), or underscores (_). The maximum length is 256 characters. Corresponds to the JSON property `routineId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 5708 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 5713 def update!(**args) @dataset_id = args[:dataset_id] if args.key?(:dataset_id) @project_id = args[:project_id] if args.key?(:project_id) @routine_id = args[:routine_id] if args.key?(:routine_id) end