class Google::Apis::DlpV2::GooglePrivacyDlpV2DatastoreOptions
Options defining a data set within Google
Cloud Datastore.
Attributes
kind[RW]
A representation of a Datastore kind. Corresponds to the JSON property `kind` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2KindExpression]
partition_id[RW]
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` @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PartitionId]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dlp_v2/classes.rb, line 1586 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 1591 def update!(**args) @kind = args[:kind] if args.key?(:kind) @partition_id = args[:partition_id] if args.key?(:partition_id) end