google-apis-healthcare_v1beta1 0.68.0 → 0.69.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: 76213782ee2b868a67ea25a313831e868707a5bd2ed2ff98db3fc070e4c57c9b
4
- data.tar.gz: 26521a7aa0c7262f6aa228bc295da4e6afb24862f74eb734060a155f66c72ec4
3
+ metadata.gz: b13954c83a93ce78732c93ed409b41c709ad9583970d418c123b24a1088b3425
4
+ data.tar.gz: 63fc803c9c26ed71d15f5667d6f8000e2af060ef1f02aaa16eb87bbc923e1a66
5
5
  SHA512:
6
- metadata.gz: 10d7ff0e957da66312dbf73eca4d2af0d248f473468167f7004a8f7ff429614f6136be19e8c8fd2333ae8f97621a0fe835b7da1423a4a4f503d78e0e1c4ec300
7
- data.tar.gz: 0fe2d790070ef2235f16e3745f3600563f7f90dce0a903ab03c12d33b7e3172015ec68837befda9d63ee5773d88a95bfa421e1f8d28efe9c7359bd412ea25d5e
6
+ metadata.gz: 392748b3ba6a889d7080d04be73f01d269d808557d444f3a072648cc9b43939e1f9970e3c9f31d93bd64f4d93890da49347e345a98548686b41a6bbab8c4a044
7
+ data.tar.gz: a0413efe69d5bb3b24f4ba4d1850a2b581744d0241c19fbbcc57849bcdcbc0371d7e6b28671b9947bbeb529e3cd80c3b47d21d0dc070a7207bd3f75ae4e605a6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.69.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240425
6
+
3
7
  ### v0.68.0 (2024-03-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20240312
@@ -2536,9 +2536,9 @@ module Google
2536
2536
  # @return [Array<String>]
2537
2537
  attr_accessor :cascade_origins
2538
2538
 
2539
- # The resource name of this consent resource. Format: `projects/`projectId`/
2540
- # locations/`locationId`/datasets/`datasetId`/fhirStores/`fhirStoreId`/fhir/`
2541
- # resourceType`/`id``.
2539
+ # The resource name of this consent resource, in the format: `projects/`
2540
+ # project_id`/locations/`location`/datasets/`dataset_id`/fhirStores/`
2541
+ # fhir_store_id`/fhir/Consent/`resource_id``.
2542
2542
  # Corresponds to the JSON property `consentResource`
2543
2543
  # @return [String]
2544
2544
  attr_accessor :consent_resource
@@ -2760,41 +2760,42 @@ module Google
2760
2760
  attr_accessor :end_time
2761
2761
 
2762
2762
  # Restricts messages exported to those matching a filter, only applicable to
2763
- # PubsubDestination. The following syntax is available: * A string field value
2764
- # can be written as text inside quotation marks, for example `"query text"`. The
2765
- # only valid relational operation for text fields is equality (`=`), where text
2766
- # is searched within the field, rather than having the field be equal to the
2767
- # text. For example, `"Comment = great"` returns messages with `great` in the
2768
- # comment field. * A number field value can be written as an integer, a decimal,
2769
- # or an exponential. The valid relational operators for number fields are the
2770
- # equality operator (`=`), along with the less than/greater than operators (`<`,
2771
- # `<=`, `>`, `>=`). Note that there is no inequality (`!=`) operator. You can
2772
- # prepend the `NOT` operator to an expression to negate it. * A date field value
2773
- # must be written in the `yyyy-mm-dd` format. Fields with date and time use the
2774
- # RFC3339 time format. Leading zeros are required for one-digit months and days.
2775
- # The valid relational operators for date fields are the equality operator (`=`)
2776
- # , along with the less than/greater than operators (`<`, `<=`, `>`, `>=`). Note
2777
- # that there is no inequality (`!=`) operator. You can prepend the `NOT`
2778
- # operator to an expression to negate it. * Multiple field query expressions can
2779
- # be combined in one query by adding `AND` or `OR` operators between the
2780
- # expressions. If a boolean operator appears within a quoted string, it is not
2781
- # treated as special, and is just another part of the character string to be
2782
- # matched. You can prepend the `NOT` operator to an expression to negate it. The
2783
- # following fields and functions are available for filtering: * `message_type`,
2784
- # from the MSH-9.1 field. For example, `NOT message_type = "ADT"`. * `send_date`
2785
- # or `sendDate`, the YYYY-MM-DD date the message was sent in the dataset's
2786
- # time_zone, from the MSH-7 segment. For example, `send_date < "2017-01-02"`. * `
2787
- # send_time`, the timestamp when the message was sent, using the RFC3339 time
2788
- # format for comparisons, from the MSH-7 segment. For example, `send_time < "
2789
- # 2017-01-02T00:00:00-05:00"`. * `create_time`, the timestamp when the message
2790
- # was created in the HL7v2 store. Use the RFC3339 time format for comparisons.
2791
- # For example, `create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`,
2792
- # the care center that the message came from, from the MSH-4 segment. For
2793
- # example, `send_facility = "ABC"`. Note: The filter will be applied to every
2794
- # message in the HL7v2 store whose `send_time` lies in the range defined by the `
2795
- # start_time` and the `end_time`. Even if the filter only matches a small set of
2796
- # messages, the export operation can still take a long time to finish when a lot
2797
- # of messages are between the specified `start_time` and `end_time` range.
2763
+ # PubsubDestination and GcsDestination. The following syntax is available: * A
2764
+ # string field value can be written as text inside quotation marks, for example `
2765
+ # "query text"`. The only valid relational operation for text fields is equality
2766
+ # (`=`), where text is searched within the field, rather than having the field
2767
+ # be equal to the text. For example, `"Comment = great"` returns messages with `
2768
+ # great` in the comment field. * A number field value can be written as an
2769
+ # integer, a decimal, or an exponential. The valid relational operators for
2770
+ # number fields are the equality operator (`=`), along with the less than/
2771
+ # greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2772
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2773
+ # expression to negate it. * A date field value must be written in the `yyyy-mm-
2774
+ # dd` format. Fields with date and time use the RFC3339 time format. Leading
2775
+ # zeros are required for one-digit months and days. The valid relational
2776
+ # operators for date fields are the equality operator (`=`) , along with the
2777
+ # less than/greater than operators (`<`, `<=`, `>`, `>=`). Note that there is no
2778
+ # inequality (`!=`) operator. You can prepend the `NOT` operator to an
2779
+ # expression to negate it. * Multiple field query expressions can be combined in
2780
+ # one query by adding `AND` or `OR` operators between the expressions. If a
2781
+ # boolean operator appears within a quoted string, it is not treated as special,
2782
+ # and is just another part of the character string to be matched. You can
2783
+ # prepend the `NOT` operator to an expression to negate it. The following fields
2784
+ # and functions are available for filtering: * `message_type`, from the MSH-9.1
2785
+ # field. For example, `NOT message_type = "ADT"`. * `send_date` or `sendDate`,
2786
+ # the YYYY-MM-DD date the message was sent in the dataset's time_zone, from the
2787
+ # MSH-7 segment. For example, `send_date < "2017-01-02"`. * `send_time`, the
2788
+ # timestamp when the message was sent, using the RFC3339 time format for
2789
+ # comparisons, from the MSH-7 segment. For example, `send_time < "2017-01-02T00:
2790
+ # 00:00-05:00"`. * `create_time`, the timestamp when the message was created in
2791
+ # the HL7v2 store. Use the RFC3339 time format for comparisons. For example, `
2792
+ # create_time < "2017-01-02T00:00:00-05:00"`. * `send_facility`, the care center
2793
+ # that the message came from, from the MSH-4 segment. For example, `
2794
+ # send_facility = "ABC"`. Note: The filter will be applied to every message in
2795
+ # the HL7v2 store whose `send_time` lies in the range defined by the `start_time`
2796
+ # and the `end_time`. Even if the filter only matches a small set of messages,
2797
+ # the export operation can still take a long time to finish when a lot of
2798
+ # messages are between the specified `start_time` and `end_time` range.
2798
2799
  # Corresponds to the JSON property `filter`
2799
2800
  # @return [String]
2800
2801
  attr_accessor :filter
@@ -3238,7 +3239,8 @@ module Google
3238
3239
  attr_accessor :labels
3239
3240
 
3240
3241
  # Output only. Identifier. Resource name of the FHIR store, of the form `
3241
- # projects/`project_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id``.
3242
+ # projects/`project_id`/locations/`location`/datasets/`dataset_id`/fhirStores/`
3243
+ # fhir_store_id``.
3242
3244
  # Corresponds to the JSON property `name`
3243
3245
  # @return [String]
3244
3246
  attr_accessor :name
@@ -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.68.0"
19
+ GEM_VERSION = "0.69.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
@@ -4833,7 +4833,8 @@ module Google
4833
4833
  # Updates the configuration of the specified FHIR store.
4834
4834
  # @param [String] name
4835
4835
  # Output only. Identifier. Resource name of the FHIR store, of the form `
4836
- # projects/`project_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id``.
4836
+ # projects/`project_id`/locations/`location`/datasets/`dataset_id`/fhirStores/`
4837
+ # fhir_store_id``.
4837
4838
  # @param [Google::Apis::HealthcareV1beta1::FhirStore] fhir_store_object
4838
4839
  # @param [String] update_mask
4839
4840
  # 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_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.68.0
4
+ version: 0.69.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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.68.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.69.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: []