Apache Ignite nodeConfiguration API

The nodeConfiguration API from Apache Ignite — 2 operation(s) for nodeconfiguration.

OpenAPI Specification

apache-ignite-nodeconfiguration-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Apache Ignite REST module clusterConfiguration nodeConfiguration API
  contact:
    email: user@ignite.apache.org
  license:
    name: Apache 2.0
    url: https://ignite.apache.org
  version: 3.1.0
servers:
- url: http://localhost:10300
security:
- basicAuth: []
tags:
- name: nodeConfiguration
paths:
  /management/v1/configuration/node:
    get:
      tags:
      - nodeConfiguration
      summary: Apache Ignite Get Node Configuration
      description: Gets node configuration in HOCON format.
      operationId: getNodeConfiguration
      responses:
        '200':
          description: Full node configuration.
          content:
            text/plain:
              schema:
                type: string
        '500':
          description: Internal error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '400':
          description: Incorrect configuration.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    patch:
      tags:
      - nodeConfiguration
      summary: Apache Ignite Update Node Configuration
      description: Updates node configuration. New configuration should be provided in HOCON format.
      operationId: updateNodeConfiguration
      requestBody:
        description: The node configuration to update.
        content:
          text/plain:
            schema:
              type: string
        required: true
      responses:
        '200':
          description: Configuration successfully updated.
        '500':
          description: Internal error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '400':
          description: Incorrect configuration.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '405':
          description: Configuration is read-only.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '422':
          description: Configuration parse/apply error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /management/v1/configuration/node/{path}:
    get:
      tags:
      - nodeConfiguration
      summary: Apache Ignite Get Configuration Represented by Path
      description: Gets a configuration of a specific node, in HOCON format.
      operationId: getNodeConfigurationByPath
      parameters:
      - name: path
        in: path
        description: 'Configuration tree address. For example: `element.subelement`.'
        required: true
        schema:
          type: string
        example: example-value
      responses:
        '200':
          description: Returned node configuration.
          content:
            text/plain:
              schema:
                type: string
        '500':
          description: Internal error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '400':
          description: Incorrect configuration.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    Problem:
      type: object
      properties:
        title:
          type: string
          description: Short summary of the issue.
        status:
          type: integer
          description: Returned HTTP status code.
          format: int32
        code:
          type: string
          description: Ignite 3 error code.
        type:
          type: string
          description: URI to documentation regarding the issue.
        detail:
          type: string
          description: Extended explanation of the issue.
        node:
          type: string
          description: Name of the node the issue happened on.
        traceId:
          type: string
          description: Unique issue identifier. This identifier can be used to find logs related to the issue.
          format: uuid
        invalidParams:
          type: array
          description: A list of parameters that did not pass validation and the reason for it.
          items:
            $ref: '#/components/schemas/InvalidParam'
      description: Extended description of the problem with the request.
    InvalidParam:
      type: object
      properties:
        name:
          type: string
          description: Parameter name.
        reason:
          type: string
          description: The issue with the parameter.
      description: Information about invalid request parameter.
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic