aws-sdk-medicalimaging 1.28.0 → 1.30.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medicalimaging/client.rb +35 -12
- data/lib/aws-sdk-medicalimaging/client_api.rb +6 -0
- data/lib/aws-sdk-medicalimaging/types.rb +91 -10
- data/lib/aws-sdk-medicalimaging.rb +1 -1
- data/sig/client.rbs +6 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +7 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df796b24d06c52689f265cf00c4f1ea84d877365e1a9a602a2cf61605ebac16d
|
4
|
+
data.tar.gz: 11078f9573716a425e9b67e25631858d24156cb2dc82a47cbddb717ec703134e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c036bd988148cc9ae1b76ba43cf5a78a1bc522f99c2da0b749a1bc823de6539cab4f929b7d8589556213b6c6362f2f460c3c9ff84f1a2e6cf59e34a47c5842a0
|
7
|
+
data.tar.gz: 7226171193e9883825bcc1a1a15ed3bd867852eba473e8dbb4fc0fbb2774970a1f6e0d3554509c718865f0bc04489bbc42c290d065bbe97bec97f256947e4aad
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.30.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.29.0 (2025-06-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Added new fields to support the concept of primary image sets within the storage hierarchy.
|
13
|
+
|
4
14
|
1.28.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.30.0
|
@@ -95,7 +95,7 @@ module Aws::MedicalImaging
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::MedicalImaging
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::MedicalImaging
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::MedicalImaging
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::MedicalImaging
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -481,9 +491,16 @@ module Aws::MedicalImaging
|
|
481
491
|
# Copy image set information.
|
482
492
|
#
|
483
493
|
# @option params [Boolean] :force
|
484
|
-
#
|
485
|
-
#
|
486
|
-
# `sourceImageSet` and
|
494
|
+
# Providing this parameter will force completion of the `CopyImageSet`
|
495
|
+
# operation, even if there are inconsistent Patient, Study, and/or
|
496
|
+
# Series level metadata elements between the `sourceImageSet` and
|
497
|
+
# `destinationImageSet`.
|
498
|
+
#
|
499
|
+
# @option params [Boolean] :promote_to_primary
|
500
|
+
# Providing this parameter will configure the `CopyImageSet` operation
|
501
|
+
# to promote the given image set to the primary DICOM hierarchy. If
|
502
|
+
# successful, a new primary image set ID will be returned as the
|
503
|
+
# destination image set.
|
487
504
|
#
|
488
505
|
# @return [Types::CopyImageSetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
489
506
|
#
|
@@ -509,6 +526,7 @@ module Aws::MedicalImaging
|
|
509
526
|
# },
|
510
527
|
# },
|
511
528
|
# force: false,
|
529
|
+
# promote_to_primary: false,
|
512
530
|
# })
|
513
531
|
#
|
514
532
|
# @example Response structure
|
@@ -808,6 +826,7 @@ module Aws::MedicalImaging
|
|
808
826
|
# * {Types::GetImageSetResponse#message #message} => String
|
809
827
|
# * {Types::GetImageSetResponse#image_set_arn #image_set_arn} => String
|
810
828
|
# * {Types::GetImageSetResponse#overrides #overrides} => Types::Overrides
|
829
|
+
# * {Types::GetImageSetResponse#is_primary #is_primary} => Boolean
|
811
830
|
#
|
812
831
|
# @example Request syntax with placeholder values
|
813
832
|
#
|
@@ -830,6 +849,7 @@ module Aws::MedicalImaging
|
|
830
849
|
# resp.message #=> String
|
831
850
|
# resp.image_set_arn #=> String
|
832
851
|
# resp.overrides.forced #=> Boolean
|
852
|
+
# resp.is_primary #=> Boolean
|
833
853
|
#
|
834
854
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/GetImageSet AWS API Documentation
|
835
855
|
#
|
@@ -1023,6 +1043,7 @@ module Aws::MedicalImaging
|
|
1023
1043
|
# resp.image_set_properties_list[0].deleted_at #=> Time
|
1024
1044
|
# resp.image_set_properties_list[0].message #=> String
|
1025
1045
|
# resp.image_set_properties_list[0].overrides.forced #=> Boolean
|
1046
|
+
# resp.image_set_properties_list[0].is_primary #=> Boolean
|
1026
1047
|
# resp.next_token #=> String
|
1027
1048
|
#
|
1028
1049
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/ListImageSetVersions AWS API Documentation
|
@@ -1119,6 +1140,7 @@ module Aws::MedicalImaging
|
|
1119
1140
|
# dicom_study_date: "DICOMStudyDate", # required
|
1120
1141
|
# dicom_study_time: "DICOMStudyTime",
|
1121
1142
|
# },
|
1143
|
+
# is_primary: false,
|
1122
1144
|
# },
|
1123
1145
|
# ],
|
1124
1146
|
# operator: "EQUAL", # required, accepts EQUAL, BETWEEN
|
@@ -1156,6 +1178,7 @@ module Aws::MedicalImaging
|
|
1156
1178
|
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_series_number #=> Integer
|
1157
1179
|
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_study_date #=> String
|
1158
1180
|
# resp.image_sets_metadata_summaries[0].dicom_tags.dicom_study_time #=> String
|
1181
|
+
# resp.image_sets_metadata_summaries[0].is_primary #=> Boolean
|
1159
1182
|
# resp.data.sort.sort_order #=> String, one of "ASC", "DESC"
|
1160
1183
|
# resp.data.sort.sort_field #=> String, one of "updatedAt", "createdAt", "DICOMStudyDateAndTime"
|
1161
1184
|
# resp.next_token #=> String
|
@@ -1382,7 +1405,7 @@ module Aws::MedicalImaging
|
|
1382
1405
|
tracer: tracer
|
1383
1406
|
)
|
1384
1407
|
context[:gem_name] = 'aws-sdk-medicalimaging'
|
1385
|
-
context[:gem_version] = '1.
|
1408
|
+
context[:gem_version] = '1.30.0'
|
1386
1409
|
Seahorse::Client::Request.new(handlers, context)
|
1387
1410
|
end
|
1388
1411
|
|
@@ -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
|
-
#
|
140
|
-
#
|
141
|
-
# `sourceImageSet` and
|
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
|
-
#
|
1247
|
-
# `UpdateImageSetMetadata`
|
1248
|
-
#
|
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
|
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -99,7 +100,8 @@ module Aws
|
|
99
100
|
latest_version_id: ::String
|
100
101
|
}?
|
101
102
|
},
|
102
|
-
?force: bool
|
103
|
+
?force: bool,
|
104
|
+
?promote_to_primary: bool
|
103
105
|
) -> _CopyImageSetResponseSuccess
|
104
106
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyImageSetResponseSuccess
|
105
107
|
|
@@ -191,6 +193,7 @@ module Aws
|
|
191
193
|
def message: () -> ::String
|
192
194
|
def image_set_arn: () -> ::String
|
193
195
|
def overrides: () -> Types::Overrides
|
196
|
+
def is_primary: () -> bool
|
194
197
|
end
|
195
198
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#get_image_set-instance_method
|
196
199
|
def get_image_set: (
|
@@ -289,7 +292,8 @@ module Aws
|
|
289
292
|
dicom_study_date_and_time: {
|
290
293
|
dicom_study_date: ::String,
|
291
294
|
dicom_study_time: ::String?
|
292
|
-
}
|
295
|
+
}?,
|
296
|
+
is_primary: bool?
|
293
297
|
},
|
294
298
|
],
|
295
299
|
operator: ("EQUAL" | "BETWEEN")
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
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.
|
4
|
+
version: 1.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|