google-apis-healthcare_v1 0.42.0 → 0.43.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f6b987e9fe31a0cf36098a3e6a3cb79a9ac92a4d98357412e5d14d20d749cef2
|
4
|
+
data.tar.gz: 035fed54cfe6012281540addf3385fe4a4adf38c82d7ffae16fd2e5d38db291f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c9f0a2379418ed1ccf3b3c0b7230b58d3851e538e1064a802ec31f4b2d7d44c51b57a4d1f75ad283252e73664f33f76c94ebc47bfee41182b7e7749d45f0c61
|
7
|
+
data.tar.gz: 38223bc46500bfbbbe513b5d6f07a56bf9fa7c447ca97fa998424beeecc37ffb5f73b9d294e3b982adba26ed1834f143f5ed0dbf950a4ef4149b826b434295bc
|
data/CHANGELOG.md
CHANGED
@@ -904,6 +904,16 @@ module Google
|
|
904
904
|
# @return [Google::Apis::HealthcareV1::TextConfig]
|
905
905
|
attr_accessor :text
|
906
906
|
|
907
|
+
# Ensures in-flight data remains in the region of origin during de-
|
908
|
+
# identification. Using this option results in a significant reduction of
|
909
|
+
# throughput, and is not compatible with `LOCATION` or `ORGANIZATION_NAME`
|
910
|
+
# infoTypes. `LOCATION` must be excluded within `TextConfig`, and must also be
|
911
|
+
# excluded within `ImageConfig` if image redaction is required.
|
912
|
+
# Corresponds to the JSON property `useRegionalDataProcessing`
|
913
|
+
# @return [Boolean]
|
914
|
+
attr_accessor :use_regional_data_processing
|
915
|
+
alias_method :use_regional_data_processing?, :use_regional_data_processing
|
916
|
+
|
907
917
|
def initialize(**args)
|
908
918
|
update!(**args)
|
909
919
|
end
|
@@ -914,6 +924,7 @@ module Google
|
|
914
924
|
@fhir = args[:fhir] if args.key?(:fhir)
|
915
925
|
@image = args[:image] if args.key?(:image)
|
916
926
|
@text = args[:text] if args.key?(:text)
|
927
|
+
@use_regional_data_processing = args[:use_regional_data_processing] if args.key?(:use_regional_data_processing)
|
917
928
|
end
|
918
929
|
end
|
919
930
|
|
@@ -3350,7 +3361,7 @@ module Google
|
|
3350
3361
|
end
|
3351
3362
|
end
|
3352
3363
|
|
3353
|
-
# A resource that represents Google Cloud
|
3364
|
+
# A resource that represents a Google Cloud location.
|
3354
3365
|
class Location
|
3355
3366
|
include Google::Apis::Core::Hashable
|
3356
3367
|
|
@@ -4516,6 +4527,17 @@ module Google
|
|
4516
4527
|
class TextConfig
|
4517
4528
|
include Google::Apis::Core::Hashable
|
4518
4529
|
|
4530
|
+
# Transformations to apply to the detected data, overridden by `
|
4531
|
+
# exclude_info_types`.
|
4532
|
+
# Corresponds to the JSON property `additionalTransformations`
|
4533
|
+
# @return [Array<Google::Apis::HealthcareV1::InfoTypeTransformation>]
|
4534
|
+
attr_accessor :additional_transformations
|
4535
|
+
|
4536
|
+
# InfoTypes to skip transforming, overriding `additional_transformations`.
|
4537
|
+
# Corresponds to the JSON property `excludeInfoTypes`
|
4538
|
+
# @return [Array<String>]
|
4539
|
+
attr_accessor :exclude_info_types
|
4540
|
+
|
4519
4541
|
# The transformations to apply to the detected data. Deprecated. Use `
|
4520
4542
|
# additional_transformations` instead.
|
4521
4543
|
# Corresponds to the JSON property `transformations`
|
@@ -4528,6 +4550,8 @@ module Google
|
|
4528
4550
|
|
4529
4551
|
# Update properties of this object
|
4530
4552
|
def update!(**args)
|
4553
|
+
@additional_transformations = args[:additional_transformations] if args.key?(:additional_transformations)
|
4554
|
+
@exclude_info_types = args[:exclude_info_types] if args.key?(:exclude_info_types)
|
4531
4555
|
@transformations = args[:transformations] if args.key?(:transformations)
|
4532
4556
|
end
|
4533
4557
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.43.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
|
@@ -1078,6 +1078,7 @@ module Google
|
|
1078
1078
|
|
1079
1079
|
property :text, as: 'text', class: Google::Apis::HealthcareV1::TextConfig, decorator: Google::Apis::HealthcareV1::TextConfig::Representation
|
1080
1080
|
|
1081
|
+
property :use_regional_data_processing, as: 'useRegionalDataProcessing'
|
1081
1082
|
end
|
1082
1083
|
end
|
1083
1084
|
|
@@ -2050,6 +2051,9 @@ module Google
|
|
2050
2051
|
class TextConfig
|
2051
2052
|
# @private
|
2052
2053
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2054
|
+
collection :additional_transformations, as: 'additionalTransformations', class: Google::Apis::HealthcareV1::InfoTypeTransformation, decorator: Google::Apis::HealthcareV1::InfoTypeTransformation::Representation
|
2055
|
+
|
2056
|
+
collection :exclude_info_types, as: 'excludeInfoTypes'
|
2053
2057
|
collection :transformations, as: 'transformations', class: Google::Apis::HealthcareV1::InfoTypeTransformation, decorator: Google::Apis::HealthcareV1::InfoTypeTransformation::Representation
|
2054
2058
|
|
2055
2059
|
end
|
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.
|
4
|
+
version: 0.43.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.43.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: []
|