class Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable

Message defining the location of a BigQuery table. A table is uniquely identified by its project_id, dataset_id, and table_name. Within a query a table is often referenced with a string in the format of: `:.` or `..`.

Attributes

dataset_id[RW]

Dataset ID of the table. Corresponds to the JSON property `datasetId` @return [String]

project_id[RW]

The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call. Corresponds to the JSON property `projectId` @return [String]

table_id[RW]

Name of the table. Corresponds to the JSON property `tableId` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dlp_v2/classes.rb, line 367
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