@google-cloud/dlp 5.7.0 → 5.9.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.
- package/CHANGELOG.md +14 -0
- package/README.md +3 -0
- package/build/protos/google/privacy/dlp/v2/dlp.proto +861 -119
- package/build/protos/google/privacy/dlp/v2/storage.proto +9 -7
- package/build/protos/protos.d.ts +5269 -2439
- package/build/protos/protos.js +15068 -7549
- package/build/protos/protos.json +856 -109
- package/build/src/v2/dlp_service_client.d.ts +618 -214
- package/build/src/v2/dlp_service_client.js +522 -133
- package/build/src/v2/dlp_service_client_config.json +15 -0
- package/package.json +1 -1
|
@@ -58,6 +58,9 @@ message SensitivityScore {
|
|
|
58
58
|
// accessible.
|
|
59
59
|
SENSITIVITY_LOW = 10;
|
|
60
60
|
|
|
61
|
+
// Unable to determine sensitivity.
|
|
62
|
+
SENSITIVITY_UNKNOWN = 12;
|
|
63
|
+
|
|
61
64
|
// Medium risk. Contains personally identifiable information (PII),
|
|
62
65
|
// potentially sensitive data, or fields with free-text data that are at a
|
|
63
66
|
// higher risk of having intermittent sensitive data. Consider limiting
|
|
@@ -650,7 +653,7 @@ message StorageConfig {
|
|
|
650
653
|
// Specification of the field containing the timestamp of scanned items.
|
|
651
654
|
// Used for data sources like Datastore and BigQuery.
|
|
652
655
|
//
|
|
653
|
-
//
|
|
656
|
+
// **For BigQuery**
|
|
654
657
|
//
|
|
655
658
|
// If this value is not specified and the table was modified between the
|
|
656
659
|
// given start and end times, the entire table will be scanned. If this
|
|
@@ -665,13 +668,11 @@ message StorageConfig {
|
|
|
665
668
|
// you can use any of the following pseudo-columns as your timestamp field.
|
|
666
669
|
// When used with Cloud DLP, these pseudo-column names are case sensitive.
|
|
667
670
|
//
|
|
668
|
-
//
|
|
669
|
-
//
|
|
670
|
-
//
|
|
671
|
-
// <li><code>_PARTITION_LOAD_TIME</code></li>
|
|
672
|
-
// </ul>
|
|
671
|
+
// - `_PARTITIONTIME`
|
|
672
|
+
// - `_PARTITIONDATE`
|
|
673
|
+
// - `_PARTITION_LOAD_TIME`
|
|
673
674
|
//
|
|
674
|
-
//
|
|
675
|
+
// **For Datastore**
|
|
675
676
|
//
|
|
676
677
|
// If this value is specified, then entities are filtered based on the given
|
|
677
678
|
// start and end times. If an entity does not contain the provided timestamp
|
|
@@ -750,6 +751,7 @@ message HybridOptions {
|
|
|
750
751
|
// No more than 10 labels can be associated with a given finding.
|
|
751
752
|
//
|
|
752
753
|
// Examples:
|
|
754
|
+
//
|
|
753
755
|
// * `"environment" : "production"`
|
|
754
756
|
// * `"pipeline" : "etl"`
|
|
755
757
|
map<string, string> labels = 3;
|