ManagedAgentSessionDatabase
Properties
| Property | Type | Required | Description |
database_name |
string,null |
No |
Optional Seren organization database name when `provider` is `seren_organization_database`. |
engine |
ManagedAgentSessionDatabaseEngine |
Yes |
Session database engine family. The runtime still consumes a standard connection URL. |
provider |
ManagedAgentSessionDatabaseProvider |
No |
Session database provider. Defaults to `direct_url`. |
url_secret_key |
string,null |
No |
Secret key whose value is the connection URL for the session database. |
View JSON Schema
{
"type": "object",
"required": [
"engine"
],
"properties": {
"database_name": {
"type": [
"string",
"null"
],
"description": "Optional Seren organization database name when `provider` is `seren_organization_database`."
},
"engine": {
"$ref": "#/components/schemas/ManagedAgentSessionDatabaseEngine",
"description": "Session database engine family. The runtime still consumes a standard connection URL."
},
"provider": {
"$ref": "#/components/schemas/ManagedAgentSessionDatabaseProvider",
"description": "Session database provider. Defaults to `direct_url`."
},
"url_secret_key": {
"type": [
"string",
"null"
],
"description": "Secret key whose value is the connection URL for the session database."
}
}
}