class Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryKey

Row key for identifying a record in BigQuery table.

Attributes

row_number[RW]

Row number inferred at the time the table was scanned. This value is nondeterministic, cannot be queried, and may be null for inspection jobs. To locate findings within a table, specify `inspect_job.storage_config. big_query_options.identifying_fields` in `CreateDlpJobRequest`. Corresponds to the JSON property `rowNumber` @return [Fixnum]

table_reference[RW]

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 `..`. Corresponds to the JSON property `tableReference` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 266
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 271
def update!(**args)
  @row_number = args[:row_number] if args.key?(:row_number)
  @table_reference = args[:table_reference] if args.key?(:table_reference)
end