google-apis-healthcare_v1beta1 0.23.0 → 0.24.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: 6b86c0fc4ae6d98b98bf2f5afefb0e95fef7b1e5fce8f668649cef9184aea4a5
|
4
|
+
data.tar.gz: 6e2520ec26ca9c61a3de210491ce4940ebd9e37e8f016d3c655c5459dd128cd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea9f980c65fef755cdb9d2d78953c5103565b05e15b01ca14ccbdb531c9f38ea2cc63f9f93129aae0b3f55974e6ebd1546e35bbbf9d04657ab4e6ada0f231f88
|
7
|
+
data.tar.gz: bde47051fac38f1537a9b997cb52d5dca8bfea3528aea0539a4b37c596d929503aa4d6b631fb305cd0ddb485290b83f805f9a7895c37a09cc05e3a0a9ff5668e
|
data/CHANGELOG.md
CHANGED
@@ -1098,6 +1098,11 @@ module Google
|
|
1098
1098
|
# @return [Google::Apis::HealthcareV1beta1::ImageConfig]
|
1099
1099
|
attr_accessor :image
|
1100
1100
|
|
1101
|
+
# Details about the work the de-identify operation performed.
|
1102
|
+
# Corresponds to the JSON property `operationMetadata`
|
1103
|
+
# @return [Google::Apis::HealthcareV1beta1::DeidentifyOperationMetadata]
|
1104
|
+
attr_accessor :operation_metadata
|
1105
|
+
|
1101
1106
|
# Configures de-identification of text wherever it is found in the
|
1102
1107
|
# source_dataset.
|
1103
1108
|
# Corresponds to the JSON property `text`
|
@@ -1114,6 +1119,7 @@ module Google
|
|
1114
1119
|
@dicom = args[:dicom] if args.key?(:dicom)
|
1115
1120
|
@fhir = args[:fhir] if args.key?(:fhir)
|
1116
1121
|
@image = args[:image] if args.key?(:image)
|
1122
|
+
@operation_metadata = args[:operation_metadata] if args.key?(:operation_metadata)
|
1117
1123
|
@text = args[:text] if args.key?(:text)
|
1118
1124
|
end
|
1119
1125
|
end
|
@@ -1226,6 +1232,25 @@ module Google
|
|
1226
1232
|
end
|
1227
1233
|
end
|
1228
1234
|
|
1235
|
+
# Details about the work the de-identify operation performed.
|
1236
|
+
class DeidentifyOperationMetadata
|
1237
|
+
include Google::Apis::Core::Hashable
|
1238
|
+
|
1239
|
+
# Details about the FHIR store to write the output to.
|
1240
|
+
# Corresponds to the JSON property `fhirOutput`
|
1241
|
+
# @return [Google::Apis::HealthcareV1beta1::FhirOutput]
|
1242
|
+
attr_accessor :fhir_output
|
1243
|
+
|
1244
|
+
def initialize(**args)
|
1245
|
+
update!(**args)
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
# Update properties of this object
|
1249
|
+
def update!(**args)
|
1250
|
+
@fhir_output = args[:fhir_output] if args.key?(:fhir_output)
|
1251
|
+
end
|
1252
|
+
end
|
1253
|
+
|
1229
1254
|
# Contains a detailed summary of the Deidentify operation.
|
1230
1255
|
class DeidentifySummary
|
1231
1256
|
include Google::Apis::Core::Hashable
|
@@ -2008,6 +2033,33 @@ module Google
|
|
2008
2033
|
end
|
2009
2034
|
end
|
2010
2035
|
|
2036
|
+
# Details about the FHIR store to write the output to.
|
2037
|
+
class FhirOutput
|
2038
|
+
include Google::Apis::Core::Hashable
|
2039
|
+
|
2040
|
+
# Name of the output FHIR store, which must already exist. You must grant the
|
2041
|
+
# healthcare.fhirResources.update permission on the destination store to your
|
2042
|
+
# project's **Cloud Healthcare Service Agent** [service account](https://cloud.
|
2043
|
+
# google.com/healthcare/docs/how-tos/permissions-healthcare-api-gcp-products#
|
2044
|
+
# the_cloud_healthcare_service_agent). The destination store must set `
|
2045
|
+
# enable_update_create` to true. The destination store must use FHIR version R4.
|
2046
|
+
# Writing these resources will consume FHIR operations quota from the project
|
2047
|
+
# containing the source data. De-identify operation metadata is only generated
|
2048
|
+
# for DICOM de-identification operations.
|
2049
|
+
# Corresponds to the JSON property `fhirStore`
|
2050
|
+
# @return [String]
|
2051
|
+
attr_accessor :fhir_store
|
2052
|
+
|
2053
|
+
def initialize(**args)
|
2054
|
+
update!(**args)
|
2055
|
+
end
|
2056
|
+
|
2057
|
+
# Update properties of this object
|
2058
|
+
def update!(**args)
|
2059
|
+
@fhir_store = args[:fhir_store] if args.key?(:fhir_store)
|
2060
|
+
end
|
2061
|
+
end
|
2062
|
+
|
2011
2063
|
# Represents a FHIR store.
|
2012
2064
|
class FhirStore
|
2013
2065
|
include Google::Apis::Core::Hashable
|
@@ -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.24.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220224"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -232,6 +232,12 @@ module Google
|
|
232
232
|
include Google::Apis::Core::JsonObjectSupport
|
233
233
|
end
|
234
234
|
|
235
|
+
class DeidentifyOperationMetadata
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
235
241
|
class DeidentifySummary
|
236
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
243
|
|
@@ -376,6 +382,12 @@ module Google
|
|
376
382
|
include Google::Apis::Core::JsonObjectSupport
|
377
383
|
end
|
378
384
|
|
385
|
+
class FhirOutput
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
379
391
|
class FhirStore
|
380
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
393
|
|
@@ -1291,6 +1303,8 @@ module Google
|
|
1291
1303
|
|
1292
1304
|
property :image, as: 'image', class: Google::Apis::HealthcareV1beta1::ImageConfig, decorator: Google::Apis::HealthcareV1beta1::ImageConfig::Representation
|
1293
1305
|
|
1306
|
+
property :operation_metadata, as: 'operationMetadata', class: Google::Apis::HealthcareV1beta1::DeidentifyOperationMetadata, decorator: Google::Apis::HealthcareV1beta1::DeidentifyOperationMetadata::Representation
|
1307
|
+
|
1294
1308
|
property :text, as: 'text', class: Google::Apis::HealthcareV1beta1::TextConfig, decorator: Google::Apis::HealthcareV1beta1::TextConfig::Representation
|
1295
1309
|
|
1296
1310
|
end
|
@@ -1327,6 +1341,14 @@ module Google
|
|
1327
1341
|
end
|
1328
1342
|
end
|
1329
1343
|
|
1344
|
+
class DeidentifyOperationMetadata
|
1345
|
+
# @private
|
1346
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1347
|
+
property :fhir_output, as: 'fhirOutput', class: Google::Apis::HealthcareV1beta1::FhirOutput, decorator: Google::Apis::HealthcareV1beta1::FhirOutput::Representation
|
1348
|
+
|
1349
|
+
end
|
1350
|
+
end
|
1351
|
+
|
1330
1352
|
class DeidentifySummary
|
1331
1353
|
# @private
|
1332
1354
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1554,6 +1576,13 @@ module Google
|
|
1554
1576
|
end
|
1555
1577
|
end
|
1556
1578
|
|
1579
|
+
class FhirOutput
|
1580
|
+
# @private
|
1581
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1582
|
+
property :fhir_store, as: 'fhirStore'
|
1583
|
+
end
|
1584
|
+
end
|
1585
|
+
|
1557
1586
|
class FhirStore
|
1558
1587
|
# @private
|
1559
1588
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.24.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: 2022-03-
|
11
|
+
date: 2022-03-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.24.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: []
|