dropDatabase method
Drops (aka deletes) a Cloud Spanner database.
Completed backups for the database will be retained according to their
expire_time
. Note: Cloud Spanner might continue to accept requests for a
few seconds after the database has been deleted.
Request parameters:
database
- Required. The database to be dropped.
Value must have pattern
^projects/\[^/\]+/instances/\[^/\]+/databases/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Empty.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<Empty> dropDatabase(
core.String database, {
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$database');
final response_ = await _requester.request(
url_,
'DELETE',
queryParams: queryParams_,
);
return Empty.fromJson(response_ as core.Map<core.String, core.dynamic>);
}