diff --git a/v2.8/endpoint_extra_config.json b/v2.8/endpoint_extra_config.json index 9faf351..3c6cdde 100644 --- a/v2.8/endpoint_extra_config.json +++ b/v2.8/endpoint_extra_config.json @@ -89,6 +89,12 @@ ], "type": "string" }, + "decompress_gzip": { + "title": "Decompress Gzip", + "description": "Enterprise Only. Decompresses any Gzipped content before sending it to the backend when the `Content-Encoding` has `gzip` in the first position. You can also set this value globally at the [service level](/docs/enterprise/service-settings/router-options/#max_payload).\n\nSee: https://www.krakend.io/docs/service-settings/router-options/", + "default": false, + "type": "boolean" + }, "flatmap_filter": { "$id": "#proxy/flatmap_filter", "title": "Flatmap (Array manipulation)", @@ -96,6 +102,12 @@ "$ref": "proxy/flatmap.json", "type": "array" }, + "max_payload": { + "title": "Maximum Payload", + "description": "Enterprise Only. Limits the maximum number of bytes a user can send to the endpoint. `0` means no limit. You can also set this value globally at the [service level](/docs/enterprise/service-settings/router-options/#max_payload).\n\nSee: https://www.krakend.io/docs/service-settings/router-options/", + "default": 0, + "type": "integer" + }, "sequential": { "$id": "#endpoint_extra_config/proxy/sequential", "title": "Sequential proxy", diff --git a/v2.8/proxy.json b/v2.8/proxy.json index e45af2e..2f6321e 100644 --- a/v2.8/proxy.json +++ b/v2.8/proxy.json @@ -4,12 +4,6 @@ "title": "Proxy option", "type": "object", "properties": { - "decompress_gzip": { - "title": "Decompress Gzip", - "description": "Enterprise Only. Decompresses any Gzipped content before sending it to the backend when the `Content-Encoding` has `gzip` in the first position. You can also set this value globally at the [service level](/docs/enterprise/service-settings/router-options/#max_payload).\n\nSee: https://www.krakend.io/docs/service-settings/router-options/", - "default": false, - "type": "boolean" - }, "flatmap_filter": { "$id": "#proxy/flatmap_filter", "title": "Flatmap (Array manipulation)", @@ -17,12 +11,6 @@ "$ref": "proxy/flatmap.json", "type": "array" }, - "max_payload": { - "title": "Maximum Payload", - "description": "Enterprise Only. Limits the maximum number of bytes a user can send to the endpoint. `0` means no limit. You can also set this value globally at the [service level](/docs/enterprise/service-settings/router-options/#max_payload).\n\nSee: https://www.krakend.io/docs/service-settings/router-options/", - "default": 0, - "type": "integer" - }, "shadow": { "$id": "#proxy/shadow", "title": "Traffic shadowing or mirroring",