Skip to content

Commit 27ffd77

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

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.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:

services/org_connections/src/v2/models/OrgConnectionTypeEnum.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import { UnparsedObject } from "@datadog/datadog-api-client";
66
export type OrgConnectionTypeEnum =
77
| typeof LOGS
88
| typeof METRICS
9+
| typeof AUDIT
910
| UnparsedObject;
1011
export const LOGS = "logs";
1112
export const METRICS = "metrics";
13+
export const AUDIT = "audit";

services/org_connections/src/v2/models/TypingInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const TypingInfo: ModelTypingInfo = {
2424
enumsMap: {
2525
OrgConnectionOrgRelationshipDataType: ["orgs"],
2626
OrgConnectionType: ["org_connection"],
27-
OrgConnectionTypeEnum: ["logs", "metrics"],
27+
OrgConnectionTypeEnum: ["logs", "metrics", "audit"],
2828
OrgConnectionUserRelationshipDataType: ["users"],
2929
},
3030
oneOfMap: {},

0 commit comments

Comments
 (0)