Skip to content

Commit 844a164

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add audit track to list of available org connections (#3604)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent e429920 commit 844a164

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48162,11 +48162,13 @@ components:
4816248162
enum:
4816348163
- logs
4816448164
- metrics
48165+
- audit
4816548166
example: logs
4816648167
type: string
4816748168
x-enum-varnames:
4816848169
- LOGS
4816948170
- METRICS
48171+
- AUDIT
4817048172
OrgConnectionUpdate:
4817148173
description: Org connection update data.
4817248174
properties:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4684,7 +4684,7 @@ const enumsMap: { [key: string]: any[] } = {
46844684
OrgConfigType: ["org_configs"],
46854685
OrgConnectionOrgRelationshipDataType: ["orgs"],
46864686
OrgConnectionType: ["org_connection"],
4687-
OrgConnectionTypeEnum: ["logs", "metrics"],
4687+
OrgConnectionTypeEnum: ["logs", "metrics", "audit"],
46884688
OrgConnectionUserRelationshipDataType: ["users"],
46894689
OrganizationsType: ["orgs"],
46904690
OutcomeType: ["outcome"],

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ import { UnparsedObject } from "../../datadog-api-client-common/util";
1313
export type OrgConnectionTypeEnum =
1414
| typeof LOGS
1515
| typeof METRICS
16+
| typeof AUDIT
1617
| UnparsedObject;
1718
export const LOGS = "logs";
1819
export const METRICS = "metrics";
20+
export const AUDIT = "audit";

0 commit comments

Comments
 (0)