list method
Lists operations that match the specified filter in the request.
Request parameters:
bucket
- Name of the bucket in which to look for operations.
filter
- A filter to narrow down results to a preferred subset. The
filtering language is documented in more detail in
[AIP-160](https://google.aip.dev/160).
pageSize
- Maximum number of items to return in a single page of
responses. Fewer total results may be returned than requested. The service
uses this parameter or 100 items, whichever is smaller.
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 GoogleLongrunningListOperationsResponse.
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<GoogleLongrunningListOperationsResponse> list(
core.String bucket, {
core.String? filter,
core.int? pageSize,
core.String? pageToken,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (filter != null) 'filter': [filter],
if (pageSize != null) 'pageSize': ['${pageSize}'],
if (pageToken != null) 'pageToken': [pageToken],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'b/' + commons.escapeVariable('$bucket') + '/operations';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GoogleLongrunningListOperationsResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}