class Google::Apis::SheetsV4::BigQueryTableSpec

Specifies a BigQuery table definition. Only [native tables](cloud. google.com/bigquery/docs/tables-intro) is allowed.

Attributes

dataset_id[RW]

The BigQuery dataset id. Corresponds to the JSON property `datasetId` @return [String]

table_id[RW]

The BigQuery table id. Corresponds to the JSON property `tableId` @return [String]

table_project_id[RW]

The ID of a BigQuery project the table belongs to. If not specified, the project_id is assumed. Corresponds to the JSON property `tableProjectId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 2036
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/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