CloudAlly · Capability

CloudAlly API — Restore

CloudAlly API — Restore. 2 operations. Lead operation: Create a restore request. Self-contained Naftiko capability covering one Cloudally business surface.

Run with Naftiko CloudallyRestore

What You Can Do

POST
Createrestorerequest — Create a restore request
/v1/v1/restore
GET
Getrestorestatus — Get restore job status
/v1/v1/restore/{jobid}

MCP Tools

create-restore-request

Create a restore request

get-restore-job-status

Get restore job status

read-only idempotent

Capability Spec

cloudally-restore.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: CloudAlly API — Restore
  description: 'CloudAlly API — Restore. 2 operations. Lead operation: Create a restore request. Self-contained Naftiko capability
    covering one Cloudally business surface.'
  tags:
  - Cloudally
  - Restore
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CLOUDALLY_API_KEY: CLOUDALLY_API_KEY
capability:
  consumes:
  - type: http
    namespace: cloudally-restore
    baseUri: https://api.cloudally.com
    description: CloudAlly API — Restore business capability. Self-contained, no shared references.
    resources:
    - name: v1-restore
      path: /v1/restore
      operations:
      - name: createrestorerequest
        method: POST
        description: Create a restore request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-restore-jobId
      path: /v1/restore/{jobId}
      operations:
      - name: getrestorestatus
        method: GET
        description: Get restore job status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.CLOUDALLY_API_KEY}}'
  exposes:
  - type: rest
    namespace: cloudally-restore-rest
    port: 8080
    description: REST adapter for CloudAlly API — Restore. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v1/restore
      name: v1-restore
      description: REST surface for v1-restore.
      operations:
      - method: POST
        name: createrestorerequest
        description: Create a restore request
        call: cloudally-restore.createrestorerequest
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/restore/{jobid}
      name: v1-restore-jobid
      description: REST surface for v1-restore-jobId.
      operations:
      - method: GET
        name: getrestorestatus
        description: Get restore job status
        call: cloudally-restore.getrestorestatus
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cloudally-restore-mcp
    port: 9090
    transport: http
    description: MCP adapter for CloudAlly API — Restore. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: create-restore-request
      description: Create a restore request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cloudally-restore.createrestorerequest
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-restore-job-status
      description: Get restore job status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cloudally-restore.getrestorestatus
      outputParameters:
      - type: object
        mapping: $.