@google-cloud/dlp 6.4.0 → 6.5.0
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/README.md +83 -167
- package/build/protos/google/privacy/dlp/v2/dlp.proto +178 -55
- package/build/protos/protos.d.ts +330 -520
- package/build/protos/protos.js +1031 -1904
- package/build/protos/protos.json +83 -194
- package/build/src/v2/dlp_service_client.d.ts +242 -126
- package/build/src/v2/dlp_service_client.js +150 -84
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
[//]: # "This README.md file is auto-generated, all changes to this file will be lost."
|
|
2
|
-
[//]: # "
|
|
2
|
+
[//]: # "The comments you see below are used to generate those parts of the template in later states."
|
|
3
3
|
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/>
|
|
4
4
|
|
|
5
|
-
# [
|
|
6
|
-
|
|
7
|
-
[](https://cloud.google.com/terms/launch-stages)
|
|
8
|
-
[](https://www.npmjs.org/package/@google-cloud/dlp)
|
|
9
|
-
|
|
5
|
+
# [Sensitive Data Protection (DLP): Nodejs Client][homepage]
|
|
10
6
|
|
|
7
|
+
This library is considered to be **stable**. The code surface will not change in backwards-incompatible ways
|
|
8
|
+
unless absolutely necessary (e.g. because of critical security issues) or with
|
|
9
|
+
an extensive deprecation period. Issues and requests against **stable** libraries
|
|
10
|
+
are addressed with the highest priority
|
|
11
11
|
|
|
12
|
+
[](https://www.npmjs.org/package/@google-cloud/dlp)
|
|
12
13
|
|
|
13
|
-
DLP
|
|
14
|
+
Sensitive Data Protection (DLP) client for Node.js
|
|
14
15
|
|
|
16
|
+
[//]: # "partials.introduction"
|
|
15
17
|
|
|
16
18
|
A comprehensive list of changes in each version may be found in
|
|
17
|
-
[the CHANGELOG]
|
|
19
|
+
[the CHANGELOG][homepage_changelog].
|
|
20
|
+
|
|
21
|
+
* [Sensitive Data Protection (DLP) Nodejs Client API Reference](https://cloud.google.com/nodejs/docs/reference/dlp/latest)
|
|
18
22
|
|
|
19
|
-
* [Cloud Data Loss Prevention Node.js Client API Reference][client-docs]
|
|
20
|
-
* [Cloud Data Loss Prevention Documentation][product-docs]
|
|
21
|
-
* [github.com/googleapis/google-cloud-node/packages/google-privacy-dlp](https://github.com/googleapis/google-cloud-node/tree/main/packages/google-privacy-dlp)
|
|
22
23
|
|
|
23
24
|
Read more about the client libraries for Cloud APIs, including the older
|
|
24
25
|
Google APIs Client Libraries, in [Client Libraries Explained][explained].
|
|
@@ -27,165 +28,93 @@ Google APIs Client Libraries, in [Client Libraries Explained][explained].
|
|
|
27
28
|
|
|
28
29
|
**Table of contents:**
|
|
29
30
|
|
|
30
|
-
|
|
31
31
|
* [Quickstart](#quickstart)
|
|
32
32
|
* [Before you begin](#before-you-begin)
|
|
33
33
|
* [Installing the client library](#installing-the-client-library)
|
|
34
|
-
|
|
35
|
-
* [Samples](#samples)
|
|
34
|
+
|
|
36
35
|
* [Versioning](#versioning)
|
|
37
36
|
* [Contributing](#contributing)
|
|
38
37
|
* [License](#license)
|
|
39
38
|
|
|
40
39
|
## Quickstart
|
|
41
|
-
|
|
42
40
|
### Before you begin
|
|
43
41
|
|
|
44
42
|
1. [Select or create a Cloud Platform project][projects].
|
|
45
43
|
1. [Enable billing for your project][billing].
|
|
46
|
-
1. [Enable the
|
|
44
|
+
1. [Enable the Sensitive Data Protection (DLP) API][enable_api].
|
|
47
45
|
1. [Set up authentication][auth] so you can access the
|
|
48
46
|
API from your local workstation.
|
|
49
|
-
|
|
50
47
|
### Installing the client library
|
|
51
48
|
|
|
52
49
|
```bash
|
|
53
50
|
npm install @google-cloud/dlp
|
|
54
51
|
```
|
|
55
52
|
|
|
56
|
-
|
|
57
|
-
### Using the client library
|
|
58
|
-
|
|
59
|
-
```javascript
|
|
60
|
-
|
|
61
|
-
// Instantiates a client
|
|
62
|
-
const dlp = new DLP.DlpServiceClient();
|
|
63
|
-
|
|
64
|
-
// The string to inspect
|
|
65
|
-
const string = 'Robert Frost';
|
|
66
|
-
|
|
67
|
-
// The project ID to run the API call under
|
|
68
|
-
// const projectId = 'my-project';
|
|
69
|
-
|
|
70
|
-
async function quickStart() {
|
|
71
|
-
// The minimum likelihood required before returning a match
|
|
72
|
-
const minLikelihood = 'LIKELIHOOD_UNSPECIFIED';
|
|
73
|
-
|
|
74
|
-
// The maximum number of findings to report (0 = server maximum)
|
|
75
|
-
const maxFindings = 0;
|
|
76
|
-
|
|
77
|
-
// The infoTypes of information to match
|
|
78
|
-
const infoTypes = [{name: 'PERSON_NAME'}, {name: 'US_STATE'}];
|
|
79
|
-
|
|
80
|
-
// Whether to include the matching string
|
|
81
|
-
const includeQuote = true;
|
|
82
|
-
|
|
83
|
-
// Construct item to inspect
|
|
84
|
-
const item = {value: string};
|
|
85
|
-
|
|
86
|
-
// Construct request
|
|
87
|
-
const request = {
|
|
88
|
-
parent: `projects/${projectId}/locations/global`,
|
|
89
|
-
inspectConfig: {
|
|
90
|
-
infoTypes: infoTypes,
|
|
91
|
-
minLikelihood: minLikelihood,
|
|
92
|
-
limits: {
|
|
93
|
-
maxFindingsPerRequest: maxFindings,
|
|
94
|
-
},
|
|
95
|
-
includeQuote: includeQuote,
|
|
96
|
-
},
|
|
97
|
-
item: item,
|
|
98
|
-
};
|
|
99
|
-
|
|
100
|
-
// Run request
|
|
101
|
-
const [response] = await dlp.inspectContent(request);
|
|
102
|
-
const findings = response.result.findings;
|
|
103
|
-
if (findings.length > 0) {
|
|
104
|
-
console.log('Findings:');
|
|
105
|
-
findings.forEach(finding => {
|
|
106
|
-
if (includeQuote) {
|
|
107
|
-
console.log(`\tQuote: ${finding.quote}`);
|
|
108
|
-
}
|
|
109
|
-
console.log(`\tInfo type: ${finding.infoType.name}`);
|
|
110
|
-
console.log(`\tLikelihood: ${finding.likelihood}`);
|
|
111
|
-
});
|
|
112
|
-
} else {
|
|
113
|
-
console.log('No findings.');
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
quickStart();
|
|
117
|
-
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
|
|
53
|
+
[//]: # "partials.body"
|
|
121
54
|
|
|
122
55
|
## Samples
|
|
123
56
|
|
|
124
|
-
Samples are in the [`samples/`]
|
|
125
|
-
|
|
126
|
-
| Sample | Source Code |
|
|
127
|
-
| --------------------------- | --------------------------------- |
|
|
128
|
-
|
|
|
129
|
-
|
|
|
130
|
-
|
|
|
131
|
-
|
|
|
132
|
-
|
|
|
133
|
-
|
|
|
134
|
-
|
|
|
135
|
-
|
|
|
136
|
-
|
|
|
137
|
-
|
|
|
138
|
-
|
|
|
139
|
-
|
|
|
140
|
-
|
|
|
141
|
-
|
|
|
142
|
-
|
|
|
143
|
-
|
|
|
144
|
-
|
|
|
145
|
-
|
|
|
146
|
-
|
|
|
147
|
-
|
|
|
148
|
-
|
|
|
149
|
-
|
|
|
150
|
-
|
|
|
151
|
-
|
|
|
152
|
-
|
|
|
153
|
-
|
|
|
154
|
-
|
|
|
155
|
-
|
|
|
156
|
-
|
|
|
157
|
-
|
|
|
158
|
-
|
|
|
159
|
-
|
|
|
160
|
-
|
|
|
161
|
-
|
|
|
162
|
-
|
|
|
163
|
-
|
|
|
164
|
-
|
|
|
165
|
-
|
|
|
166
|
-
|
|
|
167
|
-
|
|
|
168
|
-
|
|
|
169
|
-
|
|
|
170
|
-
|
|
|
171
|
-
|
|
|
172
|
-
|
|
|
173
|
-
|
|
|
174
|
-
|
|
|
175
|
-
|
|
|
176
|
-
|
|
|
177
|
-
|
|
|
178
|
-
|
|
|
179
|
-
|
|
|
180
|
-
|
|
|
181
|
-
|
|
|
182
|
-
|
|
|
183
|
-
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
The [Cloud Data Loss Prevention Node.js Client API Reference][client-docs] documentation
|
|
188
|
-
also contains samples.
|
|
57
|
+
Samples are in the [`samples/`][homepage_samples] directory. Each sample's `README.md` has instructions for running its sample.
|
|
58
|
+
|
|
59
|
+
| Sample | Source Code |
|
|
60
|
+
| --------------------------- | --------------------------------- |
|
|
61
|
+
| activate job trigger | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.activate_job_trigger.js) |
|
|
62
|
+
| cancel dlp job | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.cancel_dlp_job.js) |
|
|
63
|
+
| create connection | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_connection.js) |
|
|
64
|
+
| create deidentify template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_deidentify_template.js) |
|
|
65
|
+
| create discovery config | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_discovery_config.js) |
|
|
66
|
+
| create dlp job | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_dlp_job.js) |
|
|
67
|
+
| create inspect template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_inspect_template.js) |
|
|
68
|
+
| create job trigger | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_job_trigger.js) |
|
|
69
|
+
| create stored info type | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.create_stored_info_type.js) |
|
|
70
|
+
| deidentify content | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.deidentify_content.js) |
|
|
71
|
+
| delete connection | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.delete_connection.js) |
|
|
72
|
+
| delete deidentify template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.delete_deidentify_template.js) |
|
|
73
|
+
| delete discovery config | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.delete_discovery_config.js) |
|
|
74
|
+
| delete dlp job | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.delete_dlp_job.js) |
|
|
75
|
+
| delete file store data profile | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.delete_file_store_data_profile.js) |
|
|
76
|
+
| delete inspect template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.delete_inspect_template.js) |
|
|
77
|
+
| delete job trigger | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.delete_job_trigger.js) |
|
|
78
|
+
| delete stored info type | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.delete_stored_info_type.js) |
|
|
79
|
+
| delete table data profile | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.delete_table_data_profile.js) |
|
|
80
|
+
| finish dlp job | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.finish_dlp_job.js) |
|
|
81
|
+
| get column data profile | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_column_data_profile.js) |
|
|
82
|
+
| get connection | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_connection.js) |
|
|
83
|
+
| get deidentify template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_deidentify_template.js) |
|
|
84
|
+
| get discovery config | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_discovery_config.js) |
|
|
85
|
+
| get dlp job | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_dlp_job.js) |
|
|
86
|
+
| get file store data profile | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_file_store_data_profile.js) |
|
|
87
|
+
| get inspect template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_inspect_template.js) |
|
|
88
|
+
| get job trigger | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_job_trigger.js) |
|
|
89
|
+
| get project data profile | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_project_data_profile.js) |
|
|
90
|
+
| get stored info type | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_stored_info_type.js) |
|
|
91
|
+
| get table data profile | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.get_table_data_profile.js) |
|
|
92
|
+
| hybrid inspect dlp job | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.hybrid_inspect_dlp_job.js) |
|
|
93
|
+
| hybrid inspect job trigger | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.hybrid_inspect_job_trigger.js) |
|
|
94
|
+
| inspect content | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.inspect_content.js) |
|
|
95
|
+
| list column data profiles | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_column_data_profiles.js) |
|
|
96
|
+
| list connections | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_connections.js) |
|
|
97
|
+
| list deidentify templates | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_deidentify_templates.js) |
|
|
98
|
+
| list discovery configs | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_discovery_configs.js) |
|
|
99
|
+
| list dlp jobs | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_dlp_jobs.js) |
|
|
100
|
+
| list file store data profiles | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_file_store_data_profiles.js) |
|
|
101
|
+
| list info types | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_info_types.js) |
|
|
102
|
+
| list inspect templates | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_inspect_templates.js) |
|
|
103
|
+
| list job triggers | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_job_triggers.js) |
|
|
104
|
+
| list project data profiles | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_project_data_profiles.js) |
|
|
105
|
+
| list stored info types | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_stored_info_types.js) |
|
|
106
|
+
| list table data profiles | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.list_table_data_profiles.js) |
|
|
107
|
+
| redact image | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.redact_image.js) |
|
|
108
|
+
| reidentify content | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.reidentify_content.js) |
|
|
109
|
+
| search connections | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.search_connections.js) |
|
|
110
|
+
| update connection | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.update_connection.js) |
|
|
111
|
+
| update deidentify template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.update_deidentify_template.js) |
|
|
112
|
+
| update discovery config | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.update_discovery_config.js) |
|
|
113
|
+
| update inspect template | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.update_inspect_template.js) |
|
|
114
|
+
| update job trigger | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.update_job_trigger.js) |
|
|
115
|
+
| update stored info type | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/dlp_service.update_stored_info_type.js) |
|
|
116
|
+
| privacy | [source code](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples/generated/v2/snippet_metadata_google.privacy.dlp.v2.json) |
|
|
117
|
+
|
|
189
118
|
|
|
190
119
|
## Supported Node.js Versions
|
|
191
120
|
|
|
@@ -212,42 +141,29 @@ for versions compatible with Node.js 8.
|
|
|
212
141
|
|
|
213
142
|
This library follows [Semantic Versioning](http://semver.org/).
|
|
214
143
|
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
This library is considered to be **stable**. The code surface will not change in backwards-incompatible ways
|
|
218
|
-
unless absolutely necessary (e.g. because of critical security issues) or with
|
|
219
|
-
an extensive deprecation period. Issues and requests against **stable** libraries
|
|
220
|
-
are addressed with the highest priority.
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
144
|
More Information: [Google Cloud Platform Launch Stages][launch_stages]
|
|
228
145
|
|
|
229
146
|
[launch_stages]: https://cloud.google.com/terms/launch-stages
|
|
230
147
|
|
|
231
148
|
## Contributing
|
|
232
149
|
|
|
233
|
-
Contributions welcome! See the [Contributing Guide](https://github.com/googleapis/google-cloud-node/blob/main/CONTRIBUTING.md).
|
|
150
|
+
Contributions welcome! See the [Contributing Guide](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/CONTRIBUTING.md).
|
|
234
151
|
|
|
235
|
-
Please note that this `README.md
|
|
152
|
+
Please note that this `README.md`
|
|
236
153
|
and a variety of configuration files in this repository (including `.nycrc` and `tsconfig.json`)
|
|
237
|
-
are generated from a central template.
|
|
238
|
-
to its templates in
|
|
239
|
-
[directory](https://github.com/googleapis/synthtool).
|
|
154
|
+
are generated from a central template.
|
|
240
155
|
|
|
241
156
|
## License
|
|
242
157
|
|
|
243
158
|
Apache Version 2.0
|
|
244
159
|
|
|
245
|
-
See [LICENSE](https://github.com/googleapis/google-cloud-node/blob/main/LICENSE)
|
|
160
|
+
See [LICENSE](https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/LICENSE)
|
|
246
161
|
|
|
247
|
-
[client-docs]: https://cloud.google.com/nodejs/docs/reference/dlp/latest
|
|
248
|
-
[product-docs]: https://cloud.google.com/dlp/docs/
|
|
249
162
|
[shell_img]: https://gstatic.com/cloudssh/images/open-btn.png
|
|
250
163
|
[projects]: https://console.cloud.google.com/project
|
|
251
164
|
[billing]: https://support.google.com/cloud/answer/6293499#enable-billing
|
|
252
165
|
[enable_api]: https://console.cloud.google.com/flows/enableapi?apiid=dlp.googleapis.com
|
|
253
166
|
[auth]: https://cloud.google.com/docs/authentication/external/set-up-adc-local
|
|
167
|
+
[homepage_samples]: https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/samples
|
|
168
|
+
[homepage_changelog]: https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp/CHANGELOG.md
|
|
169
|
+
[homepage]: https://github.com/googleapis/google-cloud-node/blob/main/packages/google-privacy-dlp
|