list method

Future<OperationsListResponse> list(
  1. String project, {
  2. String? instance,
  3. int? maxResults,
  4. String? pageToken,
  5. String? $fields,
})

Lists all instance operations that have been performed on the given Cloud SQL instance in the reverse chronological order of the start time.

Request parameters:

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

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

maxResults - Maximum number of operations per response.

pageToken - A previously-returned page token representing part of the larger set of results to view.

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

Completes with a OperationsListResponse.

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

  final _url = 'sql/v1beta4/projects/' +
      commons.escapeVariable('$project') +
      '/operations';

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