@google-cloud/dlp 5.4.0 → 5.6.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 +15 -0
- package/README.md +7 -0
- package/build/protos/google/privacy/dlp/v2/dlp.proto +561 -17
- package/build/protos/google/privacy/dlp/v2/storage.proto +12 -1
- package/build/protos/protos.d.ts +5389 -2752
- package/build/protos/protos.js +14623 -8286
- package/build/protos/protos.json +642 -2
- package/build/src/v2/dlp_service_client.d.ts +355 -12
- package/build/src/v2/dlp_service_client.js +381 -6
- package/build/src/v2/dlp_service_client_config.json +28 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright
|
|
1
|
+
// Copyright 2024 Google LLC
|
|
2
2
|
//
|
|
3
3
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
4
|
// you may not use this file except in compliance with the License.
|
|
@@ -689,6 +689,17 @@ message StorageConfig {
|
|
|
689
689
|
// since the last time the JobTrigger executed. This will be based on the
|
|
690
690
|
// time of the execution of the last run of the JobTrigger or the timespan
|
|
691
691
|
// end_time used in the last run of the JobTrigger.
|
|
692
|
+
//
|
|
693
|
+
// **For BigQuery**
|
|
694
|
+
//
|
|
695
|
+
// Inspect jobs triggered by automatic population will scan data that is at
|
|
696
|
+
// least three hours old when the job starts. This is because streaming
|
|
697
|
+
// buffer rows are not read during inspection and reading up to the current
|
|
698
|
+
// timestamp will result in skipped rows.
|
|
699
|
+
//
|
|
700
|
+
// See the [known
|
|
701
|
+
// issue](https://cloud.google.com/sensitive-data-protection/docs/known-issues#recently-streamed-data)
|
|
702
|
+
// related to this operation.
|
|
692
703
|
bool enable_auto_population_of_timespan_config = 4;
|
|
693
704
|
}
|
|
694
705
|
|