Skip to content

Commit

Permalink
fix(dlp): update the API
Browse files Browse the repository at this point in the history
#### dlp:v2
The following keys were changed:
- schemas.GooglePrivacyDlpV2CryptoReplaceFfxFpeConfig.properties.customAlphabet.description
- schemas.GooglePrivacyDlpV2InfoType.properties.name.description
  • Loading branch information
yoshi-automation authored and sofisl committed Jul 16, 2020
1 parent f0da5ea commit e6e9a36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/dlp-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3126,7 +3126,7 @@
}
}
},
"revision": "20200706",
"revision": "20200713",
"rootUrl": "https://dlp.googleapis.com/",
"schemas": {
"GooglePrivacyDlpV2Action": {
Expand Down Expand Up @@ -4012,7 +4012,7 @@
"description": "Required. The key used by the encryption algorithm."
},
"customAlphabet": {
"description": "This is supported by mapping these to the alphanumeric characters\nthat the FFX mode natively supports. This happens before/after\nencryption/decryption.\nEach character listed must appear only once.\nNumber of characters must be in the range [2, 95].\nThis must be encoded as ASCII.\nThe order of characters does not matter.",
"description": "This is supported by mapping these to the alphanumeric characters\nthat the FFX mode natively supports. This happens before/after\nencryption/decryption.\nEach character listed must appear only once.\nNumber of characters must be in the range [2, 95].\nThis must be encoded as ASCII.\nThe order of characters does not matter.\nThe full list of allowed characters is:\n<code>0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\n~`!@#$%^&*()_-+={[}]|\\:;\"'<,>.?/</code>",
"type": "string"
},
"radix": {
Expand Down Expand Up @@ -4959,7 +4959,7 @@
"id": "GooglePrivacyDlpV2InfoType",
"properties": {
"name": {
"description": "Name of the information type. Either a name of your choosing when\ncreating a CustomInfoType, or one of the names listed\nat https://cloud.google.com/dlp/docs/infotypes-reference when specifying\na built-in type. InfoType names should conform to the pattern\n`[a-zA-Z0-9_]{1,64}`.",
"description": "Name of the information type. Either a name of your choosing when\ncreating a CustomInfoType, or one of the names listed\nat https://cloud.google.com/dlp/docs/infotypes-reference when specifying\na built-in type. When sending Cloud DLP results to Data Catalog, infoType\nnames should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.",
"type": "string"
}
},
Expand Down
4 changes: 2 additions & 2 deletions src/apis/dlp/v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ export namespace dlp_v2 {
*/
cryptoKey?: Schema$GooglePrivacyDlpV2CryptoKey;
/**
* This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range [2, 95]. This must be encoded as ASCII. The order of characters does not matter.
* This is supported by mapping these to the alphanumeric characters that the FFX mode natively supports. This happens before/after encryption/decryption. Each character listed must appear only once. Number of characters must be in the range [2, 95]. This must be encoded as ASCII. The order of characters does not matter. The full list of allowed characters is: &lt;code&gt;0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ~`!@#$%^&amp;*()_-+={[}]|\:;&quot;&#39;&lt;,&gt;.?/&lt;/code&gt;
*/
customAlphabet?: string | null;
/**
Expand Down Expand Up @@ -1452,7 +1452,7 @@ export namespace dlp_v2 {
*/
export interface Schema$GooglePrivacyDlpV2InfoType {
/**
* Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/docs/infotypes-reference when specifying a built-in type. InfoType names should conform to the pattern `[a-zA-Z0-9_]{1,64}`.
* Name of the information type. Either a name of your choosing when creating a CustomInfoType, or one of the names listed at https://cloud.google.com/dlp/docs/infotypes-reference when specifying a built-in type. When sending Cloud DLP results to Data Catalog, infoType names should conform to the pattern `[A-Za-z0-9$-_]{1,64}`.
*/
name?: string | null;
}
Expand Down

0 comments on commit e6e9a36

Please # to comment.