Skip to content

Commit 6c0e671

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 51272749 of spec repo (#2933)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 0702d38 commit 6c0e671

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-06-19 12:11:25.008610",
8-
"spec_repo_commit": "a171e0a8"
7+
"regenerated": "2025-06-20 19:51:49.507932",
8+
"spec_repo_commit": "51272749"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-06-19 12:11:25.024268",
13-
"spec_repo_commit": "a171e0a8"
12+
"regenerated": "2025-06-20 19:51:49.524444",
13+
"spec_repo_commit": "51272749"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7089,11 +7089,15 @@ components:
70897089
enum:
70907090
- user
70917091
- system
7092+
- api
7093+
- automation
70927094
example: user
70937095
type: string
70947096
x-enum-varnames:
70957097
- USER
70967098
- SYSTEM
7099+
- API
7100+
- AUTOMATION
70977101
ChangeEventCustomAttributesChangedResource:
70987102
additionalProperties: false
70997103
description: A uniquely identified resource.

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,16 @@
2525
public class ChangeEventCustomAttributesAuthorType extends ModelEnum<String> {
2626

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

3030
public static final ChangeEventCustomAttributesAuthorType USER =
3131
new ChangeEventCustomAttributesAuthorType("user");
3232
public static final ChangeEventCustomAttributesAuthorType SYSTEM =
3333
new ChangeEventCustomAttributesAuthorType("system");
34+
public static final ChangeEventCustomAttributesAuthorType API =
35+
new ChangeEventCustomAttributesAuthorType("api");
36+
public static final ChangeEventCustomAttributesAuthorType AUTOMATION =
37+
new ChangeEventCustomAttributesAuthorType("automation");
3438

3539
ChangeEventCustomAttributesAuthorType(String value) {
3640
super(value, allowedValues);

0 commit comments

Comments
 (0)