Skip to content

Commit 91df9a7

Browse files
feat: [dlp] add the TagResources API (#5588)
* feat: org-level connection bindings feat: gRPC config for get, list, and delete FileStoreDataProfiles feat: add refresh frequency for data profiling docs: small improvements PiperOrigin-RevId: 657319510 Source-Link: googleapis/googleapis@e1d378c Source-Link: googleapis/googleapis-gen@21ec656 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLXByaXZhY3ktZGxwLy5Pd2xCb3QueWFtbCIsImgiOiIyMWVjNjU2Yjg0MDU1OGY5MTU0MTI5YTg1YmQ0MTJmODU1N2M5ZTZlIn0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * docs: replace HTML tags with CommonMark notation PiperOrigin-RevId: 657655346 Source-Link: googleapis/googleapis@aa6fe3b Source-Link: googleapis/googleapis-gen@118ba2b Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLXByaXZhY3ktZGxwLy5Pd2xCb3QueWFtbCIsImgiOiIxMThiYTJiMDIyNzNkN2EzODYwNjk1ODE2MzQyMGFhNGI2ODMyOGU3In0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * chore(dlp): fix ordering of Connection resource patterns PiperOrigin-RevId: 657674261 Source-Link: googleapis/googleapis@29bff4c Source-Link: googleapis/googleapis-gen@5c2e886 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLXByaXZhY3ktZGxwLy5Pd2xCb3QueWFtbCIsImgiOiI1YzJlODg2NWU0M2Q0YzY4MmZhZDExYjhlNTg0OGU0NDUzODQyNGEyIn0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: add the TagResources API PiperOrigin-RevId: 659709816 Source-Link: googleapis/googleapis@7314e20 Source-Link: googleapis/googleapis-gen@7c795b5 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLXByaXZhY3ktZGxwLy5Pd2xCb3QueWFtbCIsImgiOiI3Yzc5NWI1ZDhlYjgzNTRjNThkNWFjZDE4YzYyMGIxOTdhYzMzOGE0In0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 1e600c2 commit 91df9a7

29 files changed

Lines changed: 2136 additions & 503 deletions

packages/google-privacy-dlp/protos/google/privacy/dlp/v2/dlp.proto

Lines changed: 163 additions & 63 deletions
Large diffs are not rendered by default.

packages/google-privacy-dlp/protos/google/privacy/dlp/v2/storage.proto

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ message StorageConfig {
653653
// Specification of the field containing the timestamp of scanned items.
654654
// Used for data sources like Datastore and BigQuery.
655655
//
656-
// <b>For BigQuery</b>
656+
// **For BigQuery**
657657
//
658658
// If this value is not specified and the table was modified between the
659659
// given start and end times, the entire table will be scanned. If this
@@ -668,13 +668,11 @@ message StorageConfig {
668668
// you can use any of the following pseudo-columns as your timestamp field.
669669
// When used with Cloud DLP, these pseudo-column names are case sensitive.
670670
//
671-
// <ul>
672-
// <li><code>_PARTITIONTIME</code></li>
673-
// <li><code>_PARTITIONDATE</code></li>
674-
// <li><code>_PARTITION_LOAD_TIME</code></li>
675-
// </ul>
671+
// - `_PARTITIONTIME`
672+
// - `_PARTITIONDATE`
673+
// - `_PARTITION_LOAD_TIME`
676674
//
677-
// <b>For Datastore</b>
675+
// **For Datastore**
678676
//
679677
// If this value is specified, then entities are filtered based on the given
680678
// start and end times. If an entity does not contain the provided timestamp

packages/google-privacy-dlp/protos/protos.d.ts

Lines changed: 338 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-privacy-dlp/protos/protos.js

Lines changed: 1044 additions & 144 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-privacy-dlp/protos/protos.json

Lines changed: 121 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_connection.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,13 @@ function main(parent, connection) {
2929
* TODO(developer): Uncomment these variables before running the sample.
3030
*/
3131
/**
32-
* Required. Parent resource name in the format:
33-
* `projects/{project}/locations/{location}`.
32+
* Required. Parent resource name.
33+
* The format of this value varies depending on the scope of the request
34+
* (project or organization):
35+
* + Projects scope:
36+
* `projects/{project_id}/locations/{location_id}`
37+
* + Organizations scope:
38+
* `organizations/{org_id}/locations/{location_id}`
3439
*/
3540
// const parent = 'abc123'
3641
/**

packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_deidentify_template.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ function main(parent, deidentifyTemplate) {
3434
* (project or organization) and whether you have specified a processing
3535
* location (https://cloud.google.com/sensitive-data-protection/docs/specifying-location):
3636
* + Projects scope, location specified:
37-
* `projects/`<var>PROJECT_ID</var>`/locations/`<var>LOCATION_ID</var>
37+
* `projects/{project_id}/locations/{location_id}`
3838
* + Projects scope, no location specified (defaults to global):
39-
* `projects/`<var>PROJECT_ID</var>
39+
* `projects/{project_id}`
4040
* + Organizations scope, location specified:
41-
* `organizations/`<var>ORG_ID</var>`/locations/`<var>LOCATION_ID</var>
41+
* `organizations/{org_id}/locations/{location_id}`
4242
* + Organizations scope, no location specified (defaults to global):
43-
* `organizations/`<var>ORG_ID</var>
43+
* `organizations/{org_id}`
4444
* The following example `parent` string specifies a parent project with the
4545
* identifier `example-project`, and specifies the `europe-west3` location
4646
* for processing data:

packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_discovery_config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ function main(parent, discoveryConfig) {
3333
* The format of this value varies depending on the scope of the request
3434
* (project or organization):
3535
* + Projects scope:
36-
* `projects/`<var>PROJECT_ID</var>`/locations/`<var>LOCATION_ID</var>
36+
* `projects/{project_id}/locations/{location_id}`
3737
* + Organizations scope:
38-
* `organizations/`<var>ORG_ID</var>`/locations/`<var>LOCATION_ID</var>
38+
* `organizations/{org_id}/locations/{location_id}`
3939
* The following example `parent` string specifies a parent project with the
4040
* identifier `example-project`, and specifies the `europe-west3` location
4141
* for processing data:

packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_dlp_job.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ function main(parent) {
3434
* processing
3535
* location (https://cloud.google.com/sensitive-data-protection/docs/specifying-location):
3636
* + Projects scope, location specified:
37-
* `projects/`<var>PROJECT_ID</var>`/locations/`<var>LOCATION_ID</var>
37+
* `projects/{project_id}/locations/{location_id}`
3838
* + Projects scope, no location specified (defaults to global):
39-
* `projects/`<var>PROJECT_ID</var>
39+
* `projects/{project_id}`
4040
* The following example `parent` string specifies a parent project with the
4141
* identifier `example-project`, and specifies the `europe-west3` location
4242
* for processing data:

packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_inspect_template.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ function main(parent, inspectTemplate) {
3434
* (project or organization) and whether you have specified a processing
3535
* location (https://cloud.google.com/sensitive-data-protection/docs/specifying-location):
3636
* + Projects scope, location specified:
37-
* `projects/`<var>PROJECT_ID</var>`/locations/`<var>LOCATION_ID</var>
37+
* `projects/{project_id}/locations/{location_id}`
3838
* + Projects scope, no location specified (defaults to global):
39-
* `projects/`<var>PROJECT_ID</var>
39+
* `projects/{project_id}`
4040
* + Organizations scope, location specified:
41-
* `organizations/`<var>ORG_ID</var>`/locations/`<var>LOCATION_ID</var>
41+
* `organizations/{org_id}/locations/{location_id}`
4242
* + Organizations scope, no location specified (defaults to global):
43-
* `organizations/`<var>ORG_ID</var>
43+
* `organizations/{org_id}`
4444
* The following example `parent` string specifies a parent project with the
4545
* identifier `example-project`, and specifies the `europe-west3` location
4646
* for processing data:

0 commit comments

Comments
 (0)