Class: Google::Apis::BigqueryV2::ModelReference
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ModelReference
- 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
Instance Attribute Summary collapse
-
#dataset_id ⇒ String
[Required] The ID of the dataset containing this model.
-
#model_id ⇒ String
[Required] The ID of the model.
-
#project_id ⇒ String
[Required] The ID of the project containing this model.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ModelReference
constructor
A new instance of ModelReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ModelReference
Returns a new instance of ModelReference.
4539 4540 4541 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4539 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_id ⇒ String
[Required] The ID of the dataset containing this model.
Corresponds to the JSON property datasetId
4526 4527 4528 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4526 def dataset_id @dataset_id end |
#model_id ⇒ String
[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
4532 4533 4534 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4532 def model_id @model_id end |
#project_id ⇒ String
[Required] The ID of the project containing this model.
Corresponds to the JSON property projectId
4537 4538 4539 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4537 def project_id @project_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4544 4545 4546 4547 4548 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 4544 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 |