@@ -2440,8 +2440,8 @@ def patch_project_location_dataset_dicom_store(name, dicom_store_object = nil, u
24402440 # dicomStores/`dicom_store_id``.
24412441 # @param [String] dicom_web_path
24422442 # Required. The path of the SearchForInstancesRequest DICOMweb request. For
2443- # example, `instances`, `series/`series_uid`/instances`, or `studies/`study_uid`/
2444- # instances`.
2443+ # example, `instances`, `studies/`study_uid`/ series/`series_uid`/instances`, or `
2444+ # studies/`study_uid`/ instances`.
24452445 # @param [String] fields
24462446 # Selector specifying which fields to include in a partial response.
24472447 # @param [String] quota_user
@@ -2997,8 +2997,8 @@ def retrieve_project_location_dataset_dicom_store_study_study(parent, dicom_web_
29972997 # dicomStores/`dicom_store_id``.
29982998 # @param [String] dicom_web_path
29992999 # Required. The path of the SearchForInstancesRequest DICOMweb request. For
3000- # example, `instances`, `series/`series_uid`/instances`, or `studies/`study_uid`/
3001- # instances`.
3000+ # example, `instances`, `studies/`study_uid`/ series/`series_uid`/instances`, or `
3001+ # studies/`study_uid`/ instances`.
30023002 # @param [String] fields
30033003 # Selector specifying which fields to include in a partial response.
30043004 # @param [String] quota_user
@@ -3257,8 +3257,8 @@ def retrieve_project_location_dataset_dicom_store_study_series_series(parent, di
32573257 # dicomStores/`dicom_store_id``.
32583258 # @param [String] dicom_web_path
32593259 # Required. The path of the SearchForInstancesRequest DICOMweb request. For
3260- # example, `instances`, `series/`series_uid`/instances`, or `studies/`study_uid`/
3261- # instances`.
3260+ # example, `instances`, `studies/`study_uid`/ series/`series_uid`/instances`, or `
3261+ # studies/`study_uid`/ instances`.
32623262 # @param [String] fields
32633263 # Selector specifying which fields to include in a partial response.
32643264 # @param [String] quota_user
@@ -3932,10 +3932,16 @@ def explain_project_location_dataset_fhir_store_data_access(name, resource_id: n
39323932
39333933 # Export resources from the FHIR store to the specified destination. This method
39343934 # returns an Operation that can be used to track the status of the export by
3935- # calling GetOperation. Immediate fatal errors appear in the error field, errors
3936- # are also logged to Cloud Logging (see [Viewing error logs in Cloud Logging](
3937- # https://cloud.google.com/healthcare/docs/how-tos/logging)). Otherwise, when
3938- # the operation finishes, a detailed response of type ExportResourcesResponse is
3935+ # calling GetOperation. To improve performance, it is recommended to make the `
3936+ # type` filter as specific as possible, including only the resource types that
3937+ # are absolutely needed. This minimizes the size of the initial dataset to be
3938+ # processed and is the most effective way to improve performance. While post-
3939+ # filters like `_since` are useful for refining results, they do not speed up
3940+ # the initial data retrieval phase, which is primarily governed by the `type`
3941+ # filter. Immediate fatal errors appear in the error field, errors are also
3942+ # logged to Cloud Logging (see [Viewing error logs in Cloud Logging](https://
3943+ # cloud.google.com/healthcare/docs/how-tos/logging)). Otherwise, when the
3944+ # operation finishes, a detailed response of type ExportResourcesResponse is
39393945 # returned in the response field. The metadata field type for this operation is
39403946 # OperationMetadata.
39413947 # @param [String] name
@@ -6669,6 +6675,13 @@ def get_project_location_dataset_operation(name, fields: nil, quota_user: nil, o
66696675 # The standard list page size.
66706676 # @param [String] page_token
66716677 # The standard list page token.
6678+ # @param [Boolean] return_partial_success
6679+ # When set to `true`, operations that are reachable are returned as normal, and
6680+ # those that are unreachable are returned in the [ListOperationsResponse.
6681+ # unreachable] field. This can only be `true` when reading across collections e.
6682+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
6683+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
6684+ # explicitly documented otherwise in service or product specific documentation.
66726685 # @param [String] fields
66736686 # Selector specifying which fields to include in a partial response.
66746687 # @param [String] quota_user
@@ -6686,14 +6699,15 @@ def get_project_location_dataset_operation(name, fields: nil, quota_user: nil, o
66866699 # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
66876700 # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
66886701 # @raise [Google::Apis::AuthorizationError] Authorization is required
6689- def list_project_location_dataset_operations ( name , filter : nil , page_size : nil , page_token : nil , fields : nil , quota_user : nil , options : nil , &block )
6702+ 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 )
66906703 command = make_simple_command ( :get , 'v1/{+name}/operations' , options )
66916704 command . response_representation = Google ::Apis ::HealthcareV1 ::ListOperationsResponse ::Representation
66926705 command . response_class = Google ::Apis ::HealthcareV1 ::ListOperationsResponse
66936706 command . params [ 'name' ] = name unless name . nil?
66946707 command . query [ 'filter' ] = filter unless filter . nil?
66956708 command . query [ 'pageSize' ] = page_size unless page_size . nil?
66966709 command . query [ 'pageToken' ] = page_token unless page_token . nil?
6710+ command . query [ 'returnPartialSuccess' ] = return_partial_success unless return_partial_success . nil?
66976711 command . query [ 'fields' ] = fields unless fields . nil?
66986712 command . query [ 'quotaUser' ] = quota_user unless quota_user . nil?
66996713 execute_or_queue_command ( command , &block )
0 commit comments