google-apis-healthcare_v1beta1 0.89.0 → 0.91.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: 39b1a1bc028c9986af5a524a5c738e6d083ed8300b657b27dad475243cd4e8d0
4
- data.tar.gz: 7291c0ddcc4b7011501f4752f4b8ec8f00b5d9870120f2f53f439976edff1769
3
+ metadata.gz: 6e07c5390140dfd674df7f501e25074b2bc2e2c22eba50b7495e0b396ed597b9
4
+ data.tar.gz: 8e5c087b3d53fa1b29e1c1791d586434002c3d15273b4776a65c01bd8959a5fd
5
5
  SHA512:
6
- metadata.gz: f3fa073dde9d2cea89b7007ed9e83b784fd9e375e9ba1599741e0b777f4b313c8cf68bdb2c271b3cb4f921266f9e240e193cdf182028e3a8312529b13721b751
7
- data.tar.gz: 2651fd670cfad7eeafbc4efb3a68b37666f45b66724c5ad4427343be9c46a9c5b41d370ed528d940d78d1a59a555814ad9f5d8874e64ca2d43008bd6a1696aef
6
+ metadata.gz: 857316f438016ef52ba20fa6de4487c27df5f7c44b073e600ea3792a1ba65f4b93ce617d4b151b1f0a4d5e89a1bc963a5fe92b0f7a0ebb78f9883cfcb9eab53c
7
+ data.tar.gz: 1e9d0288b0fe93a516fbe52bc92c60b7a456a759266cbb118f67ac0821bdbf6f3f4c3ff2d0790b4bf8062b813622fd0447d679f2cab8db84a82e5b89df97e84d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-healthcare_v1beta1
2
2
 
3
+ ### v0.91.0 (2025-11-02)
4
+
5
+ * Regenerated from discovery document revision 20251009
6
+
7
+ ### v0.90.0 (2025-10-19)
8
+
9
+ * Regenerated from discovery document revision 20251001
10
+
3
11
  ### v0.89.0 (2025-10-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20250923
@@ -3256,6 +3256,12 @@ module Google
3256
3256
  # @return [Fixnum]
3257
3257
  attr_accessor :structured_storage_size_bytes
3258
3258
 
3259
+ # The total amount of versioned storage used by versioned FHIR resources of this
3260
+ # resource type in the store.
3261
+ # Corresponds to the JSON property `versionedStorageSizeBytes`
3262
+ # @return [Fixnum]
3263
+ attr_accessor :versioned_storage_size_bytes
3264
+
3259
3265
  def initialize(**args)
3260
3266
  update!(**args)
3261
3267
  end
@@ -3265,6 +3271,7 @@ module Google
3265
3271
  @count = args[:count] if args.key?(:count)
3266
3272
  @resource_type = args[:resource_type] if args.key?(:resource_type)
3267
3273
  @structured_storage_size_bytes = args[:structured_storage_size_bytes] if args.key?(:structured_storage_size_bytes)
3274
+ @versioned_storage_size_bytes = args[:versioned_storage_size_bytes] if args.key?(:versioned_storage_size_bytes)
3268
3275
  end
3269
3276
  end
3270
3277
 
@@ -4998,6 +5005,13 @@ module Google
4998
5005
  # @return [Array<Google::Apis::HealthcareV1beta1::Operation>]
4999
5006
  attr_accessor :operations
5000
5007
 
5008
+ # Unordered list. Unreachable resources. Populated when the request sets `
5009
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
5010
+ # when attempting to list all resources across all supported locations.
5011
+ # Corresponds to the JSON property `unreachable`
5012
+ # @return [Array<String>]
5013
+ attr_accessor :unreachable
5014
+
5001
5015
  def initialize(**args)
5002
5016
  update!(**args)
5003
5017
  end
@@ -5006,6 +5020,7 @@ module Google
5006
5020
  def update!(**args)
5007
5021
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
5008
5022
  @operations = args[:operations] if args.key?(:operations)
5023
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
5009
5024
  end
5010
5025
  end
5011
5026
 
@@ -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.89.0"
19
+ GEM_VERSION = "0.91.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250923"
25
+ REVISION = "20251009"
26
26
  end
27
27
  end
28
28
  end
@@ -2110,6 +2110,7 @@ module Google
2110
2110
  property :count, :numeric_string => true, as: 'count'
2111
2111
  property :resource_type, as: 'resourceType'
2112
2112
  property :structured_storage_size_bytes, :numeric_string => true, as: 'structuredStorageSizeBytes'
2113
+ property :versioned_storage_size_bytes, :numeric_string => true, as: 'versionedStorageSizeBytes'
2113
2114
  end
2114
2115
  end
2115
2116
 
@@ -2617,6 +2618,7 @@ module Google
2617
2618
  property :next_page_token, as: 'nextPageToken'
2618
2619
  collection :operations, as: 'operations', class: Google::Apis::HealthcareV1beta1::Operation, decorator: Google::Apis::HealthcareV1beta1::Operation::Representation
2619
2620
 
2621
+ collection :unreachable, as: 'unreachable'
2620
2622
  end
2621
2623
  end
2622
2624
 
@@ -2478,8 +2478,8 @@ module Google
2478
2478
  # dicomStores/`dicom_store_id``.
2479
2479
  # @param [String] dicom_web_path
2480
2480
  # Required. The path of the SearchForInstancesRequest DICOMweb request. For
2481
- # example, `instances`, `series/`series_uid`/instances`, or `studies/`study_uid`/
2482
- # instances`.
2481
+ # example, `instances`, `studies/`study_uid`/series/`series_uid`/instances`, or `
2482
+ # studies/`study_uid`/instances`.
2483
2483
  # @param [String] fields
2484
2484
  # Selector specifying which fields to include in a partial response.
2485
2485
  # @param [String] quota_user
@@ -3076,8 +3076,8 @@ module Google
3076
3076
  # dicomStores/`dicom_store_id``.
3077
3077
  # @param [String] dicom_web_path
3078
3078
  # Required. The path of the SearchForInstancesRequest DICOMweb request. For
3079
- # example, `instances`, `series/`series_uid`/instances`, or `studies/`study_uid`/
3080
- # instances`.
3079
+ # example, `instances`, `studies/`study_uid`/series/`series_uid`/instances`, or `
3080
+ # studies/`study_uid`/instances`.
3081
3081
  # @param [String] fields
3082
3082
  # Selector specifying which fields to include in a partial response.
3083
3083
  # @param [String] quota_user
@@ -3417,8 +3417,8 @@ module Google
3417
3417
  # dicomStores/`dicom_store_id``.
3418
3418
  # @param [String] dicom_web_path
3419
3419
  # Required. The path of the SearchForInstancesRequest DICOMweb request. For
3420
- # example, `instances`, `series/`series_uid`/instances`, or `studies/`study_uid`/
3421
- # instances`.
3420
+ # example, `instances`, `studies/`study_uid`/series/`series_uid`/instances`, or `
3421
+ # studies/`study_uid`/instances`.
3422
3422
  # @param [String] fields
3423
3423
  # Selector specifying which fields to include in a partial response.
3424
3424
  # @param [String] quota_user
@@ -4215,10 +4215,16 @@ module Google
4215
4215
 
4216
4216
  # Export resources from the FHIR store to the specified destination. This method
4217
4217
  # returns an Operation that can be used to track the status of the export by
4218
- # calling GetOperation. Immediate fatal errors appear in the error field, errors
4219
- # are also logged to Cloud Logging (see [Viewing error logs in Cloud Logging](
4220
- # https://cloud.google.com/healthcare/docs/how-tos/logging)). Otherwise, when
4221
- # the operation finishes, a detailed response of type ExportResourcesResponse is
4218
+ # calling GetOperation. To improve performance, it is recommended to make the `
4219
+ # type` filter as specific as possible, including only the resource types that
4220
+ # are absolutely needed. This minimizes the size of the initial dataset to be
4221
+ # processed and is the most effective way to improve performance. While post-
4222
+ # filters like `_since` are useful for refining results, they do not speed up
4223
+ # the initial data retrieval phase, which is primarily governed by the `type`
4224
+ # filter. Immediate fatal errors appear in the error field, errors are also
4225
+ # logged to Cloud Logging (see [Viewing error logs in Cloud Logging](https://
4226
+ # cloud.google.com/healthcare/docs/how-tos/logging)). Otherwise, when the
4227
+ # operation finishes, a detailed response of type ExportResourcesResponse is
4222
4228
  # returned in the response field. The metadata field type for this operation is
4223
4229
  # OperationMetadata.
4224
4230
  # @param [String] name
@@ -4494,7 +4500,7 @@ module Google
4494
4500
  # Import resource historical versions from Cloud Storage source to destination
4495
4501
  # fhir store. The exported resource, along with previous versions, will be
4496
4502
  # exported in one or more FHIR history bundles. This method returns an Operation
4497
- # that can be used to track the status of the export by calling GetOperation.
4503
+ # that can be used to track the status of the import by calling GetOperation.
4498
4504
  # Immediate fatal errors appear in the error field, errors are also logged to
4499
4505
  # Cloud Logging (see [Viewing error logs in Cloud Logging](https://cloud.google.
4500
4506
  # com/healthcare/docs/how-tos/logging)). Otherwise, when the operation finishes,
@@ -5702,19 +5708,20 @@ module Google
5702
5708
  # but the server supports it in the same way it supports STU3. Search terms are
5703
5709
  # provided as query parameters following the same pattern as the search method.
5704
5710
  # If the search criteria identify more than one match, the request returns a `
5705
- # 412 Precondition Failed` error. The request body must contain a JSON Patch
5706
- # document, and the request headers must contain `Content-Type: application/json-
5707
- # patch+json`. On success, the response body contains a JSON-encoded
5708
- # representation of the updated resource, including the server-assigned version
5709
- # ID. Errors generated by the FHIR store contain a JSON-encoded `
5710
- # OperationOutcome` resource describing the reason for the error. If the request
5711
- # cannot be mapped to a valid API method on a FHIR store, a generic GCP error
5712
- # might be returned instead. This method requires the`healthcare.fhirStores.
5713
- # searchResources` permission on the parent FHIR store and the `healthcare.
5714
- # fhirResources.patch` permission on the requested FHIR store resource. For
5715
- # samples that show how to call `conditionalPatch`, see [Conditionally patching
5716
- # a FHIR resource](https://cloud.google.com/healthcare/docs/how-tos/fhir-
5717
- # resources#conditionally_patching_a_fhir_resource).
5711
+ # 412 Precondition Failed` error. If the search criteria doesn't identify any
5712
+ # matches, the request returns a `404 Not Found` error. The request body must
5713
+ # contain a JSON Patch document, and the request headers must contain `Content-
5714
+ # Type: application/json-patch+json`. On success, the response body contains a
5715
+ # JSON-encoded representation of the updated resource, including the server-
5716
+ # assigned version ID. Errors generated by the FHIR store contain a JSON-encoded
5717
+ # `OperationOutcome` resource describing the reason for the error. If the
5718
+ # request cannot be mapped to a valid API method on a FHIR store, a generic GCP
5719
+ # error might be returned instead. This method requires the`healthcare.
5720
+ # fhirStores.searchResources` permission on the parent FHIR store and the `
5721
+ # healthcare.fhirResources.patch` permission on the requested FHIR store
5722
+ # resource. For samples that show how to call `conditionalPatch`, see [
5723
+ # Conditionally patching a FHIR resource](https://cloud.google.com/healthcare/
5724
+ # docs/how-tos/fhir-resources#conditionally_patching_a_fhir_resource).
5718
5725
  # @param [String] parent
5719
5726
  # Required. The name of the FHIR store this resource belongs to.
5720
5727
  # @param [String] type
@@ -7399,6 +7406,13 @@ module Google
7399
7406
  # The standard list page size.
7400
7407
  # @param [String] page_token
7401
7408
  # The standard list page token.
7409
+ # @param [Boolean] return_partial_success
7410
+ # When set to `true`, operations that are reachable are returned as normal, and
7411
+ # those that are unreachable are returned in the [ListOperationsResponse.
7412
+ # unreachable] field. This can only be `true` when reading across collections e.
7413
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
7414
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
7415
+ # explicitly documented otherwise in service or product specific documentation.
7402
7416
  # @param [String] fields
7403
7417
  # Selector specifying which fields to include in a partial response.
7404
7418
  # @param [String] quota_user
@@ -7416,7 +7430,7 @@ module Google
7416
7430
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
7417
7431
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
7418
7432
  # @raise [Google::Apis::AuthorizationError] Authorization is required
7419
- def list_project_location_dataset_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
7433
+ def list_project_location_dataset_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
7420
7434
  command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
7421
7435
  command.response_representation = Google::Apis::HealthcareV1beta1::ListOperationsResponse::Representation
7422
7436
  command.response_class = Google::Apis::HealthcareV1beta1::ListOperationsResponse
@@ -7424,6 +7438,7 @@ module Google
7424
7438
  command.query['filter'] = filter unless filter.nil?
7425
7439
  command.query['pageSize'] = page_size unless page_size.nil?
7426
7440
  command.query['pageToken'] = page_token unless page_token.nil?
7441
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
7427
7442
  command.query['fields'] = fields unless fields.nil?
7428
7443
  command.query['quotaUser'] = quota_user unless quota_user.nil?
7429
7444
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-healthcare_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.89.0
4
+ version: 0.91.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.89.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.91.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-healthcare_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: