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