Skip to content
Closed
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-03-18 16:20:36.363534",
"spec_repo_commit": "78376979"
"regenerated": "2025-03-21 18:48:56.831682",
"spec_repo_commit": "d35d4ae5"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-03-18 16:20:36.379301",
"spec_repo_commit": "78376979"
"regenerated": "2025-03-21 18:48:56.847555",
"spec_repo_commit": "d35d4ae5"
}
}
}
2 changes: 2 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8561,11 +8561,13 @@ components:
- identity
- gzip
- deflate
- zstd1
type: string
x-enum-varnames:
- IDENTITY
- GZIP
- DEFLATE
- ZSTD1
ConvertJobResultsToSignalsAttributes:
description: Attributes for converting historical job results to signals.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@
public class ContentEncoding extends ModelEnum<String> {

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

public static final ContentEncoding IDENTITY = new ContentEncoding("identity");
public static final ContentEncoding GZIP = new ContentEncoding("gzip");
public static final ContentEncoding DEFLATE = new ContentEncoding("deflate");
public static final ContentEncoding ZSTD1 = new ContentEncoding("zstd1");

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