Oracle Cloud Infrastructure · Arazzo Workflow

Oracle Cloud Provision Autonomous Database

Version 1.0.0

Create an Autonomous Database and poll until it is AVAILABLE with connection URLs.

1 workflow 1 source API 1 provider
View Spec View on GitHub Cloud ComputingEnterprise CloudInfrastructure-as-a-ServiceOraclePlatform-as-a-ServiceComputeObject StorageIdentity and Access ManagementDatabaseKubernetesServerlessMonitoringEvent-DrivenArazzoWorkflows

Provider

oracle-cloud

Workflows

provision-autonomous-database
Create an Autonomous Database and wait for it to be AVAILABLE.
Creates an Autonomous Database and polls getAutonomousDatabase until the lifecycle state is AVAILABLE, surfacing the connection URLs.
2 steps inputs: adminPassword, compartmentId, cpuCoreCount, dataStorageSizeInTBs, dbName, dbWorkload, displayName, isAutoScalingEnabled outputs: connectionUrls, databaseId, lifecycleState
1
createDatabase
Create a new Autonomous Database in the requested compartment.
2
pollDatabase
Poll the database until it reports the AVAILABLE lifecycle state and the connection URLs are populated.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oracle Cloud Provision Autonomous Database
  summary: Create an Autonomous Database and poll until it is AVAILABLE with connection URLs.
  description: >-
    Provisions an Oracle Autonomous Database and waits for it to become usable.
    The workflow creates the database in the requested compartment, then polls
    the database until its lifecycle state reaches AVAILABLE so the connection
    URLs are populated. Every step spells out its request inline so the
    provisioning flow can be read and executed without opening the underlying
    OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: autonomousDatabasesApi
  url: ../openapi/oracle-cloud-autonomous-databases-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-autonomous-database
  summary: Create an Autonomous Database and wait for it to be AVAILABLE.
  description: >-
    Creates an Autonomous Database and polls getAutonomousDatabase until the
    lifecycle state is AVAILABLE, surfacing the connection URLs.
  inputs:
    type: object
    required:
    - compartmentId
    - dbName
    - cpuCoreCount
    - dataStorageSizeInTBs
    - adminPassword
    properties:
      compartmentId:
        type: string
        description: The OCID of the compartment to create the database in.
      dbName:
        type: string
        description: The database name (e.g. MYADB).
      displayName:
        type: string
        description: A user-friendly name for the database.
      cpuCoreCount:
        type: integer
        description: The number of CPU cores to allocate.
      dataStorageSizeInTBs:
        type: integer
        description: The data storage size in terabytes.
      adminPassword:
        type: string
        description: The ADMIN user password.
      dbWorkload:
        type: string
        description: The workload type (OLTP, DW, AJD, or APEX).
      isAutoScalingEnabled:
        type: boolean
        description: Whether compute auto scaling is enabled.
  steps:
  - stepId: createDatabase
    description: Create a new Autonomous Database in the requested compartment.
    operationId: createAutonomousDatabase
    requestBody:
      contentType: application/json
      payload:
        compartmentId: $inputs.compartmentId
        dbName: $inputs.dbName
        displayName: $inputs.displayName
        cpuCoreCount: $inputs.cpuCoreCount
        dataStorageSizeInTBs: $inputs.dataStorageSizeInTBs
        adminPassword: $inputs.adminPassword
        dbWorkload: $inputs.dbWorkload
        isAutoScalingEnabled: $inputs.isAutoScalingEnabled
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      databaseId: $response.body#/id
      createState: $response.body#/lifecycleState
  - stepId: pollDatabase
    description: >-
      Poll the database until it reports the AVAILABLE lifecycle state and the
      connection URLs are populated.
    operationId: getAutonomousDatabase
    parameters:
    - name: autonomousDatabaseId
      in: path
      value: $steps.createDatabase.outputs.databaseId
    successCriteria:
    - condition: $statusCode == 200
    - context: $response.body
      condition: $.lifecycleState == "AVAILABLE"
      type: jsonpath
    outputs:
      lifecycleState: $response.body#/lifecycleState
      connectionUrls: $response.body#/connectionUrls
  outputs:
    databaseId: $steps.createDatabase.outputs.databaseId
    lifecycleState: $steps.pollDatabase.outputs.lifecycleState
    connectionUrls: $steps.pollDatabase.outputs.connectionUrls

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-cloud-provision-autonomous-database-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.