Class: Google::Apis::DlpV2::GooglePrivacyDlpV2RecordKey
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2RecordKey
 
- 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
- 
  
    
      #big_query_key  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryKey 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Row key for identifying a record in BigQuery table. 
- 
  
    
      #datastore_key  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DatastoreKey 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Record key for a finding in Cloud Datastore. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2RecordKey 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2RecordKey. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2RecordKey
Returns a new instance of GooglePrivacyDlpV2RecordKey
| 3723 3724 3725 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3723 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#big_query_key ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryKey
Row key for identifying a record in BigQuery table.
Corresponds to the JSON property bigQueryKey
| 3716 3717 3718 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3716 def big_query_key @big_query_key end | 
#datastore_key ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DatastoreKey
Record key for a finding in Cloud Datastore.
Corresponds to the JSON property datastoreKey
| 3721 3722 3723 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3721 def datastore_key @datastore_key end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3728 3729 3730 3731 | # File 'generated/google/apis/dlp_v2/classes.rb', line 3728 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) end |