Radius · Capability

Universal Control Plane Resource Management APIs — AwsPlanes

Universal Control Plane Resource Management APIs — AwsPlanes. 5 operations. Lead operation: AwsPlanes. Self-contained Naftiko capability covering one Radius business surface.

Run with Naftiko RadiusAwsPlanes

What You Can Do

GET
Awsplaneslist — List AWS planes
/v1/planes/aws
GET
Awsplanesget — Get a plane by name
/v1/planes/aws/{planename}
PUT
Awsplanescreateorupdate — Create or update a plane
/v1/planes/aws/{planename}
PATCH
Awsplanesupdate — Update a plane
/v1/planes/aws/{planename}
DELETE
Awsplanesdelete — Delete a plane
/v1/planes/aws/{planename}

MCP Tools

list-aws-planes

List AWS planes

read-only idempotent
get-plane-name

Get a plane by name

read-only idempotent
create-update-plane

Create or update a plane

idempotent
update-plane

Update a plane

idempotent
delete-plane

Delete a plane

idempotent

Capability Spec

ucp-awsplanes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Universal Control Plane Resource Management APIs — AwsPlanes
  description: 'Universal Control Plane Resource Management APIs — AwsPlanes. 5 operations. Lead operation: AwsPlanes. Self-contained
    Naftiko capability covering one Radius business surface.'
  tags:
  - Radius
  - AwsPlanes
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RADIUS_API_KEY: RADIUS_API_KEY
capability:
  consumes:
  - type: http
    namespace: ucp-awsplanes
    baseUri: https://management.azure.com
    description: Universal Control Plane Resource Management APIs — AwsPlanes business capability. Self-contained, no shared
      references.
    resources:
    - name: planes-aws
      path: /planes/aws
      operations:
      - name: awsplaneslist
        method: GET
        description: List AWS planes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: planes-aws-planeName
      path: /planes/aws/{planeName}
      operations:
      - name: awsplanesget
        method: GET
        description: Get a plane by name
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: planeName
          in: path
          type: string
          description: The plane name.
          required: true
      - name: awsplanescreateorupdate
        method: PUT
        description: Create or update a plane
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: planeName
          in: path
          type: string
          description: The plane name.
          required: true
        - name: resource
          in: body
          type: string
          description: Resource create parameters.
          required: true
      - name: awsplanesupdate
        method: PATCH
        description: Update a plane
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: planeName
          in: path
          type: string
          description: The plane name.
          required: true
        - name: properties
          in: body
          type: string
          description: The resource properties to be updated.
          required: true
      - name: awsplanesdelete
        method: DELETE
        description: Delete a plane
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: planeName
          in: path
          type: string
          description: The plane name.
          required: true
  exposes:
  - type: rest
    namespace: ucp-awsplanes-rest
    port: 8080
    description: REST adapter for Universal Control Plane Resource Management APIs — AwsPlanes. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/planes/aws
      name: planes-aws
      description: REST surface for planes-aws.
      operations:
      - method: GET
        name: awsplaneslist
        description: List AWS planes
        call: ucp-awsplanes.awsplaneslist
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/planes/aws/{planename}
      name: planes-aws-planename
      description: REST surface for planes-aws-planeName.
      operations:
      - method: GET
        name: awsplanesget
        description: Get a plane by name
        call: ucp-awsplanes.awsplanesget
        with:
          planeName: rest.planeName
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: awsplanescreateorupdate
        description: Create or update a plane
        call: ucp-awsplanes.awsplanescreateorupdate
        with:
          planeName: rest.planeName
          resource: rest.resource
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: awsplanesupdate
        description: Update a plane
        call: ucp-awsplanes.awsplanesupdate
        with:
          planeName: rest.planeName
          properties: rest.properties
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: awsplanesdelete
        description: Delete a plane
        call: ucp-awsplanes.awsplanesdelete
        with:
          planeName: rest.planeName
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ucp-awsplanes-mcp
    port: 9090
    transport: http
    description: MCP adapter for Universal Control Plane Resource Management APIs — AwsPlanes. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-aws-planes
      description: List AWS planes
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ucp-awsplanes.awsplaneslist
      outputParameters:
      - type: object
        mapping: $.
    - name: get-plane-name
      description: Get a plane by name
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ucp-awsplanes.awsplanesget
      with:
        planeName: tools.planeName
      outputParameters:
      - type: object
        mapping: $.
    - name: create-update-plane
      description: Create or update a plane
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: ucp-awsplanes.awsplanescreateorupdate
      with:
        planeName: tools.planeName
        resource: tools.resource
      outputParameters:
      - type: object
        mapping: $.
    - name: update-plane
      description: Update a plane
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: ucp-awsplanes.awsplanesupdate
      with:
        planeName: tools.planeName
        properties: tools.properties
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-plane
      description: Delete a plane
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: ucp-awsplanes.awsplanesdelete
      with:
        planeName: tools.planeName
      outputParameters:
      - type: object
        mapping: $.