@maxim_mazurok/gapi.client.dlp-v2 0.0.20250518 → 0.0.20250525
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 +9 -1
- 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: 20250525
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -567,6 +567,8 @@ declare namespace gapi.client {
|
|
|
567
567
|
exportData?: GooglePrivacyDlpV2Export;
|
|
568
568
|
/** Publishes generated data profiles to Google Security Operations. For more information, see [Use Sensitive Data Protection data in context-aware analytics](https://cloud.google.com/chronicle/docs/detection/usecase-dlp-high-risk-user-download). */
|
|
569
569
|
publishToChronicle?: any;
|
|
570
|
+
/** Publishes a portion of each profile to Dataplex Catalog with the aspect type Sensitive Data Protection Profile. */
|
|
571
|
+
publishToDataplexCatalog?: GooglePrivacyDlpV2PublishToDataplexCatalog;
|
|
570
572
|
/** Publishes findings to Security Command Center for each data profile. */
|
|
571
573
|
publishToScc?: any;
|
|
572
574
|
/** Publish a message into the Pub/Sub topic. */
|
|
@@ -1857,6 +1859,10 @@ declare namespace gapi.client {
|
|
|
1857
1859
|
interface GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog {}
|
|
1858
1860
|
interface GooglePrivacyDlpV2PublishSummaryToCscc {}
|
|
1859
1861
|
interface GooglePrivacyDlpV2PublishToChronicle {}
|
|
1862
|
+
interface GooglePrivacyDlpV2PublishToDataplexCatalog {
|
|
1863
|
+
/** Whether creating a Dataplex Catalog aspect for a profiled resource should lower the risk of the profile for that resource. This also lowers the data risk of resources at the lower levels of the resource hierarchy. For example, reducing the data risk of a table data profile also reduces the data risk of the constituent column data profiles. */
|
|
1864
|
+
lowerDataRiskToLow?: boolean;
|
|
1865
|
+
}
|
|
1860
1866
|
interface GooglePrivacyDlpV2PublishToPubSub {
|
|
1861
1867
|
/** Cloud Pub/Sub topic to send notifications to. The topic must have given publishing access rights to the DLP API service account executing the long running DlpJob sending the notifications. Format is projects/{project}/topics/{topic}. */
|
|
1862
1868
|
topic?: string;
|
|
@@ -2244,6 +2250,8 @@ declare namespace gapi.client {
|
|
|
2244
2250
|
interface GooglePrivacyDlpV2TableReference {
|
|
2245
2251
|
/** Dataset ID of the table. */
|
|
2246
2252
|
datasetId?: string;
|
|
2253
|
+
/** The Google Cloud project ID of the project containing the table. If omitted, the project ID is inferred from the parent project. This field is required if the parent resource is an organization. */
|
|
2254
|
+
projectId?: string;
|
|
2247
2255
|
/** Name of the table. */
|
|
2248
2256
|
tableId?: string;
|
|
2249
2257
|
}
|