class Google::Apis::BigqueryV2::DatasetReference

Attributes

dataset_id[RW]
Required

A unique ID for this dataset, without the project name. 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 `datasetId` @return [String]

project_id[RW]
Optional

The ID of the project containing this dataset.

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

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigquery_v2/classes.rb, line 1898
def update!(**args)
  @dataset_id = args[:dataset_id] if args.key?(:dataset_id)
  @project_id = args[:project_id] if args.key?(:project_id)
end