google-apis-healthcare_v1beta1 0.86.0 → 0.87.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/healthcare_v1beta1/classes.rb +32 -3
- data/lib/google/apis/healthcare_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/healthcare_v1beta1/representations.rb +24 -0
- data/lib/google/apis/healthcare_v1beta1/service.rb +213 -14
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8bfbb444bfd0fc792db2a7c700f646914a0bca4750d6319491cc06733d902c47
|
4
|
+
data.tar.gz: '02190a001397c8d627837a871a8ca4f5d38b189a83cacf0020e18308d5be647a'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 568dad1a5912d61aa0de2392eed52aa3187c39a451bc118cbc40ee6d483e5b594844b2358b8de33c51eac1db9fe2a9621d04a5eed1a787f2090898311f387f67
|
7
|
+
data.tar.gz: 1a48d6e18ac626b15af16e848b24c7b9375105765b08ab6dfc59368a3ba22765df1028d9396385da0689c8532df7a932f0d52406434cc22a7dfc92c7d52b2cd3
|
data/CHANGELOG.md
CHANGED
@@ -3124,9 +3124,12 @@ module Google
|
|
3124
3124
|
attr_accessor :disable_resource_versioning
|
3125
3125
|
alias_method :disable_resource_versioning?, :disable_resource_versioning
|
3126
3126
|
|
3127
|
-
# Optional. Whether to allow
|
3128
|
-
#
|
3129
|
-
#
|
3127
|
+
# Optional. Whether to allow the [ImportResourcesHistory] and [ExecuteBundle]
|
3128
|
+
# APIs to accept history bundles, and directly insert and overwrite historical
|
3129
|
+
# resource versions into the FHIR store. Changing resource histories creates
|
3130
|
+
# resource interactions that have occurred in the past which clients might not
|
3131
|
+
# allow. If set to false, [ImportResourcesHistory] and [ExecuteBundle] requests
|
3132
|
+
# will return errors.
|
3130
3133
|
# Corresponds to the JSON property `enableHistoryModifications`
|
3131
3134
|
# @return [Boolean]
|
3132
3135
|
attr_accessor :enable_history_modifications
|
@@ -6974,6 +6977,32 @@ module Google
|
|
6974
6977
|
end
|
6975
6978
|
end
|
6976
6979
|
|
6980
|
+
# UpdateSeriesMetadataResponse is the LRO response for UpdateSeriesMetadata.
|
6981
|
+
class UpdateSeriesMetadataResponse
|
6982
|
+
include Google::Apis::Core::Hashable
|
6983
|
+
|
6984
|
+
def initialize(**args)
|
6985
|
+
update!(**args)
|
6986
|
+
end
|
6987
|
+
|
6988
|
+
# Update properties of this object
|
6989
|
+
def update!(**args)
|
6990
|
+
end
|
6991
|
+
end
|
6992
|
+
|
6993
|
+
# UpdateStudyMetadataResponse is the LRO response for UpdateStudyMetadata.
|
6994
|
+
class UpdateStudyMetadataResponse
|
6995
|
+
include Google::Apis::Core::Hashable
|
6996
|
+
|
6997
|
+
def initialize(**args)
|
6998
|
+
update!(**args)
|
6999
|
+
end
|
7000
|
+
|
7001
|
+
# Update properties of this object
|
7002
|
+
def update!(**args)
|
7003
|
+
end
|
7004
|
+
end
|
7005
|
+
|
6977
7006
|
# Maps a resource to the associated user and Attributes.
|
6978
7007
|
class UserDataMapping
|
6979
7008
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.87.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 = "
|
25
|
+
REVISION = "20250821"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1240,6 +1240,18 @@ module Google
|
|
1240
1240
|
include Google::Apis::Core::JsonObjectSupport
|
1241
1241
|
end
|
1242
1242
|
|
1243
|
+
class UpdateSeriesMetadataResponse
|
1244
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1245
|
+
|
1246
|
+
include Google::Apis::Core::JsonObjectSupport
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
class UpdateStudyMetadataResponse
|
1250
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1251
|
+
|
1252
|
+
include Google::Apis::Core::JsonObjectSupport
|
1253
|
+
end
|
1254
|
+
|
1243
1255
|
class UserDataMapping
|
1244
1256
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1245
1257
|
|
@@ -3149,6 +3161,18 @@ module Google
|
|
3149
3161
|
end
|
3150
3162
|
end
|
3151
3163
|
|
3164
|
+
class UpdateSeriesMetadataResponse
|
3165
|
+
# @private
|
3166
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3167
|
+
end
|
3168
|
+
end
|
3169
|
+
|
3170
|
+
class UpdateStudyMetadataResponse
|
3171
|
+
# @private
|
3172
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3173
|
+
end
|
3174
|
+
end
|
3175
|
+
|
3152
3176
|
class UserDataMapping
|
3153
3177
|
# @private
|
3154
3178
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -85,8 +85,8 @@ module Google
|
|
85
85
|
# @param [String] name
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
87
87
|
# @param [Array<String>, String] extra_location_types
|
88
|
-
# Optional.
|
89
|
-
#
|
88
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
89
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
90
90
|
# @param [String] filter
|
91
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
92
92
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
@@ -2757,6 +2757,46 @@ module Google
|
|
2757
2757
|
execute_or_queue_command(command, &block)
|
2758
2758
|
end
|
2759
2759
|
|
2760
|
+
# UpdateInstances updates DICOM instances associated with study instance unique
|
2761
|
+
# identifiers (SUID).
|
2762
|
+
# @param [String] parent
|
2763
|
+
# Required. The name of the DICOM store that is being accessed. For example, `
|
2764
|
+
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
|
2765
|
+
# dicomStores/`dicom_store_id``.
|
2766
|
+
# @param [String] dicom_web_path
|
2767
|
+
# Required. The path of the UpdateInstances DICOMweb request. For example, `
|
2768
|
+
# studies/[`study_uid`]`. Note that the `study_uid` is optional.
|
2769
|
+
# @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
|
2770
|
+
# @param [String] fields
|
2771
|
+
# Selector specifying which fields to include in a partial response.
|
2772
|
+
# @param [String] quota_user
|
2773
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2774
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2775
|
+
# @param [Google::Apis::RequestOptions] options
|
2776
|
+
# Request-specific options
|
2777
|
+
#
|
2778
|
+
# @yield [result, err] Result & error if block supplied
|
2779
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::HttpBody] parsed result object
|
2780
|
+
# @yieldparam err [StandardError] error object if request failed
|
2781
|
+
#
|
2782
|
+
# @return [Google::Apis::HealthcareV1beta1::HttpBody]
|
2783
|
+
#
|
2784
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2785
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2786
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2787
|
+
def update_project_location_dataset_dicom_store_instances(parent, dicom_web_path, http_body_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
2788
|
+
command = make_simple_command(:put, 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', options)
|
2789
|
+
command.request_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
2790
|
+
command.request_object = http_body_object
|
2791
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
2792
|
+
command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
|
2793
|
+
command.params['parent'] = parent unless parent.nil?
|
2794
|
+
command.params['dicomWebPath'] = dicom_web_path unless dicom_web_path.nil?
|
2795
|
+
command.query['fields'] = fields unless fields.nil?
|
2796
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2797
|
+
execute_or_queue_command(command, &block)
|
2798
|
+
end
|
2799
|
+
|
2760
2800
|
# GetStudyMetrics returns metrics for a study.
|
2761
2801
|
# @param [String] study
|
2762
2802
|
# Required. The study resource path. For example, `projects/`project_id`/
|
@@ -3154,6 +3194,87 @@ module Google
|
|
3154
3194
|
execute_or_queue_command(command, &block)
|
3155
3195
|
end
|
3156
3196
|
|
3197
|
+
# UpdateInstances updates DICOM instances associated with study instance unique
|
3198
|
+
# identifiers (SUID).
|
3199
|
+
# @param [String] parent
|
3200
|
+
# Required. The name of the DICOM store that is being accessed. For example, `
|
3201
|
+
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
|
3202
|
+
# dicomStores/`dicom_store_id``.
|
3203
|
+
# @param [String] dicom_web_path
|
3204
|
+
# Required. The path of the UpdateInstances DICOMweb request. For example, `
|
3205
|
+
# studies/[`study_uid`]`. Note that the `study_uid` is optional.
|
3206
|
+
# @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
|
3207
|
+
# @param [String] fields
|
3208
|
+
# Selector specifying which fields to include in a partial response.
|
3209
|
+
# @param [String] quota_user
|
3210
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3211
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3212
|
+
# @param [Google::Apis::RequestOptions] options
|
3213
|
+
# Request-specific options
|
3214
|
+
#
|
3215
|
+
# @yield [result, err] Result & error if block supplied
|
3216
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::HttpBody] parsed result object
|
3217
|
+
# @yieldparam err [StandardError] error object if request failed
|
3218
|
+
#
|
3219
|
+
# @return [Google::Apis::HealthcareV1beta1::HttpBody]
|
3220
|
+
#
|
3221
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3222
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3223
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3224
|
+
def update_project_location_dataset_dicom_store_study_instances(parent, dicom_web_path, http_body_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
3225
|
+
command = make_simple_command(:put, 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}', options)
|
3226
|
+
command.request_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
3227
|
+
command.request_object = http_body_object
|
3228
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
3229
|
+
command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
|
3230
|
+
command.params['parent'] = parent unless parent.nil?
|
3231
|
+
command.params['dicomWebPath'] = dicom_web_path unless dicom_web_path.nil?
|
3232
|
+
command.query['fields'] = fields unless fields.nil?
|
3233
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3234
|
+
execute_or_queue_command(command, &block)
|
3235
|
+
end
|
3236
|
+
|
3237
|
+
# UpdateStudyMetadata modifies the metadata of all instances in the given study.
|
3238
|
+
# The request body must contain a JSON Patch document specifying the updates to
|
3239
|
+
# be applied to the metadata of all instances within the study.
|
3240
|
+
# @param [String] parent
|
3241
|
+
# Required. The name of the DICOM store that is being accessed (for example, `
|
3242
|
+
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
|
3243
|
+
# dicomStores/`dicom_store_id``).
|
3244
|
+
# @param [String] dicom_web_path
|
3245
|
+
# Required. The path of the UpdateStudyMetadata request (for example, `studies/`
|
3246
|
+
# study_uid``).
|
3247
|
+
# @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
|
3248
|
+
# @param [String] fields
|
3249
|
+
# Selector specifying which fields to include in a partial response.
|
3250
|
+
# @param [String] quota_user
|
3251
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3252
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3253
|
+
# @param [Google::Apis::RequestOptions] options
|
3254
|
+
# Request-specific options
|
3255
|
+
#
|
3256
|
+
# @yield [result, err] Result & error if block supplied
|
3257
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::Operation] parsed result object
|
3258
|
+
# @yieldparam err [StandardError] error object if request failed
|
3259
|
+
#
|
3260
|
+
# @return [Google::Apis::HealthcareV1beta1::Operation]
|
3261
|
+
#
|
3262
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3263
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3264
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3265
|
+
def update_project_location_dataset_dicom_store_study_metadata(parent, dicom_web_path, http_body_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
3266
|
+
command = make_simple_command(:patch, 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}/metadata', options)
|
3267
|
+
command.request_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
3268
|
+
command.request_object = http_body_object
|
3269
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::Operation::Representation
|
3270
|
+
command.response_class = Google::Apis::HealthcareV1beta1::Operation
|
3271
|
+
command.params['parent'] = parent unless parent.nil?
|
3272
|
+
command.params['dicomWebPath'] = dicom_web_path unless dicom_web_path.nil?
|
3273
|
+
command.query['fields'] = fields unless fields.nil?
|
3274
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3275
|
+
execute_or_queue_command(command, &block)
|
3276
|
+
end
|
3277
|
+
|
3157
3278
|
# DeleteSeries deletes all instances within the given study and series using a
|
3158
3279
|
# long running operation. The method returns an Operation which will be marked
|
3159
3280
|
# successful when the deletion is complete. Warning: Instances cannot be
|
@@ -3326,6 +3447,47 @@ module Google
|
|
3326
3447
|
execute_or_queue_command(command, &block)
|
3327
3448
|
end
|
3328
3449
|
|
3450
|
+
# UpdateSeriesMetadata modifies the metadata of all instances in the given
|
3451
|
+
# series. The request body must contain a JSON Patch document specifying the
|
3452
|
+
# updates to be applied to the metadata of all instances within the series.
|
3453
|
+
# @param [String] parent
|
3454
|
+
# Required. The name of the DICOM store that is being accessed (for example, `
|
3455
|
+
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
|
3456
|
+
# dicomStores/`dicom_store_id``).
|
3457
|
+
# @param [String] dicom_web_path
|
3458
|
+
# Required. The path of the UpdateSeriesMetadata request (for example, `studies/`
|
3459
|
+
# study_uid`/series/`series_uid``).
|
3460
|
+
# @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
|
3461
|
+
# @param [String] fields
|
3462
|
+
# Selector specifying which fields to include in a partial response.
|
3463
|
+
# @param [String] quota_user
|
3464
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3465
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3466
|
+
# @param [Google::Apis::RequestOptions] options
|
3467
|
+
# Request-specific options
|
3468
|
+
#
|
3469
|
+
# @yield [result, err] Result & error if block supplied
|
3470
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::Operation] parsed result object
|
3471
|
+
# @yieldparam err [StandardError] error object if request failed
|
3472
|
+
#
|
3473
|
+
# @return [Google::Apis::HealthcareV1beta1::Operation]
|
3474
|
+
#
|
3475
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3476
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3477
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3478
|
+
def update_project_location_dataset_dicom_store_study_series_metadata(parent, dicom_web_path, http_body_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
3479
|
+
command = make_simple_command(:patch, 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}/metadata', options)
|
3480
|
+
command.request_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
3481
|
+
command.request_object = http_body_object
|
3482
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::Operation::Representation
|
3483
|
+
command.response_class = Google::Apis::HealthcareV1beta1::Operation
|
3484
|
+
command.params['parent'] = parent unless parent.nil?
|
3485
|
+
command.params['dicomWebPath'] = dicom_web_path unless dicom_web_path.nil?
|
3486
|
+
command.query['fields'] = fields unless fields.nil?
|
3487
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3488
|
+
execute_or_queue_command(command, &block)
|
3489
|
+
end
|
3490
|
+
|
3329
3491
|
# DeleteInstance deletes an instance associated with the given study, series,
|
3330
3492
|
# and SOP Instance UID. Delete requests are equivalent to the GET requests
|
3331
3493
|
# specified in the Retrieve transaction. Study and series search results can
|
@@ -3505,6 +3667,47 @@ module Google
|
|
3505
3667
|
execute_or_queue_command(command, &block)
|
3506
3668
|
end
|
3507
3669
|
|
3670
|
+
# UpdateInstanceMetadata modifies the metadata of a single instance. The request
|
3671
|
+
# body must contain a JSON Patch document specifying the updates to be applied
|
3672
|
+
# to the metadata of the instance.
|
3673
|
+
# @param [String] parent
|
3674
|
+
# Required. The name of the DICOM store that is being accessed (for example, `
|
3675
|
+
# projects/`project_id`/locations/`location_id`/datasets/`dataset_id`/
|
3676
|
+
# dicomStores/`dicom_store_id``).
|
3677
|
+
# @param [String] dicom_web_path
|
3678
|
+
# Required. The path of the UpdateInstanceMetadata request (for example, `
|
3679
|
+
# studies/`study_uid`/series/`series_uid`/instances/`instance_uid``).
|
3680
|
+
# @param [Google::Apis::HealthcareV1beta1::HttpBody] http_body_object
|
3681
|
+
# @param [String] fields
|
3682
|
+
# Selector specifying which fields to include in a partial response.
|
3683
|
+
# @param [String] quota_user
|
3684
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3685
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3686
|
+
# @param [Google::Apis::RequestOptions] options
|
3687
|
+
# Request-specific options
|
3688
|
+
#
|
3689
|
+
# @yield [result, err] Result & error if block supplied
|
3690
|
+
# @yieldparam result [Google::Apis::HealthcareV1beta1::HttpBody] parsed result object
|
3691
|
+
# @yieldparam err [StandardError] error object if request failed
|
3692
|
+
#
|
3693
|
+
# @return [Google::Apis::HealthcareV1beta1::HttpBody]
|
3694
|
+
#
|
3695
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3696
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3697
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3698
|
+
def update_project_location_dataset_dicom_store_study_series_instance_metadata(parent, dicom_web_path, http_body_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
3699
|
+
command = make_simple_command(:patch, 'v1beta1/{+parent}/dicomWeb/{+dicomWebPath}/metadata', options)
|
3700
|
+
command.request_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
3701
|
+
command.request_object = http_body_object
|
3702
|
+
command.response_representation = Google::Apis::HealthcareV1beta1::HttpBody::Representation
|
3703
|
+
command.response_class = Google::Apis::HealthcareV1beta1::HttpBody
|
3704
|
+
command.params['parent'] = parent unless parent.nil?
|
3705
|
+
command.params['dicomWebPath'] = dicom_web_path unless dicom_web_path.nil?
|
3706
|
+
command.query['fields'] = fields unless fields.nil?
|
3707
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3708
|
+
execute_or_queue_command(command, &block)
|
3709
|
+
end
|
3710
|
+
|
3508
3711
|
# Returns uncompressed, unencoded bytes representing the referenced bulkdata tag
|
3509
3712
|
# from an instance. See [Retrieve Transaction](http://dicom.nema.org/medical/
|
3510
3713
|
# dicom/current/output/html/part18.html#sect_10.4). For details on the
|
@@ -5998,12 +6201,10 @@ module Google
|
|
5998
6201
|
# 000) of resources. For a search query that will match a large number of
|
5999
6202
|
# resources, you can avoiding using the special synchronous index by including
|
6000
6203
|
# an additional `_sort` parameter in your query. Use `_sort=-_lastUpdated` if
|
6001
|
-
# you want to keep the default sorting order.
|
6002
|
-
#
|
6003
|
-
#
|
6004
|
-
#
|
6005
|
-
# fhir-search) and [Advanced FHIR search features](https://cloud.google.com/
|
6006
|
-
# healthcare/docs/how-tos/fhir-advanced-search).
|
6204
|
+
# you want to keep the default sorting order. For samples and detailed
|
6205
|
+
# information, see [Searching for FHIR resources](https://cloud.google.com/
|
6206
|
+
# healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](https:
|
6207
|
+
# //cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
|
6007
6208
|
# @param [String] parent
|
6008
6209
|
# Required. Name of the FHIR store to retrieve resources from.
|
6009
6210
|
# @param [Google::Apis::HealthcareV1beta1::SearchResourcesRequest] search_resources_request_object
|
@@ -6092,12 +6293,10 @@ module Google
|
|
6092
6293
|
# 000) of resources. For a search query that will match a large number of
|
6093
6294
|
# resources, you can avoiding using the special synchronous index by including
|
6094
6295
|
# an additional `_sort` parameter in your query. Use `_sort=-_lastUpdated` if
|
6095
|
-
# you want to keep the default sorting order.
|
6096
|
-
#
|
6097
|
-
#
|
6098
|
-
#
|
6099
|
-
# fhir-search) and [Advanced FHIR search features](https://cloud.google.com/
|
6100
|
-
# healthcare/docs/how-tos/fhir-advanced-search).
|
6296
|
+
# you want to keep the default sorting order. For samples and detailed
|
6297
|
+
# information, see [Searching for FHIR resources](https://cloud.google.com/
|
6298
|
+
# healthcare/docs/how-tos/fhir-search) and [Advanced FHIR search features](https:
|
6299
|
+
# //cloud.google.com/healthcare/docs/how-tos/fhir-advanced-search).
|
6101
6300
|
# @param [String] parent
|
6102
6301
|
# Required. Name of the FHIR store to retrieve resources from.
|
6103
6302
|
# @param [String] resource_type
|
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.
|
4
|
+
version: 0.87.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-healthcare_v1beta1/v0.87.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:
|