Skip to content

Commit 73c7051

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

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-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:

src/main/java/com/datadog/api/client/v2/model/OrgConnectionTypeEnum.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@
2323
public class OrgConnectionTypeEnum extends ModelEnum<String> {
2424

2525
private static final Set<String> allowedValues =
26-
new HashSet<String>(Arrays.asList("logs", "metrics"));
26+
new HashSet<String>(Arrays.asList("logs", "metrics", "audit"));
2727

2828
public static final OrgConnectionTypeEnum LOGS = new OrgConnectionTypeEnum("logs");
2929
public static final OrgConnectionTypeEnum METRICS = new OrgConnectionTypeEnum("metrics");
30+
public static final OrgConnectionTypeEnum AUDIT = new OrgConnectionTypeEnum("audit");
3031

3132
OrgConnectionTypeEnum(String value) {
3233
super(value, allowedValues);

0 commit comments

Comments
 (0)