aws-sdk-medicalimaging 1.37.0 → 1.38.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: a4a7819ddb0683314457d04bc132abcae86a3ff7eb189fb79a61de54b9999fab
4
- data.tar.gz: 007f8ed5b0c0920004139e2709e767b41d413e9e26239fff18e597956ac6a84c
3
+ metadata.gz: 92d8428a85fd4c6ac056674dc541e36bd45ff25fec4132aff8c9094bf7cf7031
4
+ data.tar.gz: f4582e24b30dd369e3aa022d866a7f6f077b3e0818d714eaf92b30ae545b917a
5
5
  SHA512:
6
- metadata.gz: 1b3ffcbf01f3b3311ca66cd32b2e5146555be560d7ad96d7e4660e4382bdaac3b6f859ccafced1055c9ef7328529447df0114abf6d440e06d66237662ed595af
7
- data.tar.gz: cfcd1ab8b86cc2b700e9237823433ab839afb1013d7ab08a2cae9a35fbe969750a5af873eaa2ee2e77ccf07d30d2a5b22a3d4a74fd423c0e73281d9c94fe1ab1
6
+ metadata.gz: 3ebc929978e0c3e27f997636f3ee307d27ca30cfb916ce559d89aff2926624164115d088c702d93189917a6d7da6c3b2bbad2abc77556dfb15b143625164d163
7
+ data.tar.gz: f65fde6560d6b399b30e4827655f87912f0f75916ab65d2e5ddf4106719abdc56424e62c551b6b679006be01793cabeb6a8c0d00a75e14796daf394a46961bc4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.38.0 (2025-11-11)
5
+ ------------------
6
+
7
+ * Feature - Added new fields in existing APIs.
8
+
4
9
  1.37.0 (2025-10-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.37.0
1
+ 1.38.0
@@ -574,6 +574,9 @@ module Aws::MedicalImaging
574
574
  # @option params [String] :lambda_authorizer_arn
575
575
  # The ARN of the authorizer's Lambda function.
576
576
  #
577
+ # @option params [String] :lossless_storage_format
578
+ # The lossless storage format for the datastore.
579
+ #
577
580
  # @return [Types::CreateDatastoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
578
581
  #
579
582
  # * {Types::CreateDatastoreResponse#datastore_id #datastore_id} => String
@@ -589,6 +592,7 @@ module Aws::MedicalImaging
589
592
  # },
590
593
  # kms_key_arn: "KmsKeyArn",
591
594
  # lambda_authorizer_arn: "LambdaArn",
595
+ # lossless_storage_format: "HTJ2K", # accepts HTJ2K, JPEG_2000_LOSSLESS
592
596
  # })
593
597
  #
594
598
  # @example Response structure
@@ -751,6 +755,7 @@ module Aws::MedicalImaging
751
755
  # resp.datastore_properties.datastore_status #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE", "DELETING", "DELETED"
752
756
  # resp.datastore_properties.kms_key_arn #=> String
753
757
  # resp.datastore_properties.lambda_authorizer_arn #=> String
758
+ # resp.datastore_properties.lossless_storage_format #=> String, one of "HTJ2K", "JPEG_2000_LOSSLESS"
754
759
  # resp.datastore_properties.datastore_arn #=> String
755
760
  # resp.datastore_properties.created_at #=> Time
756
761
  # resp.datastore_properties.updated_at #=> Time
@@ -829,6 +834,8 @@ module Aws::MedicalImaging
829
834
  # * {Types::GetImageSetResponse#image_set_arn #image_set_arn} => String
830
835
  # * {Types::GetImageSetResponse#overrides #overrides} => Types::Overrides
831
836
  # * {Types::GetImageSetResponse#is_primary #is_primary} => Boolean
837
+ # * {Types::GetImageSetResponse#last_accessed_at #last_accessed_at} => Time
838
+ # * {Types::GetImageSetResponse#storage_tier #storage_tier} => String
832
839
  #
833
840
  # @example Request syntax with placeholder values
834
841
  #
@@ -852,6 +859,8 @@ module Aws::MedicalImaging
852
859
  # resp.image_set_arn #=> String
853
860
  # resp.overrides.forced #=> Boolean
854
861
  # resp.is_primary #=> Boolean
862
+ # resp.last_accessed_at #=> Time
863
+ # resp.storage_tier #=> String, one of "FREQUENT_ACCESS", "ARCHIVE_INSTANT_ACCESS"
855
864
  #
856
865
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/GetImageSet AWS API Documentation
857
866
  #
@@ -1164,6 +1173,8 @@ module Aws::MedicalImaging
1164
1173
  # resp.image_sets_metadata_summaries[0].version #=> Integer
1165
1174
  # resp.image_sets_metadata_summaries[0].created_at #=> Time
1166
1175
  # resp.image_sets_metadata_summaries[0].updated_at #=> Time
1176
+ # resp.image_sets_metadata_summaries[0].last_accessed_at #=> Time
1177
+ # resp.image_sets_metadata_summaries[0].storage_tier #=> String, one of "FREQUENT_ACCESS", "ARCHIVE_INSTANT_ACCESS"
1167
1178
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_patient_id #=> String
1168
1179
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_patient_name #=> String
1169
1180
  # resp.image_sets_metadata_summaries[0].dicom_tags.dicom_patient_birth_date #=> String
@@ -1407,7 +1418,7 @@ module Aws::MedicalImaging
1407
1418
  tracer: tracer
1408
1419
  )
1409
1420
  context[:gem_name] = 'aws-sdk-medicalimaging'
1410
- context[:gem_version] = '1.37.0'
1421
+ context[:gem_version] = '1.38.0'
1411
1422
  Seahorse::Client::Request.new(handlers, context)
1412
1423
  end
1413
1424
 
@@ -103,6 +103,7 @@ module Aws::MedicalImaging
103
103
  ListImageSetVersionsResponse = Shapes::StructureShape.new(name: 'ListImageSetVersionsResponse')
104
104
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
105
105
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
106
+ LosslessStorageFormat = Shapes::StringShape.new(name: 'LosslessStorageFormat')
106
107
  Message = Shapes::StringShape.new(name: 'Message')
107
108
  MetadataCopies = Shapes::StructureShape.new(name: 'MetadataCopies')
108
109
  MetadataUpdates = Shapes::UnionShape.new(name: 'MetadataUpdates')
@@ -127,6 +128,7 @@ module Aws::MedicalImaging
127
128
  SortOrder = Shapes::StringShape.new(name: 'SortOrder')
128
129
  StartDICOMImportJobRequest = Shapes::StructureShape.new(name: 'StartDICOMImportJobRequest')
129
130
  StartDICOMImportJobResponse = Shapes::StructureShape.new(name: 'StartDICOMImportJobResponse')
131
+ StorageTier = Shapes::StringShape.new(name: 'StorageTier')
130
132
  String = Shapes::StringShape.new(name: 'String')
131
133
  TagKey = Shapes::StringShape.new(name: 'TagKey')
132
134
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
@@ -196,6 +198,7 @@ module Aws::MedicalImaging
196
198
  CreateDatastoreRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
197
199
  CreateDatastoreRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
198
200
  CreateDatastoreRequest.add_member(:lambda_authorizer_arn, Shapes::ShapeRef.new(shape: LambdaArn, location_name: "lambdaAuthorizerArn"))
201
+ CreateDatastoreRequest.add_member(:lossless_storage_format, Shapes::ShapeRef.new(shape: LosslessStorageFormat, location_name: "losslessStorageFormat"))
199
202
  CreateDatastoreRequest.struct_class = Types::CreateDatastoreRequest
200
203
 
201
204
  CreateDatastoreResponse.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "datastoreId"))
@@ -257,6 +260,7 @@ module Aws::MedicalImaging
257
260
  DatastoreProperties.add_member(:datastore_status, Shapes::ShapeRef.new(shape: DatastoreStatus, required: true, location_name: "datastoreStatus"))
258
261
  DatastoreProperties.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
259
262
  DatastoreProperties.add_member(:lambda_authorizer_arn, Shapes::ShapeRef.new(shape: LambdaArn, location_name: "lambdaAuthorizerArn"))
263
+ DatastoreProperties.add_member(:lossless_storage_format, Shapes::ShapeRef.new(shape: LosslessStorageFormat, location_name: "losslessStorageFormat"))
260
264
  DatastoreProperties.add_member(:datastore_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "datastoreArn"))
261
265
  DatastoreProperties.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
262
266
  DatastoreProperties.add_member(:updated_at, Shapes::ShapeRef.new(shape: Date, location_name: "updatedAt"))
@@ -344,6 +348,8 @@ module Aws::MedicalImaging
344
348
  GetImageSetResponse.add_member(:image_set_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "imageSetArn"))
345
349
  GetImageSetResponse.add_member(:overrides, Shapes::ShapeRef.new(shape: Overrides, location_name: "overrides"))
346
350
  GetImageSetResponse.add_member(:is_primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "isPrimary"))
351
+ GetImageSetResponse.add_member(:last_accessed_at, Shapes::ShapeRef.new(shape: Date, location_name: "lastAccessedAt"))
352
+ GetImageSetResponse.add_member(:storage_tier, Shapes::ShapeRef.new(shape: StorageTier, location_name: "storageTier"))
347
353
  GetImageSetResponse.struct_class = Types::GetImageSetResponse
348
354
 
349
355
  ImageFrameInformation.add_member(:image_frame_id, Shapes::ShapeRef.new(shape: ImageFrameId, required: true, location_name: "imageFrameId"))
@@ -369,6 +375,8 @@ module Aws::MedicalImaging
369
375
  ImageSetsMetadataSummary.add_member(:version, Shapes::ShapeRef.new(shape: Integer, location_name: "version"))
370
376
  ImageSetsMetadataSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Date, location_name: "createdAt"))
371
377
  ImageSetsMetadataSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Date, location_name: "updatedAt"))
378
+ ImageSetsMetadataSummary.add_member(:last_accessed_at, Shapes::ShapeRef.new(shape: Date, location_name: "lastAccessedAt"))
379
+ ImageSetsMetadataSummary.add_member(:storage_tier, Shapes::ShapeRef.new(shape: StorageTier, location_name: "storageTier"))
372
380
  ImageSetsMetadataSummary.add_member(:dicom_tags, Shapes::ShapeRef.new(shape: DICOMTags, location_name: "DICOMTags"))
373
381
  ImageSetsMetadataSummary.add_member(:is_primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "isPrimary"))
374
382
  ImageSetsMetadataSummary.struct_class = Types::ImageSetsMetadataSummary
@@ -271,6 +271,10 @@ module Aws::MedicalImaging
271
271
  # The ARN of the authorizer's Lambda function.
272
272
  # @return [String]
273
273
  #
274
+ # @!attribute [rw] lossless_storage_format
275
+ # The lossless storage format for the datastore.
276
+ # @return [String]
277
+ #
274
278
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/CreateDatastoreRequest AWS API Documentation
275
279
  #
276
280
  class CreateDatastoreRequest < Struct.new(
@@ -278,7 +282,8 @@ module Aws::MedicalImaging
278
282
  :client_token,
279
283
  :tags,
280
284
  :kms_key_arn,
281
- :lambda_authorizer_arn)
285
+ :lambda_authorizer_arn,
286
+ :lossless_storage_format)
282
287
  SENSITIVE = []
283
288
  include Aws::Structure
284
289
  end
@@ -564,6 +569,10 @@ module Aws::MedicalImaging
564
569
  # The ARN of the authorizer's Lambda function.
565
570
  # @return [String]
566
571
  #
572
+ # @!attribute [rw] lossless_storage_format
573
+ # The datastore's lossless storage format.
574
+ # @return [String]
575
+ #
567
576
  # @!attribute [rw] datastore_arn
568
577
  # The Amazon Resource Name (ARN) for the data store.
569
578
  # @return [String]
@@ -584,6 +593,7 @@ module Aws::MedicalImaging
584
593
  :datastore_status,
585
594
  :kms_key_arn,
586
595
  :lambda_authorizer_arn,
596
+ :lossless_storage_format,
587
597
  :datastore_arn,
588
598
  :created_at,
589
599
  :updated_at)
@@ -967,6 +977,14 @@ module Aws::MedicalImaging
967
977
  # The flag to determine whether the image set is primary or not.
968
978
  # @return [Boolean]
969
979
  #
980
+ # @!attribute [rw] last_accessed_at
981
+ # When the image set was last accessed.
982
+ # @return [Time]
983
+ #
984
+ # @!attribute [rw] storage_tier
985
+ # The storage tier of the image set.
986
+ # @return [String]
987
+ #
970
988
  # @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/GetImageSetResponse AWS API Documentation
971
989
  #
972
990
  class GetImageSetResponse < Struct.new(
@@ -981,7 +999,9 @@ module Aws::MedicalImaging
981
999
  :message,
982
1000
  :image_set_arn,
983
1001
  :overrides,
984
- :is_primary)
1002
+ :is_primary,
1003
+ :last_accessed_at,
1004
+ :storage_tier)
985
1005
  SENSITIVE = []
986
1006
  include Aws::Structure
987
1007
  end
@@ -1080,6 +1100,14 @@ module Aws::MedicalImaging
1080
1100
  # The time an image set was last updated.
1081
1101
  # @return [Time]
1082
1102
  #
1103
+ # @!attribute [rw] last_accessed_at
1104
+ # When the image set was last accessed.
1105
+ # @return [Time]
1106
+ #
1107
+ # @!attribute [rw] storage_tier
1108
+ # The image set's storage tier.
1109
+ # @return [String]
1110
+ #
1083
1111
  # @!attribute [rw] dicom_tags
1084
1112
  # The DICOM tags associated with the image set.
1085
1113
  # @return [Types::DICOMTags]
@@ -1095,6 +1123,8 @@ module Aws::MedicalImaging
1095
1123
  :version,
1096
1124
  :created_at,
1097
1125
  :updated_at,
1126
+ :last_accessed_at,
1127
+ :storage_tier,
1098
1128
  :dicom_tags,
1099
1129
  :is_primary)
1100
1130
  SENSITIVE = []
@@ -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.37.0'
58
+ GEM_VERSION = '1.38.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -116,7 +116,8 @@ module Aws
116
116
  client_token: ::String,
117
117
  ?tags: Hash[::String, ::String],
118
118
  ?kms_key_arn: ::String,
119
- ?lambda_authorizer_arn: ::String
119
+ ?lambda_authorizer_arn: ::String,
120
+ ?lossless_storage_format: ("HTJ2K" | "JPEG_2000_LOSSLESS")
120
121
  ) -> _CreateDatastoreResponseSuccess
121
122
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatastoreResponseSuccess
122
123
 
@@ -195,6 +196,8 @@ module Aws
195
196
  def image_set_arn: () -> ::String
196
197
  def overrides: () -> Types::Overrides
197
198
  def is_primary: () -> bool
199
+ def last_accessed_at: () -> ::Time
200
+ def storage_tier: () -> ("FREQUENT_ACCESS" | "ARCHIVE_INSTANT_ACCESS")
198
201
  end
199
202
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#get_image_set-instance_method
200
203
  def get_image_set: (
data/sig/types.rbs CHANGED
@@ -80,6 +80,7 @@ module Aws::MedicalImaging
80
80
  attr_accessor tags: ::Hash[::String, ::String]
81
81
  attr_accessor kms_key_arn: ::String
82
82
  attr_accessor lambda_authorizer_arn: ::String
83
+ attr_accessor lossless_storage_format: ("HTJ2K" | "JPEG_2000_LOSSLESS")
83
84
  SENSITIVE: []
84
85
  end
85
86
 
@@ -153,6 +154,7 @@ module Aws::MedicalImaging
153
154
  attr_accessor datastore_status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETED")
154
155
  attr_accessor kms_key_arn: ::String
155
156
  attr_accessor lambda_authorizer_arn: ::String
157
+ attr_accessor lossless_storage_format: ("HTJ2K" | "JPEG_2000_LOSSLESS")
156
158
  attr_accessor datastore_arn: ::String
157
159
  attr_accessor created_at: ::Time
158
160
  attr_accessor updated_at: ::Time
@@ -262,6 +264,8 @@ module Aws::MedicalImaging
262
264
  attr_accessor image_set_arn: ::String
263
265
  attr_accessor overrides: Types::Overrides
264
266
  attr_accessor is_primary: bool
267
+ attr_accessor last_accessed_at: ::Time
268
+ attr_accessor storage_tier: ("FREQUENT_ACCESS" | "ARCHIVE_INSTANT_ACCESS")
265
269
  SENSITIVE: []
266
270
  end
267
271
 
@@ -289,6 +293,8 @@ module Aws::MedicalImaging
289
293
  attr_accessor version: ::Integer
290
294
  attr_accessor created_at: ::Time
291
295
  attr_accessor updated_at: ::Time
296
+ attr_accessor last_accessed_at: ::Time
297
+ attr_accessor storage_tier: ("FREQUENT_ACCESS" | "ARCHIVE_INSTANT_ACCESS")
292
298
  attr_accessor dicom_tags: Types::DICOMTags
293
299
  attr_accessor is_primary: bool
294
300
  SENSITIVE: []
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.37.0
4
+ version: 1.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services