class Google::Apis::BigqueryV2::TableReference

Attributes

dataset_id[RW]
Required

The ID of the dataset containing this table.

Corresponds to the JSON property `datasetId` @return [String]

project_id[RW]
Required

The ID of the project containing this table.

Corresponds to the JSON property `projectId` @return [String]

table_id[RW]
Required

The ID of the table. 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 `tableId` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/bigquery_v2/classes.rb, line 2645
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