aws-sdk-healthlake 1.4.0 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-healthlake/client.rb +1 -1
- data/lib/aws-sdk-healthlake/client_api.rb +8 -2
- data/lib/aws-sdk-healthlake/types.rb +16 -15
- data/lib/aws-sdk-healthlake.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da330b24cd12d1e2353079dcf34f88c2d34de1a1b250f2b388e4f902751ed9ec
|
4
|
+
data.tar.gz: dbd703781d8ca78a45f6adb84f53cccd991462a09f80191183d8914754467e78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b726da79d0a560a3a25b011d8e51209f046e7454df1132dce9a64e9e5c792846a93c24411f9bd6bab50b6d1d55dca5a0468b60a1f7bddd38cd4a6327511f9c08
|
7
|
+
data.tar.gz: 007e69ca8d57bb550efba8b8978e16c848bf4e37fbdabd9d8cd5ad0390b8d9fb42763d9c2c3d14a06f6d3d56e0f7227687b0f9880563b87dade24975e032cbbb
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.8.0 (2021-10-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.7.0 (2021-09-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.6.0 (2021-07-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.5.0 (2021-07-28)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.4.0 (2021-07-14)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.8.0
|
@@ -1002,7 +1002,7 @@ module Aws::HealthLake
|
|
1002
1002
|
params: params,
|
1003
1003
|
config: config)
|
1004
1004
|
context[:gem_name] = 'aws-sdk-healthlake'
|
1005
|
-
context[:gem_version] = '1.
|
1005
|
+
context[:gem_version] = '1.8.0'
|
1006
1006
|
Seahorse::Client::Request.new(handlers, context)
|
1007
1007
|
end
|
1008
1008
|
|
@@ -43,7 +43,7 @@ module Aws::HealthLake
|
|
43
43
|
IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
|
44
44
|
ImportJobProperties = Shapes::StructureShape.new(name: 'ImportJobProperties')
|
45
45
|
ImportJobPropertiesList = Shapes::ListShape.new(name: 'ImportJobPropertiesList')
|
46
|
-
InputDataConfig = Shapes::
|
46
|
+
InputDataConfig = Shapes::UnionShape.new(name: 'InputDataConfig')
|
47
47
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
48
48
|
JobId = Shapes::StringShape.new(name: 'JobId')
|
49
49
|
JobName = Shapes::StringShape.new(name: 'JobName')
|
@@ -60,7 +60,7 @@ module Aws::HealthLake
|
|
60
60
|
MaxResultsInteger = Shapes::IntegerShape.new(name: 'MaxResultsInteger')
|
61
61
|
Message = Shapes::StringShape.new(name: 'Message')
|
62
62
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
63
|
-
OutputDataConfig = Shapes::
|
63
|
+
OutputDataConfig = Shapes::UnionShape.new(name: 'OutputDataConfig')
|
64
64
|
PreloadDataConfig = Shapes::StructureShape.new(name: 'PreloadDataConfig')
|
65
65
|
PreloadDataType = Shapes::StringShape.new(name: 'PreloadDataType')
|
66
66
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
@@ -181,6 +181,9 @@ module Aws::HealthLake
|
|
181
181
|
ImportJobPropertiesList.member = Shapes::ShapeRef.new(shape: ImportJobProperties)
|
182
182
|
|
183
183
|
InputDataConfig.add_member(:s3_uri, Shapes::ShapeRef.new(shape: S3Uri, location_name: "S3Uri"))
|
184
|
+
InputDataConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
185
|
+
InputDataConfig.add_member_subclass(:s3_uri, Types::InputDataConfig::S3Uri)
|
186
|
+
InputDataConfig.add_member_subclass(:unknown, Types::InputDataConfig::Unknown)
|
184
187
|
InputDataConfig.struct_class = Types::InputDataConfig
|
185
188
|
|
186
189
|
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -232,6 +235,9 @@ module Aws::HealthLake
|
|
232
235
|
ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
|
233
236
|
|
234
237
|
OutputDataConfig.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3Configuration, location_name: "S3Configuration"))
|
238
|
+
OutputDataConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
239
|
+
OutputDataConfig.add_member_subclass(:s3_configuration, Types::OutputDataConfig::S3Configuration)
|
240
|
+
OutputDataConfig.add_member_subclass(:unknown, Types::OutputDataConfig::Unknown)
|
235
241
|
OutputDataConfig.struct_class = Types::OutputDataConfig
|
236
242
|
|
237
243
|
PreloadDataConfig.add_member(:preload_data_type, Shapes::ShapeRef.new(shape: PreloadDataType, required: true, location_name: "PreloadDataType"))
|
@@ -526,12 +526,9 @@ module Aws::HealthLake
|
|
526
526
|
|
527
527
|
# The input properties for an import job.
|
528
528
|
#
|
529
|
-
# @note
|
530
|
-
# data as a hash:
|
529
|
+
# @note InputDataConfig is a union - when making an API calls you must set exactly one of the members.
|
531
530
|
#
|
532
|
-
#
|
533
|
-
# s3_uri: "S3Uri",
|
534
|
-
# }
|
531
|
+
# @note InputDataConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of InputDataConfig corresponding to the set member.
|
535
532
|
#
|
536
533
|
# @!attribute [rw] s3_uri
|
537
534
|
# The S3Uri is the user specified S3 location of the FHIR data to be
|
@@ -541,9 +538,14 @@ module Aws::HealthLake
|
|
541
538
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/InputDataConfig AWS API Documentation
|
542
539
|
#
|
543
540
|
class InputDataConfig < Struct.new(
|
544
|
-
:s3_uri
|
541
|
+
:s3_uri,
|
542
|
+
:unknown)
|
545
543
|
SENSITIVE = []
|
546
544
|
include Aws::Structure
|
545
|
+
include Aws::Structure::Union
|
546
|
+
|
547
|
+
class S3Uri < InputDataConfig; end
|
548
|
+
class Unknown < InputDataConfig; end
|
547
549
|
end
|
548
550
|
|
549
551
|
# Unknown error occurs in the service.
|
@@ -842,15 +844,9 @@ module Aws::HealthLake
|
|
842
844
|
# The output data configuration that was supplied when the export job
|
843
845
|
# was created.
|
844
846
|
#
|
845
|
-
# @note
|
846
|
-
# data as a hash:
|
847
|
+
# @note OutputDataConfig is a union - when making an API calls you must set exactly one of the members.
|
847
848
|
#
|
848
|
-
#
|
849
|
-
# s3_configuration: {
|
850
|
-
# s3_uri: "S3Uri", # required
|
851
|
-
# kms_key_id: "EncryptionKeyID", # required
|
852
|
-
# },
|
853
|
-
# }
|
849
|
+
# @note OutputDataConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OutputDataConfig corresponding to the set member.
|
854
850
|
#
|
855
851
|
# @!attribute [rw] s3_configuration
|
856
852
|
# The output data configuration that was supplied when the export job
|
@@ -860,9 +856,14 @@ module Aws::HealthLake
|
|
860
856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/OutputDataConfig AWS API Documentation
|
861
857
|
#
|
862
858
|
class OutputDataConfig < Struct.new(
|
863
|
-
:s3_configuration
|
859
|
+
:s3_configuration,
|
860
|
+
:unknown)
|
864
861
|
SENSITIVE = []
|
865
862
|
include Aws::Structure
|
863
|
+
include Aws::Structure::Union
|
864
|
+
|
865
|
+
class S3Configuration < OutputDataConfig; end
|
866
|
+
class Unknown < OutputDataConfig; end
|
866
867
|
end
|
867
868
|
|
868
869
|
# The input properties for the preloaded Data Store. Only data preloaded
|
data/lib/aws-sdk-healthlake.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-healthlake
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.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: 2021-
|
11
|
+
date: 2021-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.121.2
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.121.2
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
76
|
requirements:
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: '
|
79
|
+
version: '2.3'
|
80
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
81
|
requirements:
|
82
82
|
- - ">="
|