google-apis-healthcare_v1 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 33bccb1c58b36e9de8ff9bf68396b706ef243f77d6cdce5dfa6ddb3fe1205550
4
- data.tar.gz: c4ba2f2b069bd7c2bd58c44f46171ac87013b5cbcf2a1d15bcb598bf3f455277
3
+ metadata.gz: 3bff05ab5e604de76bd0c91e5c028adfb2fcc9d3bea97dffcb7907dc00f465c4
4
+ data.tar.gz: b3b3796435d773a0141fbaca5219175f3bfc22cdf12fd0f884a0233ee4caf61c
5
5
  SHA512:
6
- metadata.gz: 49d14f9ba3be90fc1ca1214bc50d306bae03696168a445ca2d101c2a820d0c3efccfa972ee071e742c8d882bc596ce4a60ce2565e8a0bcf424b7f6006f789894
7
- data.tar.gz: 740e2b6a171960272be9b5f113fd33d44790fb60114ef0d472440b374536db07b4836045cdaf900e0c5d93b72eb3b640578527a81ccd5697f917500196da40b6
6
+ metadata.gz: 5a1ec5c73cee2f14c6d2dcade029021fb6a732d3608e3c87195c2529bf53e4a12cff365d47917ad2cd9ee92db689c7f2b12521151c55f702b16976d952256135
7
+ data.tar.gz: '08daa4b37b3e0c522535ce465cd60b74532784114647e6837bd1c9023c978b29ccbe5de51d122ab1ebf9f15c9e183895b6ae85c9342505dc26904472354bffa6'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-healthcare_v1
2
2
 
3
+ ### v0.10.0 (2021-06-24)
4
+
5
+ * Regenerated from discovery document revision 20210611
6
+
3
7
  ### v0.9.0 (2021-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20210603
@@ -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.9.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 = "20210603"
25
+ REVISION = "20210611"
26
26
  end
27
27
  end
28
28
  end
@@ -1565,6 +1565,7 @@ module Google
1565
1565
  class QueryAccessibleDataResponse
1566
1566
  # @private
1567
1567
  class Representation < Google::Apis::Core::JsonRepresentation
1568
+ collection :gcs_uris, as: 'gcsUris'
1568
1569
  end
1569
1570
  end
1570
1571
 
@@ -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. Errors are logged to Cloud Logging (see [Viewing error logs in
762
- # Cloud Logging](https://cloud.google.com/healthcare/docs/how-tos/logging)). For
763
- # example, the following sample log entry shows a `failed to evaluate consent
764
- # policy` error that occurred during a QueryAccessibleData call to consent store
765
- # `projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
766
- # consentStores/`consent_store_id``. ```json jsonPayload: ` @type: "type.
767
- # googleapis.com/google.cloud.healthcare.logging.QueryAccessibleDataLogEntry"
768
- # error: ` code: 9 message: "failed to evaluate consent policy" ` resourceName: "
769
- # projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
770
- # consentStores/`consent_store_id`/consents/`consent_id`" ` logName: "projects/`
771
- # project_id`/logs/healthcare.googleapis.com%2Fquery_accessible_data" operation:
772
- # ` id: "projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
773
- # operations/`operation_id`" producer: "healthcare.googleapis.com/
774
- # QueryAccessibleData" ` receiveTimestamp: "TIMESTAMP" resource: ` labels: `
775
- # consent_store_id: "`consent_store_id`" dataset_id: "`dataset_id`" location: "`
776
- # location_id`" project_id: "`project_id`" ` type: "healthcare_consent_store" `
777
- # severity: "ERROR" timestamp: "TIMESTAMP" ```
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.9.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-21 00:00:00.000000000 Z
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.1'
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: '0.1'
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.9.0
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: []