Matcher

Document 的匹配器。目前支持按确切 URI 进行匹配。

JSON 表示法
{

  // Union field matcher can be only one of the following:
  "urisMatcher": {
    object (UrisMatcher)
  },
  "fhirMatcher": {
    object (FhirMatcher)
  }
  // End of list of possible types for union field matcher.
}
字段
联合字段 matcherDocument 的匹配器。matcher 只能是下列其中一项:
urisMatcher

object (UrisMatcher)

按确切 URI 进行匹配的匹配器。

fhirMatcher

object (FhirMatcher)

按 FHIR 资源名称进行匹配。

UrisMatcher

按确切 URI 匹配 Document 的匹配器。

JSON 表示法
{
  "uris": [
    string
  ]
}
字段
uris[]

string

要匹配的确切 URI。

FhirMatcher

按 FHIR 资源名称匹配 Document 的匹配器。

JSON 表示法
{
  "fhirResources": [
    string
  ]
}
字段
fhirResources[]

string

必需。要匹配的 FHIR 资源。格式:projects/{project}/locations/{location}/datasets/{dataset}/fhirStores/{fhirStore}/fhir/{resourceType}/{fhir_resource_id}