class Google::Apis::DlpV2::GooglePrivacyDlpV2RecordKey
Message for a unique key indicating a record that contains a finding.
Attributes
big_query_key[RW]
Row key for identifying a record in BigQuery table. Corresponds to the JSON property `bigQueryKey` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryKey]
datastore_key[RW]
Record key for a finding in Cloud Datastore. Corresponds to the JSON property `datastoreKey` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DatastoreKey]
id_values[RW]
Values of identifying columns in the given row. Order of values matches the order of `identifying_fields` specified in the scanning request. Corresponds to the JSON property `idValues` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 4963 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 4968 def update!(**args) @big_query_key = args[:big_query_key] if args.key?(:big_query_key) @datastore_key = args[:datastore_key] if args.key?(:datastore_key) @id_values = args[:id_values] if args.key?(:id_values) end