google-apis-healthcare_v1beta1 0.51.0 → 0.52.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: 37785edbc86a2f5947939cec2812f3a1c7f3bdc7d47d397f27b2beba72461aea
4
- data.tar.gz: 1ad7253af9ce6cd5b829cfe81ac0fc2a3bc5075ff27e54ecd197db37f3fd542d
3
+ metadata.gz: 573fe8c189d917d0c90f95c5e4c344b9f08e35dac6b4125b3f95d5a75b14d079
4
+ data.tar.gz: a34edd265db3780c31c555594c116097698a75b5b5c06c619b97782acf0ff6e2
5
5
  SHA512:
6
- metadata.gz: 6d73a62d3bfe57ccf2d55320c0e8141aed0a50debbd0adc3de51022179b5692f7732d3af6d805fb6ddfeb18adc6917d819040051c7b01058e070ace3bff86e90
7
- data.tar.gz: 50878587745fff48faf25da63052162c724c89409e932ce10b85f985d4f5000b9b9cc497ef8b89eabc450b62b1b75b636b905b70ddeed086c3fa7eb9411a553e
6
+ metadata.gz: 1a0b5faa9912d54554cf4ef308c935899255ded1ff142156c12f80c75b29f5604b60ac2511bc55c408031b73ccdb846274823ffbe7b3a8e3cefc997461e15335
7
+ data.tar.gz: 5e634d8e243e46de7e299d734415de6323db328aa7ea9f78efdc2553181e3949b83091b4eb281ba26566b4561ba206754459b5cddd473cd553028e86ece394c2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.52.0 (2023-08-13)
4
+
5
+ * Regenerated from discovery document revision 20230728
6
+
3
7
  ### v0.51.0 (2023-08-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20230720
@@ -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.51.0"
19
+ GEM_VERSION = "0.52.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 = "20230720"
25
+ REVISION = "20230728"
26
26
  end
27
27
  end
28
28
  end
@@ -5434,10 +5434,24 @@ module Google
5434
5434
  # 50,000 might not be fully searchable as the server might trim its generated
5435
5435
  # search index in those cases. Note: FHIR resources are indexed asynchronously,
5436
5436
  # so there might be a slight delay between the time a resource is created or
5437
- # changes and when the change is reflected in search results. For samples and
5438
- # detailed information, see [Searching for FHIR resources](https://cloud.google.
5439
- # com/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](
5440
- # https://cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
5437
+ # changed, and the time when the change reflects in search results. The only
5438
+ # exception is resource identifier data, which is indexed synchronously as a
5439
+ # special index. As a result, searching using resource identifier is not subject
5440
+ # to indexing delay. To use the special synchronous index, the search term for
5441
+ # identifier should be in the pattern `identifier=[system]|[value]` or `
5442
+ # identifier=[value]`, and any of the following search result parameters can be
5443
+ # used: * `_count` * `_include` * `_revinclude` * `_summary` * `_elements` If
5444
+ # your query contains any other search parameters, the standard asynchronous
5445
+ # index will be used instead. Note that searching against the special index is
5446
+ # optimized for resolving a small number of matches. The search isn't optimized
5447
+ # if your identifier search criteria matches a large number (i.e. more than 2,
5448
+ # 000) of resources. For a search query that will match a large number of
5449
+ # resources, you can avoiding using the special synchronous index by including
5450
+ # an additional `_sort` parameter in your query. Use `_sort=-_lastUpdated` if
5451
+ # you want to keep the default sorting order. For samples and detailed
5452
+ # information, see [Searching for FHIR resources](https://cloud.google.com/
5453
+ # healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](https:
5454
+ # //cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
5441
5455
  # @param [String] parent
5442
5456
  # Name of the FHIR store to retrieve resources from.
5443
5457
  # @param [Google::Apis::HealthcareV1beta1::SearchResourcesRequest] search_resources_request_object
@@ -5512,10 +5526,24 @@ module Google
5512
5526
  # 50,000 might not be fully searchable as the server might trim its generated
5513
5527
  # search index in those cases. Note: FHIR resources are indexed asynchronously,
5514
5528
  # so there might be a slight delay between the time a resource is created or
5515
- # changes and when the change is reflected in search results. For samples and
5516
- # detailed information, see [Searching for FHIR resources](https://cloud.google.
5517
- # com/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](
5518
- # https://cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
5529
+ # changed, and the time when the change reflects in search results. The only
5530
+ # exception is resource identifier data, which is indexed synchronously as a
5531
+ # special index. As a result, searching using resource identifier is not subject
5532
+ # to indexing delay. To use the special synchronous index, the search term for
5533
+ # identifier should be in the pattern `identifier=[system]|[value]` or `
5534
+ # identifier=[value]`, and any of the following search result parameters can be
5535
+ # used: * `_count` * `_include` * `_revinclude` * `_summary` * `_elements` If
5536
+ # your query contains any other search parameters, the standard asynchronous
5537
+ # index will be used instead. Note that searching against the special index is
5538
+ # optimized for resolving a small number of matches. The search isn't optimized
5539
+ # if your identifier search criteria matches a large number (i.e. more than 2,
5540
+ # 000) of resources. For a search query that will match a large number of
5541
+ # resources, you can avoiding using the special synchronous index by including
5542
+ # an additional `_sort` parameter in your query. Use `_sort=-_lastUpdated` if
5543
+ # you want to keep the default sorting order. For samples and detailed
5544
+ # information, see [Searching for FHIR resources](https://cloud.google.com/
5545
+ # healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](https:
5546
+ # //cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
5519
5547
  # @param [String] parent
5520
5548
  # Name of the FHIR store to retrieve resources from.
5521
5549
  # @param [String] resource_type
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.51.0
4
+ version: 0.52.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-08-06 00:00:00.000000000 Z
11
+ date: 2023-08-13 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.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.52.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: []