google-apis-healthcare_v1 0.76.0 → 0.78.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bef0b59b1bf041cf827d7408014b8d9ccd1f3c6f2491e4f60a082144d6b1810f
|
4
|
+
data.tar.gz: 214e29d55cfcb6025dfa8bf30c2e6b3d3d67fb95feb1e9272cf6651dd416f78b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef1b751c921ff8e253997be4154db1464540bc4402e22f97809556762117ea22df80bdb7d6d76426aabed289d27599ddd3693252e54d78efbb3781897c1ebea8
|
7
|
+
data.tar.gz: 568a8f165819d2db4a2e975a91b848f52b21d2ee268d40a4d4d1182ec3a02651fab5280438a72e7a5a5c2a9cd00eea889e9e42b6f800d97caf962dfc579d93ce
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-healthcare_v1
|
2
2
|
|
3
|
+
### v0.78.0 (2025-08-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250710
|
6
|
+
|
7
|
+
### v0.77.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250625
|
10
|
+
|
3
11
|
### v0.76.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250526
|
@@ -1683,6 +1683,56 @@ module Google
|
|
1683
1683
|
end
|
1684
1684
|
end
|
1685
1685
|
|
1686
|
+
# Contains the configuration for DICOM notifications.
|
1687
|
+
class DicomNotificationConfig
|
1688
|
+
include Google::Apis::Core::Hashable
|
1689
|
+
|
1690
|
+
# Required. The [Pub/Sub](https://cloud.google.com/pubsub/docs/) topic that
|
1691
|
+
# notifications of changes are published on. Supplied by the client. The
|
1692
|
+
# notification is a `PubsubMessage` with the following fields: * `PubsubMessage.
|
1693
|
+
# Data` contains the resource name. * `PubsubMessage.MessageId` is the ID of
|
1694
|
+
# this notification. It is guaranteed to be unique within the topic. * `
|
1695
|
+
# PubsubMessage.PublishTime` is the time when the message was published. * `
|
1696
|
+
# PubsubMessage.Attributes` contains the following attributes: * `action`: The
|
1697
|
+
# name of the endpoint that generated the notification. Possible values are `
|
1698
|
+
# StoreInstances`, `SetBlobSettings`, `ImportDicomData`, etc. * `lastUpdatedTime`
|
1699
|
+
# : The latest timestamp when the DICOM instance was updated. * `storeName`: The
|
1700
|
+
# resource name of the DICOM store, of the form `projects/`project_id`/locations/
|
1701
|
+
# `location_id`/datasets/`dataset_id`/dicomStores/`dicom_store_id``. * `
|
1702
|
+
# studyInstanceUID`: The study UID of the DICOM instance that was changed. * `
|
1703
|
+
# seriesInstanceUID`: The series UID of the DICOM instance that was changed. * `
|
1704
|
+
# sopInstanceUID`: The instance UID of the DICOM instance that was changed. * `
|
1705
|
+
# versionId`: The version ID of the DICOM instance that was changed. * `modality`
|
1706
|
+
# : The modality tag of the DICOM instance that was changed. * `
|
1707
|
+
# previousStorageClass`: The storage class where the DICOM instance was
|
1708
|
+
# previously stored if the storage class was changed. * `storageClass`: The
|
1709
|
+
# storage class where the DICOM instance is currently stored. Note that
|
1710
|
+
# notifications are only sent if the topic is non-empty. [Topic names](https://
|
1711
|
+
# cloud.google.com/pubsub/docs/overview#names) must be scoped to a project. The
|
1712
|
+
# Cloud Healthcare API service account, service-@gcp-sa-healthcare.iam.
|
1713
|
+
# gserviceaccount.com, must have the `pubsub.topics.publish` permission (which
|
1714
|
+
# is typically included in `roles/pubsub.publisher` role) on the given Pub/Sub
|
1715
|
+
# topic. Not having adequate permissions causes the calls that send
|
1716
|
+
# notifications to fail (https://cloud.google.com/healthcare-api/docs/
|
1717
|
+
# permissions-healthcare-api-gcp-products#
|
1718
|
+
# dicom_fhir_and_hl7v2_store_cloud_pubsub_permissions). If a notification can't
|
1719
|
+
# be published to Pub/Sub, errors are logged to Cloud Logging. For more
|
1720
|
+
# information, see [Viewing error logs in Cloud Logging](https://cloud.google.
|
1721
|
+
# com/healthcare-api/docs/how-tos/logging).
|
1722
|
+
# Corresponds to the JSON property `pubsubTopic`
|
1723
|
+
# @return [String]
|
1724
|
+
attr_accessor :pubsub_topic
|
1725
|
+
|
1726
|
+
def initialize(**args)
|
1727
|
+
update!(**args)
|
1728
|
+
end
|
1729
|
+
|
1730
|
+
# Update properties of this object
|
1731
|
+
def update!(**args)
|
1732
|
+
@pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
|
1733
|
+
end
|
1734
|
+
end
|
1735
|
+
|
1686
1736
|
# Represents a DICOM store.
|
1687
1737
|
class DicomStore
|
1688
1738
|
include Google::Apis::Core::Hashable
|
@@ -1710,6 +1760,12 @@ module Google
|
|
1710
1760
|
# @return [Google::Apis::HealthcareV1::NotificationConfig]
|
1711
1761
|
attr_accessor :notification_config
|
1712
1762
|
|
1763
|
+
# Optional. Specifies where and whether to send notifications upon changes to a
|
1764
|
+
# DICOM store.
|
1765
|
+
# Corresponds to the JSON property `notificationConfigs`
|
1766
|
+
# @return [Array<Google::Apis::HealthcareV1::DicomNotificationConfig>]
|
1767
|
+
attr_accessor :notification_configs
|
1768
|
+
|
1713
1769
|
# Optional. A list of streaming configs used to configure the destination of
|
1714
1770
|
# streaming exports for every DICOM instance insertion in this DICOM store.
|
1715
1771
|
# After a new config is added to `stream_configs`, DICOM instance insertions are
|
@@ -1729,6 +1785,7 @@ module Google
|
|
1729
1785
|
@labels = args[:labels] if args.key?(:labels)
|
1730
1786
|
@name = args[:name] if args.key?(:name)
|
1731
1787
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
1788
|
+
@notification_configs = args[:notification_configs] if args.key?(:notification_configs)
|
1732
1789
|
@stream_configs = args[:stream_configs] if args.key?(:stream_configs)
|
1733
1790
|
end
|
1734
1791
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.78.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250710"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -292,6 +292,12 @@ module Google
|
|
292
292
|
include Google::Apis::Core::JsonObjectSupport
|
293
293
|
end
|
294
294
|
|
295
|
+
class DicomNotificationConfig
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
295
301
|
class DicomStore
|
296
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
303
|
|
@@ -1493,6 +1499,13 @@ module Google
|
|
1493
1499
|
end
|
1494
1500
|
end
|
1495
1501
|
|
1502
|
+
class DicomNotificationConfig
|
1503
|
+
# @private
|
1504
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1505
|
+
property :pubsub_topic, as: 'pubsubTopic'
|
1506
|
+
end
|
1507
|
+
end
|
1508
|
+
|
1496
1509
|
class DicomStore
|
1497
1510
|
# @private
|
1498
1511
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1500,6 +1513,8 @@ module Google
|
|
1500
1513
|
property :name, as: 'name'
|
1501
1514
|
property :notification_config, as: 'notificationConfig', class: Google::Apis::HealthcareV1::NotificationConfig, decorator: Google::Apis::HealthcareV1::NotificationConfig::Representation
|
1502
1515
|
|
1516
|
+
collection :notification_configs, as: 'notificationConfigs', class: Google::Apis::HealthcareV1::DicomNotificationConfig, decorator: Google::Apis::HealthcareV1::DicomNotificationConfig::Representation
|
1517
|
+
|
1503
1518
|
collection :stream_configs, as: 'streamConfigs', class: Google::Apis::HealthcareV1::GoogleCloudHealthcareV1DicomStreamConfig, decorator: Google::Apis::HealthcareV1::GoogleCloudHealthcareV1DicomStreamConfig::Representation
|
1504
1519
|
|
1505
1520
|
end
|
@@ -2899,13 +2899,13 @@ module Google
|
|
2899
2899
|
end
|
2900
2900
|
|
2901
2901
|
# RetrieveStudyMetadata returns instance associated with the given study
|
2902
|
-
# presented as metadata
|
2903
|
-
#
|
2904
|
-
#
|
2905
|
-
#
|
2906
|
-
#
|
2907
|
-
#
|
2908
|
-
#
|
2902
|
+
# presented as metadata. See [RetrieveTransaction] (http://dicom.nema.org/
|
2903
|
+
# medical/dicom/current/output/html/part18.html#sect_10.4). For details on the
|
2904
|
+
# implementation of RetrieveStudyMetadata, see [Metadata resources](https://
|
2905
|
+
# cloud.google.com/healthcare/docs/dicom#metadata_resources) in the Cloud
|
2906
|
+
# Healthcare API conformance statement. For samples that show how to call
|
2907
|
+
# RetrieveStudyMetadata, see [Retrieve metadata](https://cloud.google.com/
|
2908
|
+
# healthcare/docs/how-tos/dicomweb#retrieve-metadata).
|
2909
2909
|
# @param [String] parent
|
2910
2910
|
# Required. The name of the DICOM store that is being accessed. For example, `
|
2911
2911
|
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
|
@@ -3159,12 +3159,11 @@ module Google
|
|
3159
3159
|
end
|
3160
3160
|
|
3161
3161
|
# RetrieveSeriesMetadata returns instance associated with the given study and
|
3162
|
-
# series, presented as metadata
|
3163
|
-
#
|
3164
|
-
#
|
3165
|
-
#
|
3166
|
-
#
|
3167
|
-
# conformance statement. For samples that show how to call
|
3162
|
+
# series, presented as metadata. See [RetrieveTransaction] (http://dicom.nema.
|
3163
|
+
# org/medical/dicom/current/output/html/part18.html#sect_10.4). For details on
|
3164
|
+
# the implementation of RetrieveSeriesMetadata, see [Metadata resources](https://
|
3165
|
+
# cloud.google.com/healthcare/docs/dicom#metadata_resources) in the Cloud
|
3166
|
+
# Healthcare API conformance statement. For samples that show how to call
|
3168
3167
|
# RetrieveSeriesMetadata, see [Retrieve metadata](https://cloud.google.com/
|
3169
3168
|
# healthcare/docs/how-tos/dicomweb#retrieve-metadata).
|
3170
3169
|
# @param [String] parent
|
@@ -3375,14 +3374,13 @@ module Google
|
|
3375
3374
|
end
|
3376
3375
|
|
3377
3376
|
# RetrieveInstanceMetadata returns instance associated with the given study,
|
3378
|
-
# series, and SOP Instance UID presented as metadata
|
3379
|
-
#
|
3380
|
-
#
|
3381
|
-
#
|
3382
|
-
#
|
3383
|
-
#
|
3384
|
-
#
|
3385
|
-
# healthcare/docs/how-tos/dicomweb#retrieve-metadata).
|
3377
|
+
# series, and SOP Instance UID presented as metadata. See [RetrieveTransaction] (
|
3378
|
+
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4).
|
3379
|
+
# For details on the implementation of RetrieveInstanceMetadata, see [Metadata
|
3380
|
+
# resources](https://cloud.google.com/healthcare/docs/dicom#metadata_resources)
|
3381
|
+
# in the Cloud Healthcare API conformance statement. For samples that show how
|
3382
|
+
# to call RetrieveInstanceMetadata, see [Retrieve metadata](https://cloud.google.
|
3383
|
+
# com/healthcare/docs/how-tos/dicomweb#retrieve-metadata).
|
3386
3384
|
# @param [String] parent
|
3387
3385
|
# Required. The name of the DICOM store that is being accessed. For example, `
|
3388
3386
|
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
|
@@ -3468,6 +3466,50 @@ module Google
|
|
3468
3466
|
execute_or_queue_command(command, &block)
|
3469
3467
|
end
|
3470
3468
|
|
3469
|
+
# Returns uncompressed, unencoded bytes representing the referenced bulkdata tag
|
3470
|
+
# from an instance. See [Retrieve Transaction](http://dicom.nema.org/medical/
|
3471
|
+
# dicom/current/output/html/part18.html#sect_10.4). For details on the
|
3472
|
+
# implementation of RetrieveBulkdata, see [Bulkdata resources](https://cloud.
|
3473
|
+
# google.com/healthcare/docs/dicom#bulkdata-resources) in the Cloud Healthcare
|
3474
|
+
# API conformance statement. For samples that show how to call RetrieveBulkdata,
|
3475
|
+
# see [Retrieve bulkdata](https://cloud.google.com/healthcare/docs/how-tos/
|
3476
|
+
# dicomweb#retrieve-bulkdata).
|
3477
|
+
# @param [String] parent
|
3478
|
+
# Required. The name of the DICOM store that is being accessed. For example, `
|
3479
|
+
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
|
3480
|
+
# dicomStores/`dicom_store_id``.
|
3481
|
+
# @param [String] dicom_web_path
|
3482
|
+
# Required. The path for the `RetrieveBulkdata` DICOMweb request. For example, `
|
3483
|
+
# studies/`study_uid`/series/`series_uid`/instances/`instance_uid`/bukdata/`
|
3484
|
+
# bulkdata_uri``.
|
3485
|
+
# @param [String] fields
|
3486
|
+
# Selector specifying which fields to include in a partial response.
|
3487
|
+
# @param [String] quota_user
|
3488
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3489
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3490
|
+
# @param [Google::Apis::RequestOptions] options
|
3491
|
+
# Request-specific options
|
3492
|
+
#
|
3493
|
+
# @yield [result, err] Result & error if block supplied
|
3494
|
+
# @yieldparam result [Google::Apis::HealthcareV1::HttpBody] parsed result object
|
3495
|
+
# @yieldparam err [StandardError] error object if request failed
|
3496
|
+
#
|
3497
|
+
# @return [Google::Apis::HealthcareV1::HttpBody]
|
3498
|
+
#
|
3499
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3500
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3501
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3502
|
+
def retrieve_project_location_dataset_dicom_store_study_series_instance_bulkdatum_bulkdata(parent, dicom_web_path, fields: nil, quota_user: nil, options: nil, &block)
|
3503
|
+
command = make_simple_command(:get, 'v1/{+parent}/dicomWeb/{+dicomWebPath}', options)
|
3504
|
+
command.response_representation = Google::Apis::HealthcareV1::HttpBody::Representation
|
3505
|
+
command.response_class = Google::Apis::HealthcareV1::HttpBody
|
3506
|
+
command.params['parent'] = parent unless parent.nil?
|
3507
|
+
command.params['dicomWebPath'] = dicom_web_path unless dicom_web_path.nil?
|
3508
|
+
command.query['fields'] = fields unless fields.nil?
|
3509
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3510
|
+
execute_or_queue_command(command, &block)
|
3511
|
+
end
|
3512
|
+
|
3471
3513
|
# RetrieveFrames returns instances associated with the given study, series, SOP
|
3472
3514
|
# Instance UID and frame numbers. See [RetrieveTransaction] (http://dicom.nema.
|
3473
3515
|
# org/medical/dicom/current/output/html/part18.html#sect_10.4`. For details on
|
@@ -5627,10 +5669,11 @@ module Google
|
|
5627
5669
|
# by the FHIR store contain a JSON-encoded `OperationOutcome` resource
|
5628
5670
|
# describing the reason for the error. If the request cannot be mapped to a
|
5629
5671
|
# valid API method on a FHIR store, a generic GCP error might be returned
|
5630
|
-
# instead.
|
5631
|
-
# including the wildcard behaviour
|
5632
|
-
#
|
5633
|
-
#
|
5672
|
+
# instead. The conditional update interaction If-None-Match is supported,
|
5673
|
+
# including the wildcard behaviour, as defined by the R5 spec. This
|
5674
|
+
# functionality is supported in R4 and R5. For samples that show how to call `
|
5675
|
+
# update`, see [Updating a FHIR resource](https://cloud.google.com/healthcare/
|
5676
|
+
# docs/how-tos/fhir-resources#updating_a_fhir_resource).
|
5634
5677
|
# @param [String] name
|
5635
5678
|
# Required. The name of the resource to update.
|
5636
5679
|
# @param [Google::Apis::HealthcareV1::HttpBody] http_body_object
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-healthcare_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.78.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.78.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|