google-apis-healthcare_v1 0.58.0 → 0.59.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: 6b1d7cbe0b4753ecfa8088854fed62d6991dadc92b5b80154ce5d1809c840bfd
4
- data.tar.gz: df7fc70a9a09636c504af3896cb6c3cc3cc00c072ae167b66a1dd2062d74a11b
3
+ metadata.gz: 7711f7ad0c5b83257613609cfd31ce5f0e87a0cc9fd54571bc33877bdc8b2291
4
+ data.tar.gz: 74042aae4533e796a132a64501a1af0c09ca5168f7cfd08baa0f694e679b5254
5
5
  SHA512:
6
- metadata.gz: cad83d7f56f4679e096918861d672ccf2ef3e72a59a9cdc8a5c5b05f5537a3737998b9771739df7326e16d9eef732c78309da2ff227a2f5f9d73e26e4c37d5e2
7
- data.tar.gz: e81c507df6213058c7ee39f708c0201a139881cf00883e0a686c0627d5bc448b0be97568e34cd0be0fdc72fd9fb2185bccb4dd686bc8262103e90300bf59fa97
6
+ metadata.gz: fe67b21c36b85bfe355ab9166761ba0b8a6f81f83a640186de5888739cf800471284ec5af78a38df28d6b75a749b8165c62b7ed696a826cee96a8a20ce6efed7
7
+ data.tar.gz: f35017b8b86feab79c1f2a9f9dcc990f129e4174211d46b5587b2e8083f2de1a518ec77c1886487e570bad19ba272621614bcc7f7bdf8d914fa82a47b9a4a96a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1
2
2
 
3
+ ### v0.59.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240425
6
+
3
7
  ### v0.58.0 (2024-03-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20240312
@@ -1600,41 +1600,42 @@ module Google
1600
1600
  attr_accessor :end_time
1601
1601
 
1602
1602
  # Restricts messages exported to those matching a filter, only applicable to
1603
- # PubsubDestination. The following syntax is available: * A string field value
1604
- # can be written as text inside quotation marks, for example `"query text"`. The
1605
- # only valid relational operation for text fields is equality (`=`), where text
1606
- # is searched within the field, rather than having the field be equal to the
1607
- # text. For example, `"Comment = great"` returns messages with `great` in the
1608
- # comment field. * A number field value can be written as an integer, a decimal,
1609
- # or an exponential. The valid relational operators for number fields are the
1610
- # equality operator (`=`), along with the less than/greater than operators (`<`,
1611
- # `<=`, `>`, `>=`). Note that there is no inequality (`!=`) operator. You can
1612
- # prepend the `NOT` operator to an expression to negate it. * A date field value
1613
- # must be written in the `yyyy-mm-dd` format. Fields with date and time use the
1614
- # RFC3339 time format. Leading zeros are required for one-digit months and days.
1615
- # The valid relational operators for date fields are the equality operator (`=`)
1616
- # , along with the less than/greater than operators (`<`, `<=`, `>`, `>=`). Note
1617
- # that there is no inequality (`!=`) operator. You can prepend the `NOT`
1618
- # operator to an expression to negate it. * Multiple field query expressions can
1619
- # be combined in one query by adding `AND` or `OR` operators between the
1620
- # expressions. If a boolean operator appears within a quoted string, it is not
1621
- # treated as special, and is just another part of the character string to be
1622
- # matched. You can prepend the `NOT` operator to an expression to negate it. The
1623
- # following fields and functions are available for filtering: * `message_type`,
1624
- # from the MSH-9.1 field. For example, `NOT message_type = "ADT"`. * `send_date`
1625
- # or `sendDate`, the `yyyy-mm-dd` date the message was sent in the dataset's
1626
- # time_zone, from the MSH-7 segment. For example, `send_date < "2017-01-02"`. * `
1627
- # send_time`, the timestamp when the message was sent, using the RFC3339 time
1628
- # format for comparisons, from the MSH-7 segment. For example, `send_time < "
1629
- # 2017-01-02T00:00:00-05:00"`. * `create_time`, the timestamp when the message
1630
- # was created in the HL7v2 store. Use the RFC3339 time format for comparisons.
1631
- # For example, `create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`,
1632
- # the care center that the message came from, from the MSH-4 segment. For
1633
- # example, `send_facility = "ABC"`. Note: The filter will be applied to every
1634
- # message in the HL7v2 store whose `send_time` lies in the range defined by the `
1635
- # start_time` and the `end_time`. Even if the filter only matches a small set of
1636
- # messages, the export operation can still take a long time to finish when a lot
1637
- # of messages are between the specified `start_time` and `end_time` range.
1603
+ # PubsubDestination and GcsDestination. The following syntax is available: * A
1604
+ # string field value can be written as text inside quotation marks, for example `
1605
+ # "query text"`. The only valid relational operation for text fields is equality
1606
+ # (`=`), where text is searched within the field, rather than having the field
1607
+ # be equal to the text. For example, `"Comment = great"` returns messages with `
1608
+ # great` in the comment field. * A number field value can be written as an
1609
+ # integer, a decimal, or an exponential. The valid relational operators for
1610
+ # number fields are the equality operator (`=`), along with the less than/
1611
+ # greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
1612
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
1613
+ # expression to negate it. * A date field value must be written in the `yyyy-mm-
1614
+ # dd` format. Fields with date and time use the RFC3339 time format. Leading
1615
+ # zeros are required for one-digit months and days. The valid relational
1616
+ # operators for date fields are the equality operator (`=`) , along with the
1617
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
1618
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
1619
+ # expression to negate it. * Multiple field query expressions can be combined in
1620
+ # one query by adding `AND` or `OR` operators between the expressions. If a
1621
+ # boolean operator appears within a quoted string, it is not treated as special,
1622
+ # and is just another part of the character string to be matched. You can
1623
+ # prepend the `NOT` operator to an expression to negate it. The following fields
1624
+ # and functions are available for filtering: * `message_type`, from the MSH-9.1
1625
+ # field. For example, `NOT message_type = "ADT"`. * `send_date` or `sendDate`,
1626
+ # the `yyyy-mm-dd` date the message was sent in the dataset's time_zone, from
1627
+ # the MSH-7 segment. For example, `send_date < "2017-01-02"`. * `send_time`, the
1628
+ # timestamp when the message was sent, using the RFC3339 time format for
1629
+ # comparisons, from the MSH-7 segment. For example, `send_time < "2017-01-02T00:
1630
+ # 00:00-05:00"`. * `create_time`, the timestamp when the message was created in
1631
+ # the HL7v2 store. Use the RFC3339 time format for comparisons. For example, `
1632
+ # create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`, the care center
1633
+ # that the message came from, from the MSH-4 segment. For example, `
1634
+ # send_facility = "ABC"`. Note: The filter will be applied to every message in
1635
+ # the HL7v2 store whose `send_time` lies in the range defined by the `start_time`
1636
+ # and the `end_time`. Even if the filter only matches a small set of messages,
1637
+ # the export operation can still take a long time to finish when a lot of
1638
+ # messages are between the specified `start_time` and `end_time` range.
1638
1639
  # Corresponds to the JSON property `filter`
1639
1640
  # @return [String]
1640
1641
  attr_accessor :filter
@@ -2008,7 +2009,8 @@ module Google
2008
2009
  attr_accessor :labels
2009
2010
 
2010
2011
  # Output only. Identifier. Resource name of the FHIR store, of the form `
2011
- # projects/`project_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id``.
2012
+ # projects/`project_id`/locations/`location`/datasets/`dataset_id`/fhirStores/`
2013
+ # fhir_store_id``.
2012
2014
  # Corresponds to the JSON property `name`
2013
2015
  # @return [String]
2014
2016
  attr_accessor :name
@@ -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.58.0"
19
+ GEM_VERSION = "0.59.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240312"
25
+ REVISION = "20240425"
26
26
  end
27
27
  end
28
28
  end
@@ -3833,7 +3833,8 @@ module Google
3833
3833
  # Updates the configuration of the specified FHIR store.
3834
3834
  # @param [String] name
3835
3835
  # Output only. Identifier. Resource name of the FHIR store, of the form `
3836
- # projects/`project_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id``.
3836
+ # projects/`project_id`/locations/`location`/datasets/`dataset_id`/fhirStores/`
3837
+ # fhir_store_id``.
3837
3838
  # @param [Google::Apis::HealthcareV1::FhirStore] fhir_store_object
3838
3839
  # @param [String] update_mask
3839
3840
  # Required. The update mask applies to the resource. For the `FieldMask`
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.58.0
4
+ version: 0.59.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: 2024-03-24 00:00:00.000000000 Z
11
+ date: 2024-04-28 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.58.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.59.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: []