list method

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

Lists discovery configurations.

Request parameters:

parent - Required. Parent resource name. The format of this value is as follows: projects/PROJECT_ID/locations/LOCATION_ID The following example parent string specifies a parent project with the identifier example-project, and specifies the europe-west3 location for processing data: parent=projects/example-project/locations/europe-west3 Value must have pattern ^organizations/\[^/\]+/locations/\[^/\]+$.

orderBy - Comma separated list of config fields to order by, followed by asc or desc postfix. This list is case insensitive. The default sorting order is ascending. Redundant space characters are insignificant. Example: name asc,update_time, create_time desc Supported fields are: - last_run_time: corresponds to the last time the DiscoveryConfig ran. - name: corresponds to the DiscoveryConfig's name. - status: corresponds to DiscoveryConfig's status.

pageSize - Size of the page. This value can be limited by a server.

pageToken - Page token to continue retrieval. Comes from the previous call to ListDiscoveryConfigs. order_by field must not change for subsequent calls.

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

Completes with a GooglePrivacyDlpV2ListDiscoveryConfigsResponse.

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

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

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