@google-cloud/dlp 5.7.0 → 5.8.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 +7 -0
- package/README.md +3 -0
- package/build/protos/google/privacy/dlp/v2/dlp.proto +702 -60
- package/build/protos/google/privacy/dlp/v2/storage.proto +4 -0
- package/build/protos/protos.d.ts +4858 -2365
- package/build/protos/protos.js +13798 -7179
- package/build/protos/protos.json +657 -4
- package/build/src/v2/dlp_service_client.d.ts +453 -96
- package/build/src/v2/dlp_service_client.js +388 -46
- package/build/src/v2/dlp_service_client_config.json +12 -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
|
|
@@ -750,6 +753,7 @@ message HybridOptions {
|
|
|
750
753
|
// No more than 10 labels can be associated with a given finding.
|
|
751
754
|
//
|
|
752
755
|
// Examples:
|
|
756
|
+
//
|
|
753
757
|
// * `"environment" : "production"`
|
|
754
758
|
// * `"pipeline" : "etl"`
|
|
755
759
|
map<string, string> labels = 3;
|