list method
Lists Connections in a parent.
Use SearchConnections to see all connections within an organization.
Request parameters:
parent - Required. Resource name of the organization or project, for
example, organizations/433245324/locations/europe or
projects/project-id/locations/asia.
Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+$.
filter - Optional. Supported field/value: state -
MISSING|AVAILABLE|ERROR The syntax is based on https://google.aip.dev/160.
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 GooglePrivacyDlpV2ListConnectionsResponse.
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<GooglePrivacyDlpV2ListConnectionsResponse> 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>>{
'filter': ?filter == null ? null : [filter],
'pageSize': ?pageSize == null ? null : ['${pageSize}'],
'pageToken': ?pageToken == null ? null : [pageToken],
'fields': ?$fields == null ? null : [$fields],
};
final url_ = 'v2/' + core.Uri.encodeFull('$parent') + '/connections';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GooglePrivacyDlpV2ListConnectionsResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>,
);
}