google-apis-healthcare_v1beta1 0.50.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: 462c1c819d397722800e0301c56991078e1ed3a8470cb57e61c855d204d6197c
4
- data.tar.gz: 96b40f3fd9a929d4afd810fecd128f036aec3f85aedb1e17cc9b43bc4b97beb0
3
+ metadata.gz: 573fe8c189d917d0c90f95c5e4c344b9f08e35dac6b4125b3f95d5a75b14d079
4
+ data.tar.gz: a34edd265db3780c31c555594c116097698a75b5b5c06c619b97782acf0ff6e2
5
5
  SHA512:
6
- metadata.gz: 95c331ddce96032dda6603f09375e8f44159a53b91cfd9e55e6b7825b55fb7fd6b120009e1f29a5a9e9ee35cfa319d33955eb2622125a064e2fd7d1ff63d2f30
7
- data.tar.gz: d81820f4bb3bd7c2e088c871d8b90076e5fc63a0a88948f6c82eb80a420b81d5ab71598bae9825a2ac3db2ab1edd978c449035b26b69a12fd426741745855d96
6
+ metadata.gz: 1a0b5faa9912d54554cf4ef308c935899255ded1ff142156c12f80c75b29f5604b60ac2511bc55c408031b73ccdb846274823ffbe7b3a8e3cefc997461e15335
7
+ data.tar.gz: 5e634d8e243e46de7e299d734415de6323db328aa7ea9f78efdc2553181e3949b83091b4eb281ba26566b4561ba206754459b5cddd473cd553028e86ece394c2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.51.0 (2023-08-03)
8
+
9
+ * Regenerated from discovery document revision 20230720
10
+
3
11
  ### v0.50.0 (2023-07-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20230627
@@ -140,6 +140,12 @@ module Google
140
140
  class AnalyzeEntitiesRequest
141
141
  include Google::Apis::Core::Hashable
142
142
 
143
+ # Optional. Alternative output format to be generated based on the results of
144
+ # analysis.
145
+ # Corresponds to the JSON property `alternativeOutputFormat`
146
+ # @return [String]
147
+ attr_accessor :alternative_output_format
148
+
143
149
  # document_content is a document to be annotated.
144
150
  # Corresponds to the JSON property `documentContent`
145
151
  # @return [String]
@@ -157,6 +163,7 @@ module Google
157
163
 
158
164
  # Update properties of this object
159
165
  def update!(**args)
166
+ @alternative_output_format = args[:alternative_output_format] if args.key?(:alternative_output_format)
160
167
  @document_content = args[:document_content] if args.key?(:document_content)
161
168
  @licensed_vocabularies = args[:licensed_vocabularies] if args.key?(:licensed_vocabularies)
162
169
  end
@@ -178,6 +185,12 @@ module Google
178
185
  # @return [Array<Google::Apis::HealthcareV1beta1::EntityMention>]
179
186
  attr_accessor :entity_mentions
180
187
 
188
+ # The FHIR bundle ([`R4`](http://hl7.org/fhir/R4/bundle.html)) that includes all
189
+ # the entities, the entity mentions, and the relationships in JSON format.
190
+ # Corresponds to the JSON property `fhirBundle`
191
+ # @return [String]
192
+ attr_accessor :fhir_bundle
193
+
181
194
  # relationships contains all the binary relationships that were identified
182
195
  # between entity mentions within the provided document.
183
196
  # Corresponds to the JSON property `relationships`
@@ -192,6 +205,7 @@ module Google
192
205
  def update!(**args)
193
206
  @entities = args[:entities] if args.key?(:entities)
194
207
  @entity_mentions = args[:entity_mentions] if args.key?(:entity_mentions)
208
+ @fhir_bundle = args[:fhir_bundle] if args.key?(:fhir_bundle)
195
209
  @relationships = args[:relationships] if args.key?(:relationships)
196
210
  end
197
211
  end
@@ -1346,9 +1360,7 @@ module Google
1346
1360
  # Ensures in-flight data remains in the region of origin during de-
1347
1361
  # identification. Using this option results in a significant reduction of
1348
1362
  # throughput, and is not compatible with `LOCATION` or `ORGANIZATION_NAME`
1349
- # infoTypes. If the deprecated [`DicomConfig`](google.cloud.healthcare.v1beta1.
1350
- # deidentify.DeidentifyConfig.dicom_config) or [`FhirConfig`](google.cloud.
1351
- # healthcare.v1beta1.deidentify.DeidentifyConfig.fhir_config) are used, then `
1363
+ # infoTypes. If the deprecated `DicomConfig` or `FhirConfig` are used, then `
1352
1364
  # LOCATION` must be excluded within `TextConfig`, and must also be excluded
1353
1365
  # within `ImageConfig` if image redaction is required.
1354
1366
  # Corresponds to the JSON property `useRegionalDataProcessing`
@@ -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.50.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 = "20230627"
25
+ REVISION = "20230728"
26
26
  end
27
27
  end
28
28
  end
@@ -1209,6 +1209,7 @@ module Google
1209
1209
  class AnalyzeEntitiesRequest
1210
1210
  # @private
1211
1211
  class Representation < Google::Apis::Core::JsonRepresentation
1212
+ property :alternative_output_format, as: 'alternativeOutputFormat'
1212
1213
  property :document_content, as: 'documentContent'
1213
1214
  collection :licensed_vocabularies, as: 'licensedVocabularies'
1214
1215
  end
@@ -1221,6 +1222,7 @@ module Google
1221
1222
 
1222
1223
  collection :entity_mentions, as: 'entityMentions', class: Google::Apis::HealthcareV1beta1::EntityMention, decorator: Google::Apis::HealthcareV1beta1::EntityMention::Representation
1223
1224
 
1225
+ property :fhir_bundle, as: 'fhirBundle'
1224
1226
  collection :relationships, as: 'relationships', class: Google::Apis::HealthcareV1beta1::EntityMentionRelationship, decorator: Google::Apis::HealthcareV1beta1::EntityMentionRelationship::Representation
1225
1227
 
1226
1228
  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.50.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-07-09 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.50.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: []