google-apis-healthcare_v1 0.9.0 → 0.10.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: 3bff05ab5e604de76bd0c91e5c028adfb2fcc9d3bea97dffcb7907dc00f465c4
|
4
|
+
data.tar.gz: b3b3796435d773a0141fbaca5219175f3bfc22cdf12fd0f884a0233ee4caf61c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a1ec5c73cee2f14c6d2dcade029021fb6a732d3608e3c87195c2529bf53e4a12cff365d47917ad2cd9ee92db689c7f2b12521151c55f702b16976d952256135
|
7
|
+
data.tar.gz: '08daa4b37b3e0c522535ce465cd60b74532784114647e6837bd1c9023c978b29ccbe5de51d122ab1ebf9f15c9e183895b6ae85c9342505dc26904472354bffa6'
|
data/CHANGELOG.md
CHANGED
@@ -3167,12 +3167,19 @@ module Google
|
|
3167
3167
|
class QueryAccessibleDataResponse
|
3168
3168
|
include Google::Apis::Core::Hashable
|
3169
3169
|
|
3170
|
+
# List of files, each of which contains a list of data_id(s) that are consented
|
3171
|
+
# for a specified use in the request.
|
3172
|
+
# Corresponds to the JSON property `gcsUris`
|
3173
|
+
# @return [Array<String>]
|
3174
|
+
attr_accessor :gcs_uris
|
3175
|
+
|
3170
3176
|
def initialize(**args)
|
3171
3177
|
update!(**args)
|
3172
3178
|
end
|
3173
3179
|
|
3174
3180
|
# Update properties of this object
|
3175
3181
|
def update!(**args)
|
3182
|
+
@gcs_uris = args[:gcs_uris] if args.key?(:gcs_uris)
|
3176
3183
|
end
|
3177
3184
|
end
|
3178
3185
|
|
@@ -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.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210611"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -758,23 +758,26 @@ module Google
|
|
758
758
|
# Queries all data_ids that are consented for a specified use in the given
|
759
759
|
# consent store and writes them to a specified destination. The returned
|
760
760
|
# Operation includes a progress counter for the number of User data mappings
|
761
|
-
# processed.
|
762
|
-
#
|
763
|
-
#
|
764
|
-
#
|
765
|
-
#
|
766
|
-
#
|
767
|
-
#
|
768
|
-
#
|
769
|
-
#
|
770
|
-
#
|
771
|
-
#
|
772
|
-
#
|
773
|
-
#
|
774
|
-
#
|
775
|
-
#
|
776
|
-
#
|
777
|
-
#
|
761
|
+
# processed. If the request is successful, a detailed response is returned of
|
762
|
+
# type QueryAccessibleDataResponse, contained in the response field when the
|
763
|
+
# operation finishes. The metadata field type is OperationMetadata. Errors are
|
764
|
+
# logged to Cloud Logging (see [Viewing error logs in Cloud Logging](https://
|
765
|
+
# cloud.google.com/healthcare/docs/how-tos/logging)). For example, the following
|
766
|
+
# sample log entry shows a `failed to evaluate consent policy` error that
|
767
|
+
# occurred during a QueryAccessibleData call to consent store `projects/`
|
768
|
+
# project_id`/locations/`location_id`/datasets/`dataset_id`/consentStores/`
|
769
|
+
# consent_store_id``. ```json jsonPayload: ` @type: "type.googleapis.com/google.
|
770
|
+
# cloud.healthcare.logging.QueryAccessibleDataLogEntry" error: ` code: 9 message:
|
771
|
+
# "failed to evaluate consent policy" ` resourceName: "projects/`project_id`/
|
772
|
+
# locations/`location_id`/datasets/`dataset_id`/consentStores/`consent_store_id`/
|
773
|
+
# consents/`consent_id`" ` logName: "projects/`project_id`/logs/healthcare.
|
774
|
+
# googleapis.com%2Fquery_accessible_data" operation: ` id: "projects/`project_id`
|
775
|
+
# /locations/`location_id`/datasets/`dataset_id`/operations/`operation_id`"
|
776
|
+
# producer: "healthcare.googleapis.com/QueryAccessibleData" ` receiveTimestamp: "
|
777
|
+
# TIMESTAMP" resource: ` labels: ` consent_store_id: "`consent_store_id`"
|
778
|
+
# dataset_id: "`dataset_id`" location: "`location_id`" project_id: "`project_id`"
|
779
|
+
# ` type: "healthcare_consent_store" ` severity: "ERROR" timestamp: "TIMESTAMP"
|
780
|
+
# ```
|
778
781
|
# @param [String] consent_store
|
779
782
|
# Required. Name of the consent store to retrieve User data mappings from.
|
780
783
|
# @param [Google::Apis::HealthcareV1::QueryAccessibleDataRequest] query_accessible_data_request_object
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.10.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: 2021-06-
|
11
|
+
date: 2021-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Healthcare API V1. Simple REST
|
28
34
|
clients are Ruby client libraries that provide access to Google services via their
|
29
35
|
HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-healthcare_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1/v0.10.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-healthcare_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|