UpdateAutonomousDatabaseDetails

UpdateAutonomousDatabaseDetails schema from oracle-cloud-database-openapi.yaml

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

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

JSON Schema

database-update-autonomous-database-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/oracle-cloud/refs/heads/main/json-schema/database-update-autonomous-database-details-schema.json",
  "title": "UpdateAutonomousDatabaseDetails",
  "description": "UpdateAutonomousDatabaseDetails schema from oracle-cloud-database-openapi.yaml",
  "type": "object",
  "properties": {
    "displayName": {
      "type": "string",
      "example": "my-resource"
    },
    "cpuCoreCount": {
      "type": "integer",
      "example": 1
    },
    "dataStorageSizeInTBs": {
      "type": "integer",
      "example": 1
    },
    "isAutoScalingEnabled": {
      "type": "boolean",
      "example": true
    },
    "adminPassword": {
      "type": "string",
      "format": "password",
      "example": "********"
    }
  }
}