google-cloud-dlp-v2 1.0.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/dlp/v2/dlp_service/client.rb +470 -96
- data/lib/google/cloud/dlp/v2/dlp_service/paths.rb +76 -9
- data/lib/google/cloud/dlp/v2/dlp_service/rest/client.rb +449 -96
- data/lib/google/cloud/dlp/v2/dlp_service/rest/service_stub.rb +245 -10
- data/lib/google/cloud/dlp/v2/version.rb +1 -1
- data/lib/google/privacy/dlp/v2/dlp_pb.rb +31 -1
- data/lib/google/privacy/dlp/v2/dlp_services_pb.rb +9 -1
- data/lib/google/privacy/dlp/v2/storage_pb.rb +1 -1
- data/proto_docs/google/api/client.rb +14 -10
- data/proto_docs/google/api/resource.rb +7 -2
- data/proto_docs/google/privacy/dlp/v2/dlp.rb +823 -108
- data/proto_docs/google/privacy/dlp/v2/storage.rb +9 -7
- metadata +2 -2
@@ -61,6 +61,9 @@ module Google
|
|
61
61
|
# accessible.
|
62
62
|
SENSITIVITY_LOW = 10
|
63
63
|
|
64
|
+
# Unable to determine sensitivity.
|
65
|
+
SENSITIVITY_UNKNOWN = 12
|
66
|
+
|
64
67
|
# Medium risk. Contains personally identifiable information (PII),
|
65
68
|
# potentially sensitive data, or fields with free-text data that are at a
|
66
69
|
# higher risk of having intermittent sensitive data. Consider limiting
|
@@ -613,7 +616,7 @@ module Google
|
|
613
616
|
# Specification of the field containing the timestamp of scanned items.
|
614
617
|
# Used for data sources like Datastore and BigQuery.
|
615
618
|
#
|
616
|
-
#
|
619
|
+
# **For BigQuery**
|
617
620
|
#
|
618
621
|
# If this value is not specified and the table was modified between the
|
619
622
|
# given start and end times, the entire table will be scanned. If this
|
@@ -628,13 +631,11 @@ module Google
|
|
628
631
|
# you can use any of the following pseudo-columns as your timestamp field.
|
629
632
|
# When used with Cloud DLP, these pseudo-column names are case sensitive.
|
630
633
|
#
|
631
|
-
#
|
632
|
-
#
|
633
|
-
#
|
634
|
-
# <li><code>_PARTITION_LOAD_TIME</code></li>
|
635
|
-
# </ul>
|
634
|
+
# - `_PARTITIONTIME`
|
635
|
+
# - `_PARTITIONDATE`
|
636
|
+
# - `_PARTITION_LOAD_TIME`
|
636
637
|
#
|
637
|
-
#
|
638
|
+
# **For Datastore**
|
638
639
|
#
|
639
640
|
# If this value is specified, then entities are filtered based on the given
|
640
641
|
# start and end times. If an entity does not contain the provided timestamp
|
@@ -698,6 +699,7 @@ module Google
|
|
698
699
|
# No more than 10 labels can be associated with a given finding.
|
699
700
|
#
|
700
701
|
# Examples:
|
702
|
+
#
|
701
703
|
# * `"environment" : "production"`
|
702
704
|
# * `"pipeline" : "etl"`
|
703
705
|
# @!attribute [rw] table_options
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-dlp-v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07
|
11
|
+
date: 2024-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|