如何通过Google Healthcare API设置defaultSearchHandlingStrict



我可以用JS api获取fhirStore对象,但我没有看到任何关于如何更新fhirStore以使用defaultSearchHandlingStrict=true的好例子。感谢

云医疗API文档提供了如何更新FHIR商店配置的指南,链接。可以用与FHIR存储配置的其他属性相同的方式来更新严格的处理行为。如果你使用JS,这可能看起来像

const updateStrictHandling = async () => {
// TODO(developer): uncomment these lines before running the sample
// const cloudRegion = 'us-central1';
// const projectId = 'adjective-noun-123';
// const datasetId = 'my-dataset';
// const fhirStoreId = 'my-fhir-store';
const name = `projects/${projectId}/locations/${cloudRegion}/datasets/${datasetId}/fhirStores/${fhirStoreId}`;
const request = {
name,
updateMask: 'defaultSearchHandlingStrict',
resource: {
defaultSearchHandlingStrict: true,
},
};
return healthcare.projects.locations.datasets.fhirStores.patch(request);
};
await updateStrictHandling();

(示例改编自链接页面(

相关内容

  • 没有找到相关文章

最新更新