Nutanix Storage Pools API

Manage storage pools which represent groups of physical disks used for storing data across the cluster.

OpenAPI Specification

nutanix-storage-pools-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Nutanix Prism Central API v3 Alerts Storage Pools API
  description: RESTful API for managing Nutanix clusters, VMs, storage, networking, and other infrastructure components through Prism Central. The v3 API uses an intent-based model where resources are defined by their desired state, and the system works to achieve that state. All list operations use POST with server-side filtering, grouping, and sorting. Authentication is via HTTP Basic Auth with Prism Central credentials.
  version: 3.1.0
  contact:
    name: Nutanix Developer Support
    email: developer@nutanix.com
    url: https://www.nutanix.dev/
  termsOfService: https://www.nutanix.com/legal/terms-of-use
servers:
- url: https://{prismCentralIp}:9440/api/nutanix/v3
  description: Prism Central Server
  variables:
    prismCentralIp:
      default: localhost
      description: IP address or FQDN of the Prism Central instance.
security:
- basicAuth: []
tags:
- name: Storage Pools
  description: Manage storage pools which represent groups of physical disks used for storing data across the cluster.
paths:
  /storage_pools:
    get:
      operationId: listStoragePools
      summary: Nutanix List storage pools
      description: Retrieves a list of all storage pools in the cluster.
      tags:
      - Storage Pools
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
  /storage_pools/{id}:
    get:
      operationId: getStoragePool
      summary: Nutanix Get a storage pool
      description: Retrieves details about a specific storage pool by its ID.
      tags:
      - Storage Pools
      parameters:
      - $ref: '#/components/parameters/EntityId'
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
        '404':
          description: Storage pool not found
components:
  parameters:
    EntityId:
      name: id
      in: path
      required: true
      description: The ID of the entity.
      schema:
        type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication using Prism Central username and password credentials.
externalDocs:
  description: Nutanix Prism Central v3 API Documentation
  url: https://www.nutanix.dev/api_references/prism-central-v3/