listActions method

Future<ListActionsResponse> listActions(
  1. String name, {
  2. String? filter,
  3. int? pageSize,
  4. String? pageToken,
  5. String? view,
  6. String? $fields,
})

List actions.

Request parameters:

name - Required. Resource name format. projects/{project}/locations/{location}/connections/{connection}/connectionSchemaMetadata Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+/connections/\[^/\]+/connectionSchemaMetadata$.

filter - Required. Filter Wildcards are not supported in the filter currently.

pageSize - Page size. If unspecified, at most 50 actions will be returned.

pageToken - Page token.

view - Specifies which fields are returned in response. Defaults to BASIC view. Possible string values are:

  • "VIEW_UNSPECIFIED"
  • "BASIC"

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

Completes with a ListActionsResponse.

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<ListActionsResponse> listActions(
  core.String name, {
  core.String? filter,
  core.int? pageSize,
  core.String? pageToken,
  core.String? view,
  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 (view != null) 'view': [view],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v1/' + core.Uri.encodeFull('$name') + ':listActions';

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