google-apis-healthcare_v1 0.50.0 → 0.51.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: f004ade76cba73c008e2b858fa78c802b766af247fb9f9edde7b2e32785b743a
|
4
|
+
data.tar.gz: b53c8188a9a95471676f136abb2970181b56b71d3e122f8450a28096f76d28be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb584dd0962a76cde362e124d2beff50dbd5f1d80d08ddae5b93737ade12679c72d3beda411c8c8e037c329d6b5f1f7c4a9d31adb7c40ff0231671219884c1e5
|
7
|
+
data.tar.gz: 6c7cd3a6b39bf58e5d572152513fa72c532a321dee2449a1e69b85e2a0a9ae85d3607ed541c38e4c27108d3b632205e6ef9549a6dba3e64463b51d3efa5a6e0d
|
data/CHANGELOG.md
CHANGED
@@ -1573,42 +1573,41 @@ module Google
|
|
1573
1573
|
attr_accessor :end_time
|
1574
1574
|
|
1575
1575
|
# Restricts messages exported to those matching a filter, only applicable to
|
1576
|
-
# PubsubDestination
|
1577
|
-
#
|
1578
|
-
#
|
1579
|
-
#
|
1580
|
-
#
|
1581
|
-
#
|
1582
|
-
#
|
1583
|
-
#
|
1584
|
-
#
|
1585
|
-
#
|
1586
|
-
#
|
1587
|
-
#
|
1588
|
-
#
|
1589
|
-
#
|
1590
|
-
#
|
1591
|
-
#
|
1592
|
-
#
|
1593
|
-
#
|
1594
|
-
#
|
1595
|
-
#
|
1596
|
-
#
|
1597
|
-
#
|
1598
|
-
#
|
1599
|
-
# the
|
1600
|
-
# the
|
1601
|
-
#
|
1602
|
-
#
|
1603
|
-
#
|
1604
|
-
#
|
1605
|
-
#
|
1606
|
-
#
|
1607
|
-
#
|
1608
|
-
#
|
1609
|
-
#
|
1610
|
-
#
|
1611
|
-
# messages are between the specified `start_time` and `end_time` range.
|
1576
|
+
# PubsubDestination. The following syntax is available: * A string field value
|
1577
|
+
# can be written as text inside quotation marks, for example `"query text"`. The
|
1578
|
+
# only valid relational operation for text fields is equality (`=`), where text
|
1579
|
+
# is searched within the field, rather than having the field be equal to the
|
1580
|
+
# text. For example, `"Comment = great"` returns messages with `great` in the
|
1581
|
+
# comment field. * A number field value can be written as an integer, a decimal,
|
1582
|
+
# or an exponential. The valid relational operators for number fields are the
|
1583
|
+
# equality operator (`=`), along with the less than/greater than operators (`<`,
|
1584
|
+
# `<=`, `>`, `>=`). Note that there is no inequality (`!=`) operator. You can
|
1585
|
+
# prepend the `NOT` operator to an expression to negate it. * A date field value
|
1586
|
+
# must be written in the `yyyy-mm-dd` format. Fields with date and time use the
|
1587
|
+
# RFC3339 time format. Leading zeros are required for one-digit months and days.
|
1588
|
+
# The valid relational operators for date fields are the equality operator (`=`)
|
1589
|
+
# , along with the less than/greater than operators (`<`, `<=`, `>`, `>=`). Note
|
1590
|
+
# that there is no inequality (`!=`) operator. You can prepend the `NOT`
|
1591
|
+
# operator to an expression to negate it. * Multiple field query expressions can
|
1592
|
+
# be combined in one query by adding `AND` or `OR` operators between the
|
1593
|
+
# expressions. If a boolean operator appears within a quoted string, it is not
|
1594
|
+
# treated as special, and is just another part of the character string to be
|
1595
|
+
# matched. You can prepend the `NOT` operator to an expression to negate it. The
|
1596
|
+
# following fields and functions are available for filtering: * `message_type`,
|
1597
|
+
# from the MSH-9.1 field. For example, `NOT message_type = "ADT"`. * `send_date`
|
1598
|
+
# or `sendDate`, the `yyyy-mm-dd` date the message was sent in the dataset's
|
1599
|
+
# time_zone, from the MSH-7 segment. For example, `send_date < "2017-01-02"`. * `
|
1600
|
+
# send_time`, the timestamp when the message was sent, using the RFC3339 time
|
1601
|
+
# format for comparisons, from the MSH-7 segment. For example, `send_time < "
|
1602
|
+
# 2017-01-02T00:00:00-05:00"`. * `create_time`, the timestamp when the message
|
1603
|
+
# was created in the HL7v2 store. Use the RFC3339 time format for comparisons.
|
1604
|
+
# For example, `create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`,
|
1605
|
+
# the care center that the message came from, from the MSH-4 segment. For
|
1606
|
+
# example, `send_facility = "ABC"`. Note: The filter will be applied to every
|
1607
|
+
# message in the HL7v2 store whose `send_time` lies in the range defined by the `
|
1608
|
+
# start_time` and the `end_time`. Even if the filter only matches a small set of
|
1609
|
+
# messages, the export operation can still take a long time to finish when a lot
|
1610
|
+
# of messages are between the specified `start_time` and `end_time` range.
|
1612
1611
|
# Corresponds to the JSON property `filter`
|
1613
1612
|
# @return [String]
|
1614
1613
|
attr_accessor :filter
|
@@ -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.51.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 = "20231017"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4585,10 +4585,26 @@ module Google
|
|
4585
4585
|
# 50,000 might not be fully searchable as the server might trim its generated
|
4586
4586
|
# search index in those cases. Note: FHIR resources are indexed asynchronously,
|
4587
4587
|
# so there might be a slight delay between the time a resource is created or
|
4588
|
-
#
|
4589
|
-
#
|
4590
|
-
#
|
4591
|
-
#
|
4588
|
+
# changed, and the time when the change reflects in search results. The only
|
4589
|
+
# exception is resource identifier data, which is indexed synchronously as a
|
4590
|
+
# special index. As a result, searching using resource identifier is not subject
|
4591
|
+
# to indexing delay. To use the special synchronous index, the search term for
|
4592
|
+
# identifier should be in the pattern `identifier=[system]|[value]` or `
|
4593
|
+
# identifier=[value]`, and any of the following search result parameters can be
|
4594
|
+
# used: * `_count` * `_include` * `_revinclude` * `_summary` * `_elements` If
|
4595
|
+
# your query contains any other search parameters, the standard asynchronous
|
4596
|
+
# index will be used instead. Note that searching against the special index is
|
4597
|
+
# optimized for resolving a small number of matches. The search isn't optimized
|
4598
|
+
# if your identifier search criteria matches a large number (i.e. more than 2,
|
4599
|
+
# 000) of resources. For a search query that will match a large number of
|
4600
|
+
# resources, you can avoiding using the special synchronous index by including
|
4601
|
+
# an additional `_sort` parameter in your query. Use `_sort=-_lastUpdated` if
|
4602
|
+
# you want to keep the default sorting order. Note: The special synchronous
|
4603
|
+
# identifier index are currently disabled for DocumentReference and
|
4604
|
+
# DocumentManifest searches. For samples and detailed information, see [
|
4605
|
+
# Searching for FHIR resources](https://cloud.google.com/healthcare/docs/how-tos/
|
4606
|
+
# fhir-search) and [Advanced FHIR search features](https://cloud.google.com/
|
4607
|
+
# healthcare/docs/how-tos/fhir-advanced-search).
|
4592
4608
|
# @param [String] parent
|
4593
4609
|
# Name of the FHIR store to retrieve resources from.
|
4594
4610
|
# @param [Google::Apis::HealthcareV1::SearchResourcesRequest] search_resources_request_object
|
@@ -4663,10 +4679,26 @@ module Google
|
|
4663
4679
|
# 50,000 might not be fully searchable as the server might trim its generated
|
4664
4680
|
# search index in those cases. Note: FHIR resources are indexed asynchronously,
|
4665
4681
|
# so there might be a slight delay between the time a resource is created or
|
4666
|
-
#
|
4667
|
-
#
|
4668
|
-
#
|
4669
|
-
#
|
4682
|
+
# changed, and the time when the change reflects in search results. The only
|
4683
|
+
# exception is resource identifier data, which is indexed synchronously as a
|
4684
|
+
# special index. As a result, searching using resource identifier is not subject
|
4685
|
+
# to indexing delay. To use the special synchronous index, the search term for
|
4686
|
+
# identifier should be in the pattern `identifier=[system]|[value]` or `
|
4687
|
+
# identifier=[value]`, and any of the following search result parameters can be
|
4688
|
+
# used: * `_count` * `_include` * `_revinclude` * `_summary` * `_elements` If
|
4689
|
+
# your query contains any other search parameters, the standard asynchronous
|
4690
|
+
# index will be used instead. Note that searching against the special index is
|
4691
|
+
# optimized for resolving a small number of matches. The search isn't optimized
|
4692
|
+
# if your identifier search criteria matches a large number (i.e. more than 2,
|
4693
|
+
# 000) of resources. For a search query that will match a large number of
|
4694
|
+
# resources, you can avoiding using the special synchronous index by including
|
4695
|
+
# an additional `_sort` parameter in your query. Use `_sort=-_lastUpdated` if
|
4696
|
+
# you want to keep the default sorting order. Note: The special synchronous
|
4697
|
+
# identifier index are currently disabled for DocumentReference and
|
4698
|
+
# DocumentManifest searches. For samples and detailed information, see [
|
4699
|
+
# Searching for FHIR resources](https://cloud.google.com/healthcare/docs/how-tos/
|
4700
|
+
# fhir-search) and [Advanced FHIR search features](https://cloud.google.com/
|
4701
|
+
# healthcare/docs/how-tos/fhir-advanced-search).
|
4670
4702
|
# @param [String] parent
|
4671
4703
|
# Name of the FHIR store to retrieve resources from.
|
4672
4704
|
# @param [String] resource_type
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.51.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-10-
|
11
|
+
date: 2023-10-29 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.51.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|