* List the available databases * * @param options - Optional settings for the command
(options?: ListDatabasesOptions)
| 156 | * @param options - Optional settings for the command |
| 157 | */ |
| 158 | async listDatabases(options?: ListDatabasesOptions): Promise<ListDatabasesResult> { |
| 159 | return await executeOperation( |
| 160 | this.s.db.client, |
| 161 | new ListDatabasesOperation(this.s.db, { timeoutMS: this.s.db.timeoutMS, ...options }) |
| 162 | ); |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Get ReplicaSet status |
no test coverage detected