get method

Future<BackupRun> get(
  1. String project,
  2. String instance,
  3. String id, {
  4. String? $fields,
})

Retrieves a resource containing information about a backup run.

Request parameters:

project - Project ID of the project that contains the instance.

instance - Cloud SQL instance ID. This does not include the project ID.

id - The ID of this backup run.

$fields - Selector specifying which fields to include in a partial response.

Completes with a BackupRun.

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<BackupRun> get(
  core.String project,
  core.String instance,
  core.String id, {
  core.String? $fields,
}) async {
  final _queryParams = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'sql/v1beta4/projects/' +
      commons.escapeVariable('$project') +
      '/instances/' +
      commons.escapeVariable('$instance') +
      '/backupRuns/' +
      commons.escapeVariable('$id');

  final _response = await _requester.request(
    _url,
    'GET',
    queryParams: _queryParams,
  );
  return BackupRun.fromJson(_response as core.Map<core.String, core.dynamic>);
}