Oracle · Arazzo Workflow

Oracle OCI Rename Compute Instance

Version 1.0.0

Read an instance to capture its ETag, then update its display name with an optimistic concurrency guard.

1 workflow 1 source API 1 provider
View Spec View on GitHub CloudDatabaseEnterpriseInfrastructureSoftware-as-a-ServiceFortune 100ArazzoWorkflows

Provider

oracle

Workflows

rename-instance
Update a compute instance display name with an if-match guard.
Reads the instance to obtain its ETag, then updates the display name guarded by that ETag for optimistic concurrency control.
2 steps inputs: authToken, instanceId, newDisplayName outputs: displayName, instanceId
1
readInstance
Read the instance to confirm it exists and capture its current ETag for optimistic concurrency control on the update.
2
updateInstance
Update the instance to apply the new display name, guarded by the ETag captured when reading the instance.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle OCI Rename Compute Instance
  summary: Read an instance to capture its ETag, then update its display name with an optimistic concurrency guard.
  description: >-
    Changes the user-friendly display name of a compute instance safely. The
    workflow reads the instance to capture its current ETag, then issues an
    update that sets the new display name while enforcing the ETag through the
    if-match header so the change only applies if the instance has not been
    modified concurrently. Every step spells out its request inline so the flow
    can be read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-600.50
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-600.50
      capability_name: IT Infrastructure Management
      spec: oracle-compute-api-openapi.yml
      confidence: 0.9
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: computeApi
  url: ../openapi/oracle-compute-api-openapi.yml
  type: openapi
workflows:
- workflowId: rename-instance
  summary: Update a compute instance display name with an if-match guard.
  description: >-
    Reads the instance to obtain its ETag, then updates the display name guarded
    by that ETag for optimistic concurrency control.
  inputs:
    type: object
    required:
    - instanceId
    - newDisplayName
    properties:
      instanceId:
        type: string
        description: The OCID of the instance to rename.
      newDisplayName:
        type: string
        description: The new display name to apply to the instance.
      authToken:
        type: string
        description: OCI request-signing bearer credential for the Authorization header.
  steps:
  - stepId: readInstance
    description: >-
      Read the instance to confirm it exists and capture its current ETag for
      optimistic concurrency control on the update.
    operationId: GetInstance
    parameters:
    - name: instanceId
      in: path
      value: $inputs.instanceId
    - name: Authorization
      in: header
      value: $inputs.authToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      etag: $response.headers.etag
      currentName: $response.body#/displayName
  - stepId: updateInstance
    description: >-
      Update the instance to apply the new display name, guarded by the ETag
      captured when reading the instance.
    operationId: UpdateInstance
    parameters:
    - name: instanceId
      in: path
      value: $inputs.instanceId
    - name: if-match
      in: header
      value: $steps.readInstance.outputs.etag
    - name: Authorization
      in: header
      value: $inputs.authToken
    requestBody:
      contentType: application/json
      payload:
        displayName: $inputs.newDisplayName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      instanceId: $response.body#/id
      displayName: $response.body#/displayName
  outputs:
    instanceId: $steps.updateInstance.outputs.instanceId
    displayName: $steps.updateInstance.outputs.displayName

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/oracle-rename-instance-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.