@maxim_mazurok/gapi.client.dlp-v2 0.1.20250907 → 0.1.20250914

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 (2) hide show
  1. package/index.d.ts +15 -1
  2. 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: 20250907
12
+ // Revision: 20250914
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1124,6 +1124,8 @@ declare namespace gapi.client {
1124
1124
  interface GooglePrivacyDlpV2FileStoreCollection {
1125
1125
  /** Optional. A collection of regular expressions to match a file store against. */
1126
1126
  includeRegexes?: GooglePrivacyDlpV2FileStoreRegexes;
1127
+ /** Optional. To be included in the collection, a resource must meet all of the following requirements: - If tag filters are provided, match all provided tag filters. - If one or more patterns are specified, match at least one pattern. For a resource to match the tag filters, the resource must have all of the provided tags attached. Tags refer to Resource Manager tags bound to the resource or its ancestors. See https://cloud.google.com/sensitive-data-protection/docs/profile-project-cloud-storage#manage-schedules to learn more. */
1128
+ includeTags?: GooglePrivacyDlpV2TagFilters;
1127
1129
  }
1128
1130
  interface GooglePrivacyDlpV2FileStoreDataProfile {
1129
1131
  /** The snapshot of the configurations used to generate the profile. */
@@ -1787,6 +1789,8 @@ declare namespace gapi.client {
1787
1789
  interface GooglePrivacyDlpV2OutputStorageConfig {
1788
1790
  /** Schema used for writing the findings for Inspect jobs. This field is only used for Inspect and must be unspecified for Risk jobs. Columns are derived from the `Finding` object. If appending to an existing table, any columns from the predefined schema that are missing will be added. No columns in the existing table will be deleted. If unspecified, then all available columns will be used for a new table or an (existing) table with no schema, and no changes will be made to an existing table that has a schema. Only for use with external storage. */
1789
1791
  outputSchema?: string;
1792
+ /** Store findings in an existing Cloud Storage bucket. Files will be generated with the job ID and file part number as the filename, and will contain findings in textproto format as SaveToGcsFindingsOutput. The file name will use the naming convention -, for example: my-job-id-2. Supported for Inspect jobs. The bucket must not be the same as the bucket being inspected. If storing findings to Cloud Storage, the output schema field should not be set. If set, it will be ignored. */
1793
+ storagePath?: GooglePrivacyDlpV2CloudStoragePath;
1790
1794
  /** Store findings in an existing table or a new table in an existing dataset. If table_id is not set a new one will be generated for you with the following format: dlp_googleapis_yyyy_mm_dd_[dlp_job_id]. Pacific time zone will be used for generating the date details. For Inspect, each column in an existing output table must have the same name, type, and mode of a field in the `Finding` object. For Risk, an existing output table should be the output of a previous Risk analysis job run on the same source table, with the same privacy metric and quasi-identifiers. Risk jobs that analyze the same table but compute a different privacy metric, or use different sets of quasi-identifiers, cannot store their results in the same table. */
1791
1795
  table?: GooglePrivacyDlpV2BigQueryTable;
1792
1796
  }
@@ -2299,6 +2303,16 @@ declare namespace gapi.client {
2299
2303
  /** The tag value to attach to resources. */
2300
2304
  tag?: GooglePrivacyDlpV2TagValue;
2301
2305
  }
2306
+ interface GooglePrivacyDlpV2TagFilter {
2307
+ /** The namespaced name for the tag key. Must be in the format `{parent_id}/{tag_key_short_name}`, for example, "123456/sensitive" for an organization parent, or "my-project/sensitive" for a project parent. */
2308
+ namespacedTagKey?: string;
2309
+ /** The namespaced name for the tag value. Must be in the format `{parent_id}/{tag_key_short_name}/{short_name}`, for example, "123456/environment/prod" for an organization parent, or "my-project/environment/prod" for a project parent. */
2310
+ namespacedTagValue?: string;
2311
+ }
2312
+ interface GooglePrivacyDlpV2TagFilters {
2313
+ /** Required. A resource must match ALL of the specified tag filters to be included in the collection. */
2314
+ tagFilters?: GooglePrivacyDlpV2TagFilter[];
2315
+ }
2302
2316
  interface GooglePrivacyDlpV2TaggedField {
2303
2317
  /** A column can be tagged with a custom tag. In this case, the user must indicate an auxiliary table that contains statistical information on the possible values of this column. */
2304
2318
  customTag?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.dlp-v2",
3
- "version": "0.1.20250907",
3
+ "version": "0.1.20250914",
4
4
  "description": "TypeScript typings for Sensitive Data Protection (DLP) v2",
5
5
  "repository": {
6
6
  "type": "git",