Skip to content

Commit 6cbea23

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Document included_keywords in ListStandardPatterns response (#1429)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent a9ca6a7 commit 6cbea23

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2023-11-21 17:53:01.710236",
8-
"spec_repo_commit": "d902bcbc"
7+
"regenerated": "2023-11-21 19:36:44.600074",
8+
"spec_repo_commit": "83154a77"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2023-11-21 17:53:01.729538",
13-
"spec_repo_commit": "d902bcbc"
12+
"regenerated": "2023-11-21 19:36:44.618603",
13+
"spec_repo_commit": "83154a77"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -16315,6 +16315,11 @@ components:
1631516315
description:
1631616316
description: Description of the standard pattern.
1631716317
type: string
16318+
included_keywords:
16319+
description: List of included keywords.
16320+
items:
16321+
type: string
16322+
type: array
1631816323
name:
1631916324
description: Name of the standard pattern.
1632016325
type: string

packages/datadog-api-client-v2/models/SensitiveDataScannerStandardPatternAttributes.ts

+8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ export class SensitiveDataScannerStandardPatternAttributes {
1414
* Description of the standard pattern.
1515
*/
1616
"description"?: string;
17+
/**
18+
* List of included keywords.
19+
*/
20+
"includedKeywords"?: Array<string>;
1721
/**
1822
* Name of the standard pattern.
1923
*/
@@ -40,6 +44,10 @@ export class SensitiveDataScannerStandardPatternAttributes {
4044
baseName: "description",
4145
type: "string",
4246
},
47+
includedKeywords: {
48+
baseName: "included_keywords",
49+
type: "Array<string>",
50+
},
4351
name: {
4452
baseName: "name",
4553
type: "string",

0 commit comments

Comments
 (0)