2026.04.d
about 1 month ago
Highlights
The 2026.04 release adds updates to the Databases and Sessions collections of operations.
- The List Sessions operation now supports response filtering using query string parameters.
- The Delete Database Session operation supports deleting sessions running on specific databases.
Databases
The List Databases operation (GET /databridge/v1/sql-instances/{instanceName}/Databases ) returns a list of databases on the specified managed server instance.
Sessions
List Sessions
The List Sessions operation (GET /databridge//v1/sql-instances/{instanceName}/sessions ) returns a list of server sessions on the specified SQL Server instance.
This operation supports filtering by response property values:
| Property | Type | Comparison | List |
|---|---|---|---|
blockingSessionId | Number | =, !=, >, <, >=, <= | IN |
databaseName | String | =, !=, >, <, >=, <=, LIKE | IN |
hostName | String | =, !=, >, <, >=, <=, LIKE | IN |
loginName | String | =, !=, >, <, >=, <=, LIKE | IN |
programName | String | =, !=, >, <, >=, <=, LIKE | IN |
sessionId | Number | =, !=, >, <, >=, <= | IN |
status | String | =, != | IN |
Delete Database Session
The Delete Database Session operation (DELETE /databridge//v1/sql-instances/{instanceName}/databases/{databaseName}/sessions) deletes the specified database session.
This new operation deletes the specified database session.
