VAST Data Block Hosts API

The Block Hosts API from VAST Data — 1 operation(s) for block hosts.

OpenAPI Specification

vastdata-block-hosts-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  description: VAST Management API definition
  title: VAST API Swagger Schema activedirectory Block Hosts API
  version: '1.0'
security:
- ApiToken: []
tags:
- name: Block Hosts
paths:
  /blockhosts/bulk:
    delete:
      description: This endpoint deletes multiple block hosts.
      operationId: hosts_bulk_delete
      parameters:
      - $ref: '#/components/parameters/BlockHostVolumeForce'
      responses:
        '204':
          description: OK
      summary: Delete a Bulk Of Hosts
      tags:
      - Block Hosts
components:
  parameters:
    BlockHostVolumeForce:
      description: Forcefully removes mappings between hosts and volumes. A host can be deleted only if it is not mapped to any volume, and a volume can be deleted only if it is not mapped to any host.
      in: query
      name: force
      schema:
        type: boolean
  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