list method

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

Lists profiles which have been collected so far and for which the caller has permission to view.

Request parameters:

parent - Required. The parent, which owns this collection of profiles. Format: projects/{user_project_id} Value must have pattern ^projects/\[^/\]+$.

pageSize - The maximum number of items to return. Default page_size is 1000. Max limit is 1000.

pageToken - The token to continue pagination and get profiles from a particular page. When paginating, all other parameters provided to ListProfiles must match the call that provided the page token.

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

Completes with a ListProfilesResponse.

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<ListProfilesResponse> list(
  core.String parent, {
  core.int? pageSize,
  core.String? pageToken,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if (pageSize != null) 'pageSize': ['${pageSize}'],
    if (pageToken != null) 'pageToken': [pageToken],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v2/' + core.Uri.encodeFull('$parent') + '/profiles';

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return ListProfilesResponse.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}