Class: Google::Apis::BigqueryreservationV1::TableReference
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryreservationV1::TableReference
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigqueryreservation_v1/classes.rb,
lib/google/apis/bigqueryreservation_v1/representations.rb,
lib/google/apis/bigqueryreservation_v1/representations.rb
Overview
Fully qualified reference to BigQuery table. Internally stored as google.cloud. bi.v1.BqTableReference.
Instance Attribute Summary collapse
-
#dataset_id ⇒ String
The ID of the dataset in the above project.
-
#project_id ⇒ String
The assigned project ID of the project.
-
#table_id ⇒ String
The ID of the table in the above dataset.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TableReference
constructor
A new instance of TableReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TableReference
Returns a new instance of TableReference.
718 719 720 |
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 718 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_id ⇒ String
The ID of the dataset in the above project.
Corresponds to the JSON property datasetId
706 707 708 |
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 706 def dataset_id @dataset_id end |
#project_id ⇒ String
The assigned project ID of the project.
Corresponds to the JSON property projectId
711 712 713 |
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 711 def project_id @project_id end |
#table_id ⇒ String
The ID of the table in the above dataset.
Corresponds to the JSON property tableId
716 717 718 |
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 716 def table_id @table_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
723 724 725 726 727 |
# File 'lib/google/apis/bigqueryreservation_v1/classes.rb', line 723 def update!(**args) @dataset_id = args[:dataset_id] if args.key?(:dataset_id) @project_id = args[:project_id] if args.key?(:project_id) @table_id = args[:table_id] if args.key?(:table_id) end |