get method

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

Gets a single entity row matching the entity type and entity id specified in the request.

Request parameters:

name - Required. Resource name of the Entity Type. Format: projects/{project}/locations/{location}/connections/{connection}/entityTypes/{type}/entities/{id} Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+/connections/\[^/\]+/entityTypes/\[^/\]+/entities/\[^/\]+$.

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

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

Completes with a Entity.

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

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

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