diff options
Diffstat (limited to 'schemas/config/2.0.schema.json')
-rw-r--r-- | schemas/config/2.0.schema.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/schemas/config/2.0.schema.json b/schemas/config/2.0.schema.json index 7c08c392..93d6ce8d 100644 --- a/schemas/config/2.0.schema.json +++ b/schemas/config/2.0.schema.json @@ -692,6 +692,18 @@ "examples": [ "/ssl/root.crt" ] + }, + "client_auth_type": { + "description": "Client auth type", + "type": "string", + "default": "no_client_certs", + "enum": [ + "request_client_cert", + "require_any_client_cert", + "verify_client_cert_if_given", + "no_client_certs", + "require_and_verify_client_cert" + ] } }, "required": [ @@ -1163,6 +1175,11 @@ "type": "integer", "default": 100000 }, + "consume_all": { + "description": "Consume all payloads, even not Job structured", + "type": "boolean", + "default": false + }, "queue": { "type": "string", "description": "Queue name", @@ -1226,6 +1243,11 @@ "type": "integer", "default": 100000 }, + "consume_all": { + "description": "Consume all payloads, even not Job structured", + "type": "boolean", + "default": false + }, "tube_priority": { "description": "Beanstalk internal tube priority", "type": "integer", @@ -1255,6 +1277,16 @@ "type": "integer", "default": 100000 }, + "skip_queue_declaration": { + "description": "Get queue URL instead of declaring it", + "type": "boolean", + "default": false + }, + "consume_all": { + "description": "Consume all payloads, even not Job structured", + "type": "boolean", + "default": false + }, "visibility_timeout": { "type": "integer", "description": "The duration (in seconds) for which the call waits for a message to arrive in the queue before returning. If a message is available, the call returns sooner than WaitTimeSeconds. If no messages are available and the wait time expires, the call returns successfully with an empty list of messages.", @@ -1304,6 +1336,11 @@ "type": "integer", "default": 100000 }, + "consume_all": { + "description": "Consume all payloads, even not Job structured", + "type": "boolean", + "default": false + }, "subject": { "description": "NATS subject", "type": "string", |