google-apis-healthcare_v1beta1 0.17.0 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0312306d63dfb414b56a6159138c35dd94857159931e9611416311dcd4917c33
4
- data.tar.gz: 20a468fcb0c203864fce88eed4e745c5c026481f6a86b41f58fc5a6f771881c0
3
+ metadata.gz: bcadb5ae1cf68a1052a9d2ebf23bf5a3af5b9557e9aa8f889b72222c13376064
4
+ data.tar.gz: b6d09bd6b276ebd84a3dd87ab81647f3b89e6e6ce6a5697e3a9e17b7738c965c
5
5
  SHA512:
6
- metadata.gz: 3624a8c0c8ac2d00f215aa5dab0f27d82d62c205c3f25540207633ec9e0e3a6422d6e822bb8ad10c3c9ed1b03a22d68fe7052cb3b0dc7e66ff16ba88e291daaa
7
- data.tar.gz: 4bef4901978232658da0df2fd64a037d492d109c73cf0ac2edd7ded3ef4765c354906e1038cb8c9e32a144793635641c185f877972db360e11c816978d6f8155
6
+ metadata.gz: 5ce1818e359fb2519127411db68ed075649bcf695f52696c5af7a9bd5d94a903ff73f65815fb49e06c1e8d17a15fbbfe921cb2f399c0b375175ec16d48cb871a
7
+ data.tar.gz: d35a6bc108b4aedc457d49ecbbda620ced97047a449abc9b92cbaaed55a5394fce1477759b1db6ae5054fafa53550c137b4fe25f0119d5ea9527f80ee8a06950
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.18.0 (2021-11-05)
4
+
5
+ * Regenerated from discovery document revision 20211025
6
+
3
7
  ### v0.17.0 (2021-10-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20211016
@@ -5189,6 +5189,16 @@ module Google
5189
5189
  class ValidationConfig
5190
5190
  include Google::Apis::Core::Hashable
5191
5191
 
5192
+ # Whether to disable FHIRPath validation for incoming resources. Set this to
5193
+ # true to disable checking incoming resources for conformance against FHIRPath
5194
+ # requirement defined in the FHIR specification. This property only affects
5195
+ # resource types that do not have profiles configured for them, any rules in
5196
+ # enabled implementation guides will still be enforced.
5197
+ # Corresponds to the JSON property `disableFhirpathValidation`
5198
+ # @return [Boolean]
5199
+ attr_accessor :disable_fhirpath_validation
5200
+ alias_method :disable_fhirpath_validation?, :disable_fhirpath_validation
5201
+
5192
5202
  # Whether to disable profile validation for this FHIR store. Set this to true to
5193
5203
  # disable checking incoming resources for conformance against
5194
5204
  # StructureDefinitions in this FHIR store.
@@ -5197,6 +5207,26 @@ module Google
5197
5207
  attr_accessor :disable_profile_validation
5198
5208
  alias_method :disable_profile_validation?, :disable_profile_validation
5199
5209
 
5210
+ # Whether to disable reference type validation for incoming resources. Set this
5211
+ # to true to disable checking incoming resources for conformance against
5212
+ # reference type requirement defined in the FHIR specification. This property
5213
+ # only affects resource types that do not have profiles configured for them, any
5214
+ # rules in enabled implementation guides will still be enforced.
5215
+ # Corresponds to the JSON property `disableReferenceTypeValidation`
5216
+ # @return [Boolean]
5217
+ attr_accessor :disable_reference_type_validation
5218
+ alias_method :disable_reference_type_validation?, :disable_reference_type_validation
5219
+
5220
+ # Whether to disable required fields validation for incoming resources. Set this
5221
+ # to true to disable checking incoming resources for conformance against
5222
+ # required fields requirement defined in the FHIR specification. This property
5223
+ # only affects resource types that do not have profiles configured for them, any
5224
+ # rules in enabled implementation guides will still be enforced.
5225
+ # Corresponds to the JSON property `disableRequiredFieldValidation`
5226
+ # @return [Boolean]
5227
+ attr_accessor :disable_required_field_validation
5228
+ alias_method :disable_required_field_validation?, :disable_required_field_validation
5229
+
5200
5230
  # A list of ImplementationGuide URLs in this FHIR store that are used to
5201
5231
  # configure the profiles to use for validation. For example, to use the US Core
5202
5232
  # profiles for validation, set `enabled_implementation_guides` to `["http://hl7.
@@ -5220,7 +5250,10 @@ module Google
5220
5250
 
5221
5251
  # Update properties of this object
5222
5252
  def update!(**args)
5253
+ @disable_fhirpath_validation = args[:disable_fhirpath_validation] if args.key?(:disable_fhirpath_validation)
5223
5254
  @disable_profile_validation = args[:disable_profile_validation] if args.key?(:disable_profile_validation)
5255
+ @disable_reference_type_validation = args[:disable_reference_type_validation] if args.key?(:disable_reference_type_validation)
5256
+ @disable_required_field_validation = args[:disable_required_field_validation] if args.key?(:disable_required_field_validation)
5224
5257
  @enabled_implementation_guides = args[:enabled_implementation_guides] if args.key?(:enabled_implementation_guides)
5225
5258
  end
5226
5259
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module HealthcareV1beta1
18
18
  # Version of the google-apis-healthcare_v1beta1 gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.18.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211016"
25
+ REVISION = "20211025"
26
26
  end
27
27
  end
28
28
  end
@@ -2431,7 +2431,10 @@ module Google
2431
2431
  class ValidationConfig
2432
2432
  # @private
2433
2433
  class Representation < Google::Apis::Core::JsonRepresentation
2434
+ property :disable_fhirpath_validation, as: 'disableFhirpathValidation'
2434
2435
  property :disable_profile_validation, as: 'disableProfileValidation'
2436
+ property :disable_reference_type_validation, as: 'disableReferenceTypeValidation'
2437
+ property :disable_required_field_validation, as: 'disableRequiredFieldValidation'
2435
2438
  collection :enabled_implementation_guides, as: 'enabledImplementationGuides'
2436
2439
  end
2437
2440
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-healthcare_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2021-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.18.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []