Properties
| Name | Type | Description |
|---|---|---|
| displayName | string | |
| cpuCoreCount | integer | |
| dataStorageSizeInTBs | integer | |
| isAutoScalingEnabled | boolean | |
| adminPassword | string | |
| whitelistedIps | array | |
| freeformTags | object |
JSON Schema
{
"$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"
}
}
}
}