Oracle Database · Schema

UpdateAutonomousDatabaseDetails

CloudDatabaseEnterpriseOracleREST APISQL

Properties

Name Type Description
displayName string
cpuCoreCount integer
dataStorageSizeInTBs integer
isAutoScalingEnabled boolean
adminPassword string
whitelistedIps array
freeformTags object
View JSON Schema on GitHub

JSON Schema

oracle-database-updateautonomousdatabasedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateAutonomousDatabaseDetails",
  "title": "UpdateAutonomousDatabaseDetails",
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string"
    },
    "cpuCoreCount": {
      "type": "integer"
    },
    "dataStorageSizeInTBs": {
      "type": "integer"
    },
    "isAutoScalingEnabled": {
      "type": "boolean"
    },
    "adminPassword": {
      "type": "string",
      "format": "password"
    },
    "whitelistedIps": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "freeformTags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}