aws-sdk-medicalimaging 1.28.0 → 1.29.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: 0d2cb5ed9a6a23a77b1ee7fe53c8d81971d71a02d8d8439efbe7c3851c1da2c6
4
- data.tar.gz: 9c49a91c69c397abd68d198c7dd0928593ba795b939eede258f46254871cde41
3
+ metadata.gz: '0038410ac54a81349bf45ded66e01c383e1918483c1192b8daceaea021e07a40'
4
+ data.tar.gz: 52c29ce2e1ccd8cae0e862affe3839c240e515bf1b48e9120fd56633d2f9106d
5
5
  SHA512:
6
- metadata.gz: a497e068be31a95909933ce34d270616d2418d37adec348932c6e1fdb32260fdd1add3ca4ed8558fd9179d23736cb9db487e6829031709bf1f8490e543adea2c
7
- data.tar.gz: d07a694f2c04ce6c1eb7e466f7152e61891b4e7664c44ef12a4789747247bcb413a6f8d45e7e31759c833c646ae5827eac606883aa03e9adacca63cd12ed07ec
6
+ metadata.gz: 8390170a433efe197fd08cd0ed2773794b59ab0c4f2554bf1e6e3b739b35b2553e7ead97b21390e63a808534f858e1a02d95119dcc1795411e00dcc1aa029284
7
+ data.tar.gz: 619f65a77dfd8074f7686478abec28582503c381a7a45640389b85e2d133edd96068265b467d55e6b4e2ae39e359429f28cc56cf3f22fefab37f39d623fc0a66
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.29.0 (2025-06-30)
5
+ ------------------
6
+
7
+ * Feature - Added new fields to support the concept of primary image sets within the storage hierarchy.
8
+
4
9
  1.28.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.28.0
1
+ 1.29.0
@@ -481,9 +481,16 @@ module Aws::MedicalImaging
481
481
  # Copy image set information.
482
482
  #
483
483
  # @option params [Boolean] :force
484
- # Setting this flag will force the `CopyImageSet` operation, even if
485
- # Patient, Study, or Series level metadata are mismatched across the
486
- # `sourceImageSet` and `destinationImageSet`.
484
+ # Providing this parameter will force completion of the `CopyImageSet`
485
+ # operation, even if there are inconsistent Patient, Study, and/or
486
+ # Series level metadata elements between the `sourceImageSet` and
487
+ # `destinationImageSet`.
488
+ #
489
+ # @option params [Boolean] :promote_to_primary
490
+ # Providing this parameter will configure the `CopyImageSet` operation
491
+ # to promote the given image set to the primary DICOM hierarchy. If
492
+ # successful, a new primary image set ID will be returned as the
493
+ # destination image set.
487
494
  #
488
495
  # @return [Types::CopyImageSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
489
496
  #
@@ -509,6 +516,7 @@ module Aws::MedicalImaging
509
516
  # },
510
517
  # },
511
518
  # force: false,
519
+ # promote_to_primary: false,
512
520
  # })
513
521
  #
514
522
  # @example Response structure
@@ -808,6 +816,7 @@ module Aws::MedicalImaging
808
816
  # * {Types::GetImageSetResponse#message #message} => String
809
817
  # * {Types::GetImageSetResponse#image_set_arn #image_set_arn} => String
810
818
  # * {Types::GetImageSetResponse#overrides #overrides} => Types::Overrides
819
+ # * {Types::GetImageSetResponse#is_primary #is_primary} => Boolean
811
820
  #
812
821
  # @example Request syntax with placeholder values
813
822
  #
@@ -830,6 +839,7 @@ module Aws::MedicalImaging
830
839
  # resp.message #=> String
831
840
  # resp.image_set_arn #=> String
832
841
  # resp.overrides.forced #=> Boolean
842
+ # resp.is_primary #=> Boolean
833
843
  #
834
844
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/GetImageSet AWS API Documentation
835
845
  #
@@ -1023,6 +1033,7 @@ module Aws::MedicalImaging
1023
1033
  # resp.image_set_properties_list[0].deleted_at #=> Time
1024
1034
  # resp.image_set_properties_list[0].message #=> String
1025
1035
  # resp.image_set_properties_list[0].overrides.forced #=> Boolean
1036
+ # resp.image_set_properties_list[0].is_primary #=> Boolean
1026
1037
  # resp.next_token #=> String
1027
1038
  #
1028
1039
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/ListImageSetVersions AWS API Documentation
@@ -1119,6 +1130,7 @@ module Aws::MedicalImaging
1119
1130
  # dicom_study_date: "DICOMStudyDate", # required
1120
1131
  # dicom_study_time: "DICOMStudyTime",
1121
1132
  # },
1133
+ # is_primary: false,
1122
1134
  # },
1123
1135
  # ],
1124
1136
  # operator: "EQUAL", # required, accepts EQUAL, BETWEEN
@@ -1156,6 +1168,7 @@ module Aws::MedicalImaging
1156
1168
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_series_number #=> Integer
1157
1169
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_study_date #=> String
1158
1170
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_study_time #=> String
1171
+ # resp.image_sets_metadata_summaries[0].is_primary #=> Boolean
1159
1172
  # resp.data.sort.sort_order #=> String, one of "ASC", "DESC"
1160
1173
  # resp.data.sort.sort_field #=> String, one of "updatedAt", "createdAt", "DICOMStudyDateAndTime"
1161
1174
  # resp.next_token #=> String
@@ -1382,7 +1395,7 @@ module Aws::MedicalImaging
1382
1395
  tracer: tracer
1383
1396
  )
1384
1397
  context[:gem_name] = 'aws-sdk-medicalimaging'
1385
- context[:gem_version] = '1.28.0'
1398
+ context[:gem_version] = '1.29.0'
1386
1399
  Seahorse::Client::Request.new(handlers, context)
1387
1400
  end
1388
1401
 
@@ -167,6 +167,7 @@ module Aws::MedicalImaging
167
167
  CopyImageSetRequest.add_member(:source_image_set_id, Shapes::ShapeRef.new(shape: ImageSetId, required: true, location: "uri", location_name: "sourceImageSetId"))
168
168
  CopyImageSetRequest.add_member(:copy_image_set_information, Shapes::ShapeRef.new(shape: CopyImageSetInformation, required: true, location_name: "copyImageSetInformation"))
169
169
  CopyImageSetRequest.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "force"))
170
+ CopyImageSetRequest.add_member(:promote_to_primary, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "promoteToPrimary"))
170
171
  CopyImageSetRequest.struct_class = Types::CopyImageSetRequest
171
172
  CopyImageSetRequest[:payload] = :copy_image_set_information
172
173
  CopyImageSetRequest[:payload_member] = CopyImageSetRequest.member(:copy_image_set_information)
@@ -339,6 +340,7 @@ module Aws::MedicalImaging
339
340
  GetImageSetResponse.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
340
341
  GetImageSetResponse.add_member(:image_set_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "imageSetArn"))
341
342
  GetImageSetResponse.add_member(:overrides, Shapes::ShapeRef.new(shape: Overrides, location_name: "overrides"))
343
+ GetImageSetResponse.add_member(:is_primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "isPrimary"))
342
344
  GetImageSetResponse.struct_class = Types::GetImageSetResponse
343
345
 
344
346
  ImageFrameInformation.add_member(:image_frame_id, Shapes::ShapeRef.new(shape: ImageFrameId, required: true, location_name: "imageFrameId"))
@@ -353,6 +355,7 @@ module Aws::MedicalImaging
353
355
  ImageSetProperties.add_member(:deleted_at, Shapes::ShapeRef.new(shape: Date, location_name: "deletedAt"))
354
356
  ImageSetProperties.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
355
357
  ImageSetProperties.add_member(:overrides, Shapes::ShapeRef.new(shape: Overrides, location_name: "overrides"))
358
+ ImageSetProperties.add_member(:is_primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "isPrimary"))
356
359
  ImageSetProperties.struct_class = Types::ImageSetProperties
357
360
 
358
361
  ImageSetPropertiesList.member = Shapes::ShapeRef.new(shape: ImageSetProperties)
@@ -364,6 +367,7 @@ module Aws::MedicalImaging
364
367
  ImageSetsMetadataSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
365
368
  ImageSetsMetadataSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Date, location_name: "updatedAt"))
366
369
  ImageSetsMetadataSummary.add_member(:dicom_tags, Shapes::ShapeRef.new(shape: DICOMTags, location_name: "DICOMTags"))
370
+ ImageSetsMetadataSummary.add_member(:is_primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "isPrimary"))
367
371
  ImageSetsMetadataSummary.struct_class = Types::ImageSetsMetadataSummary
368
372
 
369
373
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
@@ -429,6 +433,7 @@ module Aws::MedicalImaging
429
433
  SearchByAttributeValue.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
430
434
  SearchByAttributeValue.add_member(:updated_at, Shapes::ShapeRef.new(shape: Date, location_name: "updatedAt"))
431
435
  SearchByAttributeValue.add_member(:dicom_study_date_and_time, Shapes::ShapeRef.new(shape: DICOMStudyDateAndTime, location_name: "DICOMStudyDateAndTime"))
436
+ SearchByAttributeValue.add_member(:is_primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "isPrimary"))
432
437
  SearchByAttributeValue.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
433
438
  SearchByAttributeValue.add_member_subclass(:dicom_patient_id, Types::SearchByAttributeValue::DicomPatientId)
434
439
  SearchByAttributeValue.add_member_subclass(:dicom_accession_number, Types::SearchByAttributeValue::DicomAccessionNumber)
@@ -438,6 +443,7 @@ module Aws::MedicalImaging
438
443
  SearchByAttributeValue.add_member_subclass(:created_at, Types::SearchByAttributeValue::CreatedAt)
439
444
  SearchByAttributeValue.add_member_subclass(:updated_at, Types::SearchByAttributeValue::UpdatedAt)
440
445
  SearchByAttributeValue.add_member_subclass(:dicom_study_date_and_time, Types::SearchByAttributeValue::DicomStudyDateAndTime)
446
+ SearchByAttributeValue.add_member_subclass(:is_primary, Types::SearchByAttributeValue::IsPrimary)
441
447
  SearchByAttributeValue.add_member_subclass(:unknown, Types::SearchByAttributeValue::Unknown)
442
448
  SearchByAttributeValue.struct_class = Types::SearchByAttributeValue
443
449
 
@@ -136,9 +136,17 @@ module Aws::MedicalImaging
136
136
  # @return [Types::CopyImageSetInformation]
137
137
  #
138
138
  # @!attribute [rw] force
139
- # Setting this flag will force the `CopyImageSet` operation, even if
140
- # Patient, Study, or Series level metadata are mismatched across the
141
- # `sourceImageSet` and `destinationImageSet`.
139
+ # Providing this parameter will force completion of the `CopyImageSet`
140
+ # operation, even if there are inconsistent Patient, Study, and/or
141
+ # Series level metadata elements between the `sourceImageSet` and
142
+ # `destinationImageSet`.
143
+ # @return [Boolean]
144
+ #
145
+ # @!attribute [rw] promote_to_primary
146
+ # Providing this parameter will configure the `CopyImageSet` operation
147
+ # to promote the given image set to the primary DICOM hierarchy. If
148
+ # successful, a new primary image set ID will be returned as the
149
+ # destination image set.
142
150
  # @return [Boolean]
143
151
  #
144
152
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/CopyImageSetRequest AWS API Documentation
@@ -147,7 +155,8 @@ module Aws::MedicalImaging
147
155
  :datastore_id,
148
156
  :source_image_set_id,
149
157
  :copy_image_set_information,
150
- :force)
158
+ :force,
159
+ :promote_to_primary)
151
160
  SENSITIVE = []
152
161
  include Aws::Structure
153
162
  end
@@ -766,6 +775,57 @@ module Aws::MedicalImaging
766
775
  # @!attribute [rw] content_type
767
776
  # The format in which the image frame information is returned to the
768
777
  # customer. Default is `application/octet-stream`.
778
+ #
779
+ # <note markdown="1"> * If the stored transfer syntax is `1.2.840.10008.1.2.1`, the
780
+ # returned `contentType` is `application/octet-stream`.
781
+ #
782
+ # ^
783
+ #
784
+ # * If the stored transfer syntax is `1.2.840.10008.1.2.4.50`, the
785
+ # returned `contentType` is `image/jpeg`.
786
+ #
787
+ # ^
788
+ #
789
+ # * If the stored transfer syntax is `1.2.840.10008.1.2.4.91`, the
790
+ # returned `contentType` is `image/j2c`.
791
+ #
792
+ # ^
793
+ #
794
+ # * If the stored transfer syntax is MPEG2, `1.2.840.10008.1.2.4.100`,
795
+ # `1.2.840.10008.1.2.4.100.1`, `1.2.840.10008.1.2.4.101`, or
796
+ # `1.2.840.10008.1.2.4.101.1`, the returned `contentType` is
797
+ # `video/mpeg`.
798
+ #
799
+ # ^
800
+ #
801
+ # * If the stored transfer syntax is MPEG-4 AVC/H.264, UID
802
+ # `1.2.840.10008.1.2.4.102`, `1.2.840.10008.1.2.4.102.1`,
803
+ # `1.2.840.10008.1.2.4.103`, `1.2.840.10008.1.2.4.103.1`,
804
+ # `1.2.840.10008.1.2.4.104`, `1.2.840.10008.1.2.4.104.1`,
805
+ # `1.2.840.10008.1.2.4.105`, `1.2.840.10008.1.2.4.105.1`,
806
+ # `1.2.840.10008.1.2.4.106`, or `1.2.840.10008.1.2.4.106.1`, the
807
+ # returned `contentType` is `video/mp4`.
808
+ #
809
+ # ^
810
+ #
811
+ # * If the stored transfer syntax is HEVC/H.265, UID
812
+ # `1.2.840.10008.1.2.4.107` or `1.2.840.10008.1.2.4.108`, the
813
+ # returned `contentType` is `video/H256`.
814
+ #
815
+ # ^
816
+ #
817
+ # * If the stored transfer syntax is `1.2.840.10008.1.2.4.202` or if
818
+ # the stored transfer syntax is *missing*, the returned
819
+ # `contentType` is `image/jph`.
820
+ #
821
+ # ^
822
+ #
823
+ # * If the stored transfer syntax is `1.2.840.10008.1.2.4.203`, the
824
+ # returned contentType is `image/jphc`.
825
+ #
826
+ # ^
827
+ #
828
+ # </note>
769
829
  # @return [String]
770
830
  #
771
831
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/GetImageFrameResponse AWS API Documentation
@@ -893,6 +953,10 @@ module Aws::MedicalImaging
893
953
  # `forced` flag.
894
954
  # @return [Types::Overrides]
895
955
  #
956
+ # @!attribute [rw] is_primary
957
+ # The flag to determine whether the image set is primary or not.
958
+ # @return [Boolean]
959
+ #
896
960
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/GetImageSetResponse AWS API Documentation
897
961
  #
898
962
  class GetImageSetResponse < Struct.new(
@@ -906,7 +970,8 @@ module Aws::MedicalImaging
906
970
  :deleted_at,
907
971
  :message,
908
972
  :image_set_arn,
909
- :overrides)
973
+ :overrides,
974
+ :is_primary)
910
975
  SENSITIVE = []
911
976
  include Aws::Structure
912
977
  end
@@ -965,6 +1030,10 @@ module Aws::MedicalImaging
965
1030
  # `forced` flag was used when creating the image set.
966
1031
  # @return [Types::Overrides]
967
1032
  #
1033
+ # @!attribute [rw] is_primary
1034
+ # The flag to determine whether the image set is primary or not.
1035
+ # @return [Boolean]
1036
+ #
968
1037
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/ImageSetProperties AWS API Documentation
969
1038
  #
970
1039
  class ImageSetProperties < Struct.new(
@@ -976,7 +1045,8 @@ module Aws::MedicalImaging
976
1045
  :updated_at,
977
1046
  :deleted_at,
978
1047
  :message,
979
- :overrides)
1048
+ :overrides,
1049
+ :is_primary)
980
1050
  SENSITIVE = []
981
1051
  include Aws::Structure
982
1052
  end
@@ -1004,6 +1074,10 @@ module Aws::MedicalImaging
1004
1074
  # The DICOM tags associated with the image set.
1005
1075
  # @return [Types::DICOMTags]
1006
1076
  #
1077
+ # @!attribute [rw] is_primary
1078
+ # The flag to determine whether the image set is primary or not.
1079
+ # @return [Boolean]
1080
+ #
1007
1081
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/ImageSetsMetadataSummary AWS API Documentation
1008
1082
  #
1009
1083
  class ImageSetsMetadataSummary < Struct.new(
@@ -1011,7 +1085,8 @@ module Aws::MedicalImaging
1011
1085
  :version,
1012
1086
  :created_at,
1013
1087
  :updated_at,
1014
- :dicom_tags)
1088
+ :dicom_tags,
1089
+ :is_primary)
1015
1090
  SENSITIVE = []
1016
1091
  include Aws::Structure
1017
1092
  end
@@ -1243,9 +1318,9 @@ module Aws::MedicalImaging
1243
1318
  # `CopyImageSet` and `UpdateImageSetMetadata`.
1244
1319
  #
1245
1320
  # @!attribute [rw] forced
1246
- # Setting this flag will force the `CopyImageSet` and
1247
- # `UpdateImageSetMetadata` operations, even if Patient, Study, or
1248
- # Series level metadata are mismatched.
1321
+ # Providing this parameter will force completion of the `CopyImageSet`
1322
+ # and `UpdateImageSetMetadata` actions, even if metadata is
1323
+ # inconsistent at the Patient, Study, and/or Series levels.
1249
1324
  # @return [Boolean]
1250
1325
  #
1251
1326
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/Overrides AWS API Documentation
@@ -1306,6 +1381,10 @@ module Aws::MedicalImaging
1306
1381
  # for search.
1307
1382
  # @return [Types::DICOMStudyDateAndTime]
1308
1383
  #
1384
+ # @!attribute [rw] is_primary
1385
+ # The primary image set flag provided for search.
1386
+ # @return [Boolean]
1387
+ #
1309
1388
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/SearchByAttributeValue AWS API Documentation
1310
1389
  #
1311
1390
  class SearchByAttributeValue < Struct.new(
@@ -1317,6 +1396,7 @@ module Aws::MedicalImaging
1317
1396
  :created_at,
1318
1397
  :updated_at,
1319
1398
  :dicom_study_date_and_time,
1399
+ :is_primary,
1320
1400
  :unknown)
1321
1401
  SENSITIVE = [:dicom_patient_id, :dicom_accession_number, :dicom_study_id, :dicom_study_instance_uid, :dicom_series_instance_uid]
1322
1402
  include Aws::Structure
@@ -1330,6 +1410,7 @@ module Aws::MedicalImaging
1330
1410
  class CreatedAt < SearchByAttributeValue; end
1331
1411
  class UpdatedAt < SearchByAttributeValue; end
1332
1412
  class DicomStudyDateAndTime < SearchByAttributeValue; end
1413
+ class IsPrimary < SearchByAttributeValue; end
1333
1414
  class Unknown < SearchByAttributeValue; end
1334
1415
  end
1335
1416
 
@@ -55,7 +55,7 @@ module Aws::MedicalImaging
55
55
  autoload :EndpointProvider, 'aws-sdk-medicalimaging/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-medicalimaging/endpoints'
57
57
 
58
- GEM_VERSION = '1.28.0'
58
+ GEM_VERSION = '1.29.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -99,7 +99,8 @@ module Aws
99
99
  latest_version_id: ::String
100
100
  }?
101
101
  },
102
- ?force: bool
102
+ ?force: bool,
103
+ ?promote_to_primary: bool
103
104
  ) -> _CopyImageSetResponseSuccess
104
105
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyImageSetResponseSuccess
105
106
 
@@ -191,6 +192,7 @@ module Aws
191
192
  def message: () -> ::String
192
193
  def image_set_arn: () -> ::String
193
194
  def overrides: () -> Types::Overrides
195
+ def is_primary: () -> bool
194
196
  end
195
197
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#get_image_set-instance_method
196
198
  def get_image_set: (
@@ -289,7 +291,8 @@ module Aws
289
291
  dicom_study_date_and_time: {
290
292
  dicom_study_date: ::String,
291
293
  dicom_study_time: ::String?
292
- }?
294
+ }?,
295
+ is_primary: bool?
293
296
  },
294
297
  ],
295
298
  operator: ("EQUAL" | "BETWEEN")
data/sig/types.rbs CHANGED
@@ -46,6 +46,7 @@ module Aws::MedicalImaging
46
46
  attr_accessor source_image_set_id: ::String
47
47
  attr_accessor copy_image_set_information: Types::CopyImageSetInformation
48
48
  attr_accessor force: bool
49
+ attr_accessor promote_to_primary: bool
49
50
  SENSITIVE: []
50
51
  end
51
52
 
@@ -258,6 +259,7 @@ module Aws::MedicalImaging
258
259
  attr_accessor message: ::String
259
260
  attr_accessor image_set_arn: ::String
260
261
  attr_accessor overrides: Types::Overrides
262
+ attr_accessor is_primary: bool
261
263
  SENSITIVE: []
262
264
  end
263
265
 
@@ -276,6 +278,7 @@ module Aws::MedicalImaging
276
278
  attr_accessor deleted_at: ::Time
277
279
  attr_accessor message: ::String
278
280
  attr_accessor overrides: Types::Overrides
281
+ attr_accessor is_primary: bool
279
282
  SENSITIVE: []
280
283
  end
281
284
 
@@ -285,6 +288,7 @@ module Aws::MedicalImaging
285
288
  attr_accessor created_at: ::Time
286
289
  attr_accessor updated_at: ::Time
287
290
  attr_accessor dicom_tags: Types::DICOMTags
291
+ attr_accessor is_primary: bool
288
292
  SENSITIVE: []
289
293
  end
290
294
 
@@ -382,6 +386,7 @@ module Aws::MedicalImaging
382
386
  attr_accessor created_at: ::Time
383
387
  attr_accessor updated_at: ::Time
384
388
  attr_accessor dicom_study_date_and_time: Types::DICOMStudyDateAndTime
389
+ attr_accessor is_primary: bool
385
390
  attr_accessor unknown: untyped
386
391
  SENSITIVE: [:dicom_patient_id, :dicom_accession_number, :dicom_study_id, :dicom_study_instance_uid, :dicom_series_instance_uid]
387
392
 
@@ -401,6 +406,8 @@ module Aws::MedicalImaging
401
406
  end
402
407
  class DicomStudyDateAndTime < SearchByAttributeValue
403
408
  end
409
+ class IsPrimary < SearchByAttributeValue
410
+ end
404
411
  class Unknown < SearchByAttributeValue
405
412
  end
406
413
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medicalimaging
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.28.0
4
+ version: 1.29.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services