aws-sdk-medicalimaging 1.14.0 → 1.15.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: 18b52438b23aba094bb1057c1935f656d14e817ba42a8ab0ac68c2ad43088039
4
- data.tar.gz: a6cbbb4e68c8efce6aeb2e1bcfae32f546fe66637fa9c5476c94161f347b1346
3
+ metadata.gz: ed644d3f96104f3e72e078aa60a92a7ec053e1c93129d82cfffdf24967c6c9f3
4
+ data.tar.gz: 9cac23e0a152a8f0d95ab629ff9327d86a4f1a5c2d0ae9ad40fda46e0b55d1cb
5
5
  SHA512:
6
- metadata.gz: 8cfd97ce54c54d732d6318b6258e001214b9936daa98fe3a59e40d6e4706781358392ac33ace8b8c2487079b38a012eba81020391d2a860eb4986408e2112ba2
7
- data.tar.gz: 31da57f0542342c1e319e9df6099bab0bf6f42fb98d45006171cbc43a7ea3d0bf00c945e7043505643022992e6b64dfba8cacb3e6052bf9b71b4a1f47c7756c7
6
+ metadata.gz: aca7802cf43eabc1b63266e6ac4b2616eb0613f6b5e9cbe162aca0b4e53f9b1b749219ba61302865b6291b61b40efa5d5352391d5af5fa058e7f080d18bc113f
7
+ data.tar.gz: f38bd5ffc0a9744d9f830961a9e781707706eee8ab1c2e530c0a814771dbfb9342b398623fff78149a1e6b2aa6871b82bd902c9059b079a619f7a24716f09f98
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.15.0 (2024-07-24)
5
+ ------------------
6
+
7
+ * Feature - CopyImageSet API adds copying selected instances between image sets, and overriding inconsistent metadata with a force parameter. UpdateImageSetMetadata API enables reverting to prior versions; updates to Study, Series, and SOP Instance UIDs; and updates to private elements, with a force parameter.
8
+
4
9
  1.14.0 (2024-07-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.15.0
@@ -436,6 +436,11 @@ module Aws::MedicalImaging
436
436
  # @option params [required, Types::CopyImageSetInformation] :copy_image_set_information
437
437
  # Copy image set information.
438
438
  #
439
+ # @option params [Boolean] :force
440
+ # Setting this flag will force the `CopyImageSet` operation, even if
441
+ # Patient, Study, or Series level metadata are mismatched across the
442
+ # `sourceImageSet` and `destinationImageSet`.
443
+ #
439
444
  # @return [Types::CopyImageSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
440
445
  #
441
446
  # * {Types::CopyImageSetResponse#datastore_id #datastore_id} => String
@@ -450,12 +455,16 @@ module Aws::MedicalImaging
450
455
  # copy_image_set_information: { # required
451
456
  # source_image_set: { # required
452
457
  # latest_version_id: "ImageSetExternalVersionId", # required
458
+ # dicom_copies: {
459
+ # copiable_attributes: "CopiableAttributes", # required
460
+ # },
453
461
  # },
454
462
  # destination_image_set: {
455
463
  # image_set_id: "ImageSetId", # required
456
464
  # latest_version_id: "ImageSetExternalVersionId", # required
457
465
  # },
458
466
  # },
467
+ # force: false,
459
468
  # })
460
469
  #
461
470
  # @example Response structure
@@ -754,6 +763,7 @@ module Aws::MedicalImaging
754
763
  # * {Types::GetImageSetResponse#deleted_at #deleted_at} => Time
755
764
  # * {Types::GetImageSetResponse#message #message} => String
756
765
  # * {Types::GetImageSetResponse#image_set_arn #image_set_arn} => String
766
+ # * {Types::GetImageSetResponse#overrides #overrides} => Types::Overrides
757
767
  #
758
768
  # @example Request syntax with placeholder values
759
769
  #
@@ -775,6 +785,7 @@ module Aws::MedicalImaging
775
785
  # resp.deleted_at #=> Time
776
786
  # resp.message #=> String
777
787
  # resp.image_set_arn #=> String
788
+ # resp.overrides.forced #=> Boolean
778
789
  #
779
790
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/GetImageSet AWS API Documentation
780
791
  #
@@ -967,6 +978,7 @@ module Aws::MedicalImaging
967
978
  # resp.image_set_properties_list[0].updated_at #=> Time
968
979
  # resp.image_set_properties_list[0].deleted_at #=> Time
969
980
  # resp.image_set_properties_list[0].message #=> String
981
+ # resp.image_set_properties_list[0].overrides.forced #=> Boolean
970
982
  # resp.next_token #=> String
971
983
  #
972
984
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/ListImageSetVersions AWS API Documentation
@@ -1248,6 +1260,16 @@ module Aws::MedicalImaging
1248
1260
  # @option params [required, String] :latest_version_id
1249
1261
  # The latest image set version identifier.
1250
1262
  #
1263
+ # @option params [Boolean] :force
1264
+ # Setting this flag will force the `UpdateImageSetMetadata` operation
1265
+ # for the following attributes:
1266
+ #
1267
+ # * `Tag.StudyInstanceUID`, `Tag.SeriesInstanceUID`,
1268
+ # `Tag.SOPInstanceUID`, and `Tag.StudyID`
1269
+ #
1270
+ # * Adding, removing, or updating private tags for an individual SOP
1271
+ # Instance
1272
+ #
1251
1273
  # @option params [required, Types::MetadataUpdates] :update_image_set_metadata_updates
1252
1274
  # Update image set metadata updates.
1253
1275
  #
@@ -1268,11 +1290,13 @@ module Aws::MedicalImaging
1268
1290
  # datastore_id: "DatastoreId", # required
1269
1291
  # image_set_id: "ImageSetId", # required
1270
1292
  # latest_version_id: "ImageSetExternalVersionId", # required
1293
+ # force: false,
1271
1294
  # update_image_set_metadata_updates: { # required
1272
1295
  # dicom_updates: {
1273
1296
  # removable_attributes: "data",
1274
1297
  # updatable_attributes: "data",
1275
1298
  # },
1299
+ # revert_to_version_id: "ImageSetExternalVersionId",
1276
1300
  # },
1277
1301
  # })
1278
1302
  #
@@ -1309,7 +1333,7 @@ module Aws::MedicalImaging
1309
1333
  params: params,
1310
1334
  config: config)
1311
1335
  context[:gem_name] = 'aws-sdk-medicalimaging'
1312
- context[:gem_version] = '1.14.0'
1336
+ context[:gem_version] = '1.15.0'
1313
1337
  Seahorse::Client::Request.new(handlers, context)
1314
1338
  end
1315
1339
 
@@ -16,8 +16,10 @@ module Aws::MedicalImaging
16
16
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
17
  Arn = Shapes::StringShape.new(name: 'Arn')
18
18
  AwsAccountId = Shapes::StringShape.new(name: 'AwsAccountId')
19
+ Boolean = Shapes::BooleanShape.new(name: 'Boolean')
19
20
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
20
21
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
22
+ CopiableAttributes = Shapes::StringShape.new(name: 'CopiableAttributes')
21
23
  CopyDestinationImageSet = Shapes::StructureShape.new(name: 'CopyDestinationImageSet')
22
24
  CopyDestinationImageSetProperties = Shapes::StructureShape.new(name: 'CopyDestinationImageSetProperties')
23
25
  CopyImageSetInformation = Shapes::StructureShape.new(name: 'CopyImageSetInformation')
@@ -100,9 +102,11 @@ module Aws::MedicalImaging
100
102
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
101
103
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
102
104
  Message = Shapes::StringShape.new(name: 'Message')
105
+ MetadataCopies = Shapes::StructureShape.new(name: 'MetadataCopies')
103
106
  MetadataUpdates = Shapes::UnionShape.new(name: 'MetadataUpdates')
104
107
  NextToken = Shapes::StringShape.new(name: 'NextToken')
105
108
  Operator = Shapes::StringShape.new(name: 'Operator')
109
+ Overrides = Shapes::StructureShape.new(name: 'Overrides')
106
110
  PayloadBlob = Shapes::BlobShape.new(name: 'PayloadBlob', streaming: true)
107
111
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
108
112
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
@@ -161,6 +165,7 @@ module Aws::MedicalImaging
161
165
  CopyImageSetRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location: "uri", location_name: "datastoreId"))
162
166
  CopyImageSetRequest.add_member(:source_image_set_id, Shapes::ShapeRef.new(shape: ImageSetId, required: true, location: "uri", location_name: "sourceImageSetId"))
163
167
  CopyImageSetRequest.add_member(:copy_image_set_information, Shapes::ShapeRef.new(shape: CopyImageSetInformation, required: true, location_name: "copyImageSetInformation"))
168
+ CopyImageSetRequest.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "force"))
164
169
  CopyImageSetRequest.struct_class = Types::CopyImageSetRequest
165
170
  CopyImageSetRequest[:payload] = :copy_image_set_information
166
171
  CopyImageSetRequest[:payload_member] = CopyImageSetRequest.member(:copy_image_set_information)
@@ -171,6 +176,7 @@ module Aws::MedicalImaging
171
176
  CopyImageSetResponse.struct_class = Types::CopyImageSetResponse
172
177
 
173
178
  CopySourceImageSetInformation.add_member(:latest_version_id, Shapes::ShapeRef.new(shape: ImageSetExternalVersionId, required: true, location_name: "latestVersionId"))
179
+ CopySourceImageSetInformation.add_member(:dicom_copies, Shapes::ShapeRef.new(shape: MetadataCopies, location_name: "DICOMCopies"))
174
180
  CopySourceImageSetInformation.struct_class = Types::CopySourceImageSetInformation
175
181
 
176
182
  CopySourceImageSetProperties.add_member(:image_set_id, Shapes::ShapeRef.new(shape: ImageSetId, required: true, location_name: "imageSetId"))
@@ -331,6 +337,7 @@ module Aws::MedicalImaging
331
337
  GetImageSetResponse.add_member(:deleted_at, Shapes::ShapeRef.new(shape: Date, location_name: "deletedAt"))
332
338
  GetImageSetResponse.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
333
339
  GetImageSetResponse.add_member(:image_set_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "imageSetArn"))
340
+ GetImageSetResponse.add_member(:overrides, Shapes::ShapeRef.new(shape: Overrides, location_name: "overrides"))
334
341
  GetImageSetResponse.struct_class = Types::GetImageSetResponse
335
342
 
336
343
  ImageFrameInformation.add_member(:image_frame_id, Shapes::ShapeRef.new(shape: ImageFrameId, required: true, location_name: "imageFrameId"))
@@ -344,6 +351,7 @@ module Aws::MedicalImaging
344
351
  ImageSetProperties.add_member(:updated_at, Shapes::ShapeRef.new(shape: Date, location_name: "updatedAt"))
345
352
  ImageSetProperties.add_member(:deleted_at, Shapes::ShapeRef.new(shape: Date, location_name: "deletedAt"))
346
353
  ImageSetProperties.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "message"))
354
+ ImageSetProperties.add_member(:overrides, Shapes::ShapeRef.new(shape: Overrides, location_name: "overrides"))
347
355
  ImageSetProperties.struct_class = Types::ImageSetProperties
348
356
 
349
357
  ImageSetPropertiesList.member = Shapes::ShapeRef.new(shape: ImageSetProperties)
@@ -395,12 +403,20 @@ module Aws::MedicalImaging
395
403
  ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, required: true, location_name: "tags"))
396
404
  ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
397
405
 
406
+ MetadataCopies.add_member(:copiable_attributes, Shapes::ShapeRef.new(shape: CopiableAttributes, required: true, location_name: "copiableAttributes"))
407
+ MetadataCopies.struct_class = Types::MetadataCopies
408
+
398
409
  MetadataUpdates.add_member(:dicom_updates, Shapes::ShapeRef.new(shape: DICOMUpdates, location_name: "DICOMUpdates"))
410
+ MetadataUpdates.add_member(:revert_to_version_id, Shapes::ShapeRef.new(shape: ImageSetExternalVersionId, location_name: "revertToVersionId"))
399
411
  MetadataUpdates.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
400
412
  MetadataUpdates.add_member_subclass(:dicom_updates, Types::MetadataUpdates::DicomUpdates)
413
+ MetadataUpdates.add_member_subclass(:revert_to_version_id, Types::MetadataUpdates::RevertToVersionId)
401
414
  MetadataUpdates.add_member_subclass(:unknown, Types::MetadataUpdates::Unknown)
402
415
  MetadataUpdates.struct_class = Types::MetadataUpdates
403
416
 
417
+ Overrides.add_member(:forced, Shapes::ShapeRef.new(shape: Boolean, location_name: "forced"))
418
+ Overrides.struct_class = Types::Overrides
419
+
404
420
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
405
421
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
406
422
 
@@ -494,6 +510,7 @@ module Aws::MedicalImaging
494
510
  UpdateImageSetMetadataRequest.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location: "uri", location_name: "datastoreId"))
495
511
  UpdateImageSetMetadataRequest.add_member(:image_set_id, Shapes::ShapeRef.new(shape: ImageSetId, required: true, location: "uri", location_name: "imageSetId"))
496
512
  UpdateImageSetMetadataRequest.add_member(:latest_version_id, Shapes::ShapeRef.new(shape: ImageSetExternalVersionId, required: true, location: "querystring", location_name: "latestVersion"))
513
+ UpdateImageSetMetadataRequest.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location: "querystring", location_name: "force"))
497
514
  UpdateImageSetMetadataRequest.add_member(:update_image_set_metadata_updates, Shapes::ShapeRef.new(shape: MetadataUpdates, required: true, location_name: "updateImageSetMetadataUpdates"))
498
515
  UpdateImageSetMetadataRequest.struct_class = Types::UpdateImageSetMetadataRequest
499
516
  UpdateImageSetMetadataRequest[:payload] = :update_image_set_metadata_updates
@@ -520,6 +537,7 @@ module Aws::MedicalImaging
520
537
 
521
538
  api.metadata = {
522
539
  "apiVersion" => "2023-07-19",
540
+ "auth" => ["aws.auth#sigv4"],
523
541
  "endpointPrefix" => "medical-imaging",
524
542
  "protocol" => "rest-json",
525
543
  "protocols" => ["rest-json"],
@@ -135,12 +135,19 @@ module Aws::MedicalImaging
135
135
  # Copy image set information.
136
136
  # @return [Types::CopyImageSetInformation]
137
137
  #
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`.
142
+ # @return [Boolean]
143
+ #
138
144
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/CopyImageSetRequest AWS API Documentation
139
145
  #
140
146
  class CopyImageSetRequest < Struct.new(
141
147
  :datastore_id,
142
148
  :source_image_set_id,
143
- :copy_image_set_information)
149
+ :copy_image_set_information,
150
+ :force)
144
151
  SENSITIVE = []
145
152
  include Aws::Structure
146
153
  end
@@ -173,10 +180,16 @@ module Aws::MedicalImaging
173
180
  # The latest version identifier for the source image set.
174
181
  # @return [String]
175
182
  #
183
+ # @!attribute [rw] dicom_copies
184
+ # Contains `MetadataCopies` structure and wraps information related to
185
+ # specific copy use cases. For example, when copying subsets.
186
+ # @return [Types::MetadataCopies]
187
+ #
176
188
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/CopySourceImageSetInformation AWS API Documentation
177
189
  #
178
190
  class CopySourceImageSetInformation < Struct.new(
179
- :latest_version_id)
191
+ :latest_version_id,
192
+ :dicom_copies)
180
193
  SENSITIVE = []
181
194
  include Aws::Structure
182
195
  end
@@ -873,6 +886,13 @@ module Aws::MedicalImaging
873
886
  # The Amazon Resource Name (ARN) assigned to the image set.
874
887
  # @return [String]
875
888
  #
889
+ # @!attribute [rw] overrides
890
+ # This object contains the details of any overrides used while
891
+ # creating a specific image set version. If an image set was copied or
892
+ # updated using the `force` flag, this object will contain the
893
+ # `forced` flag.
894
+ # @return [Types::Overrides]
895
+ #
876
896
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/GetImageSetResponse AWS API Documentation
877
897
  #
878
898
  class GetImageSetResponse < Struct.new(
@@ -885,7 +905,8 @@ module Aws::MedicalImaging
885
905
  :updated_at,
886
906
  :deleted_at,
887
907
  :message,
888
- :image_set_arn)
908
+ :image_set_arn,
909
+ :overrides)
889
910
  SENSITIVE = []
890
911
  include Aws::Structure
891
912
  end
@@ -938,6 +959,12 @@ module Aws::MedicalImaging
938
959
  # The error message thrown if an image set action fails.
939
960
  # @return [String]
940
961
  #
962
+ # @!attribute [rw] overrides
963
+ # Contains details on overrides used when creating the returned
964
+ # version of an image set. For example, if `forced` exists, the
965
+ # `forced` flag was used when creating the image set.
966
+ # @return [Types::Overrides]
967
+ #
941
968
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/ImageSetProperties AWS API Documentation
942
969
  #
943
970
  class ImageSetProperties < Struct.new(
@@ -948,7 +975,8 @@ module Aws::MedicalImaging
948
975
  :created_at,
949
976
  :updated_at,
950
977
  :deleted_at,
951
- :message)
978
+ :message,
979
+ :overrides)
952
980
  SENSITIVE = []
953
981
  include Aws::Structure
954
982
  end
@@ -1160,6 +1188,22 @@ module Aws::MedicalImaging
1160
1188
  include Aws::Structure
1161
1189
  end
1162
1190
 
1191
+ # Contains copiable `Attributes` structure and wraps information related
1192
+ # to specific copy use cases. For example, when copying subsets.
1193
+ #
1194
+ # @!attribute [rw] copiable_attributes
1195
+ # The JSON string used to specify a subset of SOP Instances to copy
1196
+ # from source to destination image set.
1197
+ # @return [String]
1198
+ #
1199
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/MetadataCopies AWS API Documentation
1200
+ #
1201
+ class MetadataCopies < Struct.new(
1202
+ :copiable_attributes)
1203
+ SENSITIVE = [:copiable_attributes]
1204
+ include Aws::Structure
1205
+ end
1206
+
1163
1207
  # Contains DICOMUpdates.
1164
1208
  #
1165
1209
  # @note MetadataUpdates is a union - when making an API calls you must set exactly one of the members.
@@ -1169,19 +1213,49 @@ module Aws::MedicalImaging
1169
1213
  # `updatableAttributes`.
1170
1214
  # @return [Types::DICOMUpdates]
1171
1215
  #
1216
+ # @!attribute [rw] revert_to_version_id
1217
+ # Specifies the previous image set version ID to revert the current
1218
+ # image set back to.
1219
+ #
1220
+ # <note markdown="1"> You must provide either `revertToVersionId` or `DICOMUpdates` in
1221
+ # your request. A `ValidationException` error is thrown if both
1222
+ # parameters are provided at the same time.
1223
+ #
1224
+ # </note>
1225
+ # @return [String]
1226
+ #
1172
1227
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/MetadataUpdates AWS API Documentation
1173
1228
  #
1174
1229
  class MetadataUpdates < Struct.new(
1175
1230
  :dicom_updates,
1231
+ :revert_to_version_id,
1176
1232
  :unknown)
1177
1233
  SENSITIVE = []
1178
1234
  include Aws::Structure
1179
1235
  include Aws::Structure::Union
1180
1236
 
1181
1237
  class DicomUpdates < MetadataUpdates; end
1238
+ class RevertToVersionId < MetadataUpdates; end
1182
1239
  class Unknown < MetadataUpdates; end
1183
1240
  end
1184
1241
 
1242
+ # Specifies the overrides used in image set modification calls to
1243
+ # `CopyImageSet` and `UpdateImageSetMetadata`.
1244
+ #
1245
+ # @!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.
1249
+ # @return [Boolean]
1250
+ #
1251
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/Overrides AWS API Documentation
1252
+ #
1253
+ class Overrides < Struct.new(
1254
+ :forced)
1255
+ SENSITIVE = []
1256
+ include Aws::Structure
1257
+ end
1258
+
1185
1259
  # The request references a resource which does not exist.
1186
1260
  #
1187
1261
  # @!attribute [rw] message
@@ -1527,6 +1601,17 @@ module Aws::MedicalImaging
1527
1601
  # The latest image set version identifier.
1528
1602
  # @return [String]
1529
1603
  #
1604
+ # @!attribute [rw] force
1605
+ # Setting this flag will force the `UpdateImageSetMetadata` operation
1606
+ # for the following attributes:
1607
+ #
1608
+ # * `Tag.StudyInstanceUID`, `Tag.SeriesInstanceUID`,
1609
+ # `Tag.SOPInstanceUID`, and `Tag.StudyID`
1610
+ #
1611
+ # * Adding, removing, or updating private tags for an individual SOP
1612
+ # Instance
1613
+ # @return [Boolean]
1614
+ #
1530
1615
  # @!attribute [rw] update_image_set_metadata_updates
1531
1616
  # Update image set metadata updates.
1532
1617
  # @return [Types::MetadataUpdates]
@@ -1537,6 +1622,7 @@ module Aws::MedicalImaging
1537
1622
  :datastore_id,
1538
1623
  :image_set_id,
1539
1624
  :latest_version_id,
1625
+ :force,
1540
1626
  :update_image_set_metadata_updates)
1541
1627
  SENSITIVE = []
1542
1628
  include Aws::Structure
@@ -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.14.0'
56
+ GEM_VERSION = '1.15.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -85,13 +85,17 @@ module Aws
85
85
  source_image_set_id: ::String,
86
86
  copy_image_set_information: {
87
87
  source_image_set: {
88
- latest_version_id: ::String
88
+ latest_version_id: ::String,
89
+ dicom_copies: {
90
+ copiable_attributes: ::String
91
+ }?
89
92
  },
90
93
  destination_image_set: {
91
94
  image_set_id: ::String,
92
95
  latest_version_id: ::String
93
96
  }?
94
- }
97
+ },
98
+ ?force: bool
95
99
  ) -> _CopyImageSetResponseSuccess
96
100
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyImageSetResponseSuccess
97
101
 
@@ -182,6 +186,7 @@ module Aws
182
186
  def deleted_at: () -> ::Time
183
187
  def message: () -> ::String
184
188
  def image_set_arn: () -> ::String
189
+ def overrides: () -> Types::Overrides
185
190
  end
186
191
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#get_image_set-instance_method
187
192
  def get_image_set: (
@@ -351,11 +356,13 @@ module Aws
351
356
  datastore_id: ::String,
352
357
  image_set_id: ::String,
353
358
  latest_version_id: ::String,
359
+ ?force: bool,
354
360
  update_image_set_metadata_updates: {
355
361
  dicom_updates: {
356
362
  removable_attributes: ::String?,
357
363
  updatable_attributes: ::String?
358
- }?
364
+ }?,
365
+ revert_to_version_id: ::String?
359
366
  }
360
367
  ) -> _UpdateImageSetMetadataResponseSuccess
361
368
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateImageSetMetadataResponseSuccess
data/sig/types.rbs CHANGED
@@ -45,6 +45,7 @@ module Aws::MedicalImaging
45
45
  attr_accessor datastore_id: ::String
46
46
  attr_accessor source_image_set_id: ::String
47
47
  attr_accessor copy_image_set_information: Types::CopyImageSetInformation
48
+ attr_accessor force: bool
48
49
  SENSITIVE: []
49
50
  end
50
51
 
@@ -57,6 +58,7 @@ module Aws::MedicalImaging
57
58
 
58
59
  class CopySourceImageSetInformation
59
60
  attr_accessor latest_version_id: ::String
61
+ attr_accessor dicom_copies: Types::MetadataCopies
60
62
  SENSITIVE: []
61
63
  end
62
64
 
@@ -255,6 +257,7 @@ module Aws::MedicalImaging
255
257
  attr_accessor deleted_at: ::Time
256
258
  attr_accessor message: ::String
257
259
  attr_accessor image_set_arn: ::String
260
+ attr_accessor overrides: Types::Overrides
258
261
  SENSITIVE: []
259
262
  end
260
263
 
@@ -272,6 +275,7 @@ module Aws::MedicalImaging
272
275
  attr_accessor updated_at: ::Time
273
276
  attr_accessor deleted_at: ::Time
274
277
  attr_accessor message: ::String
278
+ attr_accessor overrides: Types::Overrides
275
279
  SENSITIVE: []
276
280
  end
277
281
 
@@ -340,17 +344,30 @@ module Aws::MedicalImaging
340
344
  SENSITIVE: []
341
345
  end
342
346
 
347
+ class MetadataCopies
348
+ attr_accessor copiable_attributes: ::String
349
+ SENSITIVE: [:copiable_attributes]
350
+ end
351
+
343
352
  class MetadataUpdates
344
353
  attr_accessor dicom_updates: Types::DICOMUpdates
354
+ attr_accessor revert_to_version_id: ::String
345
355
  attr_accessor unknown: untyped
346
356
  SENSITIVE: []
347
357
 
348
358
  class DicomUpdates < MetadataUpdates
349
359
  end
360
+ class RevertToVersionId < MetadataUpdates
361
+ end
350
362
  class Unknown < MetadataUpdates
351
363
  end
352
364
  end
353
365
 
366
+ class Overrides
367
+ attr_accessor forced: bool
368
+ SENSITIVE: []
369
+ end
370
+
354
371
  class ResourceNotFoundException
355
372
  attr_accessor message: ::String
356
373
  SENSITIVE: []
@@ -472,6 +489,7 @@ module Aws::MedicalImaging
472
489
  attr_accessor datastore_id: ::String
473
490
  attr_accessor image_set_id: ::String
474
491
  attr_accessor latest_version_id: ::String
492
+ attr_accessor force: bool
475
493
  attr_accessor update_image_set_metadata_updates: Types::MetadataUpdates
476
494
  SENSITIVE: []
477
495
  end
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.14.0
4
+ version: 1.15.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-07-02 00:00:00.000000000 Z
11
+ date: 2024-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for AWS Health Imaging. This gem is part of the
48
48
  AWS SDK for Ruby.
49
49
  email: