From a89e71e687c16696356b1c575356cddd078fce92 Mon Sep 17 00:00:00 2001 From: Devan Date: Mon, 23 Mar 2026 16:16:44 -0500 Subject: [PATCH 1/2] feat: Adds gzip compression level param to spec --- src/oss/paths/backup_shards_shardID.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/oss/paths/backup_shards_shardID.yml b/src/oss/paths/backup_shards_shardID.yml index 3443e6c78..1036c84e0 100644 --- a/src/oss/paths/backup_shards_shardID.yml +++ b/src/oss/paths/backup_shards_shardID.yml @@ -15,6 +15,11 @@ get: enum: - gzip - identity + - in: header + name: Gzip-Compression-Level + description: The Gzip-Compression-Level header sets the gzip compression level for the response. Accepts values from 1 (fastest, least compression) to 9 (slowest, best compression). + schema: + type: string - in: path name: shardID schema: From 315aad1fe8eb35455703d0f471f4fdae8d008e5d Mon Sep 17 00:00:00 2001 From: Devan Date: Mon, 23 Mar 2026 16:27:31 -0500 Subject: [PATCH 2/2] feat: Update to correct params --- src/oss/paths/backup_shards_shardID.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/oss/paths/backup_shards_shardID.yml b/src/oss/paths/backup_shards_shardID.yml index 1036c84e0..3ab5bb74b 100644 --- a/src/oss/paths/backup_shards_shardID.yml +++ b/src/oss/paths/backup_shards_shardID.yml @@ -17,9 +17,14 @@ get: - identity - in: header name: Gzip-Compression-Level - description: The Gzip-Compression-Level header sets the gzip compression level for the response. Accepts values from 1 (fastest, least compression) to 9 (slowest, best compression). + description: The gzip compression level to use when compressing the response. schema: type: string + enum: + - none + - default + - speedy + - full - in: path name: shardID schema: