File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
src/main/java/com/datadog/api/client/v2/model Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff 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:
Original file line number Diff line number Diff line change 2323public 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 );
You can’t perform that action at this time.
0 commit comments