diff --git a/internal/api/v1/docs/swagger.json b/internal/api/v1/docs/swagger.json index 663084c0..d046d632 100644 --- a/internal/api/v1/docs/swagger.json +++ b/internal/api/v1/docs/swagger.json @@ -375,6 +375,12 @@ "$ref": "#/definitions/SuccessResponse" } }, + "400": { + "description": "Bad Request", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + }, "403": { "description": "Forbidden", "schema": { @@ -5435,6 +5441,11 @@ ], "x-nullable": true }, + "inbound_mtls_profile": { + "type": "string", + "x-nullable": false, + "x-omitempty": false + }, "index": { "description": "Index file to serve for single-page app mode", "type": "string", @@ -5496,6 +5507,12 @@ "x-nullable": false, "x-omitempty": false }, + "relay_proxy_protocol_header": { + "description": "TCP only: relay PROXY protocol header to the destination", + "type": "boolean", + "x-nullable": false, + "x-omitempty": false + }, "response_header_timeout": { "type": "integer", "x-nullable": false, diff --git a/internal/api/v1/docs/swagger.yaml b/internal/api/v1/docs/swagger.yaml index 33299ead..d3f04804 100644 --- a/internal/api/v1/docs/swagger.yaml +++ b/internal/api/v1/docs/swagger.yaml @@ -1052,6 +1052,8 @@ definitions: allOf: - $ref: '#/definitions/IdlewatcherConfig' x-nullable: true + inbound_mtls_profile: + type: string index: description: Index file to serve for single-page app mode type: string @@ -1087,6 +1089,9 @@ definitions: x-nullable: true purl: type: string + relay_proxy_protocol_header: + description: 'TCP only: relay PROXY protocol header to the destination' + type: boolean response_header_timeout: type: integer root: @@ -2166,6 +2171,10 @@ paths: description: OK schema: $ref: '#/definitions/SuccessResponse' + "400": + description: Bad Request + schema: + $ref: '#/definitions/ErrorResponse' "403": description: Forbidden schema: