Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -280543,6 +280543,7 @@
"/healthcare:v1beta1/ValidationConfig/disableProfileValidation": disable_profile_validation
"/healthcare:v1beta1/ValidationConfig/disableReferenceTypeValidation": disable_reference_type_validation
"/healthcare:v1beta1/ValidationConfig/disableRequiredFieldValidation": disable_required_field_validation
"/healthcare:v1beta1/ValidationConfig/enableFhirpathProfileValidation": enable_fhirpath_profile_validation
"/healthcare:v1beta1/ValidationConfig/enabledImplementationGuides": enabled_implementation_guides
"/healthcare:v1beta1/ValidationConfig/enabledImplementationGuides/enabled_implementation_guide": enabled_implementation_guide
"/healthcare:v1beta1/VersionSource": version_source
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-healthcare_v1beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-healthcare_v1beta1

### v0.95.0 (2025-12-28)

* Regenerated from discovery document revision 20251211

### v0.94.0 (2025-12-14)

* Regenerated from discovery document revision 20251117
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7194,6 +7194,15 @@ class ValidationConfig
attr_accessor :disable_required_field_validation
alias_method :disable_required_field_validation?, :disable_required_field_validation

# Optional. Whether to enable FHIRPath validation for incoming resource types
# that have profiles configured for them in the `enabled_implementation_guides`
# list. Set this to true to enable checking incoming resources for conformance
# against FHIRPath requirements defined in the configured profiles.
# Corresponds to the JSON property `enableFhirpathProfileValidation`
# @return [Boolean]
attr_accessor :enable_fhirpath_profile_validation
alias_method :enable_fhirpath_profile_validation?, :enable_fhirpath_profile_validation

# A list of ImplementationGuide URLs in this FHIR store that are used to
# configure the profiles to use for validation. For example, to use the US Core
# profiles for validation, set `enabled_implementation_guides` to `["http://hl7.
Expand Down Expand Up @@ -7222,6 +7231,7 @@ def update!(**args)
@disable_profile_validation = args[:disable_profile_validation] if args.key?(:disable_profile_validation)
@disable_reference_type_validation = args[:disable_reference_type_validation] if args.key?(:disable_reference_type_validation)
@disable_required_field_validation = args[:disable_required_field_validation] if args.key?(:disable_required_field_validation)
@enable_fhirpath_profile_validation = args[:enable_fhirpath_profile_validation] if args.key?(:enable_fhirpath_profile_validation)
@enabled_implementation_guides = args[:enabled_implementation_guides] if args.key?(:enabled_implementation_guides)
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module HealthcareV1beta1
# Version of the google-apis-healthcare_v1beta1 gem
GEM_VERSION = "0.94.0"
GEM_VERSION = "0.95.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20251117"
REVISION = "20251211"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -3225,6 +3225,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :disable_profile_validation, as: 'disableProfileValidation'
property :disable_reference_type_validation, as: 'disableReferenceTypeValidation'
property :disable_required_field_validation, as: 'disableRequiredFieldValidation'
property :enable_fhirpath_profile_validation, as: 'enableFhirpathProfileValidation'
collection :enabled_implementation_guides, as: 'enabledImplementationGuides'
end
end
Expand Down