google-apis-healthcare_v1beta1 0.10.0 → 0.14.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: 971bd102072b0fe4c5ea5ed4076ff0113bb80e31e8390741715d6ce720054d46
4
- data.tar.gz: a0cb4d4a6445f78c8675e23bf4f2caef451c0a57d2d479498d33feae32bdfefb
3
+ metadata.gz: 5be60164f46eff58589167a885a2e0d6af3608f88c9b66fd7a5743a8065085a2
4
+ data.tar.gz: 6c036fccd95777aaac67c54a9947f160585b6b24493b5a62367dbb407bde789d
5
5
  SHA512:
6
- metadata.gz: 38d81bb199a0d9a81f99c892d4f9dec3090cfaaf030229cff80349831d54c6aad8f426b419154f7a959b4bdc5b98b6fa9a095cf626db692e4886facfb8c5cb7f
7
- data.tar.gz: b112f2a8fe95f64d980bdb355b7b59f8bfa55ac5cdd82f3407f5ddb5e9d67b9d547f0d4c0a1a6a1685d0b145880457c52964b34a25bc4fa0c184817656ff74b7
6
+ metadata.gz: 703ec6127cbd77132bf24b79e8cb478fdf790b87bf680f206ca31f4976f859b56e863bbec2369faa8e8eac6733837c4086eee4d825fb2ecf37a3d1f9518f1915
7
+ data.tar.gz: 1e8481efc4f3d02b8e520154bad62a76f30fcd954a4940809fe1567bdb12a89cc4114d2fa6bd5f9422b654fc78fb36343a4c181c90d9d5675f44faa22ce41495
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.14.0 (2021-09-01)
4
+
5
+ * Regenerated from discovery document revision 20210830
6
+
7
+ ### v0.13.0 (2021-07-27)
8
+
9
+ * Regenerated from discovery document revision 20210715
10
+
11
+ ### v0.12.0 (2021-07-13)
12
+
13
+ * Regenerated from discovery document revision 20210702
14
+
15
+ ### v0.11.0 (2021-06-29)
16
+
17
+ * Regenerated from discovery document revision 20210621
18
+ * Regenerated using generator version 0.4.0
19
+
3
20
  ### v0.10.0 (2021-06-24)
4
21
 
5
22
  * Regenerated from discovery document revision 20210611
@@ -677,6 +677,36 @@ module Google
677
677
  end
678
678
  end
679
679
 
680
+ # Request to configure the search parameters for the specified FHIR store.
681
+ class ConfigureSearchRequest
682
+ include Google::Apis::Core::Hashable
683
+
684
+ # The canonical URLs of the search parameters that are intended to be used for
685
+ # the FHIR store. See https://www.hl7.org/fhir/references.html#canonical for
686
+ # explanation on FHIR canonical urls
687
+ # Corresponds to the JSON property `canonicalUrls`
688
+ # @return [Array<String>]
689
+ attr_accessor :canonical_urls
690
+
691
+ # If `validate_only` is set to true, the method will compile all the search
692
+ # parameters without actually setting the search config for the store and
693
+ # triggering the reindex.
694
+ # Corresponds to the JSON property `validateOnly`
695
+ # @return [Boolean]
696
+ attr_accessor :validate_only
697
+ alias_method :validate_only?, :validate_only
698
+
699
+ def initialize(**args)
700
+ update!(**args)
701
+ end
702
+
703
+ # Update properties of this object
704
+ def update!(**args)
705
+ @canonical_urls = args[:canonical_urls] if args.key?(:canonical_urls)
706
+ @validate_only = args[:validate_only] if args.key?(:validate_only)
707
+ end
708
+ end
709
+
680
710
  # Represents a user's consent.
681
711
  class Consent
682
712
  include Google::Apis::Core::Hashable
@@ -1769,6 +1799,20 @@ module Google
1769
1799
  end
1770
1800
  end
1771
1801
 
1802
+ # Final response for the export operation. This structure is included in the
1803
+ # response to describe the detailed outcome.
1804
+ class ExportMessagesResponse
1805
+ include Google::Apis::Core::Hashable
1806
+
1807
+ def initialize(**args)
1808
+ update!(**args)
1809
+ end
1810
+
1811
+ # Update properties of this object
1812
+ def update!(**args)
1813
+ end
1814
+ end
1815
+
1772
1816
  # Request to export resources.
1773
1817
  class ExportResourcesRequest
1774
1818
  include Google::Apis::Core::Hashable
@@ -2007,6 +2051,11 @@ module Google
2007
2051
  # @return [Google::Apis::HealthcareV1beta1::NotificationConfig]
2008
2052
  attr_accessor :notification_config
2009
2053
 
2054
+ # Contains the configuration for FHIR search.
2055
+ # Corresponds to the JSON property `searchConfig`
2056
+ # @return [Google::Apis::HealthcareV1beta1::SearchConfig]
2057
+ attr_accessor :search_config
2058
+
2010
2059
  # A list of streaming configs that configure the destinations of streaming
2011
2060
  # export for every resource mutation in this FHIR store. Each store is allowed
2012
2061
  # to have up to 10 streaming configs. After a new config is added, the next
@@ -2048,6 +2097,7 @@ module Google
2048
2097
  @labels = args[:labels] if args.key?(:labels)
2049
2098
  @name = args[:name] if args.key?(:name)
2050
2099
  @notification_config = args[:notification_config] if args.key?(:notification_config)
2100
+ @search_config = args[:search_config] if args.key?(:search_config)
2051
2101
  @stream_configs = args[:stream_configs] if args.key?(:stream_configs)
2052
2102
  @validation_config = args[:validation_config] if args.key?(:validation_config)
2053
2103
  @version = args[:version] if args.key?(:version)
@@ -3909,6 +3959,13 @@ module Google
3909
3959
  # @return [String]
3910
3960
  attr_accessor :pubsub_topic
3911
3961
 
3962
+ # Indicates whether or not to send Pub/Sub notifications on bulk import. Only
3963
+ # supported for DICOM imports.
3964
+ # Corresponds to the JSON property `sendForBulkImport`
3965
+ # @return [Boolean]
3966
+ attr_accessor :send_for_bulk_import
3967
+ alias_method :send_for_bulk_import?, :send_for_bulk_import
3968
+
3912
3969
  def initialize(**args)
3913
3970
  update!(**args)
3914
3971
  end
@@ -3916,6 +3973,7 @@ module Google
3916
3973
  # Update properties of this object
3917
3974
  def update!(**args)
3918
3975
  @pubsub_topic = args[:pubsub_topic] if args.key?(:pubsub_topic)
3976
+ @send_for_bulk_import = args[:send_for_bulk_import] if args.key?(:send_for_bulk_import)
3919
3977
  end
3920
3978
  end
3921
3979
 
@@ -4144,7 +4202,7 @@ module Google
4144
4202
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
4145
4203
  # roles/resourcemanager.organizationViewer condition: title: expirable access
4146
4204
  # description: Does not grant access after Sep 2020 expression: request.time <
4147
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
4205
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
4148
4206
  # description of IAM and its features, see the [IAM documentation](https://cloud.
4149
4207
  # google.com/iam/docs/).
4150
4208
  class Policy
@@ -4635,6 +4693,56 @@ module Google
4635
4693
  end
4636
4694
  end
4637
4695
 
4696
+ # Contains the configuration for FHIR search.
4697
+ class SearchConfig
4698
+ include Google::Apis::Core::Hashable
4699
+
4700
+ # A list of search parameters in this FHIR store that are used to configure this
4701
+ # FHIR store.
4702
+ # Corresponds to the JSON property `searchParameters`
4703
+ # @return [Array<Google::Apis::HealthcareV1beta1::SearchParameter>]
4704
+ attr_accessor :search_parameters
4705
+
4706
+ def initialize(**args)
4707
+ update!(**args)
4708
+ end
4709
+
4710
+ # Update properties of this object
4711
+ def update!(**args)
4712
+ @search_parameters = args[:search_parameters] if args.key?(:search_parameters)
4713
+ end
4714
+ end
4715
+
4716
+ # Contains the versioned name and the URL for one SearchParameter.
4717
+ class SearchParameter
4718
+ include Google::Apis::Core::Hashable
4719
+
4720
+ # The canonical url of the search parameter resource.
4721
+ # Corresponds to the JSON property `canonicalUrl`
4722
+ # @return [String]
4723
+ attr_accessor :canonical_url
4724
+
4725
+ # The versioned name of the search parameter resource. The format is projects/`
4726
+ # project-id`/locations/`location`/datasets/`dataset-id`/fhirStores/`fhirStore-
4727
+ # id`/fhir/SearchParameter/`resource-id`/_history/`version-id` For fhir stores
4728
+ # with disable_resource_versioning=true, the format is projects/`project-id`/
4729
+ # locations/`location`/datasets/`dataset-id`/fhirStores/`fhirStore-id`/fhir/
4730
+ # SearchParameter/`resource-id`/
4731
+ # Corresponds to the JSON property `parameter`
4732
+ # @return [String]
4733
+ attr_accessor :parameter
4734
+
4735
+ def initialize(**args)
4736
+ update!(**args)
4737
+ end
4738
+
4739
+ # Update properties of this object
4740
+ def update!(**args)
4741
+ @canonical_url = args[:canonical_url] if args.key?(:canonical_url)
4742
+ @parameter = args[:parameter] if args.key?(:parameter)
4743
+ end
4744
+ end
4745
+
4638
4746
  # Request to search the resources in the specified FHIR store.
4639
4747
  class SearchResourcesRequest
4640
4748
  include Google::Apis::Core::Hashable
@@ -4747,7 +4855,7 @@ module Google
4747
4855
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
4748
4856
  # roles/resourcemanager.organizationViewer condition: title: expirable access
4749
4857
  # description: Does not grant access after Sep 2020 expression: request.time <
4750
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
4858
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
4751
4859
  # description of IAM and its features, see the [IAM documentation](https://cloud.
4752
4860
  # google.com/iam/docs/).
4753
4861
  # Corresponds to the JSON property `policy`
@@ -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.10.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210611"
25
+ REVISION = "20210830"
26
26
  end
27
27
  end
28
28
  end
@@ -148,6 +148,12 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class ConfigureSearchRequest
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
151
157
  class Consent
152
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
159
 
@@ -334,6 +340,12 @@ module Google
334
340
  include Google::Apis::Core::JsonObjectSupport
335
341
  end
336
342
 
343
+ class ExportMessagesResponse
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
337
349
  class ExportResourcesRequest
338
350
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
351
 
@@ -862,6 +874,18 @@ module Google
862
874
  include Google::Apis::Core::JsonObjectSupport
863
875
  end
864
876
 
877
+ class SearchConfig
878
+ class Representation < Google::Apis::Core::JsonRepresentation; end
879
+
880
+ include Google::Apis::Core::JsonObjectSupport
881
+ end
882
+
883
+ class SearchParameter
884
+ class Representation < Google::Apis::Core::JsonRepresentation; end
885
+
886
+ include Google::Apis::Core::JsonObjectSupport
887
+ end
888
+
865
889
  class SearchResourcesRequest
866
890
  class Representation < Google::Apis::Core::JsonRepresentation; end
867
891
 
@@ -1149,6 +1173,14 @@ module Google
1149
1173
  end
1150
1174
  end
1151
1175
 
1176
+ class ConfigureSearchRequest
1177
+ # @private
1178
+ class Representation < Google::Apis::Core::JsonRepresentation
1179
+ collection :canonical_urls, as: 'canonicalUrls'
1180
+ property :validate_only, as: 'validateOnly'
1181
+ end
1182
+ end
1183
+
1152
1184
  class Consent
1153
1185
  # @private
1154
1186
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1459,6 +1491,12 @@ module Google
1459
1491
  end
1460
1492
  end
1461
1493
 
1494
+ class ExportMessagesResponse
1495
+ # @private
1496
+ class Representation < Google::Apis::Core::JsonRepresentation
1497
+ end
1498
+ end
1499
+
1462
1500
  class ExportResourcesRequest
1463
1501
  # @private
1464
1502
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1516,6 +1554,8 @@ module Google
1516
1554
  property :name, as: 'name'
1517
1555
  property :notification_config, as: 'notificationConfig', class: Google::Apis::HealthcareV1beta1::NotificationConfig, decorator: Google::Apis::HealthcareV1beta1::NotificationConfig::Representation
1518
1556
 
1557
+ property :search_config, as: 'searchConfig', class: Google::Apis::HealthcareV1beta1::SearchConfig, decorator: Google::Apis::HealthcareV1beta1::SearchConfig::Representation
1558
+
1519
1559
  collection :stream_configs, as: 'streamConfigs', class: Google::Apis::HealthcareV1beta1::StreamConfig, decorator: Google::Apis::HealthcareV1beta1::StreamConfig::Representation
1520
1560
 
1521
1561
  property :validation_config, as: 'validationConfig', class: Google::Apis::HealthcareV1beta1::ValidationConfig, decorator: Google::Apis::HealthcareV1beta1::ValidationConfig::Representation
@@ -2056,6 +2096,7 @@ module Google
2056
2096
  # @private
2057
2097
  class Representation < Google::Apis::Core::JsonRepresentation
2058
2098
  property :pubsub_topic, as: 'pubsubTopic'
2099
+ property :send_for_bulk_import, as: 'sendForBulkImport'
2059
2100
  end
2060
2101
  end
2061
2102
 
@@ -2249,6 +2290,22 @@ module Google
2249
2290
  end
2250
2291
  end
2251
2292
 
2293
+ class SearchConfig
2294
+ # @private
2295
+ class Representation < Google::Apis::Core::JsonRepresentation
2296
+ collection :search_parameters, as: 'searchParameters', class: Google::Apis::HealthcareV1beta1::SearchParameter, decorator: Google::Apis::HealthcareV1beta1::SearchParameter::Representation
2297
+
2298
+ end
2299
+ end
2300
+
2301
+ class SearchParameter
2302
+ # @private
2303
+ class Representation < Google::Apis::Core::JsonRepresentation
2304
+ property :canonical_url, as: 'canonicalUrl'
2305
+ property :parameter, as: 'parameter'
2306
+ end
2307
+ end
2308
+
2252
2309
  class SearchResourcesRequest
2253
2310
  # @private
2254
2311
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3853,6 +3853,46 @@ module Google
3853
3853
  execute_or_queue_command(command, &block)
3854
3854
  end
3855
3855
 
3856
+ # Configure the search parameters for the FHIR store and reindex resources in
3857
+ # the FHIR store according to the defined search parameters. The search
3858
+ # parameters provided in this request will replace any previous search
3859
+ # configuration. The target SearchParameter resources need to exist in the store
3860
+ # before calling ConfigureSearch, otherwise an error will occur. This method
3861
+ # returns an Operation that can be used to track the progress of the reindexing
3862
+ # by calling GetOperation.
3863
+ # @param [String] name
3864
+ # The name of the FHIR store to configure, in the format `projects/`project_id`/
3865
+ # locations/`location_id`/datasets/`dataset_id`/fhirStores/`fhir_store_id``.
3866
+ # @param [Google::Apis::HealthcareV1beta1::ConfigureSearchRequest] configure_search_request_object
3867
+ # @param [String] fields
3868
+ # Selector specifying which fields to include in a partial response.
3869
+ # @param [String] quota_user
3870
+ # Available to use for quota purposes for server-side applications. Can be any
3871
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3872
+ # @param [Google::Apis::RequestOptions] options
3873
+ # Request-specific options
3874
+ #
3875
+ # @yield [result, err] Result & error if block supplied
3876
+ # @yieldparam result [Google::Apis::HealthcareV1beta1::Operation] parsed result object
3877
+ # @yieldparam err [StandardError] error object if request failed
3878
+ #
3879
+ # @return [Google::Apis::HealthcareV1beta1::Operation]
3880
+ #
3881
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3882
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3883
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3884
+ def configure_fhir_store_search(name, configure_search_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
3885
+ command = make_simple_command(:post, 'v1beta1/{+name}:configureSearch', options)
3886
+ command.request_representation = Google::Apis::HealthcareV1beta1::ConfigureSearchRequest::Representation
3887
+ command.request_object = configure_search_request_object
3888
+ command.response_representation = Google::Apis::HealthcareV1beta1::Operation::Representation
3889
+ command.response_class = Google::Apis::HealthcareV1beta1::Operation
3890
+ command.params['name'] = name unless name.nil?
3891
+ command.query['fields'] = fields unless fields.nil?
3892
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3893
+ execute_or_queue_command(command, &block)
3894
+ end
3895
+
3856
3896
  # Creates a new FHIR store within the parent dataset.
3857
3897
  # @param [String] parent
3858
3898
  # The name of the dataset this FHIR store belongs to.
@@ -5241,14 +5281,16 @@ module Google
5241
5281
  # _revinclude`, `_summary=text`, `_summary=data`, and `_elements`. The maximum
5242
5282
  # number of search results returned defaults to 100, which can be overridden by
5243
5283
  # the `_count` parameter up to a maximum limit of 1000. If there are additional
5244
- # results, the returned `Bundle` contains pagination links. Resources with a
5245
- # total size larger than 5MB or a field count larger than 50,000 might not be
5246
- # fully searchable as the server might trim its generated search index in those
5247
- # cases. Note: FHIR resources are indexed asynchronously, so there might be a
5248
- # slight delay between the time a resource is created or changes and when the
5249
- # change is reflected in search results. For samples and detailed information,
5250
- # see [Searching for FHIR resources](/healthcare/docs/how-tos/fhir-search) and [
5251
- # Advanced FHIR search features](/healthcare/docs/how-tos/fhir-advanced-search).
5284
+ # results, the returned `Bundle` contains a link of `relation` "next", which has
5285
+ # a `_page_token` parameter for an opaque pagination token that can be used to
5286
+ # retrieve the next page. Resources with a total size larger than 5MB or a field
5287
+ # count larger than 50,000 might not be fully searchable as the server might
5288
+ # trim its generated search index in those cases. Note: FHIR resources are
5289
+ # indexed asynchronously, so there might be a slight delay between the time a
5290
+ # resource is created or changes and when the change is reflected in search
5291
+ # results. For samples and detailed information, see [Searching for FHIR
5292
+ # resources](/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search
5293
+ # features](/healthcare/docs/how-tos/fhir-advanced-search).
5252
5294
  # @param [String] parent
5253
5295
  # Name of the FHIR store to retrieve resources from.
5254
5296
  # @param [Google::Apis::HealthcareV1beta1::SearchResourcesRequest] search_resources_request_object
@@ -5315,14 +5357,16 @@ module Google
5315
5357
  # _revinclude`, `_summary=text`, `_summary=data`, and `_elements`. The maximum
5316
5358
  # number of search results returned defaults to 100, which can be overridden by
5317
5359
  # the `_count` parameter up to a maximum limit of 1000. If there are additional
5318
- # results, the returned `Bundle` contains pagination links. Resources with a
5319
- # total size larger than 5MB or a field count larger than 50,000 might not be
5320
- # fully searchable as the server might trim its generated search index in those
5321
- # cases. Note: FHIR resources are indexed asynchronously, so there might be a
5322
- # slight delay between the time a resource is created or changes and when the
5323
- # change is reflected in search results. For samples and detailed information,
5324
- # see [Searching for FHIR resources](/healthcare/docs/how-tos/fhir-search) and [
5325
- # Advanced FHIR search features](/healthcare/docs/how-tos/fhir-advanced-search).
5360
+ # results, the returned `Bundle` contains a link of `relation` "next", which has
5361
+ # a `_page_token` parameter for an opaque pagination token that can be used to
5362
+ # retrieve the next page. Resources with a total size larger than 5MB or a field
5363
+ # count larger than 50,000 might not be fully searchable as the server might
5364
+ # trim its generated search index in those cases. Note: FHIR resources are
5365
+ # indexed asynchronously, so there might be a slight delay between the time a
5366
+ # resource is created or changes and when the change is reflected in search
5367
+ # results. For samples and detailed information, see [Searching for FHIR
5368
+ # resources](/healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search
5369
+ # features](/healthcare/docs/how-tos/fhir-advanced-search).
5326
5370
  # @param [String] parent
5327
5371
  # Name of the FHIR store to retrieve resources from.
5328
5372
  # @param [String] resource_type
@@ -6299,7 +6343,8 @@ module Google
6299
6343
 
6300
6344
  # Analyze heathcare entity in a document. Its response includes the recognized
6301
6345
  # entity mentions and the relationships between them. AnalyzeEntities uses
6302
- # context aware models to detect entities.
6346
+ # context aware models to detect entities. This method can only analyze
6347
+ # documents written in English.
6303
6348
  # @param [String] nlp_service
6304
6349
  # The resource name of the service of the form: "projects/`project_id`/locations/
6305
6350
  # `location_id`/services/nlp".
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1beta1'
31
31
 
32
- # See, edit, configure, and delete your Google Cloud Platform data
32
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
  end
35
35
  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.10.0
4
+ version: 0.14.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-28 00:00:00.000000000 Z
11
+ date: 2021-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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/master/generated/google-apis-healthcare_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.14.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-healthcare_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []