list method

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

Lists all available tools.

Request parameters:

parent - Required. Resource name of the Connection. Format: projects/{project}/locations/{location}/connections/{connection} Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+/connections/\[^/\]+$.

executionConfig_headers - headers to be used for the request. For example: headers:'{"x-integration-connectors-managed-connection-id":"conn-id","x-integration-connectors-runtime-config":"runtime-cfg"}'

pageSize - Page size.

pageToken - Page token.

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

Completes with a ListToolsResponse.

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

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

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