aws-sdk-healthlake 1.25.0 → 1.27.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: fba8e59cc4aced78ed924eff080006fe73125f354e1db8c1147d29be9303f627
4
- data.tar.gz: 9c6b51f9118fb8d3fb11afa2a9fb098ac21561d0c91701a4c52039b6746fc5cd
3
+ metadata.gz: 5a741c79c5bcf7652761483a33eb101333c6f96d253aa3a47734da4034e2114a
4
+ data.tar.gz: fbef4d03db283481aa80bc7c223bdf0ea6bcb5b40bd6de73da7e9dab4875ad6f
5
5
  SHA512:
6
- metadata.gz: 28277102ebd548d10255089444373c1b30c173079cae69b8d8760accfac0195444b945b4736e01e76e8a5f80f4138f961c9e95b533a81d02456ce6e536939585
7
- data.tar.gz: 91946f570a2bd9d5e8a6b4c2ffb237114db3a30d465c6d536db5433b6b10f00bd797bd73140eb3c46ff04c947b18fc932b87b2e2792e16b3f65922c37eb69780
6
+ metadata.gz: 4f6b39aae0801193e6bd9d663d18b42e7408003915edc0f536bf9df6debedbdbabcee14f4a3d4a996b767be25f60265c628fd473bd846fbbe32b93ba67886c65
7
+ data.tar.gz: 06a1f6abf05b3b64757e4d29d9b1232fbd6cfd6f66b77f6d6d0deac6646ae3b9beaf5e7acb09a58c23c0e0aa9e95c905c9cd2f58b6ba60deb9f0ab0260dcadc5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.27.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.26.0 (2024-04-12)
10
+ ------------------
11
+
12
+ * Feature - Added new CREATE_FAILED status for data stores. Added new errorCause to DescribeFHIRDatastore API and ListFHIRDatastores API response for additional insights into data store creation and deletion workflows.
13
+
4
14
  1.25.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.27.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::HealthLake
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::HealthLake
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -347,50 +356,65 @@ module Aws::HealthLake
347
356
  # @option options [Aws::HealthLake::EndpointProvider] :endpoint_provider
348
357
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::HealthLake::EndpointParameters`
349
358
  #
350
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
351
- # requests through. Formatted like 'http://proxy.com:123'.
352
- #
353
- # @option options [Float] :http_open_timeout (15) The number of
354
- # seconds to wait when opening a HTTP session before raising a
355
- # `Timeout::Error`.
356
- #
357
- # @option options [Float] :http_read_timeout (60) The default
358
- # number of seconds to wait for response data. This value can
359
- # safely be set per-request on the session.
360
- #
361
- # @option options [Float] :http_idle_timeout (5) The number of
362
- # seconds a connection is allowed to sit idle before it is
363
- # considered stale. Stale connections are closed and removed
364
- # from the pool before making a request.
365
- #
366
- # @option options [Float] :http_continue_timeout (1) The number of
367
- # seconds to wait for a 100-continue response before sending the
368
- # request body. This option has no effect unless the request has
369
- # "Expect" header set to "100-continue". Defaults to `nil` which
370
- # disables this behaviour. This value can safely be set per
371
- # request on the session.
372
- #
373
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
374
- # in seconds.
359
+ # @option options [Float] :http_continue_timeout (1)
360
+ # The number of seconds to wait for a 100-continue response before sending the
361
+ # request body. This option has no effect unless the request has "Expect"
362
+ # header set to "100-continue". Defaults to `nil` which disables this
363
+ # behaviour. This value can safely be set per request on the session.
364
+ #
365
+ # @option options [Float] :http_idle_timeout (5)
366
+ # The number of seconds a connection is allowed to sit idle before it
367
+ # is considered stale. Stale connections are closed and removed from the
368
+ # pool before making a request.
369
+ #
370
+ # @option options [Float] :http_open_timeout (15)
371
+ # The default number of seconds to wait for response data.
372
+ # This value can safely be set per-request on the session.
373
+ #
374
+ # @option options [URI::HTTP,String] :http_proxy
375
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
376
+ #
377
+ # @option options [Float] :http_read_timeout (60)
378
+ # The default number of seconds to wait for response data.
379
+ # This value can safely be set per-request on the session.
380
+ #
381
+ # @option options [Boolean] :http_wire_trace (false)
382
+ # When `true`, HTTP debug output will be sent to the `:logger`.
383
+ #
384
+ # @option options [Proc] :on_chunk_received
385
+ # When a Proc object is provided, it will be used as callback when each chunk
386
+ # of the response body is received. It provides three arguments: the chunk,
387
+ # the number of bytes received, and the total number of
388
+ # bytes in the response (or nil if the server did not send a `content-length`).
389
+ #
390
+ # @option options [Proc] :on_chunk_sent
391
+ # When a Proc object is provided, it will be used as callback when each chunk
392
+ # of the request body is sent. It provides three arguments: the chunk,
393
+ # the number of bytes read from the body, and the total number of
394
+ # bytes in the body.
395
+ #
396
+ # @option options [Boolean] :raise_response_errors (true)
397
+ # When `true`, response errors are raised.
398
+ #
399
+ # @option options [String] :ssl_ca_bundle
400
+ # Full path to the SSL certificate authority bundle file that should be used when
401
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
402
+ # `:ssl_ca_directory` the the system default will be used if available.
403
+ #
404
+ # @option options [String] :ssl_ca_directory
405
+ # Full path of the directory that contains the unbundled SSL certificate
406
+ # authority files for verifying peer certificates. If you do
407
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
408
+ # default will be used if available.
375
409
  #
376
- # @option options [Boolean] :http_wire_trace (false) When `true`,
377
- # HTTP debug output will be sent to the `:logger`.
410
+ # @option options [String] :ssl_ca_store
411
+ # Sets the X509::Store to verify peer certificate.
378
412
  #
379
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
380
- # SSL peer certificates are verified when establishing a
381
- # connection.
413
+ # @option options [Float] :ssl_timeout
414
+ # Sets the SSL timeout in seconds
382
415
  #
383
- # @option options [String] :ssl_ca_bundle Full path to the SSL
384
- # certificate authority bundle file that should be used when
385
- # verifying peer certificates. If you do not pass
386
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
387
- # will be used if available.
388
- #
389
- # @option options [String] :ssl_ca_directory Full path of the
390
- # directory that contains the unbundled SSL certificate
391
- # authority files for verifying peer certificates. If you do
392
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
393
- # system default will be used if available.
416
+ # @option options [Boolean] :ssl_verify_peer (true)
417
+ # When `true`, SSL peer certificates are verified when establishing a connection.
394
418
  #
395
419
  def initialize(*args)
396
420
  super
@@ -468,7 +492,7 @@ module Aws::HealthLake
468
492
  #
469
493
  # resp.datastore_id #=> String
470
494
  # resp.datastore_arn #=> String
471
- # resp.datastore_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "DELETED"
495
+ # resp.datastore_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "DELETED", "CREATE_FAILED"
472
496
  # resp.datastore_endpoint #=> String
473
497
  #
474
498
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/CreateFHIRDatastore AWS API Documentation
@@ -502,7 +526,7 @@ module Aws::HealthLake
502
526
  #
503
527
  # resp.datastore_id #=> String
504
528
  # resp.datastore_arn #=> String
505
- # resp.datastore_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "DELETED"
529
+ # resp.datastore_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "DELETED", "CREATE_FAILED"
506
530
  # resp.datastore_endpoint #=> String
507
531
  #
508
532
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/DeleteFHIRDatastore AWS API Documentation
@@ -537,7 +561,7 @@ module Aws::HealthLake
537
561
  # resp.datastore_properties.datastore_id #=> String
538
562
  # resp.datastore_properties.datastore_arn #=> String
539
563
  # resp.datastore_properties.datastore_name #=> String
540
- # resp.datastore_properties.datastore_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "DELETED"
564
+ # resp.datastore_properties.datastore_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "DELETED", "CREATE_FAILED"
541
565
  # resp.datastore_properties.created_at #=> Time
542
566
  # resp.datastore_properties.datastore_type_version #=> String, one of "R4"
543
567
  # resp.datastore_properties.datastore_endpoint #=> String
@@ -548,6 +572,8 @@ module Aws::HealthLake
548
572
  # resp.datastore_properties.identity_provider_configuration.fine_grained_authorization_enabled #=> Boolean
549
573
  # resp.datastore_properties.identity_provider_configuration.metadata #=> String
550
574
  # resp.datastore_properties.identity_provider_configuration.idp_lambda_arn #=> String
575
+ # resp.datastore_properties.error_cause.error_message #=> String
576
+ # resp.datastore_properties.error_cause.error_category #=> String, one of "RETRYABLE_ERROR", "NON_RETRYABLE_ERROR"
551
577
  #
552
578
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/DescribeFHIRDatastore AWS API Documentation
553
579
  #
@@ -632,6 +658,14 @@ module Aws::HealthLake
632
658
  # resp.import_job_properties.input_data_config.s3_uri #=> String
633
659
  # resp.import_job_properties.job_output_data_config.s3_configuration.s3_uri #=> String
634
660
  # resp.import_job_properties.job_output_data_config.s3_configuration.kms_key_id #=> String
661
+ # resp.import_job_properties.job_progress_report.total_number_of_scanned_files #=> Integer
662
+ # resp.import_job_properties.job_progress_report.total_size_of_scanned_files_in_mb #=> Float
663
+ # resp.import_job_properties.job_progress_report.total_number_of_imported_files #=> Integer
664
+ # resp.import_job_properties.job_progress_report.total_number_of_resources_scanned #=> Integer
665
+ # resp.import_job_properties.job_progress_report.total_number_of_resources_imported #=> Integer
666
+ # resp.import_job_properties.job_progress_report.total_number_of_resources_with_customer_error #=> Integer
667
+ # resp.import_job_properties.job_progress_report.total_number_of_files_read_with_customer_error #=> Integer
668
+ # resp.import_job_properties.job_progress_report.throughput #=> Float
635
669
  # resp.import_job_properties.data_access_role_arn #=> String
636
670
  # resp.import_job_properties.message #=> String
637
671
  #
@@ -669,7 +703,7 @@ module Aws::HealthLake
669
703
  # resp = client.list_fhir_datastores({
670
704
  # filter: {
671
705
  # datastore_name: "DatastoreName",
672
- # datastore_status: "CREATING", # accepts CREATING, ACTIVE, DELETING, DELETED
706
+ # datastore_status: "CREATING", # accepts CREATING, ACTIVE, DELETING, DELETED, CREATE_FAILED
673
707
  # created_before: Time.now,
674
708
  # created_after: Time.now,
675
709
  # },
@@ -683,7 +717,7 @@ module Aws::HealthLake
683
717
  # resp.datastore_properties_list[0].datastore_id #=> String
684
718
  # resp.datastore_properties_list[0].datastore_arn #=> String
685
719
  # resp.datastore_properties_list[0].datastore_name #=> String
686
- # resp.datastore_properties_list[0].datastore_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "DELETED"
720
+ # resp.datastore_properties_list[0].datastore_status #=> String, one of "CREATING", "ACTIVE", "DELETING", "DELETED", "CREATE_FAILED"
687
721
  # resp.datastore_properties_list[0].created_at #=> Time
688
722
  # resp.datastore_properties_list[0].datastore_type_version #=> String, one of "R4"
689
723
  # resp.datastore_properties_list[0].datastore_endpoint #=> String
@@ -694,6 +728,8 @@ module Aws::HealthLake
694
728
  # resp.datastore_properties_list[0].identity_provider_configuration.fine_grained_authorization_enabled #=> Boolean
695
729
  # resp.datastore_properties_list[0].identity_provider_configuration.metadata #=> String
696
730
  # resp.datastore_properties_list[0].identity_provider_configuration.idp_lambda_arn #=> String
731
+ # resp.datastore_properties_list[0].error_cause.error_message #=> String
732
+ # resp.datastore_properties_list[0].error_cause.error_category #=> String, one of "RETRYABLE_ERROR", "NON_RETRYABLE_ERROR"
697
733
  # resp.next_token #=> String
698
734
  #
699
735
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRDatastores AWS API Documentation
@@ -841,6 +877,14 @@ module Aws::HealthLake
841
877
  # resp.import_job_properties_list[0].input_data_config.s3_uri #=> String
842
878
  # resp.import_job_properties_list[0].job_output_data_config.s3_configuration.s3_uri #=> String
843
879
  # resp.import_job_properties_list[0].job_output_data_config.s3_configuration.kms_key_id #=> String
880
+ # resp.import_job_properties_list[0].job_progress_report.total_number_of_scanned_files #=> Integer
881
+ # resp.import_job_properties_list[0].job_progress_report.total_size_of_scanned_files_in_mb #=> Float
882
+ # resp.import_job_properties_list[0].job_progress_report.total_number_of_imported_files #=> Integer
883
+ # resp.import_job_properties_list[0].job_progress_report.total_number_of_resources_scanned #=> Integer
884
+ # resp.import_job_properties_list[0].job_progress_report.total_number_of_resources_imported #=> Integer
885
+ # resp.import_job_properties_list[0].job_progress_report.total_number_of_resources_with_customer_error #=> Integer
886
+ # resp.import_job_properties_list[0].job_progress_report.total_number_of_files_read_with_customer_error #=> Integer
887
+ # resp.import_job_properties_list[0].job_progress_report.throughput #=> Float
844
888
  # resp.import_job_properties_list[0].data_access_role_arn #=> String
845
889
  # resp.import_job_properties_list[0].message #=> String
846
890
  # resp.next_token #=> String
@@ -1081,7 +1125,7 @@ module Aws::HealthLake
1081
1125
  params: params,
1082
1126
  config: config)
1083
1127
  context[:gem_name] = 'aws-sdk-healthlake'
1084
- context[:gem_version] = '1.25.0'
1128
+ context[:gem_version] = '1.27.0'
1085
1129
  Seahorse::Client::Request.new(handlers, context)
1086
1130
  end
1087
1131
 
@@ -40,9 +40,14 @@ module Aws::HealthLake
40
40
  DescribeFHIRImportJobRequest = Shapes::StructureShape.new(name: 'DescribeFHIRImportJobRequest')
41
41
  DescribeFHIRImportJobResponse = Shapes::StructureShape.new(name: 'DescribeFHIRImportJobResponse')
42
42
  EncryptionKeyID = Shapes::StringShape.new(name: 'EncryptionKeyID')
43
+ ErrorCategory = Shapes::StringShape.new(name: 'ErrorCategory')
44
+ ErrorCause = Shapes::StructureShape.new(name: 'ErrorCause')
45
+ ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
43
46
  ExportJobProperties = Shapes::StructureShape.new(name: 'ExportJobProperties')
44
47
  ExportJobPropertiesList = Shapes::ListShape.new(name: 'ExportJobPropertiesList')
45
48
  FHIRVersion = Shapes::StringShape.new(name: 'FHIRVersion')
49
+ GenericDouble = Shapes::FloatShape.new(name: 'GenericDouble')
50
+ GenericLong = Shapes::IntegerShape.new(name: 'GenericLong')
46
51
  IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
47
52
  IdentityProviderConfiguration = Shapes::StructureShape.new(name: 'IdentityProviderConfiguration')
48
53
  ImportJobProperties = Shapes::StructureShape.new(name: 'ImportJobProperties')
@@ -51,6 +56,7 @@ module Aws::HealthLake
51
56
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
52
57
  JobId = Shapes::StringShape.new(name: 'JobId')
53
58
  JobName = Shapes::StringShape.new(name: 'JobName')
59
+ JobProgressReport = Shapes::StructureShape.new(name: 'JobProgressReport')
54
60
  JobStatus = Shapes::StringShape.new(name: 'JobStatus')
55
61
  KmsEncryptionConfig = Shapes::StructureShape.new(name: 'KmsEncryptionConfig')
56
62
  LambdaArn = Shapes::StringShape.new(name: 'LambdaArn')
@@ -127,6 +133,7 @@ module Aws::HealthLake
127
133
  DatastoreProperties.add_member(:sse_configuration, Shapes::ShapeRef.new(shape: SseConfiguration, location_name: "SseConfiguration"))
128
134
  DatastoreProperties.add_member(:preload_data_config, Shapes::ShapeRef.new(shape: PreloadDataConfig, location_name: "PreloadDataConfig"))
129
135
  DatastoreProperties.add_member(:identity_provider_configuration, Shapes::ShapeRef.new(shape: IdentityProviderConfiguration, location_name: "IdentityProviderConfiguration"))
136
+ DatastoreProperties.add_member(:error_cause, Shapes::ShapeRef.new(shape: ErrorCause, location_name: "ErrorCause"))
130
137
  DatastoreProperties.struct_class = Types::DatastoreProperties
131
138
 
132
139
  DatastorePropertiesList.member = Shapes::ShapeRef.new(shape: DatastoreProperties)
@@ -160,6 +167,10 @@ module Aws::HealthLake
160
167
  DescribeFHIRImportJobResponse.add_member(:import_job_properties, Shapes::ShapeRef.new(shape: ImportJobProperties, required: true, location_name: "ImportJobProperties"))
161
168
  DescribeFHIRImportJobResponse.struct_class = Types::DescribeFHIRImportJobResponse
162
169
 
170
+ ErrorCause.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "ErrorMessage"))
171
+ ErrorCause.add_member(:error_category, Shapes::ShapeRef.new(shape: ErrorCategory, location_name: "ErrorCategory"))
172
+ ErrorCause.struct_class = Types::ErrorCause
173
+
163
174
  ExportJobProperties.add_member(:job_id, Shapes::ShapeRef.new(shape: JobId, required: true, location_name: "JobId"))
164
175
  ExportJobProperties.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, location_name: "JobName"))
165
176
  ExportJobProperties.add_member(:job_status, Shapes::ShapeRef.new(shape: JobStatus, required: true, location_name: "JobStatus"))
@@ -187,6 +198,7 @@ module Aws::HealthLake
187
198
  ImportJobProperties.add_member(:datastore_id, Shapes::ShapeRef.new(shape: DatastoreId, required: true, location_name: "DatastoreId"))
188
199
  ImportJobProperties.add_member(:input_data_config, Shapes::ShapeRef.new(shape: InputDataConfig, required: true, location_name: "InputDataConfig"))
189
200
  ImportJobProperties.add_member(:job_output_data_config, Shapes::ShapeRef.new(shape: OutputDataConfig, location_name: "JobOutputDataConfig"))
201
+ ImportJobProperties.add_member(:job_progress_report, Shapes::ShapeRef.new(shape: JobProgressReport, location_name: "JobProgressReport"))
190
202
  ImportJobProperties.add_member(:data_access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "DataAccessRoleArn"))
191
203
  ImportJobProperties.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
192
204
  ImportJobProperties.struct_class = Types::ImportJobProperties
@@ -202,6 +214,16 @@ module Aws::HealthLake
202
214
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
203
215
  InternalServerException.struct_class = Types::InternalServerException
204
216
 
217
+ JobProgressReport.add_member(:total_number_of_scanned_files, Shapes::ShapeRef.new(shape: GenericLong, location_name: "TotalNumberOfScannedFiles"))
218
+ JobProgressReport.add_member(:total_size_of_scanned_files_in_mb, Shapes::ShapeRef.new(shape: GenericDouble, location_name: "TotalSizeOfScannedFilesInMB"))
219
+ JobProgressReport.add_member(:total_number_of_imported_files, Shapes::ShapeRef.new(shape: GenericLong, location_name: "TotalNumberOfImportedFiles"))
220
+ JobProgressReport.add_member(:total_number_of_resources_scanned, Shapes::ShapeRef.new(shape: GenericLong, location_name: "TotalNumberOfResourcesScanned"))
221
+ JobProgressReport.add_member(:total_number_of_resources_imported, Shapes::ShapeRef.new(shape: GenericLong, location_name: "TotalNumberOfResourcesImported"))
222
+ JobProgressReport.add_member(:total_number_of_resources_with_customer_error, Shapes::ShapeRef.new(shape: GenericLong, location_name: "TotalNumberOfResourcesWithCustomerError"))
223
+ JobProgressReport.add_member(:total_number_of_files_read_with_customer_error, Shapes::ShapeRef.new(shape: GenericLong, location_name: "TotalNumberOfFilesReadWithCustomerError"))
224
+ JobProgressReport.add_member(:throughput, Shapes::ShapeRef.new(shape: GenericDouble, location_name: "Throughput"))
225
+ JobProgressReport.struct_class = Types::JobProgressReport
226
+
205
227
  KmsEncryptionConfig.add_member(:cmk_type, Shapes::ShapeRef.new(shape: CmkType, required: true, location_name: "CmkType"))
206
228
  KmsEncryptionConfig.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: EncryptionKeyID, location_name: "KmsKeyId"))
207
229
  KmsEncryptionConfig.struct_class = Types::KmsEncryptionConfig
@@ -32,7 +32,7 @@ module Aws::HealthLake
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://healthlake-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -198,6 +198,10 @@ module Aws::HealthLake
198
198
  # store.
199
199
  # @return [Types::IdentityProviderConfiguration]
200
200
  #
201
+ # @!attribute [rw] error_cause
202
+ # The error cause for the current data store operation.
203
+ # @return [Types::ErrorCause]
204
+ #
201
205
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/DatastoreProperties AWS API Documentation
202
206
  #
203
207
  class DatastoreProperties < Struct.new(
@@ -210,7 +214,8 @@ module Aws::HealthLake
210
214
  :datastore_endpoint,
211
215
  :sse_configuration,
212
216
  :preload_data_config,
213
- :identity_provider_configuration)
217
+ :identity_provider_configuration,
218
+ :error_cause)
214
219
  SENSITIVE = []
215
220
  include Aws::Structure
216
221
  end
@@ -334,7 +339,7 @@ module Aws::HealthLake
334
339
 
335
340
  # @!attribute [rw] import_job_properties
336
341
  # The properties of the Import job request, including the ID, ARN,
337
- # name, and the status of the job.
342
+ # name, status of the job, and the progress report of the job.
338
343
  # @return [Types::ImportJobProperties]
339
344
  #
340
345
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/DescribeFHIRImportJobResponse AWS API Documentation
@@ -345,6 +350,26 @@ module Aws::HealthLake
345
350
  include Aws::Structure
346
351
  end
347
352
 
353
+ # The error info of the create/delete data store operation.
354
+ #
355
+ # @!attribute [rw] error_message
356
+ # The text of the error message.
357
+ # @return [String]
358
+ #
359
+ # @!attribute [rw] error_category
360
+ # The error category of the create/delete data store operation.
361
+ # Possible statuses are RETRYABLE\_ERROR or NON\_RETRYABLE\_ERROR.
362
+ # @return [String]
363
+ #
364
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ErrorCause AWS API Documentation
365
+ #
366
+ class ErrorCause < Struct.new(
367
+ :error_message,
368
+ :error_category)
369
+ SENSITIVE = []
370
+ include Aws::Structure
371
+ end
372
+
348
373
  # The properties of a FHIR export job, including the ID, ARN, name, and
349
374
  # the status of the job.
350
375
  #
@@ -464,7 +489,7 @@ module Aws::HealthLake
464
489
  end
465
490
 
466
491
  # Displays the properties of the import job, including the ID, Arn,
467
- # Name, and the status of the data store.
492
+ # Name, the status of the job, and the progress report of the job.
468
493
  #
469
494
  # @!attribute [rw] job_id
470
495
  # The AWS-generated id number for the Import job.
@@ -501,6 +526,11 @@ module Aws::HealthLake
501
526
  # was created.
502
527
  # @return [Types::OutputDataConfig]
503
528
  #
529
+ # @!attribute [rw] job_progress_report
530
+ # Displays the progress of the import job, including total resources
531
+ # scanned, total resources ingested, and total size of data ingested.
532
+ # @return [Types::JobProgressReport]
533
+ #
504
534
  # @!attribute [rw] data_access_role_arn
505
535
  # The Amazon Resource Name (ARN) that gives AWS HealthLake access to
506
536
  # your input data.
@@ -522,6 +552,7 @@ module Aws::HealthLake
522
552
  :datastore_id,
523
553
  :input_data_config,
524
554
  :job_output_data_config,
555
+ :job_progress_report,
525
556
  :data_access_role_arn,
526
557
  :message)
527
558
  SENSITIVE = []
@@ -565,6 +596,56 @@ module Aws::HealthLake
565
596
  include Aws::Structure
566
597
  end
567
598
 
599
+ # The progress report of an import job.
600
+ #
601
+ # @!attribute [rw] total_number_of_scanned_files
602
+ # The number of files scanned from input S3 bucket.
603
+ # @return [Integer]
604
+ #
605
+ # @!attribute [rw] total_size_of_scanned_files_in_mb
606
+ # The size (in MB) of the files scanned from the input S3 bucket.
607
+ # @return [Float]
608
+ #
609
+ # @!attribute [rw] total_number_of_imported_files
610
+ # The number of files imported so far.
611
+ # @return [Integer]
612
+ #
613
+ # @!attribute [rw] total_number_of_resources_scanned
614
+ # The number of resources scanned from the input S3 bucket.
615
+ # @return [Integer]
616
+ #
617
+ # @!attribute [rw] total_number_of_resources_imported
618
+ # The number of resources imported so far.
619
+ # @return [Integer]
620
+ #
621
+ # @!attribute [rw] total_number_of_resources_with_customer_error
622
+ # The number of resources that failed due to customer error.
623
+ # @return [Integer]
624
+ #
625
+ # @!attribute [rw] total_number_of_files_read_with_customer_error
626
+ # The number of files that failed to be read from the input S3 bucket
627
+ # due to customer error.
628
+ # @return [Integer]
629
+ #
630
+ # @!attribute [rw] throughput
631
+ # The throughput (in MB/sec) of the import job.
632
+ # @return [Float]
633
+ #
634
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/JobProgressReport AWS API Documentation
635
+ #
636
+ class JobProgressReport < Struct.new(
637
+ :total_number_of_scanned_files,
638
+ :total_size_of_scanned_files_in_mb,
639
+ :total_number_of_imported_files,
640
+ :total_number_of_resources_scanned,
641
+ :total_number_of_resources_imported,
642
+ :total_number_of_resources_with_customer_error,
643
+ :total_number_of_files_read_with_customer_error,
644
+ :throughput)
645
+ SENSITIVE = []
646
+ include Aws::Structure
647
+ end
648
+
568
649
  # The customer-managed-key(CMK) used when creating a data store. If a
569
650
  # customer owned key is not specified, an AWS owned key will be used for
570
651
  # encryption.
@@ -748,7 +829,7 @@ module Aws::HealthLake
748
829
 
749
830
  # @!attribute [rw] import_job_properties_list
750
831
  # The properties of a listed FHIR import jobs, including the ID, ARN,
751
- # name, and the status of the job.
832
+ # name, the status of the job, and the progress report of the job.
752
833
  # @return [Array<Types::ImportJobProperties>]
753
834
  #
754
835
  # @!attribute [rw] next_token
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-healthlake/customizations'
52
52
  # @!group service
53
53
  module Aws::HealthLake
54
54
 
55
- GEM_VERSION = '1.25.0'
55
+ GEM_VERSION = '1.27.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -77,7 +77,7 @@ module Aws
77
77
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateFHIRDatastoreResponse]
78
78
  def datastore_id: () -> ::String
79
79
  def datastore_arn: () -> ::String
80
- def datastore_status: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED")
80
+ def datastore_status: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "CREATE_FAILED")
81
81
  def datastore_endpoint: () -> ::String
82
82
  end
83
83
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/HealthLake/Client.html#create_fhir_datastore-instance_method
@@ -113,7 +113,7 @@ module Aws
113
113
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFHIRDatastoreResponse]
114
114
  def datastore_id: () -> ::String
115
115
  def datastore_arn: () -> ::String
116
- def datastore_status: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED")
116
+ def datastore_status: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "CREATE_FAILED")
117
117
  def datastore_endpoint: () -> ::String
118
118
  end
119
119
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/HealthLake/Client.html#delete_fhir_datastore-instance_method
@@ -163,7 +163,7 @@ module Aws
163
163
  def list_fhir_datastores: (
164
164
  ?filter: {
165
165
  datastore_name: ::String?,
166
- datastore_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED")?,
166
+ datastore_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "CREATE_FAILED")?,
167
167
  created_before: ::Time?,
168
168
  created_after: ::Time?
169
169
  },
data/sig/types.rbs CHANGED
@@ -32,14 +32,14 @@ module Aws::HealthLake
32
32
  class CreateFHIRDatastoreResponse
33
33
  attr_accessor datastore_id: ::String
34
34
  attr_accessor datastore_arn: ::String
35
- attr_accessor datastore_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED")
35
+ attr_accessor datastore_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "CREATE_FAILED")
36
36
  attr_accessor datastore_endpoint: ::String
37
37
  SENSITIVE: []
38
38
  end
39
39
 
40
40
  class DatastoreFilter
41
41
  attr_accessor datastore_name: ::String
42
- attr_accessor datastore_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED")
42
+ attr_accessor datastore_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "CREATE_FAILED")
43
43
  attr_accessor created_before: ::Time
44
44
  attr_accessor created_after: ::Time
45
45
  SENSITIVE: []
@@ -49,13 +49,14 @@ module Aws::HealthLake
49
49
  attr_accessor datastore_id: ::String
50
50
  attr_accessor datastore_arn: ::String
51
51
  attr_accessor datastore_name: ::String
52
- attr_accessor datastore_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED")
52
+ attr_accessor datastore_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "CREATE_FAILED")
53
53
  attr_accessor created_at: ::Time
54
54
  attr_accessor datastore_type_version: ("R4")
55
55
  attr_accessor datastore_endpoint: ::String
56
56
  attr_accessor sse_configuration: Types::SseConfiguration
57
57
  attr_accessor preload_data_config: Types::PreloadDataConfig
58
58
  attr_accessor identity_provider_configuration: Types::IdentityProviderConfiguration
59
+ attr_accessor error_cause: Types::ErrorCause
59
60
  SENSITIVE: []
60
61
  end
61
62
 
@@ -67,7 +68,7 @@ module Aws::HealthLake
67
68
  class DeleteFHIRDatastoreResponse
68
69
  attr_accessor datastore_id: ::String
69
70
  attr_accessor datastore_arn: ::String
70
- attr_accessor datastore_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED")
71
+ attr_accessor datastore_status: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "CREATE_FAILED")
71
72
  attr_accessor datastore_endpoint: ::String
72
73
  SENSITIVE: []
73
74
  end
@@ -104,6 +105,12 @@ module Aws::HealthLake
104
105
  SENSITIVE: []
105
106
  end
106
107
 
108
+ class ErrorCause
109
+ attr_accessor error_message: ::String
110
+ attr_accessor error_category: ("RETRYABLE_ERROR" | "NON_RETRYABLE_ERROR")
111
+ SENSITIVE: []
112
+ end
113
+
107
114
  class ExportJobProperties
108
115
  attr_accessor job_id: ::String
109
116
  attr_accessor job_name: ::String
@@ -134,6 +141,7 @@ module Aws::HealthLake
134
141
  attr_accessor datastore_id: ::String
135
142
  attr_accessor input_data_config: Types::InputDataConfig
136
143
  attr_accessor job_output_data_config: Types::OutputDataConfig
144
+ attr_accessor job_progress_report: Types::JobProgressReport
137
145
  attr_accessor data_access_role_arn: ::String
138
146
  attr_accessor message: ::String
139
147
  SENSITIVE: []
@@ -155,6 +163,18 @@ module Aws::HealthLake
155
163
  SENSITIVE: []
156
164
  end
157
165
 
166
+ class JobProgressReport
167
+ attr_accessor total_number_of_scanned_files: ::Integer
168
+ attr_accessor total_size_of_scanned_files_in_mb: ::Float
169
+ attr_accessor total_number_of_imported_files: ::Integer
170
+ attr_accessor total_number_of_resources_scanned: ::Integer
171
+ attr_accessor total_number_of_resources_imported: ::Integer
172
+ attr_accessor total_number_of_resources_with_customer_error: ::Integer
173
+ attr_accessor total_number_of_files_read_with_customer_error: ::Integer
174
+ attr_accessor throughput: ::Float
175
+ SENSITIVE: []
176
+ end
177
+
158
178
  class KmsEncryptionConfig
159
179
  attr_accessor cmk_type: ("CUSTOMER_MANAGED_KMS_KEY" | "AWS_OWNED_KMS_KEY")
160
180
  attr_accessor kms_key_id: ::String
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.25.0
4
+ version: 1.27.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.0
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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement