google-apis-healthcare_v1beta1 0.32.0 → 0.33.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: 1cdd57d089a0a5c9931bc0aeb9056a613e32f233c444ec23082ebd47902109ce
|
4
|
+
data.tar.gz: c090eb39901a0077aa60063946fcae37f5e0ea637459a3ae3b57657374f6c178
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 586351c1d1b75c3c720d8dd7f7a19bd672b8dbc3e812b69e03e54b2b65450abe19d9d542f80083661c4c6d6b1bccf74695ab147dcf80f63f87350a5191aaeda4
|
7
|
+
data.tar.gz: e08e3c21d2408934a503cc81f0d028ced190792a3b4d36a36b3dd5308e881fb8d8ff63ec988f2fa7f8e03f8603e3898e9c64ac50c3c1d63cd35de5fc7341a780
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-healthcare_v1beta1
|
2
2
|
|
3
|
+
### v0.33.0 (2022-07-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220629
|
6
|
+
* Regenerated using generator version 0.9.0
|
7
|
+
|
3
8
|
### v0.32.0 (2022-06-30)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.8.0
|
@@ -1072,6 +1072,35 @@ module Google
|
|
1072
1072
|
end
|
1073
1073
|
end
|
1074
1074
|
|
1075
|
+
# Contains configuration for streaming de-identified FHIR export.
|
1076
|
+
class DeidentifiedStoreDestination
|
1077
|
+
include Google::Apis::Core::Hashable
|
1078
|
+
|
1079
|
+
# Configures de-id options specific to different types of content. Each
|
1080
|
+
# submessage customizes the handling of an https://tools.ietf.org/html/rfc6838
|
1081
|
+
# media type or subtype. Configs are applied in a nested manner at runtime.
|
1082
|
+
# Corresponds to the JSON property `config`
|
1083
|
+
# @return [Google::Apis::HealthcareV1beta1::DeidentifyConfig]
|
1084
|
+
attr_accessor :config
|
1085
|
+
|
1086
|
+
# The full resource name of a Cloud Healthcare FHIR store, for example, `
|
1087
|
+
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/fhirStores/
|
1088
|
+
# `fhir_store_id``.
|
1089
|
+
# Corresponds to the JSON property `store`
|
1090
|
+
# @return [String]
|
1091
|
+
attr_accessor :store
|
1092
|
+
|
1093
|
+
def initialize(**args)
|
1094
|
+
update!(**args)
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
# Update properties of this object
|
1098
|
+
def update!(**args)
|
1099
|
+
@config = args[:config] if args.key?(:config)
|
1100
|
+
@store = args[:store] if args.key?(:store)
|
1101
|
+
end
|
1102
|
+
end
|
1103
|
+
|
1075
1104
|
# Configures de-id options specific to different types of content. Each
|
1076
1105
|
# submessage customizes the handling of an https://tools.ietf.org/html/rfc6838
|
1077
1106
|
# media type or subtype. Configs are applied in a nested manner at runtime.
|
@@ -1252,6 +1281,13 @@ module Google
|
|
1252
1281
|
# @return [Google::Apis::HealthcareV1beta1::FhirFilter]
|
1253
1282
|
attr_accessor :resource_filter
|
1254
1283
|
|
1284
|
+
# If true, skips resources that are created or modified after the de-identify
|
1285
|
+
# operation is created.
|
1286
|
+
# Corresponds to the JSON property `skipModifiedResources`
|
1287
|
+
# @return [Boolean]
|
1288
|
+
attr_accessor :skip_modified_resources
|
1289
|
+
alias_method :skip_modified_resources?, :skip_modified_resources
|
1290
|
+
|
1255
1291
|
def initialize(**args)
|
1256
1292
|
update!(**args)
|
1257
1293
|
end
|
@@ -1262,6 +1298,7 @@ module Google
|
|
1262
1298
|
@destination_store = args[:destination_store] if args.key?(:destination_store)
|
1263
1299
|
@gcs_config_uri = args[:gcs_config_uri] if args.key?(:gcs_config_uri)
|
1264
1300
|
@resource_filter = args[:resource_filter] if args.key?(:resource_filter)
|
1301
|
+
@skip_modified_resources = args[:skip_modified_resources] if args.key?(:skip_modified_resources)
|
1265
1302
|
end
|
1266
1303
|
end
|
1267
1304
|
|
@@ -5186,6 +5223,11 @@ module Google
|
|
5186
5223
|
# @return [Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirBigQueryDestination]
|
5187
5224
|
attr_accessor :bigquery_destination
|
5188
5225
|
|
5226
|
+
# Contains configuration for streaming de-identified FHIR export.
|
5227
|
+
# Corresponds to the JSON property `deidentifiedStoreDestination`
|
5228
|
+
# @return [Google::Apis::HealthcareV1beta1::DeidentifiedStoreDestination]
|
5229
|
+
attr_accessor :deidentified_store_destination
|
5230
|
+
|
5189
5231
|
# Supply a FHIR resource type (such as "Patient" or "Observation"). See https://
|
5190
5232
|
# www.hl7.org/fhir/valueset-resource-types.html for a list of all FHIR resource
|
5191
5233
|
# types. The server treats an empty list as an intent to stream all the
|
@@ -5201,6 +5243,7 @@ module Google
|
|
5201
5243
|
# Update properties of this object
|
5202
5244
|
def update!(**args)
|
5203
5245
|
@bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination)
|
5246
|
+
@deidentified_store_destination = args[:deidentified_store_destination] if args.key?(:deidentified_store_destination)
|
5204
5247
|
@resource_types = args[:resource_types] if args.key?(:resource_types)
|
5205
5248
|
end
|
5206
5249
|
end
|
@@ -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.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220629"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -208,6 +208,12 @@ module Google
|
|
208
208
|
include Google::Apis::Core::JsonObjectSupport
|
209
209
|
end
|
210
210
|
|
211
|
+
class DeidentifiedStoreDestination
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
+
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
215
|
+
end
|
216
|
+
|
211
217
|
class DeidentifyConfig
|
212
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
219
|
|
@@ -1298,6 +1304,15 @@ module Google
|
|
1298
1304
|
end
|
1299
1305
|
end
|
1300
1306
|
|
1307
|
+
class DeidentifiedStoreDestination
|
1308
|
+
# @private
|
1309
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1310
|
+
property :config, as: 'config', class: Google::Apis::HealthcareV1beta1::DeidentifyConfig, decorator: Google::Apis::HealthcareV1beta1::DeidentifyConfig::Representation
|
1311
|
+
|
1312
|
+
property :store, as: 'store'
|
1313
|
+
end
|
1314
|
+
end
|
1315
|
+
|
1301
1316
|
class DeidentifyConfig
|
1302
1317
|
# @private
|
1303
1318
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1347,6 +1362,7 @@ module Google
|
|
1347
1362
|
property :gcs_config_uri, as: 'gcsConfigUri'
|
1348
1363
|
property :resource_filter, as: 'resourceFilter', class: Google::Apis::HealthcareV1beta1::FhirFilter, decorator: Google::Apis::HealthcareV1beta1::FhirFilter::Representation
|
1349
1364
|
|
1365
|
+
property :skip_modified_resources, as: 'skipModifiedResources'
|
1350
1366
|
end
|
1351
1367
|
end
|
1352
1368
|
|
@@ -2432,6 +2448,8 @@ module Google
|
|
2432
2448
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2433
2449
|
property :bigquery_destination, as: 'bigqueryDestination', class: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirBigQueryDestination, decorator: Google::Apis::HealthcareV1beta1::GoogleCloudHealthcareV1beta1FhirBigQueryDestination::Representation
|
2434
2450
|
|
2451
|
+
property :deidentified_store_destination, as: 'deidentifiedStoreDestination', class: Google::Apis::HealthcareV1beta1::DeidentifiedStoreDestination, decorator: Google::Apis::HealthcareV1beta1::DeidentifiedStoreDestination::Representation
|
2452
|
+
|
2435
2453
|
collection :resource_types, as: 'resourceTypes'
|
2436
2454
|
end
|
2437
2455
|
end
|
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.33.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-07-
|
11
|
+
date: 2022-07-11 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.33.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: []
|