aws-sdk-medicalimaging 1.6.0 → 1.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3fa790ba66c7625bc2521c543771ce312899d3667a9856ab64dc8efb0db2b0d7
4
- data.tar.gz: e5c7ec2ca29fd498502bcdc7db0f0ca5341521572c689012d7c0bdc78a6f3337
3
+ metadata.gz: 6c6a8d5af70155c79cfb081f0eb627c763dd1f991ed029250e2907f5278e2313
4
+ data.tar.gz: 4f44c1133387804c924fee8d3badf4bd43139372cd7845aba06ed1a8a1536cb4
5
5
  SHA512:
6
- metadata.gz: 11c0c9e29ec8e1a51efd1ab5f010e106937cb1d8fab2d39eac92fb9134c9d6198ff3f0bc35e4f2f6e9bdf86c7f9a301d69c9f171cf394e44e8ab10061af99ce0
7
- data.tar.gz: 59f54455ff7c2bc3178042e71dc7cb7a0326b995a3ce6930d0c589f8f126993069e875362c5a58d8babb0dc7e05ba3921343d3c4dc1aa405a5ecf00ab839523a
6
+ metadata.gz: c0efdb24d67d07d8b242c06dc10cf3b9811ace6cdadfefcf1fcd12b8c9e021da5c0a202a4de11828f743811803ef032c5b773b1c93998f24cd9faa6b2a090f85
7
+ data.tar.gz: 19676922399c824322c176486a2606ac81cebeaee1470735ec0c6f5555dac752404665a0d0f59c4792771e1857609b24958b2df8c05ad26bf32205e7d9fa67eb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.7.0 (2024-04-03)
10
+ ------------------
11
+
12
+ * 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
13
+
4
14
  1.6.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.8.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::MedicalImaging
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::MedicalImaging
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::MedicalImaging
337
346
  # @option options [Aws::MedicalImaging::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MedicalImaging::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -572,6 +596,15 @@ module Aws::MedicalImaging
572
596
  # Get the import job properties to learn more about the job or job
573
597
  # progress.
574
598
  #
599
+ # <note markdown="1"> The `jobStatus` refers to the execution of the import job. Therefore,
600
+ # an import job can return a `jobStatus` as `COMPLETED` even if
601
+ # validation issues are discovered during the import process. If a
602
+ # `jobStatus` returns as `COMPLETED`, we still recommend you review the
603
+ # output manifests written to S3, as they provide details on the success
604
+ # or failure of individual P10 object imports.
605
+ #
606
+ # </note>
607
+ #
575
608
  # @option params [required, String] :datastore_id
576
609
  # The data store identifier.
577
610
  #
@@ -992,6 +1025,7 @@ module Aws::MedicalImaging
992
1025
  # @return [Types::SearchImageSetsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
993
1026
  #
994
1027
  # * {Types::SearchImageSetsResponse#image_sets_metadata_summaries #image_sets_metadata_summaries} => Array&lt;Types::ImageSetsMetadataSummary&gt;
1028
+ # * {Types::SearchImageSetsResponse#sort #data.sort} => Types::Sort (This method conflicts with a method on Response, call it through the data member)
995
1029
  # * {Types::SearchImageSetsResponse#next_token #next_token} => String
996
1030
  #
997
1031
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
@@ -1009,7 +1043,9 @@ module Aws::MedicalImaging
1009
1043
  # dicom_accession_number: "DICOMAccessionNumber",
1010
1044
  # dicom_study_id: "DICOMStudyId",
1011
1045
  # dicom_study_instance_uid: "DICOMStudyInstanceUID",
1046
+ # dicom_series_instance_uid: "DICOMSeriesInstanceUID",
1012
1047
  # created_at: Time.now,
1048
+ # updated_at: Time.now,
1013
1049
  # dicom_study_date_and_time: {
1014
1050
  # dicom_study_date: "DICOMStudyDate", # required
1015
1051
  # dicom_study_time: "DICOMStudyTime",
@@ -1019,6 +1055,10 @@ module Aws::MedicalImaging
1019
1055
  # operator: "EQUAL", # required, accepts EQUAL, BETWEEN
1020
1056
  # },
1021
1057
  # ],
1058
+ # sort: {
1059
+ # sort_order: "ASC", # required, accepts ASC, DESC
1060
+ # sort_field: "updatedAt", # required, accepts updatedAt, createdAt, DICOMStudyDateAndTime
1061
+ # },
1022
1062
  # },
1023
1063
  # max_results: 1,
1024
1064
  # next_token: "NextToken",
@@ -1041,8 +1081,14 @@ module Aws::MedicalImaging
1041
1081
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_number_of_study_related_series #=> Integer
1042
1082
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_number_of_study_related_instances #=> Integer
1043
1083
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_accession_number #=> String
1084
+ # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_series_instance_uid #=> String
1085
+ # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_series_modality #=> String
1086
+ # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_series_body_part #=> String
1087
+ # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_series_number #=> Integer
1044
1088
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_study_date #=> String
1045
1089
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_study_time #=> String
1090
+ # resp.data.sort.sort_order #=> String, one of "ASC", "DESC"
1091
+ # resp.data.sort.sort_field #=> String, one of "updatedAt", "createdAt", "DICOMStudyDateAndTime"
1046
1092
  # resp.next_token #=> String
1047
1093
  #
1048
1094
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/SearchImageSets AWS API Documentation
@@ -1246,7 +1292,7 @@ module Aws::MedicalImaging
1246
1292
  params: params,
1247
1293
  config: config)
1248
1294
  context[:gem_name] = 'aws-sdk-medicalimaging'
1249
- context[:gem_version] = '1.6.0'
1295
+ context[:gem_version] = '1.8.0'
1250
1296
  Seahorse::Client::Request.new(handlers, context)
1251
1297
  end
1252
1298
 
@@ -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 studyInstanceUid.&gt;
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 studyId.
432
+ # The DICOM provided identifier for the Study ID.
433
433
  # @return [String]
434
434
  #
435
435
  # @!attribute [rw] dicom_study_description
436
- # The description of the study.
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]
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-medicalimaging/customizations'
53
53
  # @!group service
54
54
  module Aws::MedicalImaging
55
55
 
56
- GEM_VERSION = '1.6.0'
56
+ GEM_VERSION = '1.8.0'
57
57
 
58
58
  end
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.6.0
4
+ version: 1.8.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement