google-apis-healthcare_v1beta1 0.49.0 → 0.50.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 462c1c819d397722800e0301c56991078e1ed3a8470cb57e61c855d204d6197c
|
4
|
+
data.tar.gz: 96b40f3fd9a929d4afd810fecd128f036aec3f85aedb1e17cc9b43bc4b97beb0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95c331ddce96032dda6603f09375e8f44159a53b91cfd9e55e6b7825b55fb7fd6b120009e1f29a5a9e9ee35cfa319d33955eb2622125a064e2fd7d1ff63d2f30
|
7
|
+
data.tar.gz: d81820f4bb3bd7c2e088c871d8b90076e5fc63a0a88948f6c82eb80a420b81d5ab71598bae9825a2ac3db2ab1edd978c449035b26b69a12fd426741745855d96
|
data/CHANGELOG.md
CHANGED
@@ -1683,12 +1683,12 @@ module Google
|
|
1683
1683
|
# @return [Google::Apis::HealthcareV1beta1::NotificationConfig]
|
1684
1684
|
attr_accessor :notification_config
|
1685
1685
|
|
1686
|
-
# A list of streaming configs used to configure the destination of
|
1687
|
-
# exports for every DICOM instance insertion in this DICOM store.
|
1688
|
-
# config is added to `stream_configs`, DICOM instance insertions are
|
1689
|
-
# the new destination. When a config is removed from `stream_configs
|
1690
|
-
# server stops streaming to that destination. Each config must contain a
|
1691
|
-
# destination.
|
1686
|
+
# Optional. A list of streaming configs used to configure the destination of
|
1687
|
+
# streaming exports for every DICOM instance insertion in this DICOM store.
|
1688
|
+
# After a new config is added to `stream_configs`, DICOM instance insertions are
|
1689
|
+
# streamed to the new destination. When a config is removed from `stream_configs`
|
1690
|
+
# , the server stops streaming to that destination. Each config must contain a
|
1691
|
+
# unique destination.
|
1692
1692
|
# Corresponds to the JSON property `streamConfigs`
|
1693
1693
|
# @return [Array<Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1DicomStreamConfig>]
|
1694
1694
|
attr_accessor :stream_configs
|
@@ -2163,6 +2163,47 @@ module Google
|
|
2163
2163
|
# @return [String]
|
2164
2164
|
attr_accessor :end_time
|
2165
2165
|
|
2166
|
+
# Restricts messages exported to those matching a filter, only applicable to
|
2167
|
+
# PubsubDestination and GcsDestination. The following syntax is available: * A
|
2168
|
+
# string field value can be written as text inside quotation marks, for example `
|
2169
|
+
# "query text"`. The only valid relational operation for text fields is equality
|
2170
|
+
# (`=`), where text is searched within the field, rather than having the field
|
2171
|
+
# be equal to the text. For example, `"Comment = great"` returns messages with `
|
2172
|
+
# great` in the comment field. * A number field value can be written as an
|
2173
|
+
# integer, a decimal, or an exponential. The valid relational operators for
|
2174
|
+
# number fields are the equality operator (`=`), along with the less than/
|
2175
|
+
# greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
|
2176
|
+
# inequality (`!=`) operator. You can prepend the `NOT` operator to an
|
2177
|
+
# expression to negate it. * A date field value must be written in the `yyyy-mm-
|
2178
|
+
# dd` format. Fields with date and time use the RFC3339 time format. Leading
|
2179
|
+
# zeros are required for one-digit months and days. The valid relational
|
2180
|
+
# operators for date fields are the equality operator (`=`) , along with the
|
2181
|
+
# less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
|
2182
|
+
# inequality (`!=`) operator. You can prepend the `NOT` operator to an
|
2183
|
+
# expression to negate it. * Multiple field query expressions can be combined in
|
2184
|
+
# one query by adding `AND` or `OR` operators between the expressions. If a
|
2185
|
+
# boolean operator appears within a quoted string, it is not treated as special,
|
2186
|
+
# and is just another part of the character string to be matched. You can
|
2187
|
+
# prepend the `NOT` operator to an expression to negate it. The following fields
|
2188
|
+
# and functions are available for filtering: * `message_type`, from the MSH-9.1
|
2189
|
+
# field. For example, `NOT message_type = "ADT"`. * `send_date` or `sendDate`,
|
2190
|
+
# the YYYY-MM-DD date the message was sent in the dataset's time_zone, from the
|
2191
|
+
# MSH-7 segment. For example, `send_date < "2017-01-02"`. * `send_time`, the
|
2192
|
+
# timestamp when the message was sent, using the RFC3339 time format for
|
2193
|
+
# comparisons, from the MSH-7 segment. For example, `send_time < "2017-01-02T00:
|
2194
|
+
# 00:00-05:00"`. * `create_time`, the timestamp when the message was created in
|
2195
|
+
# the HL7v2 store. Use the RFC3339 time format for comparisons. For example, `
|
2196
|
+
# create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`, the care center
|
2197
|
+
# that the message came from, from the MSH-4 segment. For example, `
|
2198
|
+
# send_facility = "ABC"`. Note: The filter will be applied to every message in
|
2199
|
+
# the HL7v2 store whose `send_time` lies in the range defined by the `start_time`
|
2200
|
+
# and the `end_time`. Even if the filter only matches a small set of messages,
|
2201
|
+
# the export operation can still take a long time to finish when a lot of
|
2202
|
+
# messages are between the specified `start_time` and `end_time` range.
|
2203
|
+
# Corresponds to the JSON property `filter`
|
2204
|
+
# @return [String]
|
2205
|
+
attr_accessor :filter
|
2206
|
+
|
2166
2207
|
# The Cloud Storage output destination. The Cloud Healthcare Service Agent
|
2167
2208
|
# requires the `roles/storage.objectAdmin` Cloud IAM roles on the Cloud Storage
|
2168
2209
|
# location.
|
@@ -2170,6 +2211,12 @@ module Google
|
|
2170
2211
|
# @return [Google::Apis::HealthcareV1beta1::GcsDestination]
|
2171
2212
|
attr_accessor :gcs_destination
|
2172
2213
|
|
2214
|
+
# The Pub/Sub output destination. The Cloud Healthcare Service Agent requires
|
2215
|
+
# the `roles/pubsub.publisher` Cloud IAM role on the Pub/Sub topic.
|
2216
|
+
# Corresponds to the JSON property `pubsubDestination`
|
2217
|
+
# @return [Google::Apis::HealthcareV1beta1::PubsubDestination]
|
2218
|
+
attr_accessor :pubsub_destination
|
2219
|
+
|
2173
2220
|
# The start of the range in `send_time` (MSH.7, https://www.hl7.org/
|
2174
2221
|
# documentcenter/public_temp_2E58C1F9-1C23-BA17-0C6126475344DA9D/wg/conf/HL7MSH.
|
2175
2222
|
# htm) to process. If not specified, the UNIX epoch (1970-01-01T00:00:00Z) is
|
@@ -2187,7 +2234,9 @@ module Google
|
|
2187
2234
|
# Update properties of this object
|
2188
2235
|
def update!(**args)
|
2189
2236
|
@end_time = args[:end_time] if args.key?(:end_time)
|
2237
|
+
@filter = args[:filter] if args.key?(:filter)
|
2190
2238
|
@gcs_destination = args[:gcs_destination] if args.key?(:gcs_destination)
|
2239
|
+
@pubsub_destination = args[:pubsub_destination] if args.key?(:pubsub_destination)
|
2191
2240
|
@start_time = args[:start_time] if args.key?(:start_time)
|
2192
2241
|
end
|
2193
2242
|
end
|
@@ -5172,6 +5221,36 @@ module Google
|
|
5172
5221
|
end
|
5173
5222
|
end
|
5174
5223
|
|
5224
|
+
# The Pub/Sub output destination. The Cloud Healthcare Service Agent requires
|
5225
|
+
# the `roles/pubsub.publisher` Cloud IAM role on the Pub/Sub topic.
|
5226
|
+
class PubsubDestination
|
5227
|
+
include Google::Apis::Core::Hashable
|
5228
|
+
|
5229
|
+
# The [Pub/Sub](https://cloud.google.com/pubsub/docs/) topic that Pub/Sub
|
5230
|
+
# messages are published on. Supplied by the client. The `PubsubMessage`
|
5231
|
+
# contains the following fields: * `PubsubMessage.Data` contains the resource
|
5232
|
+
# name. * `PubsubMessage.MessageId` is the ID of this notification. It is
|
5233
|
+
# guaranteed to be unique within the topic. * `PubsubMessage.PublishTime` is the
|
5234
|
+
# time when the message was published. [Topic names](https://cloud.google.com/
|
5235
|
+
# pubsub/docs/overview#names) must be scoped to a project. The Cloud Healthcare
|
5236
|
+
# API service account, service-PROJECT_NUMBER@gcp-sa-healthcare.iam.
|
5237
|
+
# gserviceaccount.com, must have publisher permissions on the given Pub/Sub
|
5238
|
+
# topic. Not having adequate permissions causes the calls that send
|
5239
|
+
# notifications to fail.
|
5240
|
+
# Corresponds to the JSON property `pubsubTopic`
|
5241
|
+
# @return [String]
|
5242
|
+
attr_accessor :pubsub_topic
|
5243
|
+
|
5244
|
+
def initialize(**args)
|
5245
|
+
update!(**args)
|
5246
|
+
end
|
5247
|
+
|
5248
|
+
# Update properties of this object
|
5249
|
+
def update!(**args)
|
5250
|
+
@pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
|
5251
|
+
end
|
5252
|
+
end
|
5253
|
+
|
5175
5254
|
# Queries all data_ids that are consented for a given use in the given consent
|
5176
5255
|
# store and writes them to a specified destination. The returned Operation
|
5177
5256
|
# includes a progress counter for the number of User data mappings processed.
|
@@ -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.50.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230627"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -934,6 +934,12 @@ module Google
|
|
934
934
|
include Google::Apis::Core::JsonObjectSupport
|
935
935
|
end
|
936
936
|
|
937
|
+
class PubsubDestination
|
938
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
939
|
+
|
940
|
+
include Google::Apis::Core::JsonObjectSupport
|
941
|
+
end
|
942
|
+
|
937
943
|
class QueryAccessibleDataRequest
|
938
944
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
939
945
|
|
@@ -1781,8 +1787,11 @@ module Google
|
|
1781
1787
|
# @private
|
1782
1788
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1783
1789
|
property :end_time, as: 'endTime'
|
1790
|
+
property :filter, as: 'filter'
|
1784
1791
|
property :gcs_destination, as: 'gcsDestination', class: Google::Apis::HealthcareV1beta1::GcsDestination, decorator: Google::Apis::HealthcareV1beta1::GcsDestination::Representation
|
1785
1792
|
|
1793
|
+
property :pubsub_destination, as: 'pubsubDestination', class: Google::Apis::HealthcareV1beta1::PubsubDestination, decorator: Google::Apis::HealthcareV1beta1::PubsubDestination::Representation
|
1794
|
+
|
1786
1795
|
property :start_time, as: 'startTime'
|
1787
1796
|
end
|
1788
1797
|
end
|
@@ -2592,6 +2601,13 @@ module Google
|
|
2592
2601
|
end
|
2593
2602
|
end
|
2594
2603
|
|
2604
|
+
class PubsubDestination
|
2605
|
+
# @private
|
2606
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2607
|
+
property :pubsub_topic, as: 'pubsubTopic'
|
2608
|
+
end
|
2609
|
+
end
|
2610
|
+
|
2595
2611
|
class QueryAccessibleDataRequest
|
2596
2612
|
# @private
|
2597
2613
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.50.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: 2023-
|
11
|
+
date: 2023-07-09 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.50.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: []
|