File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 3 files changed +20
-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": "2024-10-28 23:07:49.920278 ",
8
- "spec_repo_commit": "4251a422 "
7
+ "regenerated": "2024-10-29 20:46:34.730777 ",
8
+ "spec_repo_commit": "c0b9551e "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-10-28 23:07:49.941724 ",
13
- "spec_repo_commit": "4251a422 "
12
+ "regenerated": "2024-10-29 20:46:34.748934 ",
13
+ "spec_repo_commit": "c0b9551e "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -21870,6 +21870,13 @@ components:
21870
21870
items:
21871
21871
type: string
21872
21872
type: array
21873
+ use_recommended_keywords:
21874
+ description: 'Should the rule use the underlying standard pattern keyword
21875
+ configuration. If set to `true`, the rule must be tied
21876
+
21877
+ to a standard pattern. If set to `false`, the specified keywords and `character_count`
21878
+ are applied.'
21879
+ type: boolean
21873
21880
required:
21874
21881
- keywords
21875
21882
- character_count
Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ export class SensitiveDataScannerIncludedKeywordConfiguration {
23
23
* The number of keywords in the list must be less than or equal to 30.
24
24
*/
25
25
"keywords" : Array < string > ;
26
+ /**
27
+ * Should the rule use the underlying standard pattern keyword configuration. If set to `true`, the rule must be tied
28
+ * to a standard pattern. If set to `false`, the specified keywords and `character_count` are applied.
29
+ */
30
+ "useRecommendedKeywords" ?: boolean ;
26
31
27
32
/**
28
33
* A container for additional, undeclared properties.
@@ -51,6 +56,10 @@ export class SensitiveDataScannerIncludedKeywordConfiguration {
51
56
type : "Array<string>" ,
52
57
required : true ,
53
58
} ,
59
+ useRecommendedKeywords : {
60
+ baseName : "use_recommended_keywords" ,
61
+ type : "boolean" ,
62
+ } ,
54
63
additionalProperties : {
55
64
baseName : "additionalProperties" ,
56
65
type : "any" ,
You can’t perform that action at this time.
0 commit comments