Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| containerDatabaseId | string | |
| pdbName | string | |
| compartmentId | string | |
| lifecycleState | string | |
| openMode | string | |
| timeCreated | string | |
| connectionStrings | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PluggableDatabase",
"title": "PluggableDatabase",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"containerDatabaseId": {
"type": "string"
},
"pdbName": {
"type": "string"
},
"compartmentId": {
"type": "string"
},
"lifecycleState": {
"type": "string",
"enum": [
"PROVISIONING",
"AVAILABLE",
"TERMINATING",
"TERMINATED",
"UPDATING",
"FAILED"
]
},
"openMode": {
"type": "string",
"enum": [
"READ_ONLY",
"READ_WRITE",
"MOUNTED",
"MIGRATE"
]
},
"timeCreated": {
"type": "string",
"format": "date-time"
},
"connectionStrings": {
"type": "object",
"properties": {
"pdbDefault": {
"type": "string"
},
"pdbIpDefault": {
"type": "string"
}
}
}
}
}