Apache Ignite deployment API

The deployment API from Apache Ignite — 6 operation(s) for deployment.

Operations 7

GET /management/v1/deployment/cluster/units Apache Ignite Get Cluster Unit Statuses #
GET /management/v1/deployment/cluster/units/{unitId} Apache Ignite Get Specific Cluster Unit Statuses #
GET /management/v1/deployment/node/units Apache Ignite Get Node Unit Statuses #
GET /management/v1/deployment/node/units/{unitId} Apache Ignite Get Specific Node Unit Statuses #
POST /management/v1/deployment/units/zip/{unitId}/{unitVersion} Apache Ignite Deploy Unit with Folders Structure in Zip. #
POST /management/v1/deployment/units/{unitId}/{unitVersion} Apache Ignite Deploy Unit #
DELETE /management/v1/deployment/units/{unitId}/{unitVersion} Apache Ignite Undeploy Unit #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/apache-ignite-deployment-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

apache-ignite-deployment-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache Ignite REST module clusterConfiguration Deployment 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: deployment
paths:
  /management/v1/deployment/cluster/units:
    get:
      tags:
      - deployment
      summary: Apache Ignite Get Cluster Unit Statuses
      description: Cluster unit statuses.
      operationId: listClusterStatuses
      parameters:
      - name: statuses
        in: query
        schema:
          type:
          - array
          - 'null'
          description: Deployment status filter.
          items:
            $ref: '#/components/schemas/DeploymentStatus'
        example: []
      responses:
        '200':
          description: All statuses returned successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UnitStatus'
              examples:
                listClusterStatuses200Example:
                  summary: Default listClusterStatuses 200 response
                  x-microcks-default: true
                  value: {}
        '500':
          description: Internal error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /management/v1/deployment/cluster/units/{unitId}:
    get:
      tags:
      - deployment
      summary: Apache Ignite Get Specific Cluster Unit Statuses
      description: Cluster unit statuses by unit.
      operationId: listClusterStatusesByUnit
      parameters:
      - name: unitId
        in: path
        required: true
        schema:
          type: string
          description: The ID of the deployment unit.
        example: item-6019
      - name: version
        in: query
        schema:
          type:
          - string
          - 'null'
          description: Unit version filter.
        example: example-value
      - name: statuses
        in: query
        schema:
          type:
          - array
          - 'null'
          description: Deployment status filter.
          items:
            $ref: '#/components/schemas/DeploymentStatus'
        example: []
      responses:
        '200':
          description: All statuses returned successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UnitStatus'
              examples:
                listClusterStatusesByUnit200Example:
                  summary: Default listClusterStatusesByUnit 200 response
                  x-microcks-default: true
                  value: {}
        '500':
          description: Internal error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /management/v1/deployment/node/units:
    get:
      tags:
      - deployment
      summary: Apache Ignite Get Node Unit Statuses
      description: Returns a list of unit statuses per node.
      operationId: listNodeStatuses
      parameters:
      - name: statuses
        in: query
        schema:
          type:
          - array
          - 'null'
          description: Deployment status filter.
          items:
            $ref: '#/components/schemas/DeploymentStatus'
        example: []
      responses:
        '200':
          description: All statuses were returned successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UnitStatus'
              examples:
                listNodeStatuses200Example:
                  summary: Default listNodeStatuses 200 response
                  x-microcks-default: true
                  value: {}
        '500':
          description: Internal error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /management/v1/deployment/node/units/{unitId}:
    get:
      tags:
      - deployment
      summary: Apache Ignite Get Specific Node Unit Statuses
      description: Returns a list of node unit statuses by unit.
      operationId: listNodeStatusesByUnit
      parameters:
      - name: unitId
        in: path
        required: true
        schema:
          type: string
          description: The ID of the deployment unit.
        example: item-8168
      - name: version
        in: query
        schema:
          type:
          - string
          - 'null'
          description: Unit version filter.
        example: example-value
      - name: statuses
        in: query
        schema:
          type:
          - array
          - 'null'
          description: Deployment status filter.
          items:
            $ref: '#/components/schemas/DeploymentStatus'
        example: []
      responses:
        '200':
          description: All statuses returned successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UnitStatus'
              examples:
                listNodeStatusesByUnit200Example:
                  summary: Default listNodeStatusesByUnit 200 response
                  x-microcks-default: true
                  value: {}
        '500':
          description: Internal error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /management/v1/deployment/units/zip/{unitId}/{unitVersion}:
    post:
      tags:
      - deployment
      summary: Apache Ignite Deploy Unit with Folders Structure in Zip.
      description: Deploys provided unit in zip file to the cluster with folders structure.
      operationId: deployZipUnit
      parameters:
      - name: unitId
        in: path
        required: true
        schema:
          type: string
          description: The ID of the deployment unit.
        example: item-1689
      - name: unitVersion
        in: path
        required: true
        schema:
          type: string
          description: The version of the deployment unit.
        example: example-value
      - name: deployMode
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/deployMode'
          - description: ALL or MAJORITY.
        example: example-value
      - name: initialNodes
        in: query
        schema:
          type:
          - array
          - 'null'
          description: List of node identifiers to deploy to.
          items:
            type: string
        example: []
      requestBody:
        content:
          multipart/form-data:
            schema:
              required:
              - unitContent
              type: object
              properties:
                unitContent:
                  type: array
                  description: The zip file with unit content to deploy.
                  items:
                    type: string
                    format: binary
            encoding: {}
        required: true
      responses:
        '200':
          description: Unit deployed successfully.
          content:
            application/json:
              schema:
                type: boolean
              examples:
                deployZipUnit200Example:
                  summary: Default deployZipUnit 200 response
                  x-microcks-default: true
                  value: {}
        '409':
          description: Unit with same identifier and version is already deployed.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '400':
          description: Deployment unit with unzip supports only single zip file.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '500':
          description: Internal error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /management/v1/deployment/units/{unitId}/{unitVersion}:
    post:
      tags:
      - deployment
      summary: Apache Ignite Deploy Unit
      description: Deploys provided unit to the cluster.
      operationId: deployUnit
      parameters:
      - name: unitId
        in: path
        required: true
        schema:
          type: string
          description: The ID of the deployment unit.
        example: item-3830
      - name: unitVersion
        in: path
        required: true
        schema:
          type: string
          description: The version of the deployment unit.
        example: example-value
      - name: deployMode
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/deployMode'
          - description: ALL or MAJORITY.
        example: example-value
      - name: initialNodes
        in: query
        schema:
          type:
          - array
          - 'null'
          description: List of node identifiers to deploy to.
          items:
            type: string
        example: []
      requestBody:
        content:
          multipart/form-data:
            schema:
              required:
              - unitContent
              type: object
              properties:
                unitContent:
                  type: array
                  description: The code to deploy.
                  items:
                    type: string
                    format: binary
            encoding: {}
        required: true
      responses:
        '200':
          description: Unit deployed successfully.
          content:
            application/json:
              schema:
                type: boolean
              examples:
                deployUnit200Example:
                  summary: Default deployUnit 200 response
                  x-microcks-default: true
                  value: {}
        '409':
          description: Unit with same identifier and version is already deployed.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '500':
          description: Internal error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      tags:
      - deployment
      summary: Apache Ignite Undeploy Unit
      description: Undeploys the unit with provided unitId and unitVersion.
      operationId: undeployUnit
      parameters:
      - name: unitId
        in: path
        required: true
        schema:
          type: string
          description: The ID of the deployment unit.
        example: item-8579
      - name: unitVersion
        in: path
        required: true
        schema:
          type: string
          description: The version of the deployment unit.
        example: example-value
      responses:
        '200':
          description: Unit undeployed successfully.
          content:
            application/json:
              schema:
                type: boolean
              examples:
                undeployUnit200Example:
                  summary: Default undeployUnit 200 response
                  x-microcks-default: true
                  value: {}
        '404':
          description: Unit with provided identifier and version does not exist.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
        '500':
          description: Internal error.
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Problem'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    DeploymentStatus:
      type: string
      description: Status of deployment process.
      enum:
      - UPLOADING
      - DEPLOYED
      - OBSOLETE
      - REMOVING
    UnitStatus:
      required:
      - id
      - versionToStatus
      type: object
      properties:
        id:
          type: string
          description: Unit identifier.
        versionToStatus:
          type: array
          description: Map from unit version to unit deployment status.
          items:
            $ref: '#/components/schemas/UnitVersionStatus'
      description: Unit status.
    UnitVersionStatus:
      required:
      - status
      - version
      type: object
      properties:
        version:
          type: string
          description: Unit version.
        status:
          allOf:
          - $ref: '#/components/schemas/DeploymentStatus'
          - description: Unit status.
      description: Unit version and status.
    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.
    deployMode:
      type: string
      description: Initial set of nodes to deploy.
      enum:
      - MAJORITY
      - ALL
    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.
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic