Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DatastoreOptions
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2DatastoreOptions
 
- 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
Options defining a data set within Google Cloud Datastore.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2KindExpression 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A representation of a Datastore kind. 
- 
  
    
      #partition_id  ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2PartitionId 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Datastore partition ID. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2DatastoreOptions 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2DatastoreOptions. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2DatastoreOptions
Returns a new instance of GooglePrivacyDlpV2DatastoreOptions
| 1197 1198 1199 | # File 'generated/google/apis/dlp_v2/classes.rb', line 1197 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2KindExpression
A representation of a Datastore kind.
Corresponds to the JSON property kind
| 1186 1187 1188 | # File 'generated/google/apis/dlp_v2/classes.rb', line 1186 def kind @kind end | 
#partition_id ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2PartitionId
Datastore partition ID.
A partition ID identifies a grouping of entities. The grouping is always
by project and namespace, however the namespace ID may be empty.
A partition ID contains several dimensions:
project ID and namespace ID.
Corresponds to the JSON property partitionId
| 1195 1196 1197 | # File 'generated/google/apis/dlp_v2/classes.rb', line 1195 def partition_id @partition_id end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1202 1203 1204 1205 | # File 'generated/google/apis/dlp_v2/classes.rb', line 1202 def update!(**args) @kind = args[:kind] if args.key?(:kind) @partition_id = args[:partition_id] if args.key?(:partition_id) end |