File tree 5 files changed +38
-4
lines changed
packages/datadog-api-client-v2/models
5 files changed +38
-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.5",
7
- "regenerated": "2023-07-21 15:02:52.745114 ",
8
- "spec_repo_commit": "1b0797fc "
7
+ "regenerated": "2023-07-24 15:54:32.046456 ",
8
+ "spec_repo_commit": "b233d581 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.5",
12
- "regenerated": "2023-07-21 15:02:52.758154 ",
13
- "spec_repo_commit": "1b0797fc "
12
+ "regenerated": "2023-07-24 15:54:32.067356 ",
13
+ "spec_repo_commit": "b233d581 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -13649,6 +13649,10 @@ components:
13649
13649
SensitiveDataScannerGetConfigResponseData:
13650
13650
description: Response data related to the scanning groups.
13651
13651
properties:
13652
+ attributes:
13653
+ additionalProperties: {}
13654
+ description: Attributes of the Sensitive Data configuration.
13655
+ type: object
13652
13656
id:
13653
13657
description: ID of the configuration.
13654
13658
type: string
@@ -13833,6 +13837,9 @@ components:
13833
13837
description: Whether or not scanned events are highlighted in Logs or RUM
13834
13838
for the org.
13835
13839
type: boolean
13840
+ has_multi_pass_enabled:
13841
+ description: Whether or not scanned events have multi-pass enabled.
13842
+ type: boolean
13836
13843
is_pci_compliant:
13837
13844
description: Whether or not the org is compliant to the payment card industry
13838
13845
standard.
@@ -14068,6 +14075,9 @@ components:
14068
14075
SensitiveDataScannerStandardPatternAttributes:
14069
14076
description: Attributes of the Sensitive Data Scanner standard pattern.
14070
14077
properties:
14078
+ description:
14079
+ description: Description of the standard pattern.
14080
+ type: string
14071
14081
name:
14072
14082
description: Name of the standard pattern.
14073
14083
type: string
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
12
12
* Response data related to the scanning groups.
13
13
*/
14
14
export class SensitiveDataScannerGetConfigResponseData {
15
+ /**
16
+ * Attributes of the Sensitive Data configuration.
17
+ */
18
+ "attributes" ?: { [ key : string ] : any } ;
15
19
/**
16
20
* ID of the configuration.
17
21
*/
@@ -34,6 +38,10 @@ export class SensitiveDataScannerGetConfigResponseData {
34
38
* @ignore
35
39
*/
36
40
static readonly attributeTypeMap : AttributeTypeMap = {
41
+ attributes : {
42
+ baseName : "attributes" ,
43
+ type : "{ [key: string]: any; }" ,
44
+ } ,
37
45
id : {
38
46
baseName : "id" ,
39
47
type : "string" ,
Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ export class SensitiveDataScannerMeta {
22
22
* Whether or not scanned events are highlighted in Logs or RUM for the org.
23
23
*/
24
24
"hasHighlightEnabled" ?: boolean ;
25
+ /**
26
+ * Whether or not scanned events have multi-pass enabled.
27
+ */
28
+ "hasMultiPassEnabled" ?: boolean ;
25
29
/**
26
30
* Whether or not the org is compliant to the payment card industry standard.
27
31
*/
@@ -54,6 +58,10 @@ export class SensitiveDataScannerMeta {
54
58
baseName : "has_highlight_enabled" ,
55
59
type : "boolean" ,
56
60
} ,
61
+ hasMultiPassEnabled : {
62
+ baseName : "has_multi_pass_enabled" ,
63
+ type : "boolean" ,
64
+ } ,
57
65
isPciCompliant : {
58
66
baseName : "is_pci_compliant" ,
59
67
type : "boolean" ,
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
10
10
* Attributes of the Sensitive Data Scanner standard pattern.
11
11
*/
12
12
export class SensitiveDataScannerStandardPatternAttributes {
13
+ /**
14
+ * Description of the standard pattern.
15
+ */
16
+ "description" ?: string ;
13
17
/**
14
18
* Name of the standard pattern.
15
19
*/
@@ -32,6 +36,10 @@ export class SensitiveDataScannerStandardPatternAttributes {
32
36
* @ignore
33
37
*/
34
38
static readonly attributeTypeMap : AttributeTypeMap = {
39
+ description : {
40
+ baseName : "description" ,
41
+ type : "string" ,
42
+ } ,
35
43
name : {
36
44
baseName : "name" ,
37
45
type : "string" ,
You can’t perform that action at this time.
0 commit comments