Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RecordKey

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb

Overview

Message for a unique key indicating a record that contains a finding.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2RecordKey

Returns a new instance of GooglePrivacyDlpV2RecordKey



4475
4476
4477
# File 'generated/google/apis/dlp_v2/classes.rb', line 4475

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#big_query_keyGoogle::Apis::DlpV2::GooglePrivacyDlpV2BigQueryKey

Row key for identifying a record in BigQuery table. Corresponds to the JSON property bigQueryKey



4462
4463
4464
# File 'generated/google/apis/dlp_v2/classes.rb', line 4462

def big_query_key
  @big_query_key
end

#datastore_keyGoogle::Apis::DlpV2::GooglePrivacyDlpV2DatastoreKey

Record key for a finding in Cloud Datastore. Corresponds to the JSON property datastoreKey



4467
4468
4469
# File 'generated/google/apis/dlp_v2/classes.rb', line 4467

def datastore_key
  @datastore_key
end

#id_valuesArray<String>

Values of identifying columns in the given row. Order of values matches the order of field identifiers specified in the scanning request. Corresponds to the JSON property idValues

Returns:

  • (Array<String>)


4473
4474
4475
# File 'generated/google/apis/dlp_v2/classes.rb', line 4473

def id_values
  @id_values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4480
4481
4482
4483
4484
# File 'generated/google/apis/dlp_v2/classes.rb', line 4480

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