list method
Lists Connections in a parent.
Request parameters:
parent
- Required. Parent name, for example:
projects/project-id/locations/global
.
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 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>>{
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';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GooglePrivacyDlpV2ListConnectionsResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}