list method
Lists queues.
Queues are returned in lexicographical order.
Request parameters:
parent
- Required. The location name. For example:
projects/PROJECT_ID/locations/LOCATION_ID
Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$
.
filter
- filter
can be used to specify a subset of queues. Any Queue
field can be used as a filter and several operators as supported. For
example: <=, <, >=, >, !=, =, :
. The filter syntax is the same as
described in
Stackdriver's Advanced Logs Filters.
Sample filter "state: PAUSED". Note that using filters might cause fewer
queues than the requested page_size to be returned.
pageSize
- Requested page size. The maximum page size is 9800. If
unspecified, the page size will be the maximum. Fewer queues than
requested might be returned, even if more queues exist; use the
next_page_token in the response to determine if more queues exist.
pageToken
- A token identifying the page of results to return. To
request the first page results, page_token must be empty. To request the
next page of results, page_token must be the value of next_page_token
returned from the previous call to ListQueues method. It is an error to
switch the value of the filter while iterating through pages.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a ListQueuesResponse.
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<ListQueuesResponse> list(
core.String parent, {
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_ = 'v2/' + core.Uri.encodeFull('$parent') + '/queues';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return ListQueuesResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}