list method
Lists operations that match the specified filter in the request.
If the server doesn't support this method, it returns UNIMPLEMENTED
.
Request parameters:
name
- The name of the operation's parent resource.
Value must have pattern
^projects/\[^/\]+/apps/\[^/\]+/releases/\[^/\]+$
.
filter
- The standard list filter.
pageSize
- The standard list page size.
pageToken
- The standard list page token.
returnPartialSuccess
- When set to true
, operations that are reachable
are returned as normal, and those that are unreachable are returned in the
[ListOperationsResponse.unreachable] field. This can only be true
when
reading across collections e.g. when parent
is set to
"projects/example/locations/-"
. This field is not by default supported
and will result in an UNIMPLEMENTED
error if set unless explicitly
documented otherwise in service or product specific documentation.
$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 name, {
core.String? filter,
core.int? pageSize,
core.String? pageToken,
core.bool? returnPartialSuccess,
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 (returnPartialSuccess != null)
'returnPartialSuccess': ['${returnPartialSuccess}'],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$name') + '/operations';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GoogleLongrunningListOperationsResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}