Skip to content

Commit 222488c

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit b233d581 of spec repo
1 parent bd1cd99 commit 222488c

File tree

5 files changed

+38
-4
lines changed

5 files changed

+38
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"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"
99
},
1010
"v2": {
1111
"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"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13649,6 +13649,10 @@ components:
1364913649
SensitiveDataScannerGetConfigResponseData:
1365013650
description: Response data related to the scanning groups.
1365113651
properties:
13652+
attributes:
13653+
additionalProperties: {}
13654+
description: Attributes of the Sensitive Data configuration.
13655+
type: object
1365213656
id:
1365313657
description: ID of the configuration.
1365413658
type: string
@@ -13833,6 +13837,9 @@ components:
1383313837
description: Whether or not scanned events are highlighted in Logs or RUM
1383413838
for the org.
1383513839
type: boolean
13840+
has_multi_pass_enabled:
13841+
description: Whether or not scanned events have multi-pass enabled.
13842+
type: boolean
1383613843
is_pci_compliant:
1383713844
description: Whether or not the org is compliant to the payment card industry
1383813845
standard.
@@ -14068,6 +14075,9 @@ components:
1406814075
SensitiveDataScannerStandardPatternAttributes:
1406914076
description: Attributes of the Sensitive Data Scanner standard pattern.
1407014077
properties:
14078+
description:
14079+
description: Description of the standard pattern.
14080+
type: string
1407114081
name:
1407214082
description: Name of the standard pattern.
1407314083
type: string

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1212
* Response data related to the scanning groups.
1313
*/
1414
export class SensitiveDataScannerGetConfigResponseData {
15+
/**
16+
* Attributes of the Sensitive Data configuration.
17+
*/
18+
"attributes"?: { [key: string]: any };
1519
/**
1620
* ID of the configuration.
1721
*/
@@ -34,6 +38,10 @@ export class SensitiveDataScannerGetConfigResponseData {
3438
* @ignore
3539
*/
3640
static readonly attributeTypeMap: AttributeTypeMap = {
41+
attributes: {
42+
baseName: "attributes",
43+
type: "{ [key: string]: any; }",
44+
},
3745
id: {
3846
baseName: "id",
3947
type: "string",

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ export class SensitiveDataScannerMeta {
2222
* Whether or not scanned events are highlighted in Logs or RUM for the org.
2323
*/
2424
"hasHighlightEnabled"?: boolean;
25+
/**
26+
* Whether or not scanned events have multi-pass enabled.
27+
*/
28+
"hasMultiPassEnabled"?: boolean;
2529
/**
2630
* Whether or not the org is compliant to the payment card industry standard.
2731
*/
@@ -54,6 +58,10 @@ export class SensitiveDataScannerMeta {
5458
baseName: "has_highlight_enabled",
5559
type: "boolean",
5660
},
61+
hasMultiPassEnabled: {
62+
baseName: "has_multi_pass_enabled",
63+
type: "boolean",
64+
},
5765
isPciCompliant: {
5866
baseName: "is_pci_compliant",
5967
type: "boolean",

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1010
* Attributes of the Sensitive Data Scanner standard pattern.
1111
*/
1212
export class SensitiveDataScannerStandardPatternAttributes {
13+
/**
14+
* Description of the standard pattern.
15+
*/
16+
"description"?: string;
1317
/**
1418
* Name of the standard pattern.
1519
*/
@@ -32,6 +36,10 @@ export class SensitiveDataScannerStandardPatternAttributes {
3236
* @ignore
3337
*/
3438
static readonly attributeTypeMap: AttributeTypeMap = {
39+
description: {
40+
baseName: "description",
41+
type: "string",
42+
},
3543
name: {
3644
baseName: "name",
3745
type: "string",

0 commit comments

Comments
 (0)