read method
Gets the contents of a FHIR resource.
Implements the FHIR standard read interaction
(DSTU2,
STU3,
R4,
R5). Also supports the FHIR
standard conditional read interaction
(DSTU2,
STU3,
R4,
R5) specified by supplying an
If-Modified-Since
header with a date/time value or an If-None-Match
header with an ETag value. On success, the response body contains a
JSON-encoded representation of the resource. Errors generated by the FHIR
store contain a JSON-encoded OperationOutcome
resource describing the
reason for the error. If the request cannot be mapped to a valid API
method on a FHIR store, a generic GCP error might be returned instead. For
samples that show how to call read
, see
Getting a FHIR resource.
Request parameters:
name
- Required. The name of the resource to retrieve.
Value must have pattern
^projects/\[^/\]+/locations/\[^/\]+/datasets/\[^/\]+/fhirStores/\[^/\]+/fhir/\[^/\]+/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a HttpBody.
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<HttpBody> read(core.String name, {core.String? $fields}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$name');
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return HttpBody.fromJson(response_ as core.Map<core.String, core.dynamic>);
}