Skip to content

Commit b03eb0e

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit d35d4ae5 of spec repo
1 parent e44a7ad commit b03eb0e

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-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-03-18 16:20:36.363534",
8-
"spec_repo_commit": "78376979"
7+
"regenerated": "2025-03-21 18:48:56.831682",
8+
"spec_repo_commit": "d35d4ae5"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-18 16:20:36.379301",
13-
"spec_repo_commit": "78376979"
12+
"regenerated": "2025-03-21 18:48:56.847555",
13+
"spec_repo_commit": "d35d4ae5"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8561,11 +8561,13 @@ components:
85618561
- identity
85628562
- gzip
85638563
- deflate
8564+
- zstd1
85648565
type: string
85658566
x-enum-varnames:
85668567
- IDENTITY
85678568
- GZIP
85688569
- DEFLATE
8570+
- ZSTD1
85698571
ConvertJobResultsToSignalsAttributes:
85708572
description: Attributes for converting historical job results to signals.
85718573
properties:

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@
2323
public class ContentEncoding extends ModelEnum<String> {
2424

2525
private static final Set<String> allowedValues =
26-
new HashSet<String>(Arrays.asList("identity", "gzip", "deflate"));
26+
new HashSet<String>(Arrays.asList("identity", "gzip", "deflate", "zstd1"));
2727

2828
public static final ContentEncoding IDENTITY = new ContentEncoding("identity");
2929
public static final ContentEncoding GZIP = new ContentEncoding("gzip");
3030
public static final ContentEncoding DEFLATE = new ContentEncoding("deflate");
31+
public static final ContentEncoding ZSTD1 = new ContentEncoding("zstd1");
3132

3233
ContentEncoding(String value) {
3334
super(value, allowedValues);

0 commit comments

Comments
 (0)