Skip to content

Commit 8de06f4

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 09dba22 of spec repo
1 parent 887d518 commit 8de06f4

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47860,11 +47860,13 @@ components:
4786047860
enum:
4786147861
- logs
4786247862
- metrics
47863+
- audit
4786347864
example: logs
4786447865
type: string
4786547866
x-enum-varnames:
4786647867
- LOGS
4786747868
- METRICS
47869+
- AUDIT
4786847870
OrgConnectionUpdate:
4786947871
description: Org connection update data.
4787047872
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)