google-apis-healthcare_v1beta1 0.45.0 → 0.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/healthcare_v1beta1/classes.rb +28 -1
- data/lib/google/apis/healthcare_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/healthcare_v1beta1/representations.rb +2 -0
- data/lib/google/apis/healthcare_v1beta1/service.rb +4 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7575db65ebfd0b027a029fd9b23bb6c8c07f5e3218b4f49874ea96db9d76a2cd
|
4
|
+
data.tar.gz: baf916ee1d8526377534f961ba29fe6abaf76ea469b31ec12635f05fb00df2ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3253410769880b83dc5bf35b6eee00b1370f9ef0d9e3242fa38c581ad810248bf71ce9c5b20191b0920a52218a794b6a40db7e2dd67ed15e960476efa1572d3
|
7
|
+
data.tar.gz: d350ea170acbb7a0432b38b93d007a3721526b49fe13af5cc4e5d534068be2a9ab7248c7d82d09471d3c02f127b0a35e2dda0e301be0e588604dc51dffc105c0
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-healthcare_v1beta1
|
2
2
|
|
3
|
+
### v0.47.0 (2023-05-14)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230427
|
6
|
+
|
7
|
+
### v0.46.0 (2023-04-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230412
|
10
|
+
|
3
11
|
### v0.45.0 (2023-04-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230321
|
@@ -1343,6 +1343,19 @@ module Google
|
|
1343
1343
|
# @return [Google::Apis::HealthcareV1beta1::TextConfig]
|
1344
1344
|
attr_accessor :text
|
1345
1345
|
|
1346
|
+
# Ensures in-flight data remains in the region of origin during de-
|
1347
|
+
# identification. Using this option results in a significant reduction of
|
1348
|
+
# 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 `
|
1352
|
+
# LOCATION` must be excluded within `TextConfig`, and must also be excluded
|
1353
|
+
# within `ImageConfig` if image redaction is required.
|
1354
|
+
# Corresponds to the JSON property `useRegionalDataProcessing`
|
1355
|
+
# @return [Boolean]
|
1356
|
+
attr_accessor :use_regional_data_processing
|
1357
|
+
alias_method :use_regional_data_processing?, :use_regional_data_processing
|
1358
|
+
|
1346
1359
|
def initialize(**args)
|
1347
1360
|
update!(**args)
|
1348
1361
|
end
|
@@ -1357,6 +1370,7 @@ module Google
|
|
1357
1370
|
@image = args[:image] if args.key?(:image)
|
1358
1371
|
@operation_metadata = args[:operation_metadata] if args.key?(:operation_metadata)
|
1359
1372
|
@text = args[:text] if args.key?(:text)
|
1373
|
+
@use_regional_data_processing = args[:use_regional_data_processing] if args.key?(:use_regional_data_processing)
|
1360
1374
|
end
|
1361
1375
|
end
|
1362
1376
|
|
@@ -2425,6 +2439,18 @@ module Google
|
|
2425
2439
|
attr_accessor :send_full_resource
|
2426
2440
|
alias_method :send_full_resource?, :send_full_resource
|
2427
2441
|
|
2442
|
+
# Whether to send full FHIR resource to this pubsub topic for deleting FHIR
|
2443
|
+
# resource. Note that setting this to true does not guarantee that all previous
|
2444
|
+
# resources will be sent in the format of full FHIR resource. When a resource
|
2445
|
+
# change is too large or during heavy traffic, only the resource name will be
|
2446
|
+
# sent. Clients should always check the "payloadType" label from a Pub/Sub
|
2447
|
+
# message to determine whether it needs to fetch the full previous resource as a
|
2448
|
+
# separate operation.
|
2449
|
+
# Corresponds to the JSON property `sendPreviousResourceOnDelete`
|
2450
|
+
# @return [Boolean]
|
2451
|
+
attr_accessor :send_previous_resource_on_delete
|
2452
|
+
alias_method :send_previous_resource_on_delete?, :send_previous_resource_on_delete
|
2453
|
+
|
2428
2454
|
def initialize(**args)
|
2429
2455
|
update!(**args)
|
2430
2456
|
end
|
@@ -2433,6 +2459,7 @@ module Google
|
|
2433
2459
|
def update!(**args)
|
2434
2460
|
@pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
|
2435
2461
|
@send_full_resource = args[:send_full_resource] if args.key?(:send_full_resource)
|
2462
|
+
@send_previous_resource_on_delete = args[:send_previous_resource_on_delete] if args.key?(:send_previous_resource_on_delete)
|
2436
2463
|
end
|
2437
2464
|
end
|
2438
2465
|
|
@@ -4594,7 +4621,7 @@ module Google
|
|
4594
4621
|
end
|
4595
4622
|
end
|
4596
4623
|
|
4597
|
-
# A resource that represents Google Cloud
|
4624
|
+
# A resource that represents a Google Cloud location.
|
4598
4625
|
class Location
|
4599
4626
|
include Google::Apis::Core::Hashable
|
4600
4627
|
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.47.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 = "
|
25
|
+
REVISION = "20230427"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1547,6 +1547,7 @@ module Google
|
|
1547
1547
|
|
1548
1548
|
property :text, as: 'text', class: Google::Apis::HealthcareV1beta1::TextConfig, decorator: Google::Apis::HealthcareV1beta1::TextConfig::Representation
|
1549
1549
|
|
1550
|
+
property :use_regional_data_processing, as: 'useRegionalDataProcessing'
|
1550
1551
|
end
|
1551
1552
|
end
|
1552
1553
|
|
@@ -1853,6 +1854,7 @@ module Google
|
|
1853
1854
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1854
1855
|
property :pubsub_topic, as: 'pubsubTopic'
|
1855
1856
|
property :send_full_resource, as: 'sendFullResource'
|
1857
|
+
property :send_previous_resource_on_delete, as: 'sendPreviousResourceOnDelete'
|
1856
1858
|
end
|
1857
1859
|
end
|
1858
1860
|
|
@@ -4681,10 +4681,10 @@ module Google
|
|
4681
4681
|
execute_or_queue_command(command, &block)
|
4682
4682
|
end
|
4683
4683
|
|
4684
|
-
#
|
4685
|
-
#
|
4686
|
-
# the target has been deleted. On success, the response body contains a
|
4687
|
-
# with type `searchset`, where each entry in the Bundle contains the full
|
4684
|
+
# Lists all the resources that directly refer to the given target FHIR resource.
|
4685
|
+
# Can also support the case when the target resource doesn't exist, for example,
|
4686
|
+
# if the target has been deleted. On success, the response body contains a
|
4687
|
+
# Bundle with type `searchset`, where each entry in the Bundle contains the full
|
4688
4688
|
# content of the resource. If the operation fails, an `OperationOutcome` is
|
4689
4689
|
# returned describing the failure. If the request cannot be mapped to a valid
|
4690
4690
|
# API method on a FHIR store, a generic Google Cloud error might be returned
|
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.
|
4
|
+
version: 0.47.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-
|
11
|
+
date: 2023-05-14 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.47.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: []
|