search method

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

Searches for Connections in a parent.

Request parameters:

parent - Required. Parent name, typically an organization, without location. For example: organizations/12345678. Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.

filter - Optional. Supported field/value: - state - MISSING|AVAILABLE|ERROR

pageSize - Optional. Number of results per page, max 1000.

pageToken - Optional. Page token from a previous page to return the next set of results. If set, all other request fields must match the original request.

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

Completes with a GooglePrivacyDlpV2SearchConnectionsResponse.

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<GooglePrivacyDlpV2SearchConnectionsResponse> search(
  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') + '/connections:search';

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