@maxim_mazurok/gapi.client.dlp-v2 0.0.20240331 → 0.0.20240421
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/index.d.ts +5 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://dlp.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240421
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -853,7 +853,7 @@ declare namespace gapi.client {
|
|
|
853
853
|
regex?: GooglePrivacyDlpV2Regex;
|
|
854
854
|
}
|
|
855
855
|
interface GooglePrivacyDlpV2Export {
|
|
856
|
-
/** Store all table and column profiles in an existing table or a new table in an existing dataset. Each re-generation will result in
|
|
856
|
+
/** Store all table and column profiles in an existing table or a new table in an existing dataset. Each re-generation will result in new rows in BigQuery. Data is inserted using [streaming insert](https://cloud.google.com/blog/products/bigquery/life-of-a-bigquery-streaming-insert) and so data may be in the buffer for a period of time after the profile has finished. The Pub/Sub notification is sent before the streaming buffer is guaranteed to be written, so data may not be instantly visible to queries by the time your topic receives the Pub/Sub notification. */
|
|
857
857
|
profileTable?: GooglePrivacyDlpV2BigQueryTable;
|
|
858
858
|
}
|
|
859
859
|
interface GooglePrivacyDlpV2Expressions {
|
|
@@ -1679,6 +1679,8 @@ declare namespace gapi.client {
|
|
|
1679
1679
|
hybridStats?: GooglePrivacyDlpV2HybridInspectStatistics;
|
|
1680
1680
|
/** Statistics of how many instances of each info type were found during inspect job. */
|
|
1681
1681
|
infoTypeStats?: GooglePrivacyDlpV2InfoTypeStats[];
|
|
1682
|
+
/** Number of rows scanned post sampling and time filtering (Applicable for row based stores such as BigQuery). */
|
|
1683
|
+
numRowsProcessed?: string;
|
|
1682
1684
|
/** Total size in bytes that were processed. */
|
|
1683
1685
|
processedBytes?: string;
|
|
1684
1686
|
/** Estimate of the number of bytes to process. */
|
|
@@ -1889,7 +1891,7 @@ declare namespace gapi.client {
|
|
|
1889
1891
|
partToExtract?: string;
|
|
1890
1892
|
}
|
|
1891
1893
|
interface GooglePrivacyDlpV2TimespanConfig {
|
|
1892
|
-
/** When the job is started by a JobTrigger we will automatically figure out a valid start_time to avoid scanning files that have not been modified since the last time the JobTrigger executed. This will be based on the time of the execution of the last run of the JobTrigger or the timespan end_time used in the last run of the JobTrigger. */
|
|
1894
|
+
/** When the job is started by a JobTrigger we will automatically figure out a valid start_time to avoid scanning files that have not been modified since the last time the JobTrigger executed. This will be based on the time of the execution of the last run of the JobTrigger or the timespan end_time used in the last run of the JobTrigger. *For BigQuery* Inspect jobs triggered by automatic population will scan data that is at least three hours old when the job starts. This is because streaming buffer rows are not read during inspection and reading up to the current timestamp will result in skipped rows. See the [known issue](https://cloud.google.com/sensitive-data-protection/docs/known-issues#recently-streamed-data) related to this operation. */
|
|
1893
1895
|
enableAutoPopulationOfTimespanConfig?: boolean;
|
|
1894
1896
|
/** Exclude files, tables, or rows newer than this value. If not set, no upper time limit is applied. */
|
|
1895
1897
|
endTime?: string;
|