Skip to content

Commit d0fcc4d

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit bbd56891 of spec repo
1 parent 50aa2b0 commit d0fcc4d

File tree

5 files changed

+41
-4
lines changed

5 files changed

+41
-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-18 19:28:49.350850",
8-
"spec_repo_commit": "0259ae38"
7+
"regenerated": "2023-07-18 20:23:01.719702",
8+
"spec_repo_commit": "bbd56891"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-07-18 19:28:49.369703",
13-
"spec_repo_commit": "0259ae38"
12+
"regenerated": "2023-07-18 20:23:01.736342",
13+
"spec_repo_commit": "bbd56891"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13583,6 +13583,10 @@ components:
1358313583
type:
1358413584
$ref: '#/components/schemas/SensitiveDataScannerConfigurationType'
1358513585
type: object
13586+
SensitiveDataScannerConfigurationAttributes:
13587+
additionalProperties: {}
13588+
description: Attributes of the Sensitive Data configuration.
13589+
type: object
1358613590
SensitiveDataScannerConfigurationData:
1358713591
description: A Sensitive Data Scanner configuration data.
1358813592
properties:
@@ -13651,6 +13655,8 @@ components:
1365113655
SensitiveDataScannerGetConfigResponseData:
1365213656
description: Response data related to the scanning groups.
1365313657
properties:
13658+
attributes:
13659+
$ref: '#/components/schemas/SensitiveDataScannerConfigurationAttributes'
1365413660
id:
1365513661
description: ID of the configuration.
1365613662
type: string
@@ -13835,6 +13841,9 @@ components:
1383513841
description: Whether or not scanned events are highlighted in Logs or RUM
1383613842
for the org.
1383713843
type: boolean
13844+
has_multi_pass_enabled:
13845+
description: Whether or not scanned events have multi-pass enabled.
13846+
type: boolean
1383813847
is_pci_compliant:
1383913848
description: Whether or not the org is compliant to the payment card industry
1384013849
standard.
@@ -14070,6 +14079,9 @@ components:
1407014079
SensitiveDataScannerStandardPatternAttributes:
1407114080
description: Attributes of the Sensitive Data Scanner standard pattern.
1407214081
properties:
14082+
description:
14083+
description: Description of the standard pattern.
14084+
type: string
1407314085
name:
1407414086
description: Name of the standard pattern.
1407514087
type: string

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* This product includes software developed at Datadog (https://www.datadoghq.com/).
44
* Copyright 2020-Present Datadog, Inc.
55
*/
6+
import { SensitiveDataScannerConfigurationAttributes } from "./SensitiveDataScannerConfigurationAttributes";
67
import { SensitiveDataScannerConfigurationRelationships } from "./SensitiveDataScannerConfigurationRelationships";
78
import { SensitiveDataScannerConfigurationType } from "./SensitiveDataScannerConfigurationType";
89

@@ -12,6 +13,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1213
* Response data related to the scanning groups.
1314
*/
1415
export class SensitiveDataScannerGetConfigResponseData {
16+
/**
17+
* Attributes of the Sensitive Data configuration.
18+
*/
19+
"attributes"?: SensitiveDataScannerConfigurationAttributes;
1520
/**
1621
* ID of the configuration.
1722
*/
@@ -34,6 +39,10 @@ export class SensitiveDataScannerGetConfigResponseData {
3439
* @ignore
3540
*/
3641
static readonly attributeTypeMap: AttributeTypeMap = {
42+
attributes: {
43+
baseName: "attributes",
44+
type: "SensitiveDataScannerConfigurationAttributes",
45+
},
3746
id: {
3847
baseName: "id",
3948
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)