aws-sdk-medicalimaging 1.2.0 → 1.3.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-medicalimaging/client.rb +15 -6
- data/lib/aws-sdk-medicalimaging/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-medicalimaging/types.rb +8 -9
- data/lib/aws-sdk-medicalimaging.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 272444c8bb59414f9a95347d5d00c65f17553329358711cd7d17140df5be13f2
|
4
|
+
data.tar.gz: 3dca0884db1a27b6dec5ecc451a6101398a07e296c982f0616e96841a0d68cfa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 112f4fe77a35726d74025b9fc731556a7280aa0d492f62386ab917bbeec14a1b5b44812d977ba1e2c327fcf58bfce4e26a516afaca7e2fdc30e4e9b6fdaa47e8
|
7
|
+
data.tar.gz: '04769fcbc86ebd60d4de1fc062b53c2af3febb73e6313819ac39d3654c41e28ff6d6c338626fb5bd241e22da4432eb4b26638574c5214566710d75f0b6501683'
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.3.0
|
@@ -463,8 +463,8 @@ module Aws::MedicalImaging
|
|
463
463
|
# The tags provided when creating a data store.
|
464
464
|
#
|
465
465
|
# @option params [String] :kms_key_arn
|
466
|
-
# The Amazon Resource Name (ARN) assigned to the
|
467
|
-
#
|
466
|
+
# The Amazon Resource Name (ARN) assigned to the Key Management Service
|
467
|
+
# (KMS) key for accessing encrypted data.
|
468
468
|
#
|
469
469
|
# @return [Types::CreateDatastoreResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
470
470
|
#
|
@@ -779,8 +779,7 @@ module Aws::MedicalImaging
|
|
779
779
|
req.send_request(options, &block)
|
780
780
|
end
|
781
781
|
|
782
|
-
# List import jobs created
|
783
|
-
# store.
|
782
|
+
# List import jobs created for a specific data store.
|
784
783
|
#
|
785
784
|
# @option params [required, String] :datastore_id
|
786
785
|
# The data store identifier.
|
@@ -833,7 +832,7 @@ module Aws::MedicalImaging
|
|
833
832
|
req.send_request(options)
|
834
833
|
end
|
835
834
|
|
836
|
-
# List data stores
|
835
|
+
# List data stores.
|
837
836
|
#
|
838
837
|
# @option params [String] :datastore_status
|
839
838
|
# The data store status.
|
@@ -965,6 +964,16 @@ module Aws::MedicalImaging
|
|
965
964
|
|
966
965
|
# Search image sets based on defined input attributes.
|
967
966
|
#
|
967
|
+
# <note markdown="1"> `SearchImageSets` accepts a single search query parameter and returns
|
968
|
+
# a paginated response of all image sets that have the matching
|
969
|
+
# criteria. All range queries must be input as `(lowerBound,
|
970
|
+
# upperBound)`.
|
971
|
+
#
|
972
|
+
# `SearchImageSets` uses the `updatedAt` field for sorting in decreasing
|
973
|
+
# order from latest to oldest.
|
974
|
+
#
|
975
|
+
# </note>
|
976
|
+
#
|
968
977
|
# @option params [required, String] :datastore_id
|
969
978
|
# The identifier of the data store where the image sets reside.
|
970
979
|
#
|
@@ -1237,7 +1246,7 @@ module Aws::MedicalImaging
|
|
1237
1246
|
params: params,
|
1238
1247
|
config: config)
|
1239
1248
|
context[:gem_name] = 'aws-sdk-medicalimaging'
|
1240
|
-
context[:gem_version] = '1.
|
1249
|
+
context[:gem_version] = '1.3.0'
|
1241
1250
|
Seahorse::Client::Request.new(handlers, context)
|
1242
1251
|
end
|
1243
1252
|
|
@@ -32,7 +32,7 @@ module Aws::MedicalImaging
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://medical-imaging-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -241,8 +241,8 @@ module Aws::MedicalImaging
|
|
241
241
|
# @return [Hash<String,String>]
|
242
242
|
#
|
243
243
|
# @!attribute [rw] kms_key_arn
|
244
|
-
# The Amazon Resource Name (ARN) assigned to the
|
245
|
-
# Service (
|
244
|
+
# The Amazon Resource Name (ARN) assigned to the Key Management
|
245
|
+
# Service (KMS) key for accessing encrypted data.
|
246
246
|
# @return [String]
|
247
247
|
#
|
248
248
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medical-imaging-2023-07-19/CreateDatastoreRequest AWS API Documentation
|
@@ -509,8 +509,8 @@ module Aws::MedicalImaging
|
|
509
509
|
# @return [String]
|
510
510
|
#
|
511
511
|
# @!attribute [rw] kms_key_arn
|
512
|
-
# The Amazon Resource Name (ARN) assigned to the
|
513
|
-
# Service (
|
512
|
+
# The Amazon Resource Name (ARN) assigned to the Key Management
|
513
|
+
# Service (KMS) key for accessing encrypted data.
|
514
514
|
# @return [String]
|
515
515
|
#
|
516
516
|
# @!attribute [rw] datastore_arn
|
@@ -944,12 +944,12 @@ module Aws::MedicalImaging
|
|
944
944
|
# @return [Integer]
|
945
945
|
#
|
946
946
|
# @!attribute [rw] created_at
|
947
|
-
# The time an image set is created
|
948
|
-
#
|
947
|
+
# The time an image set is created. Sample creation date is provided
|
948
|
+
# in `1985-04-12T23:20:50.52Z` format.
|
949
949
|
# @return [Time]
|
950
950
|
#
|
951
951
|
# @!attribute [rw] updated_at
|
952
|
-
# The time
|
952
|
+
# The time an image set was last updated.
|
953
953
|
# @return [Time]
|
954
954
|
#
|
955
955
|
# @!attribute [rw] dicom_tags
|
@@ -1524,8 +1524,7 @@ module Aws::MedicalImaging
|
|
1524
1524
|
include Aws::Structure
|
1525
1525
|
end
|
1526
1526
|
|
1527
|
-
# The input fails to satisfy the constraints
|
1528
|
-
# service.
|
1527
|
+
# The input fails to satisfy the constraints set by the service.
|
1529
1528
|
#
|
1530
1529
|
# @!attribute [rw] message
|
1531
1530
|
# @return [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.
|
4
|
+
version: 1.3.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: 2023-
|
11
|
+
date: 2023-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|