google-apis-healthcare_v1beta1 0.72.0 → 0.73.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: e295b517c6e6a908885a18bc06bb9608b8c5d8cd348d3a1487471e8811133c3d
4
- data.tar.gz: bc83c8252609c54a3440b29d41d2132761c9e7bcae33bdac5a9f228511e872e3
3
+ metadata.gz: 39c8556fdac28bdd249885dda60e344080f43c7b5035844427bf2d22e873ecb4
4
+ data.tar.gz: 43c44a389c539471e0eb145ed06468e0e50f06a60eb090be583e3ce65616c6e0
5
5
  SHA512:
6
- metadata.gz: 18995cdec270d114ec8afe67f6a403e15c1706898fa56ebd1b060dbdb1144ddc88e524d9963e485881607ead6a34e055ef1dab6e503243df61cede2e76d237e7
7
- data.tar.gz: bef116b5bfa7dceb197c695de5782cc39ed941761e2236e6ba56e1299b4527a62c0ea58315588b72c0dc6a7d54ecafe24c867b3dfd865becdb29c61accc5d571
6
+ metadata.gz: 471ba547c9f9b635a35dbd5fd3ddaa48cf22a0b0f9bf2923fee365bf5ca63f92290b6dfaf7f2d6b1a7d45868c42abd816327426adf7d8cbc9db35d32a579b670
7
+ data.tar.gz: c0c31dda8c1db76075bbd8f61c9ca5af760cc09e8549db1f098bf356535ece5f1dedd30b2aa39a19ffa2e453680303272b35b10229ebbd097070d1be571bae3d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.73.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240718
6
+
3
7
  ### v0.72.0 (2024-06-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20240605
@@ -395,6 +395,34 @@ module Google
395
395
  end
396
396
  end
397
397
 
398
+ # Contains the error details of the unsupported admin Consent resources for when
399
+ # the ApplyAdminConsents method fails to apply one or more Consent resources.
400
+ class ApplyAdminConsentsErrorDetail
401
+ include Google::Apis::Core::Hashable
402
+
403
+ # The list of Consent resources that are unsupported or cannot be applied and
404
+ # the error associated with each of them.
405
+ # Corresponds to the JSON property `consentErrors`
406
+ # @return [Array<Google::Apis::HealthcareV1beta1::ConsentErrors>]
407
+ attr_accessor :consent_errors
408
+
409
+ # The currently in progress non-validate-only ApplyAdminConsents operation ID if
410
+ # exist.
411
+ # Corresponds to the JSON property `existingOperationId`
412
+ # @return [Fixnum]
413
+ attr_accessor :existing_operation_id
414
+
415
+ def initialize(**args)
416
+ update!(**args)
417
+ end
418
+
419
+ # Update properties of this object
420
+ def update!(**args)
421
+ @consent_errors = args[:consent_errors] if args.key?(:consent_errors)
422
+ @existing_operation_id = args[:existing_operation_id] if args.key?(:existing_operation_id)
423
+ end
424
+ end
425
+
398
426
  # Request to apply the admin Consent resources for the specified FHIR store.
399
427
  class ApplyAdminConsentsRequest
400
428
  include Google::Apis::Core::Hashable
@@ -1356,9 +1384,9 @@ module Google
1356
1384
  # @return [Google::Apis::HealthcareV1beta1::AccessDeterminationLogConfig]
1357
1385
  attr_accessor :access_determination_log_config
1358
1386
 
1359
- # Optional. If set to true, when accessing FHIR resources, the consent headers
1360
- # will be verified against consents given by patients. See the
1361
- # ConsentEnforcementVersion for the supported consent headers.
1387
+ # Optional. The default value is false. If set to true, when accessing FHIR
1388
+ # resources, the consent headers will be verified against consents given by
1389
+ # patients. See the ConsentEnforcementVersion for the supported consent headers.
1362
1390
  # Corresponds to the JSON property `accessEnforced`
1363
1391
  # @return [Boolean]
1364
1392
  attr_accessor :access_enforced
@@ -1401,6 +1429,41 @@ module Google
1401
1429
  end
1402
1430
  end
1403
1431
 
1432
+ # The Consent resource name and error.
1433
+ class ConsentErrors
1434
+ include Google::Apis::Core::Hashable
1435
+
1436
+ # The `Status` type defines a logical error model that is suitable for different
1437
+ # programming environments, including REST APIs and RPC APIs. It is used by [
1438
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
1439
+ # data: error code, error message, and error details. You can find out more
1440
+ # about this error model and how to work with it in the [API Design Guide](https:
1441
+ # //cloud.google.com/apis/design/errors).
1442
+ # Corresponds to the JSON property `error`
1443
+ # @return [Google::Apis::HealthcareV1beta1::Status]
1444
+ attr_accessor :error
1445
+
1446
+ # The versioned name of the admin Consent resource, in the format `projects/`
1447
+ # project_id`/locations/`location`/datasets/`dataset_id`/fhirStores/`
1448
+ # fhir_store_id`/fhir/Consent/`resource_id`/_history/`version_id``. For FHIR
1449
+ # stores with `disable_resource_versioning=true`, the format is `projects/`
1450
+ # project_id`/locations/`location`/datasets/`dataset_id`/fhirStores/`
1451
+ # fhir_store_id`/fhir/Consent/`resource_id``.
1452
+ # Corresponds to the JSON property `name`
1453
+ # @return [String]
1454
+ attr_accessor :name
1455
+
1456
+ def initialize(**args)
1457
+ update!(**args)
1458
+ end
1459
+
1460
+ # Update properties of this object
1461
+ def update!(**args)
1462
+ @error = args[:error] if args.key?(:error)
1463
+ @name = args[:name] if args.key?(:name)
1464
+ end
1465
+ end
1466
+
1404
1467
  # The detailed evaluation of a particular Consent.
1405
1468
  class ConsentEvaluation
1406
1469
  include Google::Apis::Core::Hashable
@@ -1765,11 +1828,11 @@ module Google
1765
1828
  attr_accessor :text
1766
1829
 
1767
1830
  # Ensures in-flight data remains in the region of origin during de-
1768
- # identification. Using this option results in a significant reduction of
1769
- # throughput, and is not compatible with `LOCATION` or `ORGANIZATION_NAME`
1770
- # infoTypes. If the deprecated DicomConfig or FhirConfig are used, then `
1771
- # LOCATION` must be excluded within TextConfig, and must also be excluded within
1772
- # ImageConfig if image redaction is required.
1831
+ # identification. The default value is false. Using this option results in a
1832
+ # significant reduction of throughput, and is not compatible with `LOCATION` or `
1833
+ # ORGANIZATION_NAME` infoTypes. If the deprecated DicomConfig or FhirConfig are
1834
+ # used, then `LOCATION` must be excluded within TextConfig, and must also be
1835
+ # excluded within ImageConfig if image redaction is required.
1773
1836
  # Corresponds to the JSON property `useRegionalDataProcessing`
1774
1837
  # @return [Boolean]
1775
1838
  attr_accessor :use_regional_data_processing
@@ -3159,24 +3222,24 @@ module Google
3159
3222
  attr_accessor :pubsub_topic
3160
3223
 
3161
3224
  # Whether to send full FHIR resource to this Pub/Sub topic for Create and Update
3162
- # operation. Note that setting this to true does not guarantee that all
3163
- # resources will be sent in the format of full FHIR resource. When a resource
3164
- # change is too large or during heavy traffic, only the resource name will be
3165
- # sent. Clients should always check the "payloadType" label from a Pub/Sub
3166
- # message to determine whether it needs to fetch the full resource as a separate
3167
- # operation.
3225
+ # operation. The default value is false. Note that setting this to true does not
3226
+ # guarantee that all resources will be sent in the format of full FHIR resource.
3227
+ # When a resource change is too large or during heavy traffic, only the resource
3228
+ # name will be sent. Clients should always check the "payloadType" label from a
3229
+ # Pub/Sub message to determine whether it needs to fetch the full resource as a
3230
+ # separate operation.
3168
3231
  # Corresponds to the JSON property `sendFullResource`
3169
3232
  # @return [Boolean]
3170
3233
  attr_accessor :send_full_resource
3171
3234
  alias_method :send_full_resource?, :send_full_resource
3172
3235
 
3173
3236
  # Whether to send full FHIR resource to this Pub/Sub topic for deleting FHIR
3174
- # resource. Note that setting this to true does not guarantee that all previous
3175
- # resources will be sent in the format of full FHIR resource. When a resource
3176
- # change is too large or during heavy traffic, only the resource name will be
3177
- # sent. Clients should always check the "payloadType" label from a Pub/Sub
3178
- # message to determine whether it needs to fetch the full previous resource as a
3179
- # separate operation.
3237
+ # resource. The default value is false. Note that setting this to true does not
3238
+ # guarantee that all previous resources will be sent in the format of full FHIR
3239
+ # resource. When a resource change is too large or during heavy traffic, only
3240
+ # the resource name will be sent. Clients should always check the "payloadType"
3241
+ # label from a Pub/Sub message to determine whether it needs to fetch the full
3242
+ # previous resource as a separate operation.
3180
3243
  # Corresponds to the JSON property `sendPreviousResourceOnDelete`
3181
3244
  # @return [Boolean]
3182
3245
  attr_accessor :send_previous_resource_on_delete
@@ -3248,7 +3311,7 @@ module Google
3248
3311
  # false, uses the FHIR specification default `handling=lenient` which ignores
3249
3312
  # unrecognized search parameters. The handling can always be changed from the
3250
3313
  # default on an individual API call by setting the HTTP header `Prefer: handling=
3251
- # strict` or `Prefer: handling=lenient`.
3314
+ # strict` or `Prefer: handling=lenient`. Defaults to false.
3252
3315
  # Corresponds to the JSON property `defaultSearchHandlingStrict`
3253
3316
  # @return [Boolean]
3254
3317
  attr_accessor :default_search_handling_strict
@@ -3268,11 +3331,10 @@ module Google
3268
3331
 
3269
3332
  # Immutable. Whether to disable resource versioning for this FHIR store. This
3270
3333
  # field can not be changed after the creation of FHIR store. If set to false,
3271
- # which is the default behavior, all write operations cause historical versions
3272
- # to be recorded automatically. The historical versions can be fetched through
3273
- # the history APIs, but cannot be updated. If set to true, no historical
3274
- # versions are kept. The server sends errors for attempts to read the historical
3275
- # versions.
3334
+ # all write operations cause historical versions to be recorded automatically.
3335
+ # The historical versions can be fetched through the history APIs, but cannot be
3336
+ # updated. If set to true, no historical versions are kept. The server sends
3337
+ # errors for attempts to read the historical versions. Defaults to false.
3276
3338
  # Corresponds to the JSON property `disableResourceVersioning`
3277
3339
  # @return [Boolean]
3278
3340
  attr_accessor :disable_resource_versioning
@@ -3280,7 +3342,7 @@ module Google
3280
3342
 
3281
3343
  # Optional. Whether to allow ExecuteBundle to accept history bundles, and
3282
3344
  # directly insert and overwrite historical resource versions into the FHIR store.
3283
- # If set to false, using history bundles fails with an error.
3345
+ # If set to false, using history bundles fails with an error. Defaults to false.
3284
3346
  # Corresponds to the JSON property `enableHistoryModifications`
3285
3347
  # @return [Boolean]
3286
3348
  attr_accessor :enable_history_modifications
@@ -3295,7 +3357,7 @@ module Google
3295
3357
  # sensitive data such as patient identifiers in client-specified resource IDs.
3296
3358
  # Those IDs are part of the FHIR resource path recorded in Cloud audit logs and
3297
3359
  # Pub/Sub notifications. Those IDs can also be contained in reference fields
3298
- # within other resources.
3360
+ # within other resources. Defaults to false.
3299
3361
  # Corresponds to the JSON property `enableUpdateCreate`
3300
3362
  # @return [Boolean]
3301
3363
  attr_accessor :enable_update_create
@@ -7014,10 +7076,9 @@ module Google
7014
7076
  # @return [Google::Apis::HealthcareV1beta1::BlobStorageInfo]
7015
7077
  attr_accessor :blob_storage_info
7016
7078
 
7017
- # The resource whose storage info is returned. For example, to specify the
7018
- # resource path of a DICOM Instance: `projects/`projectID`/locations/`locationID`
7019
- # /datasets/`datasetID`/dicomStores/`dicom_store_id`/dicomWeb/studi/`study_uid`/
7020
- # series/`series_uid`/instances/`instance_uid``
7079
+ # The resource whose storage info is returned. For example: `projects/`projectID`
7080
+ # /locations/`locationID`/datasets/`datasetID`/dicomStores/`dicomStoreID`/
7081
+ # dicomWeb/studies/`studyUID`/series/`seriesUID`/instances/`instanceUID``
7021
7082
  # Corresponds to the JSON property `referencedResource`
7022
7083
  # @return [String]
7023
7084
  attr_accessor :referenced_resource
@@ -7411,39 +7472,41 @@ module Google
7411
7472
  class ValidationConfig
7412
7473
  include Google::Apis::Core::Hashable
7413
7474
 
7414
- # Whether to disable FHIRPath validation for incoming resources. Set this to
7415
- # true to disable checking incoming resources for conformance against FHIRPath
7416
- # requirement defined in the FHIR specification. This property only affects
7417
- # resource types that do not have profiles configured for them, any rules in
7418
- # enabled implementation guides will still be enforced.
7475
+ # Whether to disable FHIRPath validation for incoming resources. The default
7476
+ # value is false. Set this to true to disable checking incoming resources for
7477
+ # conformance against FHIRPath requirement defined in the FHIR specification.
7478
+ # This property only affects resource types that do not have profiles configured
7479
+ # for them, any rules in enabled implementation guides will still be enforced.
7419
7480
  # Corresponds to the JSON property `disableFhirpathValidation`
7420
7481
  # @return [Boolean]
7421
7482
  attr_accessor :disable_fhirpath_validation
7422
7483
  alias_method :disable_fhirpath_validation?, :disable_fhirpath_validation
7423
7484
 
7424
- # Whether to disable profile validation for this FHIR store. Set this to true to
7425
- # disable checking incoming resources for conformance against
7426
- # StructureDefinitions in this FHIR store.
7485
+ # Whether to disable profile validation for this FHIR store. The default value
7486
+ # is false. Set this to true to disable checking incoming resources for
7487
+ # conformance against StructureDefinitions in this FHIR store.
7427
7488
  # Corresponds to the JSON property `disableProfileValidation`
7428
7489
  # @return [Boolean]
7429
7490
  attr_accessor :disable_profile_validation
7430
7491
  alias_method :disable_profile_validation?, :disable_profile_validation
7431
7492
 
7432
- # Whether to disable reference type validation for incoming resources. Set this
7433
- # to true to disable checking incoming resources for conformance against
7434
- # reference type requirement defined in the FHIR specification. This property
7435
- # only affects resource types that do not have profiles configured for them, any
7436
- # rules in enabled implementation guides will still be enforced.
7493
+ # Whether to disable reference type validation for incoming resources. The
7494
+ # default value is false. Set this to true to disable checking incoming
7495
+ # resources for conformance against reference type requirement defined in the
7496
+ # FHIR specification. This property only affects resource types that do not have
7497
+ # profiles configured for them, any rules in enabled implementation guides will
7498
+ # still be enforced.
7437
7499
  # Corresponds to the JSON property `disableReferenceTypeValidation`
7438
7500
  # @return [Boolean]
7439
7501
  attr_accessor :disable_reference_type_validation
7440
7502
  alias_method :disable_reference_type_validation?, :disable_reference_type_validation
7441
7503
 
7442
- # Whether to disable required fields validation for incoming resources. Set this
7443
- # to true to disable checking incoming resources for conformance against
7444
- # required fields requirement defined in the FHIR specification. This property
7445
- # only affects resource types that do not have profiles configured for them, any
7446
- # rules in enabled implementation guides will still be enforced.
7504
+ # Whether to disable required fields validation for incoming resources. The
7505
+ # default value is false. Set this to true to disable checking incoming
7506
+ # resources for conformance against required fields requirement defined in the
7507
+ # FHIR specification. This property only affects resource types that do not have
7508
+ # profiles configured for them, any rules in enabled implementation guides will
7509
+ # still be enforced.
7447
7510
  # Corresponds to the JSON property `disableRequiredFieldValidation`
7448
7511
  # @return [Boolean]
7449
7512
  attr_accessor :disable_required_field_validation
@@ -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.72.0"
19
+ GEM_VERSION = "0.73.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240605"
25
+ REVISION = "20240718"
26
26
  end
27
27
  end
28
28
  end
@@ -82,6 +82,12 @@ module Google
82
82
  include Google::Apis::Core::JsonObjectSupport
83
83
  end
84
84
 
85
+ class ApplyAdminConsentsErrorDetail
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
85
91
  class ApplyAdminConsentsRequest
86
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
87
93
 
@@ -256,6 +262,12 @@ module Google
256
262
  include Google::Apis::Core::JsonObjectSupport
257
263
  end
258
264
 
265
+ class ConsentErrors
266
+ class Representation < Google::Apis::Core::JsonRepresentation; end
267
+
268
+ include Google::Apis::Core::JsonObjectSupport
269
+ end
270
+
259
271
  class ConsentEvaluation
260
272
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
273
 
@@ -1468,6 +1480,15 @@ module Google
1468
1480
  end
1469
1481
  end
1470
1482
 
1483
+ class ApplyAdminConsentsErrorDetail
1484
+ # @private
1485
+ class Representation < Google::Apis::Core::JsonRepresentation
1486
+ collection :consent_errors, as: 'consentErrors', class: Google::Apis::HealthcareV1beta1::ConsentErrors, decorator: Google::Apis::HealthcareV1beta1::ConsentErrors::Representation
1487
+
1488
+ property :existing_operation_id, :numeric_string => true, as: 'existingOperationId'
1489
+ end
1490
+ end
1491
+
1471
1492
  class ApplyAdminConsentsRequest
1472
1493
  # @private
1473
1494
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1728,6 +1749,15 @@ module Google
1728
1749
  end
1729
1750
  end
1730
1751
 
1752
+ class ConsentErrors
1753
+ # @private
1754
+ class Representation < Google::Apis::Core::JsonRepresentation
1755
+ property :error, as: 'error', class: Google::Apis::HealthcareV1beta1::Status, decorator: Google::Apis::HealthcareV1beta1::Status::Representation
1756
+
1757
+ property :name, as: 'name'
1758
+ end
1759
+ end
1760
+
1731
1761
  class ConsentEvaluation
1732
1762
  # @private
1733
1763
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3486,10 +3486,10 @@ module Google
3486
3486
 
3487
3487
  # GetStorageInfo returns the storage info of the specified resource.
3488
3488
  # @param [String] resource
3489
- # Required. The path of the resource for which the storage info is requested (
3490
- # for exaxmple for a DICOM Instance: `projects/`projectID`/locations/`locationID`
3491
- # /datasets/`datasetID`/dicomStores/`dicomStoreId`/dicomWeb/studies/`study_uid`/
3492
- # series/`series_uid`/instances/`instance_uid``)
3489
+ # Required. The path of the instance to return storage info for, in the form: `
3490
+ # projects/`projectID`/locations/`locationID`/datasets/`datasetID`/dicomStores/`
3491
+ # dicomStoreID`/dicomWeb/studies/`studyUID`/series/`seriesUID`/instances/`
3492
+ # instanceUID``
3493
3493
  # @param [String] fields
3494
3494
  # Selector specifying which fields to include in a partial response.
3495
3495
  # @param [String] quota_user
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.72.0
4
+ version: 0.73.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: 2024-06-23 00:00:00.000000000 Z
11
+ date: 2024-07-25 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.72.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.73.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: []