Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47860,11 +47860,13 @@ components:
enum:
- logs
- metrics
- audit
example: logs
type: string
x-enum-varnames:
- LOGS
- METRICS
- AUDIT
OrgConnectionUpdate:
description: Org connection update data.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@
public class OrgConnectionTypeEnum extends ModelEnum<String> {

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

public static final OrgConnectionTypeEnum LOGS = new OrgConnectionTypeEnum("logs");
public static final OrgConnectionTypeEnum METRICS = new OrgConnectionTypeEnum("metrics");
public static final OrgConnectionTypeEnum AUDIT = new OrgConnectionTypeEnum("audit");

OrgConnectionTypeEnum(String value) {
super(value, allowedValues);
Expand Down
Loading