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: 2557af71b5219308eb1693becd925597fa631bfdd62ee3539f9b74700d85a786
4
- data.tar.gz: '037883fa2377469b3a02ef4fe4e03f62d482ebcdaccf2051021748b504e3c2a3'
3
+ metadata.gz: f004ade76cba73c008e2b858fa78c802b766af247fb9f9edde7b2e32785b743a
4
+ data.tar.gz: b53c8188a9a95471676f136abb2970181b56b71d3e122f8450a28096f76d28be
5
5
  SHA512:
6
- metadata.gz: d5f07b28043d86e1ba36de62a6392b5f213280e41bd9063800746b06c7210c56424232e54d676551b125d39728eeacfce123272acbfb1bdf2e77c8e9b3e8dfe4
7
- data.tar.gz: 3c6199ec1724d46e647f7f18aaf27d8ec7037d7042af23d8ed00f4b61f40520434aa49a27b065bf72e9e2c2ae32f4683595e5021dca4209c445805d2e2a2f6cb
6
+ metadata.gz: eb584dd0962a76cde362e124d2beff50dbd5f1d80d08ddae5b93737ade12679c72d3beda411c8c8e037c329d6b5f1f7c4a9d31adb7c40ff0231671219884c1e5
7
+ data.tar.gz: 6c7cd3a6b39bf58e5d572152513fa72c532a321dee2449a1e69b85e2a0a9ae85d3607ed541c38e4c27108d3b632205e6ef9549a6dba3e64463b51d3efa5a6e0d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1
2
2
 
3
+ ### v0.51.0 (2023-10-22)
4
+
5
+ * Regenerated from discovery document revision 20231017
6
+
3
7
  ### v0.50.0 (2023-10-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20231003
@@ -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 and GcsDestination. The following syntax is available: * A
1577
- # string field value can be written as text inside quotation marks, for example `
1578
- # "query text"`. The only valid relational operation for text fields is equality
1579
- # (`=`), where text is searched within the field, rather than having the field
1580
- # be equal to the text. For example, `"Comment = great"` returns messages with `
1581
- # great` in the comment field. * A number field value can be written as an
1582
- # integer, a decimal, or an exponential. The valid relational operators for
1583
- # number fields are the equality operator (`=`), along with the less than/
1584
- # greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
1585
- # inequality (`!=`) operator. You can prepend the `NOT` operator to an
1586
- # expression to negate it. * A date field value must be written in the `yyyy-mm-
1587
- # dd` format. Fields with date and time use the RFC3339 time format. Leading
1588
- # zeros are required for one-digit months and days. The valid relational
1589
- # operators for date fields are the equality operator (`=`) , along with the
1590
- # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
1591
- # inequality (`!=`) operator. You can prepend the `NOT` operator to an
1592
- # expression to negate it. * Multiple field query expressions can be combined in
1593
- # one query by adding `AND` or `OR` operators between the expressions. If a
1594
- # boolean operator appears within a quoted string, it is not treated as special,
1595
- # and is just another part of the character string to be matched. You can
1596
- # prepend the `NOT` operator to an expression to negate it. The following fields
1597
- # and functions are available for filtering: * `message_type`, from the MSH-9.1
1598
- # field. For example, `NOT message_type = "ADT"`. * `send_date` or `sendDate`,
1599
- # the `yyyy-mm-dd` date the message was sent in the dataset's time_zone, from
1600
- # the MSH-7 segment. For example, `send_date < "2017-01-02"`. * `send_time`, the
1601
- # timestamp when the message was sent, using the RFC3339 time format for
1602
- # comparisons, from the MSH-7 segment. For example, `send_time < "2017-01-02T00:
1603
- # 00:00-05:00"`. * `create_time`, the timestamp when the message was created in
1604
- # the HL7v2 store. Use the RFC3339 time format for comparisons. For example, `
1605
- # create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`, the care center
1606
- # that the message came from, from the MSH-4 segment. For example, `
1607
- # send_facility = "ABC"`. Note: The filter will be applied to every message in
1608
- # the HL7v2 store whose `send_time` lies in the range defined by the `start_time`
1609
- # and the `end_time`. Even if the filter only matches a small set of messages,
1610
- # the export operation can still take a long time to finish when a lot of
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.50.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 = "20231003"
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
- # changes and when the change is reflected in search results. For samples and
4589
- # detailed information, see [Searching for FHIR resources](https://cloud.google.
4590
- # com/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](
4591
- # https://cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
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
- # changes and when the change is reflected in search results. For samples and
4667
- # detailed information, see [Searching for FHIR resources](https://cloud.google.
4668
- # com/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](
4669
- # https://cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
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.50.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-15 00:00:00.000000000 Z
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.50.0
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: []