Quasar max-in-buffer-size API

The max-in-buffer-size API from Quasar — 1 operation(s) for max-in-buffer-size.

OpenAPI Specification

quasar-max-in-buffer-size-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  title: QuasarDB cluster max-in-buffer-size API
  version: 3.15.0-nightly.0
  description: Find out more at https://doc.quasardb.net
basePath: /api
schemes:
- http
- https
consumes:
- application/json
produces:
- application/json
security:
- Bearer: []
- UrlParam: []
tags:
- name: max-in-buffer-size
paths:
  /option/max-in-buffer-size:
    get:
      operationId: get-max-in-buffer-size
      responses:
        '200':
          schema:
            type: integer
            format: int64
          description: Successful operation
        '400':
          schema:
            $ref: '#/definitions/QdbError'
          description: Bad Request.
      tags:
      - max-in-buffer-size
      summary: Get the client max in buffer size
definitions:
  QdbError:
    properties:
      message:
        type: string
securityDefinitions:
  Bearer:
    type: apiKey
    name: Authorization
    in: header
  UrlParam:
    type: apiKey
    name: token
    in: query