google-apis-healthcare_v1beta1 0.72.0 → 0.74.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/healthcare_v1beta1/classes.rb +213 -50
- data/lib/google/apis/healthcare_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/healthcare_v1beta1/representations.rb +76 -0
- data/lib/google/apis/healthcare_v1beta1/service.rb +324 -6
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 188568ad0c06d4428ee99df5f949a2af8c75131486b89c98a0e1a66aee76c22e
|
4
|
+
data.tar.gz: 72e58dbf77511e0a5547c97f3f53437184da38eb5702197566f407e002feac58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76276b3b6584a29819e1ff39f8bac11d16a16631bb9c6fc4f31d72696cfbf0fc3abbe33900b494cf8162ed56ebae35eb6986226080de71bd6f95cd96836ab07a
|
7
|
+
data.tar.gz: 0c7ae7b1742c5ad80267fb8050439fe5e79dded19241da4e35cb5efdf3b617eb11a7a989cfc3949bd75de7a5e08f7aea6c5637ca0c8c8718da055c55589237f2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-healthcare_v1beta1
|
2
2
|
|
3
|
+
### v0.74.0 (2024-12-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241115
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.73.0 (2024-07-25)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240718
|
11
|
+
|
3
12
|
### v0.72.0 (2024-06-23)
|
4
13
|
|
5
14
|
* 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
|
1360
|
-
# will be verified against consents given by
|
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
|
1769
|
-
# throughput, and is not compatible with `LOCATION` or `
|
1770
|
-
# infoTypes. If the deprecated DicomConfig or FhirConfig are
|
1771
|
-
# LOCATION` must be excluded within TextConfig, and must also be
|
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
|
3163
|
-
# resources will be sent in the format of full FHIR resource.
|
3164
|
-
# change is too large or during heavy traffic, only the resource
|
3165
|
-
# sent. Clients should always check the "payloadType" label from a
|
3166
|
-
# message to determine whether it needs to fetch the full resource as a
|
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
|
3175
|
-
# resources will be sent in the format of full FHIR
|
3176
|
-
# change is too large or during heavy traffic, only
|
3177
|
-
# sent. Clients should always check the "payloadType"
|
3178
|
-
# message to determine whether it needs to fetch the full
|
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
|
-
#
|
3272
|
-
#
|
3273
|
-
#
|
3274
|
-
#
|
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
|
@@ -6468,6 +6530,106 @@ module Google
|
|
6468
6530
|
end
|
6469
6531
|
end
|
6470
6532
|
|
6533
|
+
# Filtering fields for an HL7v2 rollback. Currently only supports a list of
|
6534
|
+
# operation ids to roll back.
|
6535
|
+
class RollbackHl7MessagesFilteringFields
|
6536
|
+
include Google::Apis::Core::Hashable
|
6537
|
+
|
6538
|
+
# Optional. A list of operation IDs to roll back.
|
6539
|
+
# Corresponds to the JSON property `operationIds`
|
6540
|
+
# @return [Array<Fixnum>]
|
6541
|
+
attr_accessor :operation_ids
|
6542
|
+
|
6543
|
+
def initialize(**args)
|
6544
|
+
update!(**args)
|
6545
|
+
end
|
6546
|
+
|
6547
|
+
# Update properties of this object
|
6548
|
+
def update!(**args)
|
6549
|
+
@operation_ids = args[:operation_ids] if args.key?(:operation_ids)
|
6550
|
+
end
|
6551
|
+
end
|
6552
|
+
|
6553
|
+
# Point in time recovery rollback request.
|
6554
|
+
class RollbackHl7V2MessagesRequest
|
6555
|
+
include Google::Apis::Core::Hashable
|
6556
|
+
|
6557
|
+
# Optional. CREATE/UPDATE/DELETE/ALL for reverting all txns of a certain type.
|
6558
|
+
# Corresponds to the JSON property `changeType`
|
6559
|
+
# @return [String]
|
6560
|
+
attr_accessor :change_type
|
6561
|
+
|
6562
|
+
# Optional. Specifies whether to exclude earlier rollbacks.
|
6563
|
+
# Corresponds to the JSON property `excludeRollbacks`
|
6564
|
+
# @return [Boolean]
|
6565
|
+
attr_accessor :exclude_rollbacks
|
6566
|
+
alias_method :exclude_rollbacks?, :exclude_rollbacks
|
6567
|
+
|
6568
|
+
# Filtering fields for an HL7v2 rollback. Currently only supports a list of
|
6569
|
+
# operation ids to roll back.
|
6570
|
+
# Corresponds to the JSON property `filteringFields`
|
6571
|
+
# @return [Google::Apis::HealthcareV1beta1::RollbackHl7MessagesFilteringFields]
|
6572
|
+
attr_accessor :filtering_fields
|
6573
|
+
|
6574
|
+
# Optional. When enabled, changes will be reverted without explicit confirmation.
|
6575
|
+
# Corresponds to the JSON property `force`
|
6576
|
+
# @return [Boolean]
|
6577
|
+
attr_accessor :force
|
6578
|
+
alias_method :force?, :force
|
6579
|
+
|
6580
|
+
# Optional. Cloud storage object containing list of `resourceId` lines,
|
6581
|
+
# identifying resources to be reverted
|
6582
|
+
# Corresponds to the JSON property `inputGcsObject`
|
6583
|
+
# @return [String]
|
6584
|
+
attr_accessor :input_gcs_object
|
6585
|
+
|
6586
|
+
# Required. Bucket to deposit result
|
6587
|
+
# Corresponds to the JSON property `resultGcsBucket`
|
6588
|
+
# @return [String]
|
6589
|
+
attr_accessor :result_gcs_bucket
|
6590
|
+
|
6591
|
+
# Required. Times point to rollback to.
|
6592
|
+
# Corresponds to the JSON property `rollbackTime`
|
6593
|
+
# @return [String]
|
6594
|
+
attr_accessor :rollback_time
|
6595
|
+
|
6596
|
+
def initialize(**args)
|
6597
|
+
update!(**args)
|
6598
|
+
end
|
6599
|
+
|
6600
|
+
# Update properties of this object
|
6601
|
+
def update!(**args)
|
6602
|
+
@change_type = args[:change_type] if args.key?(:change_type)
|
6603
|
+
@exclude_rollbacks = args[:exclude_rollbacks] if args.key?(:exclude_rollbacks)
|
6604
|
+
@filtering_fields = args[:filtering_fields] if args.key?(:filtering_fields)
|
6605
|
+
@force = args[:force] if args.key?(:force)
|
6606
|
+
@input_gcs_object = args[:input_gcs_object] if args.key?(:input_gcs_object)
|
6607
|
+
@result_gcs_bucket = args[:result_gcs_bucket] if args.key?(:result_gcs_bucket)
|
6608
|
+
@rollback_time = args[:rollback_time] if args.key?(:rollback_time)
|
6609
|
+
end
|
6610
|
+
end
|
6611
|
+
|
6612
|
+
# Final response of rollback FHIR resources request.
|
6613
|
+
class RollbackHl7V2MessagesResponse
|
6614
|
+
include Google::Apis::Core::Hashable
|
6615
|
+
|
6616
|
+
# The name of the HL7v2 store to rollback, in the format of "projects/`
|
6617
|
+
# project_id`/locations/`location_id`/datasets/`dataset_id` /hl7v2Stores/`
|
6618
|
+
# fhir_store_id`".
|
6619
|
+
# Corresponds to the JSON property `hl7v2Store`
|
6620
|
+
# @return [String]
|
6621
|
+
attr_accessor :hl7v2_store
|
6622
|
+
|
6623
|
+
def initialize(**args)
|
6624
|
+
update!(**args)
|
6625
|
+
end
|
6626
|
+
|
6627
|
+
# Update properties of this object
|
6628
|
+
def update!(**args)
|
6629
|
+
@hl7v2_store = args[:hl7v2_store] if args.key?(:hl7v2_store)
|
6630
|
+
end
|
6631
|
+
end
|
6632
|
+
|
6471
6633
|
# Configuration for the FHIR BigQuery schema. Determines how the server
|
6472
6634
|
# generates the schema.
|
6473
6635
|
class SchemaConfig
|
@@ -7014,10 +7176,9 @@ module Google
|
|
7014
7176
|
# @return [Google::Apis::HealthcareV1beta1::BlobStorageInfo]
|
7015
7177
|
attr_accessor :blob_storage_info
|
7016
7178
|
|
7017
|
-
# The resource whose storage info is returned. For example
|
7018
|
-
#
|
7019
|
-
# /
|
7020
|
-
# series/`series_uid`/instances/`instance_uid``
|
7179
|
+
# The resource whose storage info is returned. For example: `projects/`projectID`
|
7180
|
+
# /locations/`locationID`/datasets/`datasetID`/dicomStores/`dicomStoreID`/
|
7181
|
+
# dicomWeb/studies/`studyUID`/series/`seriesUID`/instances/`instanceUID``
|
7021
7182
|
# Corresponds to the JSON property `referencedResource`
|
7022
7183
|
# @return [String]
|
7023
7184
|
attr_accessor :referenced_resource
|
@@ -7411,39 +7572,41 @@ module Google
|
|
7411
7572
|
class ValidationConfig
|
7412
7573
|
include Google::Apis::Core::Hashable
|
7413
7574
|
|
7414
|
-
# Whether to disable FHIRPath validation for incoming resources.
|
7415
|
-
# true to disable checking incoming resources for
|
7416
|
-
# requirement defined in the FHIR specification.
|
7417
|
-
# resource types that do not have profiles configured
|
7418
|
-
# enabled implementation guides will still be enforced.
|
7575
|
+
# Whether to disable FHIRPath validation for incoming resources. The default
|
7576
|
+
# value is false. Set this to true to disable checking incoming resources for
|
7577
|
+
# conformance against FHIRPath requirement defined in the FHIR specification.
|
7578
|
+
# This property only affects resource types that do not have profiles configured
|
7579
|
+
# for them, any rules in enabled implementation guides will still be enforced.
|
7419
7580
|
# Corresponds to the JSON property `disableFhirpathValidation`
|
7420
7581
|
# @return [Boolean]
|
7421
7582
|
attr_accessor :disable_fhirpath_validation
|
7422
7583
|
alias_method :disable_fhirpath_validation?, :disable_fhirpath_validation
|
7423
7584
|
|
7424
|
-
# Whether to disable profile validation for this FHIR store.
|
7425
|
-
# disable checking incoming resources for
|
7426
|
-
# StructureDefinitions in this FHIR store.
|
7585
|
+
# Whether to disable profile validation for this FHIR store. The default value
|
7586
|
+
# is false. Set this to true to disable checking incoming resources for
|
7587
|
+
# conformance against StructureDefinitions in this FHIR store.
|
7427
7588
|
# Corresponds to the JSON property `disableProfileValidation`
|
7428
7589
|
# @return [Boolean]
|
7429
7590
|
attr_accessor :disable_profile_validation
|
7430
7591
|
alias_method :disable_profile_validation?, :disable_profile_validation
|
7431
7592
|
|
7432
|
-
# Whether to disable reference type validation for incoming resources.
|
7433
|
-
# to true to disable checking incoming
|
7434
|
-
# reference type requirement defined in the
|
7435
|
-
# only affects resource types that do not have
|
7436
|
-
# rules in enabled implementation guides will
|
7593
|
+
# Whether to disable reference type validation for incoming resources. The
|
7594
|
+
# default value is false. Set this to true to disable checking incoming
|
7595
|
+
# resources for conformance against reference type requirement defined in the
|
7596
|
+
# FHIR specification. This property only affects resource types that do not have
|
7597
|
+
# profiles configured for them, any rules in enabled implementation guides will
|
7598
|
+
# still be enforced.
|
7437
7599
|
# Corresponds to the JSON property `disableReferenceTypeValidation`
|
7438
7600
|
# @return [Boolean]
|
7439
7601
|
attr_accessor :disable_reference_type_validation
|
7440
7602
|
alias_method :disable_reference_type_validation?, :disable_reference_type_validation
|
7441
7603
|
|
7442
|
-
# Whether to disable required fields validation for incoming resources.
|
7443
|
-
# to true to disable checking incoming
|
7444
|
-
# required fields requirement defined in the
|
7445
|
-
# only affects resource types that do not have
|
7446
|
-
# rules in enabled implementation guides will
|
7604
|
+
# Whether to disable required fields validation for incoming resources. The
|
7605
|
+
# default value is false. Set this to true to disable checking incoming
|
7606
|
+
# resources for conformance against required fields requirement defined in the
|
7607
|
+
# FHIR specification. This property only affects resource types that do not have
|
7608
|
+
# profiles configured for them, any rules in enabled implementation guides will
|
7609
|
+
# still be enforced.
|
7447
7610
|
# Corresponds to the JSON property `disableRequiredFieldValidation`
|
7448
7611
|
# @return [Boolean]
|
7449
7612
|
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.
|
19
|
+
GEM_VERSION = "0.74.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241115"
|
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
|
|
@@ -1168,6 +1180,24 @@ module Google
|
|
1168
1180
|
include Google::Apis::Core::JsonObjectSupport
|
1169
1181
|
end
|
1170
1182
|
|
1183
|
+
class RollbackHl7MessagesFilteringFields
|
1184
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1185
|
+
|
1186
|
+
include Google::Apis::Core::JsonObjectSupport
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
class RollbackHl7V2MessagesRequest
|
1190
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1191
|
+
|
1192
|
+
include Google::Apis::Core::JsonObjectSupport
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class RollbackHl7V2MessagesResponse
|
1196
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1197
|
+
|
1198
|
+
include Google::Apis::Core::JsonObjectSupport
|
1199
|
+
end
|
1200
|
+
|
1171
1201
|
class SchemaConfig
|
1172
1202
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1173
1203
|
|
@@ -1468,6 +1498,15 @@ module Google
|
|
1468
1498
|
end
|
1469
1499
|
end
|
1470
1500
|
|
1501
|
+
class ApplyAdminConsentsErrorDetail
|
1502
|
+
# @private
|
1503
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1504
|
+
collection :consent_errors, as: 'consentErrors', class: Google::Apis::HealthcareV1beta1::ConsentErrors, decorator: Google::Apis::HealthcareV1beta1::ConsentErrors::Representation
|
1505
|
+
|
1506
|
+
property :existing_operation_id, :numeric_string => true, as: 'existingOperationId'
|
1507
|
+
end
|
1508
|
+
end
|
1509
|
+
|
1471
1510
|
class ApplyAdminConsentsRequest
|
1472
1511
|
# @private
|
1473
1512
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1728,6 +1767,15 @@ module Google
|
|
1728
1767
|
end
|
1729
1768
|
end
|
1730
1769
|
|
1770
|
+
class ConsentErrors
|
1771
|
+
# @private
|
1772
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1773
|
+
property :error, as: 'error', class: Google::Apis::HealthcareV1beta1::Status, decorator: Google::Apis::HealthcareV1beta1::Status::Representation
|
1774
|
+
|
1775
|
+
property :name, as: 'name'
|
1776
|
+
end
|
1777
|
+
end
|
1778
|
+
|
1731
1779
|
class ConsentEvaluation
|
1732
1780
|
# @private
|
1733
1781
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3131,6 +3179,34 @@ module Google
|
|
3131
3179
|
end
|
3132
3180
|
end
|
3133
3181
|
|
3182
|
+
class RollbackHl7MessagesFilteringFields
|
3183
|
+
# @private
|
3184
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3185
|
+
collection :operation_ids, as: 'operationIds'
|
3186
|
+
end
|
3187
|
+
end
|
3188
|
+
|
3189
|
+
class RollbackHl7V2MessagesRequest
|
3190
|
+
# @private
|
3191
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3192
|
+
property :change_type, as: 'changeType'
|
3193
|
+
property :exclude_rollbacks, as: 'excludeRollbacks'
|
3194
|
+
property :filtering_fields, as: 'filteringFields', class: Google::Apis::HealthcareV1beta1::RollbackHl7MessagesFilteringFields, decorator: Google::Apis::HealthcareV1beta1::RollbackHl7MessagesFilteringFields::Representation
|
3195
|
+
|
3196
|
+
property :force, as: 'force'
|
3197
|
+
property :input_gcs_object, as: 'inputGcsObject'
|
3198
|
+
property :result_gcs_bucket, as: 'resultGcsBucket'
|
3199
|
+
property :rollback_time, as: 'rollbackTime'
|
3200
|
+
end
|
3201
|
+
end
|
3202
|
+
|
3203
|
+
class RollbackHl7V2MessagesResponse
|
3204
|
+
# @private
|
3205
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3206
|
+
property :hl7v2_store, as: 'hl7v2Store'
|
3207
|
+
end
|
3208
|
+
end
|
3209
|
+
|
3134
3210
|
class SchemaConfig
|
3135
3211
|
# @private
|
3136
3212
|
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
|
3490
|
-
#
|
3491
|
-
# /
|
3492
|
-
#
|
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
|
@@ -5076,6 +5076,207 @@ module Google
|
|
5076
5076
|
execute_or_queue_command(command, &block)
|
5077
5077
|
end
|
5078
5078
|
|
5079
|
+
# Creates a FHIR Binary resource. This method can be used to create a Binary
|
5080
|
+
# resource either by using one of the accepted FHIR JSON content types, or as a
|
5081
|
+
# raw data stream. If a resource is created with this method using the FHIR
|
5082
|
+
# content type this method's behavior is the same as [`fhir.create`](https://
|
5083
|
+
# cloud.google.com/healthcare-api/docs/reference/rest/v1/projects.locations.
|
5084
|
+
# datasets.fhirStores.fhir/create). If a resource type other than Binary is used
|
5085
|
+
# in the request it's treated in the same way as non-FHIR data (e.g., images,
|
5086
|
+
# zip archives, pdf files, documents). When a non-FHIR content type is used in
|
5087
|
+
# the request, a Binary resource will be generated, and the uploaded data will
|
5088
|
+
# be stored in the `content` field (`DSTU2` and `STU3`), or the `data` field (`
|
5089
|
+
# R4`). The Binary resource's `contentType` will be filled in using the value of
|
5090
|
+
# the `Content-Type` header, and the `securityContext` field (not present in `
|
5091
|
+
# DSTU2`) will be populated from the `X-Security-Context` header if it exists.
|
5092
|
+
# At this time `securityContext` has no special behavior in the Cloud Healthcare
|
5093
|
+
# API. Note: the limit on data ingested through this method is 1 GB. For best
|
5094
|
+
# performance, use a non-FHIR data type instead of wrapping the data in a Binary
|
5095
|
+
# resource. Some of the Healthcare API features, such as [exporting to BigQuery](
|
5096
|
+
# https://cloud.google.com/healthcare-api/docs/how-tos/fhir-export-bigquery) or [
|
5097
|
+
# Pub/Sub notifications](https://cloud.google.com/healthcare-api/docs/fhir-
|
5098
|
+
# pubsub#behavior_when_a_fhir_resource_is_too_large_or_traffic_is_high) with
|
5099
|
+
# full resource content, do not support Binary resources that are larger than 10
|
5100
|
+
# MB. In these cases the resource's `data` field will be omitted. Instead, the "
|
5101
|
+
# http://hl7.org/fhir/StructureDefinition/data-absent-reason" extension will be
|
5102
|
+
# present to indicate that including the data is `unsupported`. On success, an
|
5103
|
+
# empty `201 Created` response is returned. The newly created resource's ID and
|
5104
|
+
# version are returned in the Location header. Using `Prefer: representation=
|
5105
|
+
# resource` is not allowed for this method. The definition of the Binary REST
|
5106
|
+
# API can be found at https://hl7.org/fhir/binary.html#rest.
|
5107
|
+
# @param [String] parent
|
5108
|
+
# Required. The name of the FHIR store this resource belongs to.
|
5109
|
+
# @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
|
5110
|
+
# @param [String] fields
|
5111
|
+
# Selector specifying which fields to include in a partial response.
|
5112
|
+
# @param [String] quota_user
|
5113
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5114
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5115
|
+
# @param [Google::Apis::RequestOptions] options
|
5116
|
+
# Request-specific options
|
5117
|
+
#
|
5118
|
+
# @yield [result, err] Result & error if block supplied
|
5119
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::HttpBody] parsed result object
|
5120
|
+
# @yieldparam err [StandardError] error object if request failed
|
5121
|
+
#
|
5122
|
+
# @return [Google::Apis::HealthcareV1beta1::HttpBody]
|
5123
|
+
#
|
5124
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5125
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5126
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5127
|
+
def binary_project_location_dataset_fhir_store_fhir_create(parent, http_body_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
5128
|
+
command = make_simple_command(:post, 'v1beta1/{+parent}/fhir/Binary', options)
|
5129
|
+
command.request_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
5130
|
+
command.request_object = http_body_object
|
5131
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
5132
|
+
command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
|
5133
|
+
command.params['parent'] = parent unless parent.nil?
|
5134
|
+
command.query['fields'] = fields unless fields.nil?
|
5135
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5136
|
+
execute_or_queue_command(command, &block)
|
5137
|
+
end
|
5138
|
+
|
5139
|
+
# Gets the contents of a FHIR Binary resource. This method can be used to
|
5140
|
+
# retrieve a Binary resource either by using the FHIR JSON mimetype as the value
|
5141
|
+
# for the Accept header, or as a raw data stream. If the FHIR Accept type is
|
5142
|
+
# used this method will return a Binary resource with the data base64-encoded,
|
5143
|
+
# regardless of how the resource was created. The resource data can be retrieved
|
5144
|
+
# in base64-decoded form if the Accept type of the request matches the value of
|
5145
|
+
# the resource's `contentType` field. The definition of the Binary REST API can
|
5146
|
+
# be found at https://hl7.org/fhir/binary.html#rest.
|
5147
|
+
# @param [String] name
|
5148
|
+
# Required. The name of the Binary resource to retrieve.
|
5149
|
+
# @param [String] fields
|
5150
|
+
# Selector specifying which fields to include in a partial response.
|
5151
|
+
# @param [String] quota_user
|
5152
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5153
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5154
|
+
# @param [Google::Apis::RequestOptions] options
|
5155
|
+
# Request-specific options
|
5156
|
+
#
|
5157
|
+
# @yield [result, err] Result & error if block supplied
|
5158
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::HttpBody] parsed result object
|
5159
|
+
# @yieldparam err [StandardError] error object if request failed
|
5160
|
+
#
|
5161
|
+
# @return [Google::Apis::HealthcareV1beta1::HttpBody]
|
5162
|
+
#
|
5163
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5164
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5165
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5166
|
+
def binary_project_location_dataset_fhir_store_fhir_read(name, fields: nil, quota_user: nil, options: nil, &block)
|
5167
|
+
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
5168
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
5169
|
+
command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
|
5170
|
+
command.params['name'] = name unless name.nil?
|
5171
|
+
command.query['fields'] = fields unless fields.nil?
|
5172
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5173
|
+
execute_or_queue_command(command, &block)
|
5174
|
+
end
|
5175
|
+
|
5176
|
+
# Updates the entire contents of a Binary resource. If the specified resource
|
5177
|
+
# does not exist and the FHIR store has enable_update_create set, creates the
|
5178
|
+
# resource with the client-specified ID. It is strongly advised not to include
|
5179
|
+
# or encode any sensitive data such as patient identifiers in client-specified
|
5180
|
+
# resource IDs. Those IDs are part of the FHIR resource path recorded in Cloud
|
5181
|
+
# Audit Logs and Pub/Sub notifications. Those IDs can also be contained in
|
5182
|
+
# reference fields within other resources. This method can be used to update a
|
5183
|
+
# Binary resource either by using one of the accepted FHIR JSON content types,
|
5184
|
+
# or as a raw data stream. If a resource is updated with this method using the
|
5185
|
+
# FHIR content type this method's behavior is the same as `update`. If a
|
5186
|
+
# resource type other than Binary is used in the request it will be treated in
|
5187
|
+
# the same way as non-FHIR data. When a non-FHIR content type is used in the
|
5188
|
+
# request, a Binary resource will be generated using the ID from the resource
|
5189
|
+
# path, and the uploaded data will be stored in the `content` field (`DSTU2` and
|
5190
|
+
# `STU3`), or the `data` field (`R4`). The Binary resource's `contentType` will
|
5191
|
+
# be filled in using the value of the `Content-Type` header, and the `
|
5192
|
+
# securityContext` field (not present in `DSTU2`) will be populated from the `X-
|
5193
|
+
# Security-Context` header if it exists. At this time `securityContext` has no
|
5194
|
+
# special behavior in the Cloud Healthcare API. Note: the limit on data ingested
|
5195
|
+
# through this method is 2 GB. For best performance, use a non-FHIR data type
|
5196
|
+
# instead of wrapping the data in a Binary resource. Some of the Healthcare API
|
5197
|
+
# features, such as [exporting to BigQuery](https://cloud.google.com/healthcare-
|
5198
|
+
# api/docs/how-tos/fhir-export-bigquery) or [Pub/Sub notifications](https://
|
5199
|
+
# cloud.google.com/healthcare-api/docs/fhir-pubsub#
|
5200
|
+
# behavior_when_a_fhir_resource_is_too_large_or_traffic_is_high) with full
|
5201
|
+
# resource content, do not support Binary resources that are larger than 10 MB.
|
5202
|
+
# In these cases the resource's `data` field will be omitted. Instead, the "http:
|
5203
|
+
# //hl7.org/fhir/StructureDefinition/data-absent-reason" extension will be
|
5204
|
+
# present to indicate that including the data is `unsupported`. On success, an
|
5205
|
+
# empty 200 OK response will be returned, or a 201 Created if the resource did
|
5206
|
+
# not exit. The resource's ID and version are returned in the Location header.
|
5207
|
+
# Using `Prefer: representation=resource` is not allowed for this method. The
|
5208
|
+
# definition of the Binary REST API can be found at https://hl7.org/fhir/binary.
|
5209
|
+
# html#rest.
|
5210
|
+
# @param [String] name
|
5211
|
+
# Required. The name of the resource to update.
|
5212
|
+
# @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
|
5213
|
+
# @param [String] fields
|
5214
|
+
# Selector specifying which fields to include in a partial response.
|
5215
|
+
# @param [String] quota_user
|
5216
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5217
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5218
|
+
# @param [Google::Apis::RequestOptions] options
|
5219
|
+
# Request-specific options
|
5220
|
+
#
|
5221
|
+
# @yield [result, err] Result & error if block supplied
|
5222
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::HttpBody] parsed result object
|
5223
|
+
# @yieldparam err [StandardError] error object if request failed
|
5224
|
+
#
|
5225
|
+
# @return [Google::Apis::HealthcareV1beta1::HttpBody]
|
5226
|
+
#
|
5227
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5228
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5229
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5230
|
+
def binary_project_location_dataset_fhir_store_fhir_update(name, http_body_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
5231
|
+
command = make_simple_command(:put, 'v1beta1/{+name}', options)
|
5232
|
+
command.request_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
5233
|
+
command.request_object = http_body_object
|
5234
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
5235
|
+
command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
|
5236
|
+
command.params['name'] = name unless name.nil?
|
5237
|
+
command.query['fields'] = fields unless fields.nil?
|
5238
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5239
|
+
execute_or_queue_command(command, &block)
|
5240
|
+
end
|
5241
|
+
|
5242
|
+
# Gets the contents of a version (current or historical) of a FHIR Binary
|
5243
|
+
# resource by version ID. This method can be used to retrieve a Binary resource
|
5244
|
+
# version either by using the FHIR JSON mimetype as the value for the Accept
|
5245
|
+
# header, or as a raw data stream. If the FHIR Accept type is used this method
|
5246
|
+
# will return a Binary resource with the data base64-encoded, regardless of how
|
5247
|
+
# the resource version was created. The resource data can be retrieved in base64-
|
5248
|
+
# decoded form if the Accept type of the request matches the value of the
|
5249
|
+
# resource version's `contentType` field. The definition of the Binary REST API
|
5250
|
+
# can be found at https://hl7.org/fhir/binary.html#rest.
|
5251
|
+
# @param [String] name
|
5252
|
+
# Required. The name of the Binary resource version to retrieve.
|
5253
|
+
# @param [String] fields
|
5254
|
+
# Selector specifying which fields to include in a partial response.
|
5255
|
+
# @param [String] quota_user
|
5256
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5257
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5258
|
+
# @param [Google::Apis::RequestOptions] options
|
5259
|
+
# Request-specific options
|
5260
|
+
#
|
5261
|
+
# @yield [result, err] Result & error if block supplied
|
5262
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::HttpBody] parsed result object
|
5263
|
+
# @yieldparam err [StandardError] error object if request failed
|
5264
|
+
#
|
5265
|
+
# @return [Google::Apis::HealthcareV1beta1::HttpBody]
|
5266
|
+
#
|
5267
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5268
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5269
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5270
|
+
def binary_project_location_dataset_fhir_store_fhir_vread(name, fields: nil, quota_user: nil, options: nil, &block)
|
5271
|
+
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
5272
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
5273
|
+
command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
|
5274
|
+
command.params['name'] = name unless name.nil?
|
5275
|
+
command.query['fields'] = fields unless fields.nil?
|
5276
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5277
|
+
execute_or_queue_command(command, &block)
|
5278
|
+
end
|
5279
|
+
|
5079
5280
|
# Translates a code from one value set to another by searching for appropriate
|
5080
5281
|
# concept maps. Implements the FHIR standard $translate operation ([DSTU2](https:
|
5081
5282
|
# //www.hl7.org/fhir/DSTU2/operation-conceptmap-translate.html), [STU3](https://
|
@@ -5223,6 +5424,81 @@ module Google
|
|
5223
5424
|
execute_or_queue_command(command, &block)
|
5224
5425
|
end
|
5225
5426
|
|
5427
|
+
# Retrieves an Encounter resource and resources related to that Encounter.
|
5428
|
+
# Implements the FHIR extended operation Encounter-everything ([DSTU2](http://
|
5429
|
+
# hl7.org/implement/standards/fhir/DSTU2/encounter-operations.html#everything), [
|
5430
|
+
# STU3](http://hl7.org/implement/standards/fhir/STU3/encounter-operations.html#
|
5431
|
+
# everything), or [R4](https://hl7.org/implement/standards/fhir/R4/encounter-
|
5432
|
+
# operation-everything.html). On success, the response body contains a JSON-
|
5433
|
+
# encoded representation of a `Bundle` resource of type `searchset`, containing
|
5434
|
+
# the results of the operation. Errors generated by the FHIR store contain a
|
5435
|
+
# JSON-encoded `OperationOutcome` resource describing the reason for the error.
|
5436
|
+
# If the request cannot be mapped to a valid API method on a FHIR store, a
|
5437
|
+
# generic GCP error might be returned instead. The resources in scope for the
|
5438
|
+
# response are: * The Encounter resource itself. * All the resources directly
|
5439
|
+
# referenced by the Encounter resource, including attachments and binaries. *
|
5440
|
+
# Resources directly referencing the Encounter resource that meet the inclusion
|
5441
|
+
# criteria. The inclusion criteria are based on the membership rules in the
|
5442
|
+
# Encounter Compartment definition ([DSTU2](http://hl7.org/fhir/DSTU2/
|
5443
|
+
# compartment-encounter.html), [STU3](http://www.hl7.org/fhir/stu3/
|
5444
|
+
# compartmentdefinition-encounter.html), [R4](http://hl7.org/fhir/R4/
|
5445
|
+
# compartmentdefinition-encounter.html)), which details the eligible resource
|
5446
|
+
# types and referencing search parameters. * Resources referencing to the
|
5447
|
+
# Encounter resource through the "http://hl7.org/fhir/StructureDefinition/
|
5448
|
+
# encounter-associatedEncounter" extension.
|
5449
|
+
# @param [String] name
|
5450
|
+
# Required. Name of the Encounter resource for which the information is required.
|
5451
|
+
# @param [Fixnum] _count
|
5452
|
+
# Optional. Maximum number of resources in a page. If not specified, 100 is used.
|
5453
|
+
# May not be larger than 1000.
|
5454
|
+
# @param [String] _page_token
|
5455
|
+
# Optional. Used to retrieve the next or previous page of results when using
|
5456
|
+
# pagination. Set `_page_token` to the value of _page_token set in next or
|
5457
|
+
# previous page links' url. Next and previous page are returned in the response
|
5458
|
+
# bundle's links field, where `link.relation` is "previous" or "next". Omit `
|
5459
|
+
# _page_token` if no previous request has been made.
|
5460
|
+
# @param [String] _since
|
5461
|
+
# Optional. If provided, only resources updated after this time are returned.
|
5462
|
+
# The time uses the format YYYY-MM-DDThh:mm:ss.sss+zz:zz. For example, `2015-02-
|
5463
|
+
# 07T13:28:17.239+02:00` or `2017-01-01T00:00:00Z`. The time must be specified
|
5464
|
+
# to the second and include a time zone.
|
5465
|
+
# @param [String] _type
|
5466
|
+
# Optional. String of comma-delimited FHIR resource types. If provided, only
|
5467
|
+
# resources of the specified resource type(s) are returned. Specifying multiple `
|
5468
|
+
# _type` parameters isn't supported. For example, the result of `_type=
|
5469
|
+
# Observation&_type=Encounter` is undefined. Use `_type=Observation,Encounter`
|
5470
|
+
# instead.
|
5471
|
+
# @param [String] fields
|
5472
|
+
# Selector specifying which fields to include in a partial response.
|
5473
|
+
# @param [String] quota_user
|
5474
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5475
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5476
|
+
# @param [Google::Apis::RequestOptions] options
|
5477
|
+
# Request-specific options
|
5478
|
+
#
|
5479
|
+
# @yield [result, err] Result & error if block supplied
|
5480
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::HttpBody] parsed result object
|
5481
|
+
# @yieldparam err [StandardError] error object if request failed
|
5482
|
+
#
|
5483
|
+
# @return [Google::Apis::HealthcareV1beta1::HttpBody]
|
5484
|
+
#
|
5485
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5486
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5487
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5488
|
+
def encounter_project_location_dataset_fhir_store_fhir_everything(name, _count: nil, _page_token: nil, _since: nil, _type: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5489
|
+
command = make_simple_command(:get, 'v1beta1/{+name}/$everything', options)
|
5490
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
5491
|
+
command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
|
5492
|
+
command.params['name'] = name unless name.nil?
|
5493
|
+
command.query['_count'] = _count unless _count.nil?
|
5494
|
+
command.query['_page_token'] = _page_token unless _page_token.nil?
|
5495
|
+
command.query['_since'] = _since unless _since.nil?
|
5496
|
+
command.query['_type'] = _type unless _type.nil?
|
5497
|
+
command.query['fields'] = fields unless fields.nil?
|
5498
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5499
|
+
execute_or_queue_command(command, &block)
|
5500
|
+
end
|
5501
|
+
|
5226
5502
|
# Retrieves the N most recent `Observation` resources for a subject matching
|
5227
5503
|
# search criteria specified as query parameters, grouped by `Observation.code`,
|
5228
5504
|
# sorted from most recent to oldest. Implements the FHIR extended operation
|
@@ -6784,6 +7060,48 @@ module Google
|
|
6784
7060
|
execute_or_queue_command(command, &block)
|
6785
7061
|
end
|
6786
7062
|
|
7063
|
+
# Rolls back messages from the HL7v2 store to the specified time. This method
|
7064
|
+
# returns an Operation that can be used to track the status of the rollback by
|
7065
|
+
# calling GetOperation. Immediate fatal errors appear in the error field, errors
|
7066
|
+
# are also logged to Cloud Logging (see [Viewing error logs in Cloud Logging](
|
7067
|
+
# https://cloud.google.com/healthcare/docs/how-tos/logging)). Otherwise, when
|
7068
|
+
# the operation finishes, a detailed response of type
|
7069
|
+
# RollbackHl7V2MessagesResponse is returned in the response field. The metadata
|
7070
|
+
# field type for this operation is OperationMetadata.
|
7071
|
+
# @param [String] name
|
7072
|
+
# Required. The name of the HL7v2 store to rollback, in the format of "projects/`
|
7073
|
+
# project_id`/locations/`location_id`/datasets/`dataset_id` /hl7V2Stores/`
|
7074
|
+
# hl7v2_store_id`".
|
7075
|
+
# @param [Google::Apis::HealthcareV1beta1::RollbackHl7V2MessagesRequest] rollback_hl7_v2_messages_request_object
|
7076
|
+
# @param [String] fields
|
7077
|
+
# Selector specifying which fields to include in a partial response.
|
7078
|
+
# @param [String] quota_user
|
7079
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
7080
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
7081
|
+
# @param [Google::Apis::RequestOptions] options
|
7082
|
+
# Request-specific options
|
7083
|
+
#
|
7084
|
+
# @yield [result, err] Result & error if block supplied
|
7085
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::Operation] parsed result object
|
7086
|
+
# @yieldparam err [StandardError] error object if request failed
|
7087
|
+
#
|
7088
|
+
# @return [Google::Apis::HealthcareV1beta1::Operation]
|
7089
|
+
#
|
7090
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
7091
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
7092
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
7093
|
+
def rollback_hl7_v2_store_hl7_v2_messages(name, rollback_hl7_v2_messages_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
7094
|
+
command = make_simple_command(:post, 'v1beta1/{+name}:rollback', options)
|
7095
|
+
command.request_representation = Google::Apis::HealthcareV1beta1::RollbackHl7V2MessagesRequest::Representation
|
7096
|
+
command.request_object = rollback_hl7_v2_messages_request_object
|
7097
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::Operation::Representation
|
7098
|
+
command.response_class = Google::Apis::HealthcareV1beta1::Operation
|
7099
|
+
command.params['name'] = name unless name.nil?
|
7100
|
+
command.query['fields'] = fields unless fields.nil?
|
7101
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
7102
|
+
execute_or_queue_command(command, &block)
|
7103
|
+
end
|
7104
|
+
|
6787
7105
|
# Sets the access control policy on the specified resource. Replaces any
|
6788
7106
|
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
6789
7107
|
# PERMISSION_DENIED` errors.
|
@@ -7183,8 +7501,8 @@ module Google
|
|
7183
7501
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
7184
7502
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
7185
7503
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
7186
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
7187
|
-
# corresponding to `Code.CANCELLED`.
|
7504
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
7505
|
+
# , corresponding to `Code.CANCELLED`.
|
7188
7506
|
# @param [String] name
|
7189
7507
|
# The name of the operation resource to be cancelled.
|
7190
7508
|
# @param [Google::Apis::HealthcareV1beta1::CancelOperationRequest] cancel_operation_request_object
|
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.
|
4
|
+
version: 0.74.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-
|
11
|
+
date: 2024-12-04 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.74.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Healthcare API V1beta1
|