Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for enableHistoryModifications in FHIR Stores #9823

Merged
merged 11 commits into from
Jan 17, 2024
6 changes: 6 additions & 0 deletions mmv1/products/healthcare/FhirStore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,12 @@ properties:
** This property can be changed manually in the Google Cloud Healthcare admin console without recreating the FHIR store **
required: false
immutable: true
- !ruby/object:Api::Type::Boolean
name: 'enableHistoryModifications'
description: |
Whether to allow the ExecuteBundle API to accept history bundles, and directly insert and overwrite historical
resource versions into the FHIR store. If set to false, using history bundles fails with an error.
required: false
- !ruby/object:Api::Type::KeyValueLabels
name: 'labels'
required: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ resource "google_healthcare_fhir_store" "default" {
disable_referential_integrity = false
disable_resource_versioning = false
enable_history_import = false
enable_history_modifications = false
FaithfulZhening marked this conversation as resolved.
Show resolved Hide resolved
default_search_handling_strict = false

notification_config {
Expand Down