-
Notifications
You must be signed in to change notification settings - Fork 2k
DLP: Added sample for inspect string with custom regex #3107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
kweinmeister
merged 6 commits into
GoogleCloudPlatform:main
from
dinesh-crest:inspect_custom_regex
Apr 14, 2023
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
950e423
DLP: Added sample for inspect string with custom regex
dinesh-crest 85154c5
Merge branch 'main' into inspect_custom_regex
pattishin bdf806c
Resolved PR comments
dinesh-crest 525fabb
Merge branch 'main' into inspect_custom_regex
kweinmeister 2eb44ff
Merge branch 'main' into inspect_custom_regex
kweinmeister 8a9f464
Merge branch 'main' into inspect_custom_regex
kweinmeister File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,95 @@ | ||
| // Copyright 2023 Google LLC | ||
| // | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| 'use strict'; | ||
|
|
||
| // sample-metadata: | ||
| // title: Inspects strings | ||
| // description: Inspects a string using custom regex pattern. | ||
| // usage: node inspectWithCustomRegex.js my-project string customRegex | ||
|
|
||
| function main(projectId, string, customRegex) { | ||
| // [START dlp_inspect_custom_regex] | ||
| // Imports the Google Cloud Data Loss Prevention library | ||
| const DLP = require('@google-cloud/dlp'); | ||
|
|
||
| // Instantiates a client | ||
| const dlp = new DLP.DlpServiceClient(); | ||
|
|
||
| // The project ID to run the API call under | ||
| // const projectId = 'my-project'; | ||
|
|
||
| // The string to inspect | ||
| // const string = 'Patients MRN 444-5-22222'; | ||
|
|
||
| // The regex pattern to match for | ||
| // const customRegex = '[1-9]{3}-[1-9]{1}-[1-9]{5}'; | ||
|
|
||
| async function inspectWithCustomRegex() { | ||
| // Construct item to inspect | ||
| const item = { | ||
| byteItem: { | ||
| type: DLP.protos.google.privacy.dlp.v2.ByteContentItem.BytesType | ||
| .TEXT_UTF8, | ||
| data: Buffer.from(string, 'utf-8'), | ||
| }, | ||
| }; | ||
|
|
||
| // Construct the custom regex detector. | ||
| const customInfoTypes = [ | ||
| { | ||
| infoType: { | ||
| name: 'C_MRN', | ||
| }, | ||
| likelihood: DLP.protos.google.privacy.dlp.v2.Likelihood.POSSIBLE, | ||
| regex: { | ||
| pattern: customRegex, | ||
| }, | ||
| }, | ||
| ]; | ||
|
|
||
| // Construct request | ||
| const request = { | ||
| parent: `projects/${projectId}/locations/global`, | ||
| inspectConfig: { | ||
| customInfoTypes: customInfoTypes, | ||
| includeQuote: true, | ||
| }, | ||
| item: item, | ||
| }; | ||
|
|
||
| // Run request | ||
| const [response] = await dlp.inspectContent(request); | ||
| const findings = response.result.findings; | ||
| if (findings.length > 0) { | ||
| console.log('Findings: \n'); | ||
| findings.forEach(finding => { | ||
| console.log(`InfoType: ${finding.infoType.name}`); | ||
| console.log(`\tQuote: ${finding.quote}`); | ||
| console.log(`\tLikelihood: ${finding.likelihood} \n`); | ||
| }); | ||
| } else { | ||
| console.log('No findings.'); | ||
| } | ||
| } | ||
| inspectWithCustomRegex(); | ||
| // [END dlp_inspect_custom_regex] | ||
| } | ||
|
|
||
| process.on('unhandledRejection', err => { | ||
| console.error(err.message); | ||
| process.exitCode = 1; | ||
| }); | ||
|
|
||
| main(...process.argv.slice(2)); | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.