Pure Storage · Capability

FlashArray REST API — Connections

FlashArray REST API — Connections. 3 operations. Lead operation: Pure Storage List Volume Connections. Self-contained Naftiko capability covering one Pure Storage business surface.

Run with Naftiko Pure StorageConnections

What You Can Do

GET
Get — Pure Storage List Volume Connections
/v1/api/2-52/connections
POST
Post — Pure Storage Create a Connection Between a Volume and Host or Host Group
/v1/api/2-52/connections
DELETE
Delete — Pure Storage Delete a Connection Between a Volume and its Host or Host Group
/v1/api/2-52/connections

MCP Tools

pure-storage-list-volume-connections

Pure Storage List Volume Connections

read-only idempotent
pure-storage-create-connection-between

Pure Storage Create a Connection Between a Volume and Host or Host Group

pure-storage-delete-connection-between

Pure Storage Delete a Connection Between a Volume and its Host or Host Group

idempotent

Capability Spec

flasharray-rest-connections.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FlashArray REST API — Connections
  description: 'FlashArray REST API — Connections. 3 operations. Lead operation: Pure Storage List Volume Connections. Self-contained
    Naftiko capability covering one Pure Storage business surface.'
  tags:
  - Pure Storage
  - Connections
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PURE_STORAGE_API_KEY: PURE_STORAGE_API_KEY
capability:
  consumes:
  - type: http
    namespace: flasharray-rest-connections
    baseUri: ''
    description: FlashArray REST API — Connections business capability. Self-contained, no shared references.
    resources:
    - name: api-2.52-connections
      path: /api/2.52/connections
      operations:
      - name: get
        method: GET
        description: Pure Storage List Volume Connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: post
        method: POST
        description: Pure Storage Create a Connection Between a Volume and Host or Host Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: delete
        method: DELETE
        description: Pure Storage Delete a Connection Between a Volume and its Host or Host Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: flasharray-rest-connections-rest
    port: 8080
    description: REST adapter for FlashArray REST API — Connections. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/2-52/connections
      name: api-2-52-connections
      description: REST surface for api-2.52-connections.
      operations:
      - method: GET
        name: get
        description: Pure Storage List Volume Connections
        call: flasharray-rest-connections.get
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Pure Storage Create a Connection Between a Volume and Host or Host Group
        call: flasharray-rest-connections.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: Pure Storage Delete a Connection Between a Volume and its Host or Host Group
        call: flasharray-rest-connections.delete
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: flasharray-rest-connections-mcp
    port: 9090
    transport: http
    description: MCP adapter for FlashArray REST API — Connections. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: pure-storage-list-volume-connections
      description: Pure Storage List Volume Connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: flasharray-rest-connections.get
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-create-connection-between
      description: Pure Storage Create a Connection Between a Volume and Host or Host Group
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: flasharray-rest-connections.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-delete-connection-between
      description: Pure Storage Delete a Connection Between a Volume and its Host or Host Group
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: flasharray-rest-connections.delete
      outputParameters:
      - type: object
        mapping: $.