CreateAutonomousDatabaseDetails

Details for creating an Autonomous Database.

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

Name Type Description
compartmentId string
dbName string
displayName string
cpuCoreCount integer
dataStorageSizeInTBs integer
adminPassword string
dbWorkload string
isFreeTier boolean
isAutoScalingEnabled boolean
View JSON Schema on GitHub

JSON Schema

oracle-cloud-createautonomousdatabasedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateAutonomousDatabaseDetails",
  "title": "CreateAutonomousDatabaseDetails",
  "type": "object",
  "description": "Details for creating an Autonomous Database.",
  "required": [
    "compartmentId",
    "dbName",
    "cpuCoreCount",
    "dataStorageSizeInTBs",
    "adminPassword"
  ],
  "properties": {
    "compartmentId": {
      "type": "string",
      "example": "ocid1.resource.oc1.iad.abcdefg123456"
    },
    "dbName": {
      "type": "string",
      "example": "MYADB"
    },
    "displayName": {
      "type": "string",
      "example": "my-adb"
    },
    "cpuCoreCount": {
      "type": "integer",
      "example": 2
    },
    "dataStorageSizeInTBs": {
      "type": "integer",
      "example": 1
    },
    "adminPassword": {
      "type": "string",
      "format": "password",
      "example": "********"
    },
    "dbWorkload": {
      "type": "string",
      "enum": [
        "OLTP",
        "DW",
        "AJD",
        "APEX"
      ],
      "example": "OLTP"
    },
    "isFreeTier": {
      "type": "boolean",
      "default": false,
      "example": false
    },
    "isAutoScalingEnabled": {
      "type": "boolean",
      "default": false,
      "example": false
    }
  }
}