google-apis-healthcare_v1beta1 0.83.0 → 0.85.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 +8 -0
- data/lib/google/apis/healthcare_v1beta1/classes.rb +57 -0
- data/lib/google/apis/healthcare_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/healthcare_v1beta1/representations.rb +15 -0
- data/lib/google/apis/healthcare_v1beta1/service.rb +27 -28
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '09915102dadebe2e8fac6a6c51faa97b2f7d05050bf6bb27941211f047a3a565'
|
4
|
+
data.tar.gz: 3fc0fd1bf6dc511ecb96bf33d9a1564b07cbde6e150098284397faf100fc937c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 017f867d968505deb18816b503c2b139bac2b81612d10fc402bbc155e48694dcdf5d68f0ff4c69399fd0d9924802ba512b27eef6c430f375b1da8755b13da660
|
7
|
+
data.tar.gz: 14d7847b87bb75bb1838d6fef1438b97e82b384ee9444160b6e86248acb5b9d53e20a4a24a9c018e7e6e431ce8a6feb3b07d2381962a8b0a38009a07ab9940e9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-healthcare_v1beta1
|
2
2
|
|
3
|
+
### v0.85.0 (2025-08-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250710
|
6
|
+
|
7
|
+
### v0.84.0 (2025-07-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250625
|
10
|
+
|
3
11
|
### v0.83.0 (2025-06-22)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250609
|
@@ -1970,6 +1970,56 @@ module Google
|
|
1970
1970
|
end
|
1971
1971
|
end
|
1972
1972
|
|
1973
|
+
# Contains the configuration for DICOM notifications.
|
1974
|
+
class DicomNotificationConfig
|
1975
|
+
include Google::Apis::Core::Hashable
|
1976
|
+
|
1977
|
+
# Required. The [Pub/Sub](https://cloud.google.com/pubsub/docs/) topic that
|
1978
|
+
# notifications of changes are published on. Supplied by the client. The
|
1979
|
+
# notification is a `PubsubMessage` with the following fields: * `PubsubMessage.
|
1980
|
+
# Data` contains the resource name. * `PubsubMessage.MessageId` is the ID of
|
1981
|
+
# this notification. It is guaranteed to be unique within the topic. * `
|
1982
|
+
# PubsubMessage.PublishTime` is the time when the message was published. * `
|
1983
|
+
# PubsubMessage.Attributes` contains the following attributes: * `action`: The
|
1984
|
+
# name of the endpoint that generated the notification. Possible values are `
|
1985
|
+
# StoreInstances`, `SetBlobSettings`, `ImportDicomData`, etc. * `lastUpdatedTime`
|
1986
|
+
# : The latest timestamp when the DICOM instance was updated. * `storeName`: The
|
1987
|
+
# resource name of the DICOM store, of the form `projects/`project_id`/locations/
|
1988
|
+
# `location_id`/datasets/`dataset_id`/dicomStores/`dicom_store_id``. * `
|
1989
|
+
# studyInstanceUID`: The study UID of the DICOM instance that was changed. * `
|
1990
|
+
# seriesInstanceUID`: The series UID of the DICOM instance that was changed. * `
|
1991
|
+
# sopInstanceUID`: The instance UID of the DICOM instance that was changed. * `
|
1992
|
+
# versionId`: The version ID of the DICOM instance that was changed. * `modality`
|
1993
|
+
# : The modality tag of the DICOM instance that was changed. * `
|
1994
|
+
# previousStorageClass`: The storage class where the DICOM instance was
|
1995
|
+
# previously stored if the storage class was changed. * `storageClass`: The
|
1996
|
+
# storage class where the DICOM instance is currently stored. Note that
|
1997
|
+
# notifications are only sent if the topic is non-empty. [Topic names](https://
|
1998
|
+
# cloud.google.com/pubsub/docs/overview#names) must be scoped to a project. The
|
1999
|
+
# Cloud Healthcare API service account, service-@gcp-sa-healthcare.iam.
|
2000
|
+
# gserviceaccount.com, must have the `pubsub.topics.publish` permission (which
|
2001
|
+
# is typically included in `roles/pubsub.publisher` role) on the given Pub/Sub
|
2002
|
+
# topic. Not having adequate permissions causes the calls that send
|
2003
|
+
# notifications to fail (https://cloud.google.com/healthcare-api/docs/
|
2004
|
+
# permissions-healthcare-api-gcp-products#
|
2005
|
+
# dicom_fhir_and_hl7v2_store_cloud_pubsub_permissions). If a notification can't
|
2006
|
+
# be published to Pub/Sub, errors are logged to Cloud Logging. For more
|
2007
|
+
# information, see [Viewing error logs in Cloud Logging](https://cloud.google.
|
2008
|
+
# com/healthcare-api/docs/how-tos/logging).
|
2009
|
+
# Corresponds to the JSON property `pubsubTopic`
|
2010
|
+
# @return [String]
|
2011
|
+
attr_accessor :pubsub_topic
|
2012
|
+
|
2013
|
+
def initialize(**args)
|
2014
|
+
update!(**args)
|
2015
|
+
end
|
2016
|
+
|
2017
|
+
# Update properties of this object
|
2018
|
+
def update!(**args)
|
2019
|
+
@pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
|
2020
|
+
end
|
2021
|
+
end
|
2022
|
+
|
1973
2023
|
# Represents a DICOM store.
|
1974
2024
|
class DicomStore
|
1975
2025
|
include Google::Apis::Core::Hashable
|
@@ -1997,6 +2047,12 @@ module Google
|
|
1997
2047
|
# @return [Google::Apis::HealthcareV1beta1::NotificationConfig]
|
1998
2048
|
attr_accessor :notification_config
|
1999
2049
|
|
2050
|
+
# Optional. Specifies where and whether to send notifications upon changes to a
|
2051
|
+
# DICOM store.
|
2052
|
+
# Corresponds to the JSON property `notificationConfigs`
|
2053
|
+
# @return [Array<Google::Apis::HealthcareV1beta1::DicomNotificationConfig>]
|
2054
|
+
attr_accessor :notification_configs
|
2055
|
+
|
2000
2056
|
# Optional. A list of streaming configs used to configure the destination of
|
2001
2057
|
# streaming exports for every DICOM instance insertion in this DICOM store.
|
2002
2058
|
# After a new config is added to `stream_configs`, DICOM instance insertions are
|
@@ -2016,6 +2072,7 @@ module Google
|
|
2016
2072
|
@labels = args[:labels] if args.key?(:labels)
|
2017
2073
|
@name = args[:name] if args.key?(:name)
|
2018
2074
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
2075
|
+
@notification_configs = args[:notification_configs] if args.key?(:notification_configs)
|
2019
2076
|
@stream_configs = args[:stream_configs] if args.key?(:stream_configs)
|
2020
2077
|
end
|
2021
2078
|
end
|
@@ -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.85.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
|
@@ -364,6 +364,12 @@ module Google
|
|
364
364
|
include Google::Apis::Core::JsonObjectSupport
|
365
365
|
end
|
366
366
|
|
367
|
+
class DicomNotificationConfig
|
368
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
|
+
|
370
|
+
include Google::Apis::Core::JsonObjectSupport
|
371
|
+
end
|
372
|
+
|
367
373
|
class DicomStore
|
368
374
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
375
|
|
@@ -1780,6 +1786,13 @@ module Google
|
|
1780
1786
|
end
|
1781
1787
|
end
|
1782
1788
|
|
1789
|
+
class DicomNotificationConfig
|
1790
|
+
# @private
|
1791
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1792
|
+
property :pubsub_topic, as: 'pubsubTopic'
|
1793
|
+
end
|
1794
|
+
end
|
1795
|
+
|
1783
1796
|
class DicomStore
|
1784
1797
|
# @private
|
1785
1798
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1787,6 +1800,8 @@ module Google
|
|
1787
1800
|
property :name, as: 'name'
|
1788
1801
|
property :notification_config, as: 'notificationConfig', class: Google::Apis::HealthcareV1beta1::NotificationConfig, decorator: Google::Apis::HealthcareV1beta1::NotificationConfig::Representation
|
1789
1802
|
|
1803
|
+
collection :notification_configs, as: 'notificationConfigs', class: Google::Apis::HealthcareV1beta1::DicomNotificationConfig, decorator: Google::Apis::HealthcareV1beta1::DicomNotificationConfig::Representation
|
1804
|
+
|
1790
1805
|
collection :stream_configs, as: 'streamConfigs', class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomStreamConfig, decorator: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomStreamConfig::Representation
|
1791
1806
|
|
1792
1807
|
end
|
@@ -3058,13 +3058,13 @@ module Google
|
|
3058
3058
|
end
|
3059
3059
|
|
3060
3060
|
# RetrieveStudyMetadata returns instance associated with the given study
|
3061
|
-
# presented as metadata
|
3062
|
-
#
|
3063
|
-
#
|
3064
|
-
#
|
3065
|
-
#
|
3066
|
-
#
|
3067
|
-
#
|
3061
|
+
# presented as metadata. See [RetrieveTransaction](http://dicom.nema.org/medical/
|
3062
|
+
# dicom/current/output/html/part18.html#sect_10.4). For details on the
|
3063
|
+
# implementation of RetrieveStudyMetadata, see [Metadata resources](https://
|
3064
|
+
# cloud.google.com/healthcare/docs/dicom#metadata_resources) in the Cloud
|
3065
|
+
# Healthcare API conformance statement. For samples that show how to call
|
3066
|
+
# RetrieveStudyMetadata, see [Retrieve metadata](https://cloud.google.com/
|
3067
|
+
# healthcare/docs/how-tos/dicomweb#retrieve-metadata).
|
3068
3068
|
# @param [String] parent
|
3069
3069
|
# Required. The name of the DICOM store that is being accessed. For example, `
|
3070
3070
|
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
|
@@ -3318,12 +3318,11 @@ module Google
|
|
3318
3318
|
end
|
3319
3319
|
|
3320
3320
|
# RetrieveSeriesMetadata returns instance associated with the given study and
|
3321
|
-
# series, presented as metadata
|
3322
|
-
#
|
3323
|
-
#
|
3324
|
-
#
|
3325
|
-
#
|
3326
|
-
# conformance statement. For samples that show how to call
|
3321
|
+
# series, presented as metadata. See [RetrieveTransaction](http://dicom.nema.org/
|
3322
|
+
# medical/dicom/current/output/html/part18.html#sect_10.4). For details on the
|
3323
|
+
# implementation of RetrieveSeriesMetadata, see [Metadata resources](https://
|
3324
|
+
# cloud.google.com/healthcare/docs/dicom#metadata_resources) in the Cloud
|
3325
|
+
# Healthcare API conformance statement. For samples that show how to call
|
3327
3326
|
# RetrieveSeriesMetadata, see [Retrieve metadata](https://cloud.google.com/
|
3328
3327
|
# healthcare/docs/how-tos/dicomweb#retrieve-metadata).
|
3329
3328
|
# @param [String] parent
|
@@ -3535,14 +3534,13 @@ module Google
|
|
3535
3534
|
end
|
3536
3535
|
|
3537
3536
|
# RetrieveInstanceMetadata returns instance associated with the given study,
|
3538
|
-
# series, and SOP Instance UID presented as metadata
|
3539
|
-
#
|
3540
|
-
#
|
3541
|
-
#
|
3542
|
-
#
|
3543
|
-
#
|
3544
|
-
#
|
3545
|
-
# healthcare/docs/how-tos/dicomweb#retrieve-metadata).
|
3537
|
+
# series, and SOP Instance UID presented as metadata. See [RetrieveTransaction](
|
3538
|
+
# http://dicom.nema.org/medical/dicom/current/output/html/part18.html#sect_10.4).
|
3539
|
+
# For details on the implementation of RetrieveInstanceMetadata, see [Metadata
|
3540
|
+
# resources](https://cloud.google.com/healthcare/docs/dicom#metadata_resources)
|
3541
|
+
# in the Cloud Healthcare API conformance statement. For samples that show how
|
3542
|
+
# to call RetrieveInstanceMetadata, see [Retrieve metadata](https://cloud.google.
|
3543
|
+
# com/healthcare/docs/how-tos/dicomweb#retrieve-metadata).
|
3546
3544
|
# @param [String] parent
|
3547
3545
|
# Required. The name of the DICOM store that is being accessed. For example, `
|
3548
3546
|
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
|
@@ -3629,9 +3627,9 @@ module Google
|
|
3629
3627
|
end
|
3630
3628
|
|
3631
3629
|
# Returns uncompressed, unencoded bytes representing the referenced bulkdata tag
|
3632
|
-
# from an instance. See [Retrieve Transaction]
|
3633
|
-
# dicom/current/output/html/part18.html#sect_10.4)
|
3634
|
-
#
|
3630
|
+
# from an instance. See [Retrieve Transaction](http://dicom.nema.org/medical/
|
3631
|
+
# dicom/current/output/html/part18.html#sect_10.4). For details on the
|
3632
|
+
# implementation of RetrieveBulkdata, see [Bulkdata resources](https://cloud.
|
3635
3633
|
# google.com/healthcare/docs/dicom#bulkdata-resources) in the Cloud Healthcare
|
3636
3634
|
# API conformance statement. For samples that show how to call RetrieveBulkdata,
|
3637
3635
|
# see [Retrieve bulkdata](https://cloud.google.com/healthcare/docs/how-tos/
|
@@ -6278,10 +6276,11 @@ module Google
|
|
6278
6276
|
# by the FHIR store contain a JSON-encoded `OperationOutcome` resource
|
6279
6277
|
# describing the reason for the error. If the request cannot be mapped to a
|
6280
6278
|
# valid API method on a FHIR store, a generic GCP error might be returned
|
6281
|
-
# instead.
|
6282
|
-
# including the wildcard behaviour
|
6283
|
-
#
|
6284
|
-
#
|
6279
|
+
# instead. The conditional update interaction If-None-Match is supported,
|
6280
|
+
# including the wildcard behaviour, as defined by the R5 spec. This
|
6281
|
+
# functionality is supported in R4 and R5. For samples that show how to call `
|
6282
|
+
# update`, see [Updating a FHIR resource](https://cloud.google.com/healthcare/
|
6283
|
+
# docs/how-tos/fhir-resources#updating_a_fhir_resource).
|
6285
6284
|
# @param [String] name
|
6286
6285
|
# Required. The name of the resource to update.
|
6287
6286
|
# @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.85.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_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.85.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|