Oracle Database · Schema

AutonomousDatabase

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
id string The OCID of the Autonomous Database
compartmentId string
displayName string
dbName string
dbVersion string
dbWorkload string
cpuCoreCount integer
dataStorageSizeInTBs integer
dataStorageSizeInGBs integer
isAutoScalingEnabled boolean
isDedicated boolean
isFreeTier boolean
lifecycleState string
connectionStrings object
connectionUrls object
timeCreated string
licenseModel string
whitelistedIps array
freeformTags object
definedTags object
View JSON Schema on GitHub

JSON Schema

oracle-database-autonomousdatabase-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutonomousDatabase",
  "title": "AutonomousDatabase",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The OCID of the Autonomous Database"
    },
    "compartmentId": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "dbName": {
      "type": "string"
    },
    "dbVersion": {
      "type": "string"
    },
    "dbWorkload": {
      "type": "string",
      "enum": [
        "OLTP",
        "DW",
        "AJD",
        "APEX"
      ]
    },
    "cpuCoreCount": {
      "type": "integer"
    },
    "dataStorageSizeInTBs": {
      "type": "integer"
    },
    "dataStorageSizeInGBs": {
      "type": "integer"
    },
    "isAutoScalingEnabled": {
      "type": "boolean"
    },
    "isDedicated": {
      "type": "boolean"
    },
    "isFreeTier": {
      "type": "boolean"
    },
    "lifecycleState": {
      "type": "string",
      "enum": [
        "PROVISIONING",
        "AVAILABLE",
        "STOPPING",
        "STOPPED",
        "STARTING",
        "TERMINATING",
        "TERMINATED",
        "UNAVAILABLE",
        "RESTORE_IN_PROGRESS",
        "BACKUP_IN_PROGRESS",
        "SCALE_IN_PROGRESS",
        "UPDATING",
        "MAINTENANCE_IN_PROGRESS"
      ]
    },
    "connectionStrings": {
      "type": "object",
      "properties": {
        "high": {
          "type": "string"
        },
        "medium": {
          "type": "string"
        },
        "low": {
          "type": "string"
        }
      }
    },
    "connectionUrls": {
      "type": "object",
      "properties": {
        "sqlDevWebUrl": {
          "type": "string",
          "format": "uri"
        },
        "apexUrl": {
          "type": "string",
          "format": "uri"
        },
        "machineLearningUserManagementUrl": {
          "type": "string",
          "format": "uri"
        },
        "graphStudioUrl": {
          "type": "string",
          "format": "uri"
        }
      }
    },
    "timeCreated": {
      "type": "string",
      "format": "date-time"
    },
    "licenseModel": {
      "type": "string",
      "enum": [
        "LICENSE_INCLUDED",
        "BRING_YOUR_OWN_LICENSE"
      ]
    },
    "whitelistedIps": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "freeformTags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "definedTags": {
      "type": "object",
      "additionalProperties": {
        "type": "object"
      }
    }
  }
}