@maxim_mazurok/gapi.client.dlp-v2 0.0.20241020 → 0.0.20241103

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.
Files changed (3) hide show
  1. package/index.d.ts +7 -7
  2. package/package.json +1 -1
  3. package/readme.md +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: 20241020
12
+ // Revision: 20241103
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -259,7 +259,7 @@ declare namespace gapi.client {
259
259
  connectionName?: string;
260
260
  /** Required. The database engine used by the Cloud SQL instance that this connection configures. */
261
261
  databaseEngine?: string;
262
- /** Required. DLP will limit its connections to max_connections. Must be 2 or greater. */
262
+ /** Required. The DLP API will limit its connections to max_connections. Must be 2 or greater. */
263
263
  maxConnections?: number;
264
264
  /** A username and password stored in Secret Manager. */
265
265
  usernamePassword?: GooglePrivacyDlpV2SecretManagerCredential;
@@ -567,7 +567,7 @@ 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 findings to SCC for each data profile. */
570
+ /** Publishes findings to Security Command Center for each data profile. */
571
571
  publishToScc?: any;
572
572
  /** Publish a message into the Pub/Sub topic. */
573
573
  pubSubNotification?: GooglePrivacyDlpV2PubSubNotification;
@@ -603,7 +603,7 @@ declare namespace gapi.client {
603
603
  location?: GooglePrivacyDlpV2DataProfileLocation;
604
604
  /** Must be set only when scanning other clouds. */
605
605
  otherCloudStartingLocation?: GooglePrivacyDlpV2OtherCloudDiscoveryStartingLocation;
606
- /** The project that will run the scan. The DLP service account that exists within this project must have access to all resources that are profiled, and the Cloud DLP API must be enabled. */
606
+ /** The project that will run the scan. The DLP service account that exists within this project must have access to all resources that are profiled, and the DLP API must be enabled. */
607
607
  projectId?: string;
608
608
  }
609
609
  interface GooglePrivacyDlpV2DataProfileLocation {
@@ -1641,7 +1641,7 @@ declare namespace gapi.client {
1641
1641
  interface GooglePrivacyDlpV2OrgConfig {
1642
1642
  /** The data to scan: folder, org, or project */
1643
1643
  location?: GooglePrivacyDlpV2DiscoveryStartingLocation;
1644
- /** The project that will run the scan. The DLP service account that exists within this project must have access to all resources that are profiled, and the Cloud DLP API must be enabled. */
1644
+ /** The project that will run the scan. The DLP service account that exists within this project must have access to all resources that are profiled, and the DLP API must be enabled. */
1645
1645
  projectId?: string;
1646
1646
  }
1647
1647
  interface GooglePrivacyDlpV2OtherCloudDiscoveryStartingLocation {
@@ -2394,7 +2394,7 @@ declare namespace gapi.client {
2394
2394
  seconds?: number;
2395
2395
  }
2396
2396
  interface InfoTypesResource {
2397
- /** Returns a list of the sensitive information types that DLP API supports. See https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference to learn more. */
2397
+ /** Returns a list of the sensitive information types that the DLP API supports. See https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference to learn more. */
2398
2398
  list(request?: {
2399
2399
  /** V1 error format. */
2400
2400
  '$.xgafv'?: string;
@@ -2429,7 +2429,7 @@ declare namespace gapi.client {
2429
2429
  }): Request<GooglePrivacyDlpV2ListInfoTypesResponse>;
2430
2430
  }
2431
2431
  interface InfoTypesResource {
2432
- /** Returns a list of the sensitive information types that DLP API supports. See https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference to learn more. */
2432
+ /** Returns a list of the sensitive information types that the DLP API supports. See https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference to learn more. */
2433
2433
  list(request?: {
2434
2434
  /** V1 error format. */
2435
2435
  '$.xgafv'?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.dlp-v2",
3
- "version": "0.0.20241020",
3
+ "version": "0.0.20241103",
4
4
  "description": "TypeScript typings for Sensitive Data Protection (DLP) v2",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -70,7 +70,7 @@ After that you can use Sensitive Data Protection (DLP) resources: <!-- TODO: mak
70
70
 
71
71
  ```typescript
72
72
  /*
73
- Returns a list of the sensitive information types that DLP API supports. See https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference to learn more.
73
+ Returns a list of the sensitive information types that the DLP API supports. See https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference to learn more.
74
74
  */
75
75
  await gapi.client.dlp.infoTypes.list({});
76
76
  ```