VAST Data encryptedpaths API

An encrypted path is a path that is encrypted with a dedicated encryption group which is a subgroup of the encryption group of the tenant on which the path resides. Encrypted paths can be created on a cluster that has EKM (external key manager) encryption enabled. It is not possible to encrypt an existing path with its own encryption group.

Operations 5

GET /encryptedpaths/ List Encrypted Paths #
POST /encryptedpaths/ Create an Encrypted Path #
DELETE /encryptedpaths/{id}/ Delete Encrypted Path #
GET /encryptedpaths/{id}/ Return Details of a Encrypted Path #
PATCH /encryptedpaths/{id}/ Modify Encrypted Path Name #

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-encryptedpaths-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-encryptedpaths-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: VAST Management API definition
  title: VAST API Swagger Schema activedirectory Encryptedpaths API
  version: '1.0'
security:
- ApiToken: []
tags:
- description: An encrypted path is a path that is encrypted with a dedicated encryption group which is a subgroup of the encryption group of the tenant on which the path resides. Encrypted paths can be created on a cluster that has EKM (external key manager) encryption enabled. It is not possible to encrypt an existing path with its own encryption group.
  name: encryptedpaths
paths:
  /encryptedpaths/:
    get:
      description: This endpoint lists encrypted paths.
      operationId: encryptedpaths_list
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/EncryptedPath'
                title: Encrypted Paths
                type: array
          description: Encrypted Paths information
      summary: List Encrypted Paths
      tags:
      - encryptedpaths
    post:
      description: This endpoint creates an encrypted path.
      operationId: encryptedpaths_create
      requestBody:
        content:
          application/json:
            schema:
              properties:
                name:
                  description: The name of the encrypted path.
                  type: string
                path:
                  description: The path to encrypt.
                  type: string
                tenant_id:
                  description: The ID of the tenant on which the path resides.
                  type: integer
              required:
              - name
              - path
              type: object
        x-originalParamName: EncryptedPathCreateParams
      responses:
        '201':
          description: OK
      summary: Create an Encrypted Path
      tags:
      - encryptedpaths
      x-cli-command: encryptedpaths
      x-cli-subcommand: create
  /encryptedpaths/{id}/:
    delete:
      description: This endpoint deletes an encrypted path.
      operationId: encryptedpaths_delete
      parameters:
      - $ref: '#/components/parameters/EncryptedPathId'
      responses:
        '204':
          description: OK
      summary: Delete Encrypted Path
      tags:
      - encryptedpaths
    get:
      description: This endpoint returns information about a specific encrypted path.
      operationId: encryptedpaths_read
      parameters:
      - $ref: '#/components/parameters/EncryptedPathId'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EncryptedPath'
          description: ''
      summary: Return Details of a Encrypted Path
      tags:
      - encryptedpaths
    patch:
      description: This endpoint modifies the name of an encrypted path.
      operationId: encryptedpaths_update
      parameters:
      - $ref: '#/components/parameters/EncryptedPathId'
      requestBody:
        content:
          application/json:
            schema:
              properties:
                name:
                  description: The new name for the encrypted path
                  type: string
              required:
              - name
              type: object
        x-originalParamName: EncryptedPathModifyParams
      responses:
        '204':
          description: OK
      summary: Modify Encrypted Path Name
      tags:
      - encryptedpaths
components:
  parameters:
    EncryptedPathId:
      description: Encrypted Path ID
      in: path
      name: id
      required: true
      schema:
        type: integer
  schemas:
    EncryptionGroup:
      properties:
        crn:
          description: Encryption Group Cloud Resource Name
          example: INTERNAL_ENCRYPTION_GROUP_CRN
          type: string
        guid:
          example: 9f0bf0bf-7b36-413b-8278-9dd47b3f7cdb
          type: string
        id:
          type: integer
        state:
          description: Encryption Group State
          enum:
          - INIT
          - ACTIVE
          - REVOKE_IN_PROGRESS
          - REVOKE_UPDATING_AGENTS
          - REVOKED
          - REINSTATE_IN_PROGRESS
          - REINSTATE_UPDATING_AGENTS
          - EKM_REVOKE_IN_PROGRESS
          - EKM_REVOKE_UPDATING_AGENTS
          - EKM_REVOKED
          - EKM_REVOKE_FAILED
          - EKM_REVOKING_KEYS
          type: string
      required:
      - id
      - guid
      - state
      - crn
      type: object
    EncryptedPath:
      properties:
        encryption_group:
          $ref: '#/components/schemas/EncryptionGroup'
        id:
          type: integer
          x-cli-header: ID
        name:
          description: Name of Encrypted Path
          type: string
        path:
          description: Encrypted path
          type: string
        tenant_id:
          description: Tenant ID
          type: integer
        tenant_name:
          description: Tenant name
          type: string
      required:
      - name
      - path
      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