Class: Google::Apis::SheetsV4::BigQueryTableSpec

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_idString

The BigQuery dataset id. Corresponds to the JSON property datasetId

Returns:

  • (String)


2023
2024
2025
# File 'generated/google/apis/sheets_v4/classes.rb', line 2023

def dataset_id
  @dataset_id
end

#table_idString

The BigQuery table id. Corresponds to the JSON property tableId

Returns:

  • (String)


2028
2029
2030
# File 'generated/google/apis/sheets_v4/classes.rb', line 2028

def table_id
  @table_id
end

#table_project_idString

The ID of a BigQuery project the table belongs to. If not specified, the project_id is assumed. Corresponds to the JSON property tableProjectId

Returns:

  • (String)


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