google-apis-healthcare_v1 0.15.0 → 0.19.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: 98652121566257e018eca80e376a00cd67ba0a6463e6659f2c0e300803ebb75f
4
- data.tar.gz: 3ce1650516a7f412c7c7708476502cc816a52259bb2612439dd20fd78a81d4b3
3
+ metadata.gz: e6be73462c660e4f9b071c09bde203a46e2d5ecf63f446e92f8a9df026a222b4
4
+ data.tar.gz: 4c25855cdb24dc075e82859d96b6f7b8d0ed03da4206cd038d602539faa7f9b9
5
5
  SHA512:
6
- metadata.gz: 737f751a46d1e201e53ac36ae7782a3078263a085b424ea6d5ba18c2c05bfca7346e3d018722935c704436a32c441ff062313a1d9f976e5a4bc4fa3a245107d4
7
- data.tar.gz: a197a0a28a142a416f2c3fdb9e5a4834f039efdc12559a389e4021a25a3f8ff6eb02033fa6774165068f9cc193644fd222540f75895a71ca3f03fa0eaf009fb7
6
+ metadata.gz: 36c498236052e85d0b8289f7ec7591f4ad28b6cbc7c3f82f448d9b6334d616982c4135c1750aae1bb3631ae338660edbef2965e11d4e254d69784253be305e89
7
+ data.tar.gz: c9b198d0e5d718f16dce2605a97402e4ce3dc219be7d56fa802bcd46c3c35f66b6de046300b357b8a87fefd234a3dcabd2d3e3f43470502f4d51a16245ff7524
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-healthcare_v1
2
2
 
3
+ ### v0.19.0 (2021-11-16)
4
+
5
+ * Regenerated from discovery document revision 20211105
6
+
7
+ ### v0.18.0 (2021-11-05)
8
+
9
+ * Regenerated from discovery document revision 20211025
10
+
11
+ ### v0.17.0 (2021-10-27)
12
+
13
+ * Regenerated from discovery document revision 20211016
14
+ * Unspecified changes
15
+
16
+ ### v0.16.0 (2021-10-12)
17
+
18
+ * Regenerated from discovery document revision 20211004
19
+
3
20
  ### v0.15.0 (2021-10-01)
4
21
 
5
22
  * Regenerated from discovery document revision 20210917
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Healthcare service in particular.)
67
67
 
@@ -306,7 +306,7 @@ module Google
306
306
  end
307
307
  end
308
308
 
309
- # Associates `members` with a `role`.
309
+ # Associates `members`, or principals, with a `role`.
310
310
  class Binding
311
311
  include Google::Apis::Core::Hashable
312
312
 
@@ -329,7 +329,7 @@ module Google
329
329
  # @return [Google::Apis::HealthcareV1::Expr]
330
330
  attr_accessor :condition
331
331
 
332
- # Specifies the identities requesting access for a Cloud Platform resource. `
332
+ # Specifies the principals requesting access for a Cloud Platform resource. `
333
333
  # members` can have the following values: * `allUsers`: A special identifier
334
334
  # that represents anyone who is on the internet; with or without a Google
335
335
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -359,8 +359,8 @@ module Google
359
359
  # @return [Array<String>]
360
360
  attr_accessor :members
361
361
 
362
- # Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
363
- # , or `roles/owner`.
362
+ # Role that is assigned to the list of `members`, or principals. For example, `
363
+ # roles/viewer`, `roles/editor`, or `roles/owner`.
364
364
  # Corresponds to the JSON property `role`
365
365
  # @return [String]
366
366
  attr_accessor :role
@@ -1555,9 +1555,18 @@ module Google
1555
1555
  class FhirConfig
1556
1556
  include Google::Apis::Core::Hashable
1557
1557
 
1558
+ # The behaviour for handling FHIR extensions that aren't otherwise specified for
1559
+ # de-identification. If true, all extensions are preserved during de-
1560
+ # identification by default. If false or unspecified, all extensions are removed
1561
+ # during de-identification by default.
1562
+ # Corresponds to the JSON property `defaultKeepExtensions`
1563
+ # @return [Boolean]
1564
+ attr_accessor :default_keep_extensions
1565
+ alias_method :default_keep_extensions?, :default_keep_extensions
1566
+
1558
1567
  # Specifies FHIR paths to match and how to transform them. Any field that is not
1559
1568
  # matched by a FieldMetadata is passed through to the output dataset unmodified.
1560
- # All extensions are removed in the output.
1569
+ # All extensions will be processed according to `default_keep_extensions`.
1561
1570
  # Corresponds to the JSON property `fieldMetadataList`
1562
1571
  # @return [Array<Google::Apis::HealthcareV1::FieldMetadata>]
1563
1572
  attr_accessor :field_metadata_list
@@ -1568,6 +1577,7 @@ module Google
1568
1577
 
1569
1578
  # Update properties of this object
1570
1579
  def update!(**args)
1580
+ @default_keep_extensions = args[:default_keep_extensions] if args.key?(:default_keep_extensions)
1571
1581
  @field_metadata_list = args[:field_metadata_list] if args.key?(:field_metadata_list)
1572
1582
  end
1573
1583
  end
@@ -1682,6 +1692,11 @@ module Google
1682
1692
  # @return [Array<Google::Apis::HealthcareV1::StreamConfig>]
1683
1693
  attr_accessor :stream_configs
1684
1694
 
1695
+ # Contains the configuration for FHIR profiles and validation.
1696
+ # Corresponds to the JSON property `validationConfig`
1697
+ # @return [Google::Apis::HealthcareV1::ValidationConfig]
1698
+ attr_accessor :validation_config
1699
+
1685
1700
  # Immutable. The FHIR specification version that this FHIR store supports
1686
1701
  # natively. This field is immutable after store creation. Requests are rejected
1687
1702
  # if they contain FHIR resources of a different version. Version is required for
@@ -1704,6 +1719,7 @@ module Google
1704
1719
  @name = args[:name] if args.key?(:name)
1705
1720
  @notification_config = args[:notification_config] if args.key?(:notification_config)
1706
1721
  @stream_configs = args[:stream_configs] if args.key?(:stream_configs)
1722
+ @validation_config = args[:validation_config] if args.key?(:validation_config)
1707
1723
  @version = args[:version] if args.key?(:version)
1708
1724
  end
1709
1725
  end
@@ -1947,9 +1963,9 @@ module Google
1947
1963
  class GoogleCloudHealthcareV1DicomBigQueryDestination
1948
1964
  include Google::Apis::Core::Hashable
1949
1965
 
1950
- # If the destination table already exists and this flag is `TRUE`, the table is
1951
- # overwritten by the contents of the DICOM store. If the flag is not set and the
1952
- # destination table already exists, the export call returns an error.
1966
+ # Use `write_disposition` instead. If `write_disposition` is specified, this
1967
+ # parameter is ignored. force=false is equivalent to write_disposition=
1968
+ # WRITE_EMPTY and force=true is equivalent to write_disposition=WRITE_TRUNCATE.
1953
1969
  # Corresponds to the JSON property `force`
1954
1970
  # @return [Boolean]
1955
1971
  attr_accessor :force
@@ -1961,6 +1977,13 @@ module Google
1961
1977
  # @return [String]
1962
1978
  attr_accessor :table_uri
1963
1979
 
1980
+ # Determines whether the existing table in the destination is to be overwritten
1981
+ # or appended to. If a write_disposition is specified, the `force` parameter is
1982
+ # ignored.
1983
+ # Corresponds to the JSON property `writeDisposition`
1984
+ # @return [String]
1985
+ attr_accessor :write_disposition
1986
+
1964
1987
  def initialize(**args)
1965
1988
  update!(**args)
1966
1989
  end
@@ -1969,6 +1992,7 @@ module Google
1969
1992
  def update!(**args)
1970
1993
  @force = args[:force] if args.key?(:force)
1971
1994
  @table_uri = args[:table_uri] if args.key?(:table_uri)
1995
+ @write_disposition = args[:write_disposition] if args.key?(:write_disposition)
1972
1996
  end
1973
1997
  end
1974
1998
 
@@ -3416,31 +3440,31 @@ module Google
3416
3440
 
3417
3441
  # An Identity and Access Management (IAM) policy, which specifies access
3418
3442
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
3419
- # A `binding` binds one or more `members` to a single `role`. Members can be
3420
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
3421
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
3422
- # role or a user-created custom role. For some types of Google Cloud resources,
3423
- # a `binding` can also specify a `condition`, which is a logical expression that
3424
- # allows access to a resource only if the expression evaluates to `true`. A
3425
- # condition can add constraints based on attributes of the request, the resource,
3426
- # or both. To learn which resources support conditions in their IAM policies,
3427
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
3428
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
3429
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
3430
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
3431
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
3432
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
3433
- # title": "expirable access", "description": "Does not grant access after Sep
3434
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
3435
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
3436
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
3437
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
3438
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
3439
- # roles/resourcemanager.organizationViewer condition: title: expirable access
3440
- # description: Does not grant access after Sep 2020 expression: request.time <
3441
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
3442
- # description of IAM and its features, see the [IAM documentation](https://cloud.
3443
- # google.com/iam/docs/).
3443
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
3444
+ # Principals can be user accounts, service accounts, Google groups, and domains (
3445
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
3446
+ # an IAM predefined role or a user-created custom role. For some types of Google
3447
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
3448
+ # logical expression that allows access to a resource only if the expression
3449
+ # evaluates to `true`. A condition can add constraints based on attributes of
3450
+ # the request, the resource, or both. To learn which resources support
3451
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
3452
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
3453
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
3454
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
3455
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
3456
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
3457
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
3458
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
3459
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
3460
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
3461
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
3462
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
3463
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
3464
+ # access description: Does not grant access after Sep 2020 expression: request.
3465
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
3466
+ # a description of IAM and its features, see the [IAM documentation](https://
3467
+ # cloud.google.com/iam/docs/).
3444
3468
  class Policy
3445
3469
  include Google::Apis::Core::Hashable
3446
3470
 
@@ -3449,9 +3473,14 @@ module Google
3449
3473
  # @return [Array<Google::Apis::HealthcareV1::AuditConfig>]
3450
3474
  attr_accessor :audit_configs
3451
3475
 
3452
- # Associates a list of `members` to a `role`. Optionally, may specify a `
3453
- # condition` that determines how and when the `bindings` are applied. Each of
3454
- # the `bindings` must contain at least one member.
3476
+ # Associates a list of `members`, or principals, with a `role`. Optionally, may
3477
+ # specify a `condition` that determines how and when the `bindings` are applied.
3478
+ # Each of the `bindings` must contain at least one principal. The `bindings` in
3479
+ # a `Policy` can refer to up to 1,500 principals; up to 250 of these principals
3480
+ # can be Google groups. Each occurrence of a principal counts towards these
3481
+ # limits. For example, if the `bindings` grant 50 different roles to `user:alice@
3482
+ # example.com`, and not to any other principal, then you can add another 1,450
3483
+ # principals to the `bindings` in the `Policy`.
3455
3484
  # Corresponds to the JSON property `bindings`
3456
3485
  # @return [Array<Google::Apis::HealthcareV1::Binding>]
3457
3486
  attr_accessor :bindings
@@ -3979,31 +4008,31 @@ module Google
3979
4008
 
3980
4009
  # An Identity and Access Management (IAM) policy, which specifies access
3981
4010
  # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
3982
- # A `binding` binds one or more `members` to a single `role`. Members can be
3983
- # user accounts, service accounts, Google groups, and domains (such as G Suite).
3984
- # A `role` is a named list of permissions; each `role` can be an IAM predefined
3985
- # role or a user-created custom role. For some types of Google Cloud resources,
3986
- # a `binding` can also specify a `condition`, which is a logical expression that
3987
- # allows access to a resource only if the expression evaluates to `true`. A
3988
- # condition can add constraints based on attributes of the request, the resource,
3989
- # or both. To learn which resources support conditions in their IAM policies,
3990
- # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
3991
- # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
3992
- # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
3993
- # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
3994
- # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
3995
- # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
3996
- # title": "expirable access", "description": "Does not grant access after Sep
3997
- # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
3998
- # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
3999
- # members: - user:mike@example.com - group:admins@example.com - domain:google.
4000
- # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
4001
- # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
4002
- # roles/resourcemanager.organizationViewer condition: title: expirable access
4003
- # description: Does not grant access after Sep 2020 expression: request.time <
4004
- # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
4005
- # description of IAM and its features, see the [IAM documentation](https://cloud.
4006
- # google.com/iam/docs/).
4011
+ # A `binding` binds one or more `members`, or principals, to a single `role`.
4012
+ # Principals can be user accounts, service accounts, Google groups, and domains (
4013
+ # such as G Suite). A `role` is a named list of permissions; each `role` can be
4014
+ # an IAM predefined role or a user-created custom role. For some types of Google
4015
+ # Cloud resources, a `binding` can also specify a `condition`, which is a
4016
+ # logical expression that allows access to a resource only if the expression
4017
+ # evaluates to `true`. A condition can add constraints based on attributes of
4018
+ # the request, the resource, or both. To learn which resources support
4019
+ # conditions in their IAM policies, see the [IAM documentation](https://cloud.
4020
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
4021
+ # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
4022
+ # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
4023
+ # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
4024
+ # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
4025
+ # ], "condition": ` "title": "expirable access", "description": "Does not grant
4026
+ # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
4027
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
4028
+ # bindings: - members: - user:mike@example.com - group:admins@example.com -
4029
+ # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
4030
+ # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
4031
+ # com role: roles/resourcemanager.organizationViewer condition: title: expirable
4032
+ # access description: Does not grant access after Sep 2020 expression: request.
4033
+ # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
4034
+ # a description of IAM and its features, see the [IAM documentation](https://
4035
+ # cloud.google.com/iam/docs/).
4007
4036
  # Corresponds to the JSON property `policy`
4008
4037
  # @return [Google::Apis::HealthcareV1::Policy]
4009
4038
  attr_accessor :policy
@@ -4325,6 +4354,52 @@ module Google
4325
4354
  end
4326
4355
  end
4327
4356
 
4357
+ # Contains the configuration for FHIR profiles and validation.
4358
+ class ValidationConfig
4359
+ include Google::Apis::Core::Hashable
4360
+
4361
+ # Whether to disable FHIRPath validation for incoming resources. Set this to
4362
+ # true to disable checking incoming resources for conformance against FHIRPath
4363
+ # requirement defined in the FHIR specification. This property only affects
4364
+ # resource types that do not have profiles configured for them, any rules in
4365
+ # enabled implementation guides will still be enforced.
4366
+ # Corresponds to the JSON property `disableFhirpathValidation`
4367
+ # @return [Boolean]
4368
+ attr_accessor :disable_fhirpath_validation
4369
+ alias_method :disable_fhirpath_validation?, :disable_fhirpath_validation
4370
+
4371
+ # Whether to disable reference type validation for incoming resources. Set this
4372
+ # to true to disable checking incoming resources for conformance against
4373
+ # reference type 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 `disableReferenceTypeValidation`
4377
+ # @return [Boolean]
4378
+ attr_accessor :disable_reference_type_validation
4379
+ alias_method :disable_reference_type_validation?, :disable_reference_type_validation
4380
+
4381
+ # Whether to disable required fields validation for incoming resources. Set this
4382
+ # to true to disable checking incoming resources for conformance against
4383
+ # required fields requirement defined in the FHIR specification. This property
4384
+ # only affects resource types that do not have profiles configured for them, any
4385
+ # rules in enabled implementation guides will still be enforced.
4386
+ # Corresponds to the JSON property `disableRequiredFieldValidation`
4387
+ # @return [Boolean]
4388
+ attr_accessor :disable_required_field_validation
4389
+ alias_method :disable_required_field_validation?, :disable_required_field_validation
4390
+
4391
+ def initialize(**args)
4392
+ update!(**args)
4393
+ end
4394
+
4395
+ # Update properties of this object
4396
+ def update!(**args)
4397
+ @disable_fhirpath_validation = args[:disable_fhirpath_validation] if args.key?(:disable_fhirpath_validation)
4398
+ @disable_reference_type_validation = args[:disable_reference_type_validation] if args.key?(:disable_reference_type_validation)
4399
+ @disable_required_field_validation = args[:disable_required_field_validation] if args.key?(:disable_required_field_validation)
4400
+ end
4401
+ end
4402
+
4328
4403
  # Describes a selector for extracting and matching an MSH field to a value.
4329
4404
  class VersionSource
4330
4405
  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.15.0"
19
+ GEM_VERSION = "0.19.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 = "20210917"
25
+ REVISION = "20211105"
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
 
@@ -1227,6 +1233,7 @@ module Google
1227
1233
  class FhirConfig
1228
1234
  # @private
1229
1235
  class Representation < Google::Apis::Core::JsonRepresentation
1236
+ property :default_keep_extensions, as: 'defaultKeepExtensions'
1230
1237
  collection :field_metadata_list, as: 'fieldMetadataList', class: Google::Apis::HealthcareV1::FieldMetadata, decorator: Google::Apis::HealthcareV1::FieldMetadata::Representation
1231
1238
 
1232
1239
  end
@@ -1253,6 +1260,8 @@ module Google
1253
1260
 
1254
1261
  collection :stream_configs, as: 'streamConfigs', class: Google::Apis::HealthcareV1::StreamConfig, decorator: Google::Apis::HealthcareV1::StreamConfig::Representation
1255
1262
 
1263
+ property :validation_config, as: 'validationConfig', class: Google::Apis::HealthcareV1::ValidationConfig, decorator: Google::Apis::HealthcareV1::ValidationConfig::Representation
1264
+
1256
1265
  property :version, as: 'version'
1257
1266
  end
1258
1267
  end
@@ -1326,6 +1335,7 @@ module Google
1326
1335
  class Representation < Google::Apis::Core::JsonRepresentation
1327
1336
  property :force, as: 'force'
1328
1337
  property :table_uri, as: 'tableUri'
1338
+ property :write_disposition, as: 'writeDisposition'
1329
1339
  end
1330
1340
  end
1331
1341
 
@@ -1979,6 +1989,15 @@ module Google
1979
1989
  end
1980
1990
  end
1981
1991
 
1992
+ class ValidationConfig
1993
+ # @private
1994
+ class Representation < Google::Apis::Core::JsonRepresentation
1995
+ property :disable_fhirpath_validation, as: 'disableFhirpathValidation'
1996
+ property :disable_reference_type_validation, as: 'disableReferenceTypeValidation'
1997
+ property :disable_required_field_validation, as: 'disableRequiredFieldValidation'
1998
+ end
1999
+ end
2000
+
1982
2001
  class VersionSource
1983
2002
  # @private
1984
2003
  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.15.0
4
+ version: 0.19.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-04 00:00:00.000000000 Z
11
+ date: 2021-12-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-healthcare_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.15.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-healthcare_v1
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.19.0
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: []
65
65
  require_paths: