File tree 3 files changed +17
-4
lines changed
packages/datadog-api-client-v2/models
3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"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 "
9
9
},
10
10
"v2": {
11
11
"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 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -16315,6 +16315,11 @@ components:
16315
16315
description:
16316
16316
description: Description of the standard pattern.
16317
16317
type: string
16318
+ included_keywords:
16319
+ description: List of included keywords.
16320
+ items:
16321
+ type: string
16322
+ type: array
16318
16323
name:
16319
16324
description: Name of the standard pattern.
16320
16325
type: string
Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ export class SensitiveDataScannerStandardPatternAttributes {
14
14
* Description of the standard pattern.
15
15
*/
16
16
"description" ?: string ;
17
+ /**
18
+ * List of included keywords.
19
+ */
20
+ "includedKeywords" ?: Array < string > ;
17
21
/**
18
22
* Name of the standard pattern.
19
23
*/
@@ -40,6 +44,10 @@ export class SensitiveDataScannerStandardPatternAttributes {
40
44
baseName : "description" ,
41
45
type : "string" ,
42
46
} ,
47
+ includedKeywords : {
48
+ baseName : "included_keywords" ,
49
+ type : "Array<string>" ,
50
+ } ,
43
51
name : {
44
52
baseName : "name" ,
45
53
type : "string" ,
You can’t perform that action at this time.
0 commit comments