google-apis-healthcare_v1 0.17.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6af37fda0caeb3efb12db6529265bddb1f1be48d43ae6f058518463d0ec68ff6
4
- data.tar.gz: 73b4917780f8d409ed835fc34b86d9ee1153059655099450baa34e42010560f4
3
+ metadata.gz: e726c9e7d3320eaaf40bdd80497daca84991e2fa2b424e9042fbc632de45570a
4
+ data.tar.gz: 140137b27a0583b0e8fd9fea5c33e64e0f2726ad0185a3f73f9c9ce71dc7ed7a
5
5
  SHA512:
6
- metadata.gz: e9dce6ad53749e556e2bf4178c7b57f47f1433fa432b3007d374db6f8deb631b82c6ec9b38af6d14e7d4d1724b3834018635c7249752302d7deb1061c08b8a3d
7
- data.tar.gz: cde0fee3123bfb79d3d2089ba0d73b8d26b3ae811d8dffe93c38b1d0d8ea61ca3311a684c6dcd4d4f15519993da305fd0dc01e11aec0d5398cc94d79850a2b5c
6
+ metadata.gz: ec200da3075df6487d50ddd3f22d67735e16eae85bd4212ce1d7a547411919cd1e698d50370a872b9521b863fb0ea0f5b74a7064aeb522f3f233c5f7674f058e
7
+ data.tar.gz: 8c67a8efa7c027a46300bb7e4f711abea137230e34881c2a645b5f1490272bac50bd7e7491013a50ea41c9a9871d43cf4e19e56ddf68292fae77399fb4b871ab
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1
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
@@ -1682,6 +1682,11 @@ module Google
1682
1682
  # @return [Array<Google::Apis::HealthcareV1::StreamConfig>]
1683
1683
  attr_accessor :stream_configs
1684
1684
 
1685
+ # Contains the configuration for FHIR profiles and validation.
1686
+ # Corresponds to the JSON property `validationConfig`
1687
+ # @return [Google::Apis::HealthcareV1::ValidationConfig]
1688
+ attr_accessor :validation_config
1689
+
1685
1690
  # Immutable. The FHIR specification version that this FHIR store supports
1686
1691
  # natively. This field is immutable after store creation. Requests are rejected
1687
1692
  # if they contain FHIR resources of a different version. Version is required for
@@ -1704,6 +1709,7 @@ module Google
1704
1709
  @name = args[:name] if args.key?(:name)
1705
1710
  @notification_config = args[:notification_config] if args.key?(:notification_config)
1706
1711
  @stream_configs = args[:stream_configs] if args.key?(:stream_configs)
1712
+ @validation_config = args[:validation_config] if args.key?(:validation_config)
1707
1713
  @version = args[:version] if args.key?(:version)
1708
1714
  end
1709
1715
  end
@@ -4338,6 +4344,52 @@ module Google
4338
4344
  end
4339
4345
  end
4340
4346
 
4347
+ # Contains the configuration for FHIR profiles and validation.
4348
+ class ValidationConfig
4349
+ include Google::Apis::Core::Hashable
4350
+
4351
+ # Whether to disable FHIRPath validation for incoming resources. Set this to
4352
+ # true to disable checking incoming resources for conformance against FHIRPath
4353
+ # requirement defined in the FHIR specification. This property only affects
4354
+ # resource types that do not have profiles configured for them, any rules in
4355
+ # enabled implementation guides will still be enforced.
4356
+ # Corresponds to the JSON property `disableFhirpathValidation`
4357
+ # @return [Boolean]
4358
+ attr_accessor :disable_fhirpath_validation
4359
+ alias_method :disable_fhirpath_validation?, :disable_fhirpath_validation
4360
+
4361
+ # Whether to disable reference type validation for incoming resources. Set this
4362
+ # to true to disable checking incoming resources for conformance against
4363
+ # reference type requirement defined in the FHIR specification. This property
4364
+ # only affects resource types that do not have profiles configured for them, any
4365
+ # rules in enabled implementation guides will still be enforced.
4366
+ # Corresponds to the JSON property `disableReferenceTypeValidation`
4367
+ # @return [Boolean]
4368
+ attr_accessor :disable_reference_type_validation
4369
+ alias_method :disable_reference_type_validation?, :disable_reference_type_validation
4370
+
4371
+ # Whether to disable required fields validation for incoming resources. Set this
4372
+ # to true to disable checking incoming resources for conformance against
4373
+ # required fields requirement defined in the FHIR specification. This property
4374
+ # only affects resource types that do not have profiles configured for them, any
4375
+ # rules in enabled implementation guides will still be enforced.
4376
+ # Corresponds to the JSON property `disableRequiredFieldValidation`
4377
+ # @return [Boolean]
4378
+ attr_accessor :disable_required_field_validation
4379
+ alias_method :disable_required_field_validation?, :disable_required_field_validation
4380
+
4381
+ def initialize(**args)
4382
+ update!(**args)
4383
+ end
4384
+
4385
+ # Update properties of this object
4386
+ def update!(**args)
4387
+ @disable_fhirpath_validation = args[:disable_fhirpath_validation] if args.key?(:disable_fhirpath_validation)
4388
+ @disable_reference_type_validation = args[:disable_reference_type_validation] if args.key?(:disable_reference_type_validation)
4389
+ @disable_required_field_validation = args[:disable_required_field_validation] if args.key?(:disable_required_field_validation)
4390
+ end
4391
+ end
4392
+
4341
4393
  # Describes a selector for extracting and matching an MSH field to a value.
4342
4394
  class VersionSource
4343
4395
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module HealthcareV1
18
18
  # Version of the google-apis-healthcare_v1 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
@@ -796,6 +796,12 @@ module Google
796
796
  include Google::Apis::Core::JsonObjectSupport
797
797
  end
798
798
 
799
+ class ValidationConfig
800
+ class Representation < Google::Apis::Core::JsonRepresentation; end
801
+
802
+ include Google::Apis::Core::JsonObjectSupport
803
+ end
804
+
799
805
  class VersionSource
800
806
  class Representation < Google::Apis::Core::JsonRepresentation; end
801
807
 
@@ -1253,6 +1259,8 @@ module Google
1253
1259
 
1254
1260
  collection :stream_configs, as: 'streamConfigs', class: Google::Apis::HealthcareV1::StreamConfig, decorator: Google::Apis::HealthcareV1::StreamConfig::Representation
1255
1261
 
1262
+ property :validation_config, as: 'validationConfig', class: Google::Apis::HealthcareV1::ValidationConfig, decorator: Google::Apis::HealthcareV1::ValidationConfig::Representation
1263
+
1256
1264
  property :version, as: 'version'
1257
1265
  end
1258
1266
  end
@@ -1980,6 +1988,15 @@ module Google
1980
1988
  end
1981
1989
  end
1982
1990
 
1991
+ class ValidationConfig
1992
+ # @private
1993
+ class Representation < Google::Apis::Core::JsonRepresentation
1994
+ property :disable_fhirpath_validation, as: 'disableFhirpathValidation'
1995
+ property :disable_reference_type_validation, as: 'disableReferenceTypeValidation'
1996
+ property :disable_required_field_validation, as: 'disableRequiredFieldValidation'
1997
+ end
1998
+ end
1999
+
1983
2000
  class VersionSource
1984
2001
  # @private
1985
2002
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-healthcare_v1
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.18.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1
63
63
  post_install_message:
64
64
  rdoc_options: []