aws-sdk-medicalimaging 1.6.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medicalimaging/client.rb +23 -1
- data/lib/aws-sdk-medicalimaging/client_api.rb +21 -0
- data/lib/aws-sdk-medicalimaging/types.rb +67 -6
- data/lib/aws-sdk-medicalimaging.rb +1 -1
- data/sig/client.rbs +8 -1
- data/sig/types.rbs +20 -2
- 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: 91788be7ecb39ff67aab0c5fb3921432c7f7a206e7eaae430cb89b4b06aae11c
|
4
|
+
data.tar.gz: 97fe61baa8e677b4e26e9fe71eaec7854b24b965c4cc4358a0517e8aa6e5d7ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9159c804aece14650f2a670a1bddc6e4864c7eea503de849ce9e5421fa791603fef1f5f26719ffdc0c40dcd5541130a37835995bdc1c1289a61ea62bbd73c09
|
7
|
+
data.tar.gz: b8cd25b72308d49618706393284a7227dd8f18d1c4c7f7a367cbb2b76a300b9a72fa1416b2ec44f56abb151245793dca6561f2c3754eb5b5c3415789c9779dd4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.7.0 (2024-04-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - SearchImageSets API now supports following enhancements - Additional support for searching on UpdatedAt and SeriesInstanceUID - Support for searching existing filters between dates/times - Support for sorting the search result by Ascending/Descending - Additional parameters returned in the response
|
8
|
+
|
4
9
|
1.6.0 (2024-01-26)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.7.0
|
@@ -572,6 +572,15 @@ module Aws::MedicalImaging
|
|
572
572
|
# Get the import job properties to learn more about the job or job
|
573
573
|
# progress.
|
574
574
|
#
|
575
|
+
# <note markdown="1"> The `jobStatus` refers to the execution of the import job. Therefore,
|
576
|
+
# an import job can return a `jobStatus` as `COMPLETED` even if
|
577
|
+
# validation issues are discovered during the import process. If a
|
578
|
+
# `jobStatus` returns as `COMPLETED`, we still recommend you review the
|
579
|
+
# output manifests written to S3, as they provide details on the success
|
580
|
+
# or failure of individual P10 object imports.
|
581
|
+
#
|
582
|
+
# </note>
|
583
|
+
#
|
575
584
|
# @option params [required, String] :datastore_id
|
576
585
|
# The data store identifier.
|
577
586
|
#
|
@@ -992,6 +1001,7 @@ module Aws::MedicalImaging
|
|
992
1001
|
# @return [Types::SearchImageSetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
993
1002
|
#
|
994
1003
|
# * {Types::SearchImageSetsResponse#image_sets_metadata_summaries #image_sets_metadata_summaries} => Array<Types::ImageSetsMetadataSummary>
|
1004
|
+
# * {Types::SearchImageSetsResponse#sort #data.sort} => Types::Sort (This method conflicts with a method on Response, call it through the data member)
|
995
1005
|
# * {Types::SearchImageSetsResponse#next_token #next_token} => String
|
996
1006
|
#
|
997
1007
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
@@ -1009,7 +1019,9 @@ module Aws::MedicalImaging
|
|
1009
1019
|
# dicom_accession_number: "DICOMAccessionNumber",
|
1010
1020
|
# dicom_study_id: "DICOMStudyId",
|
1011
1021
|
# dicom_study_instance_uid: "DICOMStudyInstanceUID",
|
1022
|
+
# dicom_series_instance_uid: "DICOMSeriesInstanceUID",
|
1012
1023
|
# created_at: Time.now,
|
1024
|
+
# updated_at: Time.now,
|
1013
1025
|
# dicom_study_date_and_time: {
|
1014
1026
|
# dicom_study_date: "DICOMStudyDate", # required
|
1015
1027
|
# dicom_study_time: "DICOMStudyTime",
|
@@ -1019,6 +1031,10 @@ module Aws::MedicalImaging
|
|
1019
1031
|
# operator: "EQUAL", # required, accepts EQUAL, BETWEEN
|
1020
1032
|
# },
|
1021
1033
|
# ],
|
1034
|
+
# sort: {
|
1035
|
+
# sort_order: "ASC", # required, accepts ASC, DESC
|
1036
|
+
# sort_field: "updatedAt", # required, accepts updatedAt, createdAt, DICOMStudyDateAndTime
|
1037
|
+
# },
|
1022
1038
|
# },
|
1023
1039
|
# max_results: 1,
|
1024
1040
|
# next_token: "NextToken",
|
@@ -1041,8 +1057,14 @@ module Aws::MedicalImaging
|
|
1041
1057
|
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_number_of_study_related_series #=> Integer
|
1042
1058
|
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_number_of_study_related_instances #=> Integer
|
1043
1059
|
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_accession_number #=> String
|
1060
|
+
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_series_instance_uid #=> String
|
1061
|
+
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_series_modality #=> String
|
1062
|
+
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_series_body_part #=> String
|
1063
|
+
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_series_number #=> Integer
|
1044
1064
|
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_study_date #=> String
|
1045
1065
|
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_study_time #=> String
|
1066
|
+
# resp.data.sort.sort_order #=> String, one of "ASC", "DESC"
|
1067
|
+
# resp.data.sort.sort_field #=> String, one of "updatedAt", "createdAt", "DICOMStudyDateAndTime"
|
1046
1068
|
# resp.next_token #=> String
|
1047
1069
|
#
|
1048
1070
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/SearchImageSets AWS API Documentation
|
@@ -1246,7 +1268,7 @@ module Aws::MedicalImaging
|
|
1246
1268
|
params: params,
|
1247
1269
|
config: config)
|
1248
1270
|
context[:gem_name] = 'aws-sdk-medicalimaging'
|
1249
|
-
context[:gem_version] = '1.
|
1271
|
+
context[:gem_version] = '1.7.0'
|
1250
1272
|
Seahorse::Client::Request.new(handlers, context)
|
1251
1273
|
end
|
1252
1274
|
|
@@ -37,6 +37,10 @@ module Aws::MedicalImaging
|
|
37
37
|
DICOMPatientId = Shapes::StringShape.new(name: 'DICOMPatientId')
|
38
38
|
DICOMPatientName = Shapes::StringShape.new(name: 'DICOMPatientName')
|
39
39
|
DICOMPatientSex = Shapes::StringShape.new(name: 'DICOMPatientSex')
|
40
|
+
DICOMSeriesBodyPart = Shapes::StringShape.new(name: 'DICOMSeriesBodyPart')
|
41
|
+
DICOMSeriesInstanceUID = Shapes::StringShape.new(name: 'DICOMSeriesInstanceUID')
|
42
|
+
DICOMSeriesModality = Shapes::StringShape.new(name: 'DICOMSeriesModality')
|
43
|
+
DICOMSeriesNumber = Shapes::IntegerShape.new(name: 'DICOMSeriesNumber')
|
40
44
|
DICOMStudyDate = Shapes::StringShape.new(name: 'DICOMStudyDate')
|
41
45
|
DICOMStudyDateAndTime = Shapes::StructureShape.new(name: 'DICOMStudyDateAndTime')
|
42
46
|
DICOMStudyDescription = Shapes::StringShape.new(name: 'DICOMStudyDescription')
|
@@ -111,6 +115,9 @@ module Aws::MedicalImaging
|
|
111
115
|
SearchImageSetsRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'SearchImageSetsRequestMaxResultsInteger')
|
112
116
|
SearchImageSetsResponse = Shapes::StructureShape.new(name: 'SearchImageSetsResponse')
|
113
117
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
118
|
+
Sort = Shapes::StructureShape.new(name: 'Sort')
|
119
|
+
SortField = Shapes::StringShape.new(name: 'SortField')
|
120
|
+
SortOrder = Shapes::StringShape.new(name: 'SortOrder')
|
114
121
|
StartDICOMImportJobRequest = Shapes::StructureShape.new(name: 'StartDICOMImportJobRequest')
|
115
122
|
StartDICOMImportJobResponse = Shapes::StructureShape.new(name: 'StartDICOMImportJobResponse')
|
116
123
|
String = Shapes::StringShape.new(name: 'String')
|
@@ -222,6 +229,10 @@ module Aws::MedicalImaging
|
|
222
229
|
DICOMTags.add_member(:dicom_number_of_study_related_series, Shapes::ShapeRef.new(shape: DICOMNumberOfStudyRelatedSeries, location_name: "DICOMNumberOfStudyRelatedSeries"))
|
223
230
|
DICOMTags.add_member(:dicom_number_of_study_related_instances, Shapes::ShapeRef.new(shape: DICOMNumberOfStudyRelatedInstances, location_name: "DICOMNumberOfStudyRelatedInstances"))
|
224
231
|
DICOMTags.add_member(:dicom_accession_number, Shapes::ShapeRef.new(shape: DICOMAccessionNumber, location_name: "DICOMAccessionNumber"))
|
232
|
+
DICOMTags.add_member(:dicom_series_instance_uid, Shapes::ShapeRef.new(shape: DICOMSeriesInstanceUID, location_name: "DICOMSeriesInstanceUID"))
|
233
|
+
DICOMTags.add_member(:dicom_series_modality, Shapes::ShapeRef.new(shape: DICOMSeriesModality, location_name: "DICOMSeriesModality"))
|
234
|
+
DICOMTags.add_member(:dicom_series_body_part, Shapes::ShapeRef.new(shape: DICOMSeriesBodyPart, location_name: "DICOMSeriesBodyPart"))
|
235
|
+
DICOMTags.add_member(:dicom_series_number, Shapes::ShapeRef.new(shape: DICOMSeriesNumber, location_name: "DICOMSeriesNumber"))
|
225
236
|
DICOMTags.add_member(:dicom_study_date, Shapes::ShapeRef.new(shape: DICOMStudyDate, location_name: "DICOMStudyDate"))
|
226
237
|
DICOMTags.add_member(:dicom_study_time, Shapes::ShapeRef.new(shape: DICOMStudyTime, location_name: "DICOMStudyTime"))
|
227
238
|
DICOMTags.struct_class = Types::DICOMTags
|
@@ -396,19 +407,24 @@ module Aws::MedicalImaging
|
|
396
407
|
SearchByAttributeValue.add_member(:dicom_accession_number, Shapes::ShapeRef.new(shape: DICOMAccessionNumber, location_name: "DICOMAccessionNumber"))
|
397
408
|
SearchByAttributeValue.add_member(:dicom_study_id, Shapes::ShapeRef.new(shape: DICOMStudyId, location_name: "DICOMStudyId"))
|
398
409
|
SearchByAttributeValue.add_member(:dicom_study_instance_uid, Shapes::ShapeRef.new(shape: DICOMStudyInstanceUID, location_name: "DICOMStudyInstanceUID"))
|
410
|
+
SearchByAttributeValue.add_member(:dicom_series_instance_uid, Shapes::ShapeRef.new(shape: DICOMSeriesInstanceUID, location_name: "DICOMSeriesInstanceUID"))
|
399
411
|
SearchByAttributeValue.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
|
412
|
+
SearchByAttributeValue.add_member(:updated_at, Shapes::ShapeRef.new(shape: Date, location_name: "updatedAt"))
|
400
413
|
SearchByAttributeValue.add_member(:dicom_study_date_and_time, Shapes::ShapeRef.new(shape: DICOMStudyDateAndTime, location_name: "DICOMStudyDateAndTime"))
|
401
414
|
SearchByAttributeValue.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
402
415
|
SearchByAttributeValue.add_member_subclass(:dicom_patient_id, Types::SearchByAttributeValue::DicomPatientId)
|
403
416
|
SearchByAttributeValue.add_member_subclass(:dicom_accession_number, Types::SearchByAttributeValue::DicomAccessionNumber)
|
404
417
|
SearchByAttributeValue.add_member_subclass(:dicom_study_id, Types::SearchByAttributeValue::DicomStudyId)
|
405
418
|
SearchByAttributeValue.add_member_subclass(:dicom_study_instance_uid, Types::SearchByAttributeValue::DicomStudyInstanceUid)
|
419
|
+
SearchByAttributeValue.add_member_subclass(:dicom_series_instance_uid, Types::SearchByAttributeValue::DicomSeriesInstanceUid)
|
406
420
|
SearchByAttributeValue.add_member_subclass(:created_at, Types::SearchByAttributeValue::CreatedAt)
|
421
|
+
SearchByAttributeValue.add_member_subclass(:updated_at, Types::SearchByAttributeValue::UpdatedAt)
|
407
422
|
SearchByAttributeValue.add_member_subclass(:dicom_study_date_and_time, Types::SearchByAttributeValue::DicomStudyDateAndTime)
|
408
423
|
SearchByAttributeValue.add_member_subclass(:unknown, Types::SearchByAttributeValue::Unknown)
|
409
424
|
SearchByAttributeValue.struct_class = Types::SearchByAttributeValue
|
410
425
|
|
411
426
|
SearchCriteria.add_member(:filters, Shapes::ShapeRef.new(shape: SearchCriteriaFiltersList, location_name: "filters"))
|
427
|
+
SearchCriteria.add_member(:sort, Shapes::ShapeRef.new(shape: Sort, location_name: "sort"))
|
412
428
|
SearchCriteria.struct_class = Types::SearchCriteria
|
413
429
|
|
414
430
|
SearchCriteriaFiltersList.member = Shapes::ShapeRef.new(shape: SearchFilter)
|
@@ -428,12 +444,17 @@ module Aws::MedicalImaging
|
|
428
444
|
SearchImageSetsRequest[:payload_member] = SearchImageSetsRequest.member(:search_criteria)
|
429
445
|
|
430
446
|
SearchImageSetsResponse.add_member(:image_sets_metadata_summaries, Shapes::ShapeRef.new(shape: ImageSetsMetadataSummaries, required: true, location_name: "imageSetsMetadataSummaries"))
|
447
|
+
SearchImageSetsResponse.add_member(:sort, Shapes::ShapeRef.new(shape: Sort, location_name: "sort"))
|
431
448
|
SearchImageSetsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
432
449
|
SearchImageSetsResponse.struct_class = Types::SearchImageSetsResponse
|
433
450
|
|
434
451
|
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
435
452
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
436
453
|
|
454
|
+
Sort.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, required: true, location_name: "sortOrder"))
|
455
|
+
Sort.add_member(:sort_field, Shapes::ShapeRef.new(shape: SortField, required: true, location_name: "sortField"))
|
456
|
+
Sort.struct_class = Types::Sort
|
457
|
+
|
437
458
|
StartDICOMImportJobRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "jobName"))
|
438
459
|
StartDICOMImportJobRequest.add_member(:data_access_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "dataAccessRoleArn"))
|
439
460
|
StartDICOMImportJobRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
@@ -425,15 +425,15 @@ module Aws::MedicalImaging
|
|
425
425
|
# @return [String]
|
426
426
|
#
|
427
427
|
# @!attribute [rw] dicom_study_instance_uid
|
428
|
-
# The DICOM provided identifier for
|
428
|
+
# The DICOM provided identifier for the Study Instance UID.
|
429
429
|
# @return [String]
|
430
430
|
#
|
431
431
|
# @!attribute [rw] dicom_study_id
|
432
|
-
# The DICOM provided
|
432
|
+
# The DICOM provided identifier for the Study ID.
|
433
433
|
# @return [String]
|
434
434
|
#
|
435
435
|
# @!attribute [rw] dicom_study_description
|
436
|
-
# The
|
436
|
+
# The DICOM provided Study Description.
|
437
437
|
# @return [String]
|
438
438
|
#
|
439
439
|
# @!attribute [rw] dicom_number_of_study_related_series
|
@@ -448,6 +448,22 @@ module Aws::MedicalImaging
|
|
448
448
|
# The accession number for the DICOM study.
|
449
449
|
# @return [String]
|
450
450
|
#
|
451
|
+
# @!attribute [rw] dicom_series_instance_uid
|
452
|
+
# The DICOM provided identifier for the Series Instance UID.
|
453
|
+
# @return [String]
|
454
|
+
#
|
455
|
+
# @!attribute [rw] dicom_series_modality
|
456
|
+
# The DICOM provided identifier for the series Modality.
|
457
|
+
# @return [String]
|
458
|
+
#
|
459
|
+
# @!attribute [rw] dicom_series_body_part
|
460
|
+
# The DICOM provided identifier for the series Body Part Examined.
|
461
|
+
# @return [String]
|
462
|
+
#
|
463
|
+
# @!attribute [rw] dicom_series_number
|
464
|
+
# The DICOM provided identifier for the Series Number.
|
465
|
+
# @return [Integer]
|
466
|
+
#
|
451
467
|
# @!attribute [rw] dicom_study_date
|
452
468
|
# The study date.
|
453
469
|
# @return [String]
|
@@ -469,9 +485,13 @@ module Aws::MedicalImaging
|
|
469
485
|
:dicom_number_of_study_related_series,
|
470
486
|
:dicom_number_of_study_related_instances,
|
471
487
|
:dicom_accession_number,
|
488
|
+
:dicom_series_instance_uid,
|
489
|
+
:dicom_series_modality,
|
490
|
+
:dicom_series_body_part,
|
491
|
+
:dicom_series_number,
|
472
492
|
:dicom_study_date,
|
473
493
|
:dicom_study_time)
|
474
|
-
SENSITIVE = [:dicom_patient_id, :dicom_patient_name, :dicom_patient_birth_date, :dicom_patient_sex, :dicom_study_instance_uid, :dicom_study_id, :dicom_study_description, :dicom_accession_number, :dicom_study_date, :dicom_study_time]
|
494
|
+
SENSITIVE = [:dicom_patient_id, :dicom_patient_name, :dicom_patient_birth_date, :dicom_patient_sex, :dicom_study_instance_uid, :dicom_study_id, :dicom_study_description, :dicom_accession_number, :dicom_series_instance_uid, :dicom_series_modality, :dicom_series_body_part, :dicom_series_number, :dicom_study_date, :dicom_study_time]
|
475
495
|
include Aws::Structure
|
476
496
|
end
|
477
497
|
|
@@ -1195,10 +1215,18 @@ module Aws::MedicalImaging
|
|
1195
1215
|
# The DICOM study instance UID for search.
|
1196
1216
|
# @return [String]
|
1197
1217
|
#
|
1218
|
+
# @!attribute [rw] dicom_series_instance_uid
|
1219
|
+
# The Series Instance UID input for search.
|
1220
|
+
# @return [String]
|
1221
|
+
#
|
1198
1222
|
# @!attribute [rw] created_at
|
1199
1223
|
# The created at time of the image set provided for search.
|
1200
1224
|
# @return [Time]
|
1201
1225
|
#
|
1226
|
+
# @!attribute [rw] updated_at
|
1227
|
+
# The timestamp input for search.
|
1228
|
+
# @return [Time]
|
1229
|
+
#
|
1202
1230
|
# @!attribute [rw] dicom_study_date_and_time
|
1203
1231
|
# The aggregated structure containing DICOM study date and study time
|
1204
1232
|
# for search.
|
@@ -1211,10 +1239,12 @@ module Aws::MedicalImaging
|
|
1211
1239
|
:dicom_accession_number,
|
1212
1240
|
:dicom_study_id,
|
1213
1241
|
:dicom_study_instance_uid,
|
1242
|
+
:dicom_series_instance_uid,
|
1214
1243
|
:created_at,
|
1244
|
+
:updated_at,
|
1215
1245
|
:dicom_study_date_and_time,
|
1216
1246
|
:unknown)
|
1217
|
-
SENSITIVE = [:dicom_patient_id, :dicom_accession_number, :dicom_study_id, :dicom_study_instance_uid]
|
1247
|
+
SENSITIVE = [:dicom_patient_id, :dicom_accession_number, :dicom_study_id, :dicom_study_instance_uid, :dicom_series_instance_uid]
|
1218
1248
|
include Aws::Structure
|
1219
1249
|
include Aws::Structure::Union
|
1220
1250
|
|
@@ -1222,7 +1252,9 @@ module Aws::MedicalImaging
|
|
1222
1252
|
class DicomAccessionNumber < SearchByAttributeValue; end
|
1223
1253
|
class DicomStudyId < SearchByAttributeValue; end
|
1224
1254
|
class DicomStudyInstanceUid < SearchByAttributeValue; end
|
1255
|
+
class DicomSeriesInstanceUid < SearchByAttributeValue; end
|
1225
1256
|
class CreatedAt < SearchByAttributeValue; end
|
1257
|
+
class UpdatedAt < SearchByAttributeValue; end
|
1226
1258
|
class DicomStudyDateAndTime < SearchByAttributeValue; end
|
1227
1259
|
class Unknown < SearchByAttributeValue; end
|
1228
1260
|
end
|
@@ -1233,10 +1265,15 @@ module Aws::MedicalImaging
|
|
1233
1265
|
# The filters for the search criteria.
|
1234
1266
|
# @return [Array<Types::SearchFilter>]
|
1235
1267
|
#
|
1268
|
+
# @!attribute [rw] sort
|
1269
|
+
# The sort input for search criteria.
|
1270
|
+
# @return [Types::Sort]
|
1271
|
+
#
|
1236
1272
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/SearchCriteria AWS API Documentation
|
1237
1273
|
#
|
1238
1274
|
class SearchCriteria < Struct.new(
|
1239
|
-
:filters
|
1275
|
+
:filters,
|
1276
|
+
:sort)
|
1240
1277
|
SENSITIVE = []
|
1241
1278
|
include Aws::Structure
|
1242
1279
|
end
|
@@ -1294,6 +1331,10 @@ module Aws::MedicalImaging
|
|
1294
1331
|
# The model containing the image set results.
|
1295
1332
|
# @return [Array<Types::ImageSetsMetadataSummary>]
|
1296
1333
|
#
|
1334
|
+
# @!attribute [rw] sort
|
1335
|
+
# The sort order for image set search results.
|
1336
|
+
# @return [Types::Sort]
|
1337
|
+
#
|
1297
1338
|
# @!attribute [rw] next_token
|
1298
1339
|
# The token for pagination results.
|
1299
1340
|
# @return [String]
|
@@ -1302,6 +1343,7 @@ module Aws::MedicalImaging
|
|
1302
1343
|
#
|
1303
1344
|
class SearchImageSetsResponse < Struct.new(
|
1304
1345
|
:image_sets_metadata_summaries,
|
1346
|
+
:sort,
|
1305
1347
|
:next_token)
|
1306
1348
|
SENSITIVE = []
|
1307
1349
|
include Aws::Structure
|
@@ -1320,6 +1362,25 @@ module Aws::MedicalImaging
|
|
1320
1362
|
include Aws::Structure
|
1321
1363
|
end
|
1322
1364
|
|
1365
|
+
# Sort search results.
|
1366
|
+
#
|
1367
|
+
# @!attribute [rw] sort_order
|
1368
|
+
# The sort order for search criteria.
|
1369
|
+
# @return [String]
|
1370
|
+
#
|
1371
|
+
# @!attribute [rw] sort_field
|
1372
|
+
# The sort field for search criteria.
|
1373
|
+
# @return [String]
|
1374
|
+
#
|
1375
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/Sort AWS API Documentation
|
1376
|
+
#
|
1377
|
+
class Sort < Struct.new(
|
1378
|
+
:sort_order,
|
1379
|
+
:sort_field)
|
1380
|
+
SENSITIVE = []
|
1381
|
+
include Aws::Structure
|
1382
|
+
end
|
1383
|
+
|
1323
1384
|
# @!attribute [rw] job_name
|
1324
1385
|
# The import job name.
|
1325
1386
|
# @return [String]
|
data/sig/client.rbs
CHANGED
@@ -258,6 +258,7 @@ module Aws
|
|
258
258
|
interface _SearchImageSetsResponseSuccess
|
259
259
|
include ::Seahorse::Client::_ResponseSuccess[Types::SearchImageSetsResponse]
|
260
260
|
def image_sets_metadata_summaries: () -> ::Array[Types::ImageSetsMetadataSummary]
|
261
|
+
def sort: () -> Types::Sort
|
261
262
|
def next_token: () -> ::String
|
262
263
|
end
|
263
264
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#search_image_sets-instance_method
|
@@ -272,7 +273,9 @@ module Aws
|
|
272
273
|
dicom_accession_number: ::String?,
|
273
274
|
dicom_study_id: ::String?,
|
274
275
|
dicom_study_instance_uid: ::String?,
|
276
|
+
dicom_series_instance_uid: ::String?,
|
275
277
|
created_at: ::Time?,
|
278
|
+
updated_at: ::Time?,
|
276
279
|
dicom_study_date_and_time: {
|
277
280
|
dicom_study_date: ::String,
|
278
281
|
dicom_study_time: ::String?
|
@@ -281,7 +284,11 @@ module Aws
|
|
281
284
|
],
|
282
285
|
operator: ("EQUAL" | "BETWEEN")
|
283
286
|
},
|
284
|
-
]
|
287
|
+
]?,
|
288
|
+
sort: {
|
289
|
+
sort_order: ("ASC" | "DESC"),
|
290
|
+
sort_field: ("updatedAt" | "createdAt" | "DICOMStudyDateAndTime")
|
291
|
+
}?
|
285
292
|
},
|
286
293
|
?max_results: ::Integer,
|
287
294
|
?next_token: ::String
|
data/sig/types.rbs
CHANGED
@@ -128,9 +128,13 @@ module Aws::MedicalImaging
|
|
128
128
|
attr_accessor dicom_number_of_study_related_series: ::Integer
|
129
129
|
attr_accessor dicom_number_of_study_related_instances: ::Integer
|
130
130
|
attr_accessor dicom_accession_number: ::String
|
131
|
+
attr_accessor dicom_series_instance_uid: ::String
|
132
|
+
attr_accessor dicom_series_modality: ::String
|
133
|
+
attr_accessor dicom_series_body_part: ::String
|
134
|
+
attr_accessor dicom_series_number: ::Integer
|
131
135
|
attr_accessor dicom_study_date: ::String
|
132
136
|
attr_accessor dicom_study_time: ::String
|
133
|
-
SENSITIVE: [:dicom_patient_id, :dicom_patient_name, :dicom_patient_birth_date, :dicom_patient_sex, :dicom_study_instance_uid, :dicom_study_id, :dicom_study_description, :dicom_accession_number, :dicom_study_date, :dicom_study_time]
|
137
|
+
SENSITIVE: [:dicom_patient_id, :dicom_patient_name, :dicom_patient_birth_date, :dicom_patient_sex, :dicom_study_instance_uid, :dicom_study_id, :dicom_study_description, :dicom_accession_number, :dicom_series_instance_uid, :dicom_series_modality, :dicom_series_body_part, :dicom_series_number, :dicom_study_date, :dicom_study_time]
|
134
138
|
end
|
135
139
|
|
136
140
|
class DICOMUpdates
|
@@ -357,10 +361,12 @@ module Aws::MedicalImaging
|
|
357
361
|
attr_accessor dicom_accession_number: ::String
|
358
362
|
attr_accessor dicom_study_id: ::String
|
359
363
|
attr_accessor dicom_study_instance_uid: ::String
|
364
|
+
attr_accessor dicom_series_instance_uid: ::String
|
360
365
|
attr_accessor created_at: ::Time
|
366
|
+
attr_accessor updated_at: ::Time
|
361
367
|
attr_accessor dicom_study_date_and_time: Types::DICOMStudyDateAndTime
|
362
368
|
attr_accessor unknown: untyped
|
363
|
-
SENSITIVE: [:dicom_patient_id, :dicom_accession_number, :dicom_study_id, :dicom_study_instance_uid]
|
369
|
+
SENSITIVE: [:dicom_patient_id, :dicom_accession_number, :dicom_study_id, :dicom_study_instance_uid, :dicom_series_instance_uid]
|
364
370
|
|
365
371
|
class DicomPatientId < SearchByAttributeValue
|
366
372
|
end
|
@@ -370,8 +376,12 @@ module Aws::MedicalImaging
|
|
370
376
|
end
|
371
377
|
class DicomStudyInstanceUid < SearchByAttributeValue
|
372
378
|
end
|
379
|
+
class DicomSeriesInstanceUid < SearchByAttributeValue
|
380
|
+
end
|
373
381
|
class CreatedAt < SearchByAttributeValue
|
374
382
|
end
|
383
|
+
class UpdatedAt < SearchByAttributeValue
|
384
|
+
end
|
375
385
|
class DicomStudyDateAndTime < SearchByAttributeValue
|
376
386
|
end
|
377
387
|
class Unknown < SearchByAttributeValue
|
@@ -380,6 +390,7 @@ module Aws::MedicalImaging
|
|
380
390
|
|
381
391
|
class SearchCriteria
|
382
392
|
attr_accessor filters: ::Array[Types::SearchFilter]
|
393
|
+
attr_accessor sort: Types::Sort
|
383
394
|
SENSITIVE: []
|
384
395
|
end
|
385
396
|
|
@@ -399,6 +410,7 @@ module Aws::MedicalImaging
|
|
399
410
|
|
400
411
|
class SearchImageSetsResponse
|
401
412
|
attr_accessor image_sets_metadata_summaries: ::Array[Types::ImageSetsMetadataSummary]
|
413
|
+
attr_accessor sort: Types::Sort
|
402
414
|
attr_accessor next_token: ::String
|
403
415
|
SENSITIVE: []
|
404
416
|
end
|
@@ -408,6 +420,12 @@ module Aws::MedicalImaging
|
|
408
420
|
SENSITIVE: []
|
409
421
|
end
|
410
422
|
|
423
|
+
class Sort
|
424
|
+
attr_accessor sort_order: ("ASC" | "DESC")
|
425
|
+
attr_accessor sort_field: ("updatedAt" | "createdAt" | "DICOMStudyDateAndTime")
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
411
429
|
class StartDICOMImportJobRequest
|
412
430
|
attr_accessor job_name: ::String
|
413
431
|
attr_accessor data_access_role_arn: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-medicalimaging
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|