Radius · Capability

Applications.Core Management APIs — Volumes

Applications.Core Management APIs — Volumes. 5 operations. Lead operation: Volumes. Self-contained Naftiko capability covering one Radius business surface.

Run with Naftiko RadiusVolumes

What You Can Do

GET
Volumeslistbyscope — List VolumeResource resources by Scope
/v1/{rootscope}/providers/applications-core/volumes
GET
Volumesget — Get a VolumeResource
/v1/{rootscope}/providers/applications-core/volumes/{volumename}
PUT
Volumescreateorupdate — Create a VolumeResource
/v1/{rootscope}/providers/applications-core/volumes/{volumename}
PATCH
Volumesupdate — Update a VolumeResource
/v1/{rootscope}/providers/applications-core/volumes/{volumename}
DELETE
Volumesdelete — Delete a VolumeResource
/v1/{rootscope}/providers/applications-core/volumes/{volumename}

MCP Tools

list-volumeresource-resources-scope

List VolumeResource resources by Scope

read-only idempotent
get-volumeresource

Get a VolumeResource

read-only idempotent
create-volumeresource

Create a VolumeResource

idempotent
update-volumeresource

Update a VolumeResource

idempotent
delete-volumeresource

Delete a VolumeResource

idempotent

Capability Spec

applications-core-volumes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Applications.Core Management APIs — Volumes
  description: 'Applications.Core Management APIs — Volumes. 5 operations. Lead operation: Volumes. Self-contained Naftiko
    capability covering one Radius business surface.'
  tags:
  - Radius
  - Volumes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RADIUS_API_KEY: RADIUS_API_KEY
capability:
  consumes:
  - type: http
    namespace: applications-core-volumes
    baseUri: https://management.azure.com
    description: Applications.Core Management APIs — Volumes business capability. Self-contained, no shared references.
    resources:
    - name: rootScope-providers-Applications.Core-volumes
      path: /{rootScope}/providers/Applications.Core/volumes
      operations:
      - name: volumeslistbyscope
        method: GET
        description: List VolumeResource resources by Scope
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: rootScope-providers-Applications.Core-volumes-volumeName
      path: /{rootScope}/providers/Applications.Core/volumes/{volumeName}
      operations:
      - name: volumesget
        method: GET
        description: Get a VolumeResource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: volumeName
          in: path
          type: string
          description: Volume name
          required: true
      - name: volumescreateorupdate
        method: PUT
        description: Create a VolumeResource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: volumeName
          in: path
          type: string
          description: Volume name
          required: true
        - name: resource
          in: body
          type: string
          description: Resource create parameters.
          required: true
      - name: volumesupdate
        method: PATCH
        description: Update a VolumeResource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: volumeName
          in: path
          type: string
          description: Volume name
          required: true
        - name: properties
          in: body
          type: string
          description: The resource properties to be updated.
          required: true
      - name: volumesdelete
        method: DELETE
        description: Delete a VolumeResource
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: volumeName
          in: path
          type: string
          description: Volume name
          required: true
  exposes:
  - type: rest
    namespace: applications-core-volumes-rest
    port: 8080
    description: REST adapter for Applications.Core Management APIs — Volumes. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/{rootscope}/providers/applications-core/volumes
      name: rootscope-providers-applications-core-volumes
      description: REST surface for rootScope-providers-Applications.Core-volumes.
      operations:
      - method: GET
        name: volumeslistbyscope
        description: List VolumeResource resources by Scope
        call: applications-core-volumes.volumeslistbyscope
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/{rootscope}/providers/applications-core/volumes/{volumename}
      name: rootscope-providers-applications-core-volumes-volumename
      description: REST surface for rootScope-providers-Applications.Core-volumes-volumeName.
      operations:
      - method: GET
        name: volumesget
        description: Get a VolumeResource
        call: applications-core-volumes.volumesget
        with:
          volumeName: rest.volumeName
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: volumescreateorupdate
        description: Create a VolumeResource
        call: applications-core-volumes.volumescreateorupdate
        with:
          volumeName: rest.volumeName
          resource: rest.resource
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: volumesupdate
        description: Update a VolumeResource
        call: applications-core-volumes.volumesupdate
        with:
          volumeName: rest.volumeName
          properties: rest.properties
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: volumesdelete
        description: Delete a VolumeResource
        call: applications-core-volumes.volumesdelete
        with:
          volumeName: rest.volumeName
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: applications-core-volumes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Applications.Core Management APIs — Volumes. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-volumeresource-resources-scope
      description: List VolumeResource resources by Scope
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: applications-core-volumes.volumeslistbyscope
      outputParameters:
      - type: object
        mapping: $.
    - name: get-volumeresource
      description: Get a VolumeResource
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: applications-core-volumes.volumesget
      with:
        volumeName: tools.volumeName
      outputParameters:
      - type: object
        mapping: $.
    - name: create-volumeresource
      description: Create a VolumeResource
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: applications-core-volumes.volumescreateorupdate
      with:
        volumeName: tools.volumeName
        resource: tools.resource
      outputParameters:
      - type: object
        mapping: $.
    - name: update-volumeresource
      description: Update a VolumeResource
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: applications-core-volumes.volumesupdate
      with:
        volumeName: tools.volumeName
        properties: tools.properties
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-volumeresource
      description: Delete a VolumeResource
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: applications-core-volumes.volumesdelete
      with:
        volumeName: tools.volumeName
      outputParameters:
      - type: object
        mapping: $.