Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-06-19 12:11:25.008610",
"spec_repo_commit": "a171e0a8"
"regenerated": "2025-06-20 19:51:49.507932",
"spec_repo_commit": "51272749"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-06-19 12:11:25.024268",
"spec_repo_commit": "a171e0a8"
"regenerated": "2025-06-20 19:51:49.524444",
"spec_repo_commit": "51272749"
}
}
}
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7089,11 +7089,15 @@ components:
enum:
- user
- system
- api
- automation
example: user
type: string
x-enum-varnames:
- USER
- SYSTEM
- API
- AUTOMATION
ChangeEventCustomAttributesChangedResource:
additionalProperties: false
description: A uniquely identified resource.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,16 @@
public class ChangeEventCustomAttributesAuthorType extends ModelEnum<String> {

private static final Set<String> allowedValues =
new HashSet<String>(Arrays.asList("user", "system"));
new HashSet<String>(Arrays.asList("user", "system", "api", "automation"));

public static final ChangeEventCustomAttributesAuthorType USER =
new ChangeEventCustomAttributesAuthorType("user");
public static final ChangeEventCustomAttributesAuthorType SYSTEM =
new ChangeEventCustomAttributesAuthorType("system");
public static final ChangeEventCustomAttributesAuthorType API =
new ChangeEventCustomAttributesAuthorType("api");
public static final ChangeEventCustomAttributesAuthorType AUTOMATION =
new ChangeEventCustomAttributesAuthorType("automation");

ChangeEventCustomAttributesAuthorType(String value) {
super(value, allowedValues);
Expand Down