Pure Storage · Capability

FlashArray REST API — Network Interfaces

FlashArray REST API — Network Interfaces. 7 operations. Lead operation: Pure Storage List Network Interfaces. Self-contained Naftiko capability covering one Pure Storage business surface.

Run with Naftiko Pure StorageNetwork Interfaces

What You Can Do

GET
Get — Pure Storage List Network Interfaces
/v1/api/2-52/network-interfaces
POST
Post — Pure Storage Create Network Interface
/v1/api/2-52/network-interfaces
DELETE
Delete — Pure Storage Delete Network Interface
/v1/api/2-52/network-interfaces
PATCH
Patch — Pure Storage Modify Network Interface
/v1/api/2-52/network-interfaces
GET
Get — Pure Storage List Network Interface Neighbors
/v1/api/2-52/network-interfaces/neighbors
GET
Get — Pure Storage List Network Performance Statistics
/v1/api/2-52/network-interfaces/performance
GET
Get — Pure Storage List SFP Port Details
/v1/api/2-52/network-interfaces/port-details

MCP Tools

pure-storage-list-network-interfaces

Pure Storage List Network Interfaces

read-only idempotent
pure-storage-create-network-interface

Pure Storage Create Network Interface

pure-storage-delete-network-interface

Pure Storage Delete Network Interface

idempotent
pure-storage-modify-network-interface

Pure Storage Modify Network Interface

idempotent
pure-storage-list-network-interface

Pure Storage List Network Interface Neighbors

read-only idempotent
pure-storage-list-network-performance

Pure Storage List Network Performance Statistics

read-only idempotent
pure-storage-list-sfp-port

Pure Storage List SFP Port Details

read-only idempotent

Capability Spec

flasharray-rest-network-interfaces.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FlashArray REST API — Network Interfaces
  description: 'FlashArray REST API — Network Interfaces. 7 operations. Lead operation: Pure Storage List Network Interfaces.
    Self-contained Naftiko capability covering one Pure Storage business surface.'
  tags:
  - Pure Storage
  - Network Interfaces
  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-network-interfaces
    baseUri: ''
    description: FlashArray REST API — Network Interfaces business capability. Self-contained, no shared references.
    resources:
    - name: api-2.52-network-interfaces
      path: /api/2.52/network-interfaces
      operations:
      - name: get
        method: GET
        description: Pure Storage List Network Interfaces
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: post
        method: POST
        description: Pure Storage Create Network Interface
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: delete
        method: DELETE
        description: Pure Storage Delete Network Interface
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: patch
        method: PATCH
        description: Pure Storage Modify Network Interface
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-2.52-network-interfaces-neighbors
      path: /api/2.52/network-interfaces/neighbors
      operations:
      - name: get
        method: GET
        description: Pure Storage List Network Interface Neighbors
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-2.52-network-interfaces-performance
      path: /api/2.52/network-interfaces/performance
      operations:
      - name: get
        method: GET
        description: Pure Storage List Network Performance Statistics
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-2.52-network-interfaces-port-details
      path: /api/2.52/network-interfaces/port-details
      operations:
      - name: get
        method: GET
        description: Pure Storage List SFP Port Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: flasharray-rest-network-interfaces-rest
    port: 8080
    description: REST adapter for FlashArray REST API — Network Interfaces. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/2-52/network-interfaces
      name: api-2-52-network-interfaces
      description: REST surface for api-2.52-network-interfaces.
      operations:
      - method: GET
        name: get
        description: Pure Storage List Network Interfaces
        call: flasharray-rest-network-interfaces.get
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Pure Storage Create Network Interface
        call: flasharray-rest-network-interfaces.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: Pure Storage Delete Network Interface
        call: flasharray-rest-network-interfaces.delete
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patch
        description: Pure Storage Modify Network Interface
        call: flasharray-rest-network-interfaces.patch
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/2-52/network-interfaces/neighbors
      name: api-2-52-network-interfaces-neighbors
      description: REST surface for api-2.52-network-interfaces-neighbors.
      operations:
      - method: GET
        name: get
        description: Pure Storage List Network Interface Neighbors
        call: flasharray-rest-network-interfaces.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/2-52/network-interfaces/performance
      name: api-2-52-network-interfaces-performance
      description: REST surface for api-2.52-network-interfaces-performance.
      operations:
      - method: GET
        name: get
        description: Pure Storage List Network Performance Statistics
        call: flasharray-rest-network-interfaces.get
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/2-52/network-interfaces/port-details
      name: api-2-52-network-interfaces-port-details
      description: REST surface for api-2.52-network-interfaces-port-details.
      operations:
      - method: GET
        name: get
        description: Pure Storage List SFP Port Details
        call: flasharray-rest-network-interfaces.get
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: flasharray-rest-network-interfaces-mcp
    port: 9090
    transport: http
    description: MCP adapter for FlashArray REST API — Network Interfaces. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: pure-storage-list-network-interfaces
      description: Pure Storage List Network Interfaces
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: flasharray-rest-network-interfaces.get
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-create-network-interface
      description: Pure Storage Create Network Interface
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: flasharray-rest-network-interfaces.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-delete-network-interface
      description: Pure Storage Delete Network Interface
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: flasharray-rest-network-interfaces.delete
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-modify-network-interface
      description: Pure Storage Modify Network Interface
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: flasharray-rest-network-interfaces.patch
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-list-network-interface
      description: Pure Storage List Network Interface Neighbors
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: flasharray-rest-network-interfaces.get
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-list-network-performance
      description: Pure Storage List Network Performance Statistics
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: flasharray-rest-network-interfaces.get
      outputParameters:
      - type: object
        mapping: $.
    - name: pure-storage-list-sfp-port
      description: Pure Storage List SFP Port Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: flasharray-rest-network-interfaces.get
      outputParameters:
      - type: object
        mapping: $.