@maxim_mazurok/gapi.client.dlp-v2 0.0.20250516 → 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 +13 -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. */
|
|
@@ -597,8 +599,12 @@ declare namespace gapi.client {
|
|
|
597
599
|
interface GooglePrivacyDlpV2DataProfileFinding {
|
|
598
600
|
/** Resource name of the data profile associated with the finding. */
|
|
599
601
|
dataProfileResourceName?: string;
|
|
602
|
+
/** The type of the resource that was profiled. */
|
|
603
|
+
dataSourceType?: GooglePrivacyDlpV2DataSourceType;
|
|
600
604
|
/** A unique identifier for the finding. */
|
|
601
605
|
findingId?: string;
|
|
606
|
+
/** The [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name) of the resource profiled for this finding. */
|
|
607
|
+
fullResourceName?: string;
|
|
602
608
|
/** The [type of content](https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference) that might have been found. */
|
|
603
609
|
infotype?: GooglePrivacyDlpV2InfoType;
|
|
604
610
|
/** Where the content was found. */
|
|
@@ -1853,6 +1859,10 @@ declare namespace gapi.client {
|
|
|
1853
1859
|
interface GooglePrivacyDlpV2PublishFindingsToCloudDataCatalog {}
|
|
1854
1860
|
interface GooglePrivacyDlpV2PublishSummaryToCscc {}
|
|
1855
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
|
+
}
|
|
1856
1866
|
interface GooglePrivacyDlpV2PublishToPubSub {
|
|
1857
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}. */
|
|
1858
1868
|
topic?: string;
|
|
@@ -2240,6 +2250,8 @@ declare namespace gapi.client {
|
|
|
2240
2250
|
interface GooglePrivacyDlpV2TableReference {
|
|
2241
2251
|
/** Dataset ID of the table. */
|
|
2242
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;
|
|
2243
2255
|
/** Name of the table. */
|
|
2244
2256
|
tableId?: string;
|
|
2245
2257
|
}
|