aws-sdk-medicalimaging 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf0fcc70eea63e1697f52a4b4776d4d1c7e398d166aaba23c5ff0ead3a0f98c5
4
- data.tar.gz: 78fae239f211f6058783890f09a846ef89450a44845f783e476bec78526e388c
3
+ metadata.gz: 272444c8bb59414f9a95347d5d00c65f17553329358711cd7d17140df5be13f2
4
+ data.tar.gz: 3dca0884db1a27b6dec5ecc451a6101398a07e296c982f0616e96841a0d68cfa
5
5
  SHA512:
6
- metadata.gz: 41b7f6075c9710dd2aae172cf809f145d289c9a87687360b271ba796f2fcc5abad289f026a268f691f62afb9330804a0c8dcc9dab4955adcf65afd95ecc05fde
7
- data.tar.gz: f65afeef5db5c9a4885ae2726765a57f66c17fdf0cfb74a27ffdfef0b5d9e93786665fcf0ebb31c1d2b1830bf0352adca1a360bec400017d40d7ef53b53bae4f
6
+ metadata.gz: 112f4fe77a35726d74025b9fc731556a7280aa0d492f62386ab917bbeec14a1b5b44812d977ba1e2c327fcf58bfce4e26a516afaca7e2fdc30e4e9b6fdaa47e8
7
+ data.tar.gz: '04769fcbc86ebd60d4de1fc062b53c2af3febb73e6313819ac39d3654c41e28ff6d6c338626fb5bd241e22da4432eb4b26638574c5214566710d75f0b6501683'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2023-10-20)
5
+ ------------------
6
+
7
+ * Feature - Updates on documentation links
8
+
4
9
  1.2.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
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 AWS Key Management
467
- # Service (AWS KMS) key for accessing encrypted data.
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 by this AWS account for a specific data
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 created by this AWS account.
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.2.0'
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?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
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 AWS Key Management
245
- # Service (AWS KMS) key for accessing encrypted data.
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 AWS Key Management
513
- # Service (AWS KMS) key for accessing encrypted data.
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 in AWS HealthImaging. Sample
948
- # creation date is provided in `1985-04-12T23:20:50.52Z` format.
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 when an image was last updated in AWS HealthImaging.
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 specified by an AWS
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]
@@ -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.2.0'
56
+ GEM_VERSION = '1.3.0'
57
57
 
58
58
  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.2.0
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-09-27 00:00:00.000000000 Z
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