Class ProjectsResource.LocationsResource.DatasetsResource.FhirStoresResource.FhirResource.ResourceIncomingReferencesRequest
Lists all the resources that directly refer to the given target FHIR resource. Can also
support the case when the target resource doesn't exist, for example, if the target has been
deleted. On success, the response body contains a Bundle with type searchset, where each
entry in the Bundle contains the full content of the resource. If the operation fails, an
OperationOutcome is returned describing the failure. If the request cannot be mapped to a
valid API method on a FHIR store, a generic Google Cloud error might be returned instead.
Inheritance
Inherited Members
Namespace: Google.Apis.CloudHealthcare.v1beta1
Assembly: Google.Apis.CloudHealthcare.v1beta1.dll
Syntax
public class ProjectsResource.LocationsResource.DatasetsResource.FhirStoresResource.FhirResource.ResourceIncomingReferencesRequest : CloudHealthcareBaseServiceRequest<HttpBody>, IClientServiceRequest<HttpBody>, IClientServiceRequest
Constructors
ResourceIncomingReferencesRequest(IClientService, string)
Constructs a new ResourceIncomingReferences request.
Declaration
public ResourceIncomingReferencesRequest(IClientService service, string parent)
Parameters
| Type | Name | Description |
|---|---|---|
| IClientService | service | |
| string | parent |
Properties
Count
Maximum number of resources in a page. If not specified, 100 is used. May not be larger than 1000.
Declaration
[RequestParameter("_count", RequestParameterType.Query)]
public virtual int? Count { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
PageToken
Used to retrieve the next page of results when using pagination. Set _page_token to
the value of _page_token set in next page links' url. Next page are returned in the
response bundle's links field, where link.relation is "next". Omit _page_token if no
previous request has been made.
Declaration
[RequestParameter("_page_token", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Parent
Required. The name of the FHIR store that holds the target resource.
Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
| Type | Description |
|---|---|
| string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
| Type | Description |
|---|---|
| string |
Overrides
Summary
Used to simplify the representation of the returned resources. _summary=text returns
only the text, id, and meta top-level fields. _summary=data removes the text
field and returns all other fields. _summary=false returns all parts of the
resource(s). Either not providing this parameter or providing an empty value to this
parameter also returns all parts of the resource(s).
Declaration
[RequestParameter("_summary", RequestParameterType.Query)]
public virtual string Summary { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Target
Required. The target whose incoming references are requested. This param is required and must not be empty. It uses the format "ResourceType/ResourceID", for example, target=ResourceType/ResourceID.
Declaration
[RequestParameter("target", RequestParameterType.Query)]
public virtual string Target { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Type
String of comma-delimited FHIR resource types. If provided, only resources of the specified resource type(s) are returned. If not provided or an empty value is provided, no filter on the returned resource type(s) is applied.
Declaration
[RequestParameter("_type", RequestParameterType.Query)]
public virtual string Type { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
InitParameters()
Initializes ResourceIncomingReferences parameter list.
Declaration
protected override void InitParameters()