VAST Data cnodegroups API

CNode groups are groups of CNodes that managed applications can run on. See also Managed Applications.

Operations 5

GET /cnodegroups/ Get all existing CNode Groups #
POST /cnodegroups/ Create a CNode Group #
DELETE /cnodegroups/{id}/ Delete CNodeGroup #
GET /cnodegroups/{id}/ Return Details of a CNode Group #
PATCH /cnodegroups/{id}/ Modify CNode Group #

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/vastdata-cnodegroups-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

vastdata-cnodegroups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: VAST Management API definition
  title: VAST API Swagger Schema activedirectory Cnodegroups API
  version: '1.0'
security:
- ApiToken: []
tags:
- description: CNode groups are groups of CNodes that managed applications can run on. See also Managed Applications.
  name: cnodegroups
paths:
  /cnodegroups/:
    get:
      description: This endpoint lists CNode Groups
      operationId: cnodegroups_list
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/CNodeGroup'
                title: CNode Group
                type: array
          description: CNode Group information
      summary: Get all existing CNode Groups
      tags:
      - cnodegroups
    post:
      description: This endpoint creates a CNode Group.
      operationId: cnodegroups_create
      requestBody:
        content:
          application/json:
            schema:
              properties:
                application_type:
                  description: Specify application_type
                  type: string
                cnode_ids:
                  description: Specify CNodes. Specify as a comma separated array of CNode IDs.
                  type: string
                name:
                  description: CNode Group name
                  type: string
                resources_percentage:
                  description: Resources percentage, dedicated to CNode Group
                  format: float
                  type: number
              type: object
        x-originalParamName: CNodeGroupCreateParams
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncCNodeGroup'
          description: ''
      summary: Create a CNode Group
      tags:
      - cnodegroups
      x-cli-command: cnodegroup
      x-cli-subcommand: create
  /cnodegroups/{id}/:
    delete:
      description: Delete CNode Group.
      operationId: cnodegroups_delete
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: ''
      summary: Delete CNodeGroup
      tags:
      - cnodegroups
    get:
      description: This endpoint returns information about a specific CNode Group.
      operationId: cnodegroups_read
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CNodeGroup'
          description: ''
      summary: Return Details of a CNode Group
      tags:
      - cnodegroups
    patch:
      operationId: cnodegroups_update
      parameters:
      - description: CNodeGroup ID
        in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              properties:
                cnode_ids:
                  description: Specify CNodes. Specify as a comma separated array of CNode IDs.
                  type: string
                name:
                  description: Name of CNodeGroup
                  type: string
                resources_percentage:
                  description: Resources percentage, dedicated to CNode Group
                  format: float
                  type: number
              type: object
        x-originalParamName: CNodeGroupModifyParams
      responses:
        '204':
          description: OK
      summary: Modify CNode Group
      tags:
      - cnodegroups
components:
  schemas:
    CNodeGroup:
      properties:
        application_type:
          description: Application that will run on CNode Group
          type: string
        cnode_ids:
          description: Comma separated IDs
          items:
            type: integer
          type: array
        cnodes:
          description: Names of cnodes comprising cnode group
          items:
            type: string
          type: array
          x-cli-header: CNodes
        guid:
          type: string
        id:
          type: integer
          x-cli-header: ID
        name:
          description: CNode Group name
          type: string
        resources_percentage:
          description: Resources percentage, dedicated to CNode Group
          type: number
        state:
          description: CNode Group state
          type: string
      type: object
    AsyncCNodeGroup:
      allOf:
      - $ref: '#/components/schemas/CNodeGroup'
      - $ref: '#/components/schemas/AsyncTaskInResponse'
    AsyncTaskInResponse:
      properties:
        async_task:
          description: Creation Async task properties
          type: object
      type: object
  securitySchemes:
    ApiToken:
      description: Send current valid API token in an Authorization header with format Api-Token <token>.
      in: header
      name: ApiToken
      type: apiKey
    basicAuth:
      description: Basic authentication using VMS user name and password
      scheme: basic
      type: http