get method

Future<Action> get(
  1. String name, {
  2. String? executionConfig_headers,
  3. String? view,
  4. String? $fields,
})

Gets the schema of the given action.

Request parameters:

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

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"}'

view - Specified view of the action schema. Possible string values are:

  • "ACTION_SCHEMA_VIEW_UNSPECIFIED" : VIEW_UNSPECIFIED. The unset value. Defaults to BASIC View.
  • "ACTION_SCHEMA_VIEW_BASIC" : Return basic action schema.
  • "ACTION_SCHEMA_VIEW_ENRICHED" : Return enriched action schema.

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

Completes with a Action.

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<Action> get(
  core.String name, {
  core.String? executionConfig_headers,
  core.String? view,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    'executionConfig.headers': ?executionConfig_headers == null
        ? null
        : [executionConfig_headers],
    'view': ?view == null ? null : [view],
    'fields': ?$fields == null ? null : [$fields],
  };

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

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