list method

Future<SasPortalListNodesResponse> list(
  1. String parent, {
  2. String? filter,
  3. int? pageSize,
  4. String? pageToken,
  5. String? $fields,
})

Lists nodes.

Request parameters:

parent - Required. The parent resource name, for example, "nodes/1". Value must have pattern ^customers/\[^/\]+/nodes/\[^/\]+$.

filter - The filter expression. The filter should have the following format: "DIRECT_CHILDREN" or format: "direct_children". The filter is case insensitive. If empty, then no nodes are filtered.

pageSize - The maximum number of nodes to return in the response.

pageToken - A pagination token returned from a previous call to ListNodes that indicates where this listing should continue from.

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

Completes with a SasPortalListNodesResponse.

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<SasPortalListNodesResponse> 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 = 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/nodes';

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