google-apis-healthcare_v1beta1 0.82.0 → 0.84.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 -19
- data/lib/google/apis/healthcare_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/healthcare_v1beta1/representations.rb +15 -14
- data/lib/google/apis/healthcare_v1beta1/service.rb +5 -4
- 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: 5d1739e4fbef5ef36ed63839cc98d156a346adca93125754ce474968b469b726
|
4
|
+
data.tar.gz: 85fb6bdadc829b3ae8e7f4e6810a1e9bc97025087d2145c37a4074fd7ff4391a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 832f8c3a52f270da43e0b97e462acbfd86570c530b4a126b087469a8a687dbbd992a215b6c96ef576d1cedb14cbb81a1b13eec7978908acb43da7cd132dff992
|
7
|
+
data.tar.gz: b6236846823186b995a67ed0edb6b16d4c75a82701d9e70b07272a7757cfaec782c657708d66c9d47053c6adb369e2b9a96c68cfc2c75e31f1eb1af11305b80a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-healthcare_v1beta1
|
2
2
|
|
3
|
+
### v0.84.0 (2025-07-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250625
|
6
|
+
|
7
|
+
### v0.83.0 (2025-06-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250609
|
10
|
+
|
3
11
|
### v0.82.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250526
|
@@ -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
|
@@ -3613,11 +3670,6 @@ module Google
|
|
3613
3670
|
class GoogleCloudHealthcareV1beta1DicomBigQueryDestination
|
3614
3671
|
include Google::Apis::Core::Hashable
|
3615
3672
|
|
3616
|
-
# BigQuery Change Data Capture configuration.
|
3617
|
-
# Corresponds to the JSON property `changeDataCaptureConfig`
|
3618
|
-
# @return [Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig]
|
3619
|
-
attr_accessor :change_data_capture_config
|
3620
|
-
|
3621
3673
|
# Use `write_disposition` instead. If `write_disposition` is specified, this
|
3622
3674
|
# parameter is ignored. force=false is equivalent to write_disposition=
|
3623
3675
|
# WRITE_EMPTY and force=true is equivalent to write_disposition=WRITE_TRUNCATE.
|
@@ -3645,26 +3697,12 @@ module Google
|
|
3645
3697
|
|
3646
3698
|
# Update properties of this object
|
3647
3699
|
def update!(**args)
|
3648
|
-
@change_data_capture_config = args[:change_data_capture_config] if args.key?(:change_data_capture_config)
|
3649
3700
|
@force = args[:force] if args.key?(:force)
|
3650
3701
|
@table_uri = args[:table_uri] if args.key?(:table_uri)
|
3651
3702
|
@write_disposition = args[:write_disposition] if args.key?(:write_disposition)
|
3652
3703
|
end
|
3653
3704
|
end
|
3654
3705
|
|
3655
|
-
# BigQuery Change Data Capture configuration.
|
3656
|
-
class GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig
|
3657
|
-
include Google::Apis::Core::Hashable
|
3658
|
-
|
3659
|
-
def initialize(**args)
|
3660
|
-
update!(**args)
|
3661
|
-
end
|
3662
|
-
|
3663
|
-
# Update properties of this object
|
3664
|
-
def update!(**args)
|
3665
|
-
end
|
3666
|
-
end
|
3667
|
-
|
3668
3706
|
# The Cloud Storage location where the server writes the output and the export
|
3669
3707
|
# configuration.
|
3670
3708
|
class GoogleCloudHealthcareV1beta1DicomGcsDestination
|
@@ -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.84.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 = "20250625"
|
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
|
|
@@ -604,12 +610,6 @@ module Google
|
|
604
610
|
include Google::Apis::Core::JsonObjectSupport
|
605
611
|
end
|
606
612
|
|
607
|
-
class GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig
|
608
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
609
|
-
|
610
|
-
include Google::Apis::Core::JsonObjectSupport
|
611
|
-
end
|
612
|
-
|
613
613
|
class GoogleCloudHealthcareV1beta1DicomGcsDestination
|
614
614
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
615
615
|
|
@@ -1786,6 +1786,13 @@ module Google
|
|
1786
1786
|
end
|
1787
1787
|
end
|
1788
1788
|
|
1789
|
+
class DicomNotificationConfig
|
1790
|
+
# @private
|
1791
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1792
|
+
property :pubsub_topic, as: 'pubsubTopic'
|
1793
|
+
end
|
1794
|
+
end
|
1795
|
+
|
1789
1796
|
class DicomStore
|
1790
1797
|
# @private
|
1791
1798
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1793,6 +1800,8 @@ module Google
|
|
1793
1800
|
property :name, as: 'name'
|
1794
1801
|
property :notification_config, as: 'notificationConfig', class: Google::Apis::HealthcareV1beta1::NotificationConfig, decorator: Google::Apis::HealthcareV1beta1::NotificationConfig::Representation
|
1795
1802
|
|
1803
|
+
collection :notification_configs, as: 'notificationConfigs', class: Google::Apis::HealthcareV1beta1::DicomNotificationConfig, decorator: Google::Apis::HealthcareV1beta1::DicomNotificationConfig::Representation
|
1804
|
+
|
1796
1805
|
collection :stream_configs, as: 'streamConfigs', class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomStreamConfig, decorator: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomStreamConfig::Representation
|
1797
1806
|
|
1798
1807
|
end
|
@@ -2203,20 +2212,12 @@ module Google
|
|
2203
2212
|
class GoogleCloudHealthcareV1beta1DicomBigQueryDestination
|
2204
2213
|
# @private
|
2205
2214
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2206
|
-
property :change_data_capture_config, as: 'changeDataCaptureConfig', class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig, decorator: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig::Representation
|
2207
|
-
|
2208
2215
|
property :force, as: 'force'
|
2209
2216
|
property :table_uri, as: 'tableUri'
|
2210
2217
|
property :write_disposition, as: 'writeDisposition'
|
2211
2218
|
end
|
2212
2219
|
end
|
2213
2220
|
|
2214
|
-
class GoogleCloudHealthcareV1beta1DicomChangeDataCaptureConfig
|
2215
|
-
# @private
|
2216
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
2217
|
-
end
|
2218
|
-
end
|
2219
|
-
|
2220
2221
|
class GoogleCloudHealthcareV1beta1DicomGcsDestination
|
2221
2222
|
# @private
|
2222
2223
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6278,10 +6278,11 @@ module Google
|
|
6278
6278
|
# by the FHIR store contain a JSON-encoded `OperationOutcome` resource
|
6279
6279
|
# describing the reason for the error. If the request cannot be mapped to a
|
6280
6280
|
# valid API method on a FHIR store, a generic GCP error might be returned
|
6281
|
-
# instead.
|
6282
|
-
# including the wildcard behaviour
|
6283
|
-
#
|
6284
|
-
#
|
6281
|
+
# instead. The conditional update interaction If-None-Match is supported,
|
6282
|
+
# including the wildcard behaviour, as defined by the R5 spec. This
|
6283
|
+
# functionality is supported in R4 and R5. For samples that show how to call `
|
6284
|
+
# update`, see [Updating a FHIR resource](https://cloud.google.com/healthcare/
|
6285
|
+
# docs/how-tos/fhir-resources#updating_a_fhir_resource).
|
6285
6286
|
# @param [String] name
|
6286
6287
|
# Required. The name of the resource to update.
|
6287
6288
|
# @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.84.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.84.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:
|