Class: Google::Apis::SheetsV4::BigQueryTableSpec
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::BigQueryTableSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb
Overview
Specifies a BigQuery table definition. Only native tables is allowed.
Instance Attribute Summary collapse
-
#dataset_id ⇒ String
The BigQuery dataset id.
-
#table_id ⇒ String
The BigQuery table id.
-
#table_project_id ⇒ String
The ID of a BigQuery project the table belongs to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BigQueryTableSpec
constructor
A new instance of BigQueryTableSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BigQueryTableSpec
Returns a new instance of BigQueryTableSpec.
2036 2037 2038 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 2036 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dataset_id ⇒ String
The BigQuery dataset id.
Corresponds to the JSON property datasetId
2023 2024 2025 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 2023 def dataset_id @dataset_id end |
#table_id ⇒ String
The BigQuery table id.
Corresponds to the JSON property tableId
2028 2029 2030 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 2028 def table_id @table_id end |
#table_project_id ⇒ String
The ID of a BigQuery project the table belongs to. If not specified, the
project_id is assumed.
Corresponds to the JSON property tableProjectId
2034 2035 2036 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 2034 def table_project_id @table_project_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2041 2042 2043 2044 2045 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 2041 def update!(**args) @dataset_id = args[:dataset_id] if args.key?(:dataset_id) @table_id = args[:table_id] if args.key?(:table_id) @table_project_id = args[:table_project_id] if args.key?(:table_project_id) end |