aws-sdk-medicalimaging 1.5.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
data/sig/client.rbs ADDED
@@ -0,0 +1,363 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module MedicalImaging
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _CopyImageSetResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CopyImageSetResponse]
77
+ def datastore_id: () -> ::String
78
+ def source_image_set_properties: () -> Types::CopySourceImageSetProperties
79
+ def destination_image_set_properties: () -> Types::CopyDestinationImageSetProperties
80
+ end
81
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#copy_image_set-instance_method
82
+ def copy_image_set: (
83
+ datastore_id: ::String,
84
+ source_image_set_id: ::String,
85
+ copy_image_set_information: {
86
+ source_image_set: {
87
+ latest_version_id: ::String
88
+ },
89
+ destination_image_set: {
90
+ image_set_id: ::String,
91
+ latest_version_id: ::String
92
+ }?
93
+ }
94
+ ) -> _CopyImageSetResponseSuccess
95
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyImageSetResponseSuccess
96
+
97
+ interface _CreateDatastoreResponseSuccess
98
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDatastoreResponse]
99
+ def datastore_id: () -> ::String
100
+ def datastore_status: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETED")
101
+ end
102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#create_datastore-instance_method
103
+ def create_datastore: (
104
+ ?datastore_name: ::String,
105
+ client_token: ::String,
106
+ ?tags: Hash[::String, ::String],
107
+ ?kms_key_arn: ::String
108
+ ) -> _CreateDatastoreResponseSuccess
109
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDatastoreResponseSuccess
110
+
111
+ interface _DeleteDatastoreResponseSuccess
112
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDatastoreResponse]
113
+ def datastore_id: () -> ::String
114
+ def datastore_status: () -> ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETED")
115
+ end
116
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#delete_datastore-instance_method
117
+ def delete_datastore: (
118
+ datastore_id: ::String
119
+ ) -> _DeleteDatastoreResponseSuccess
120
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDatastoreResponseSuccess
121
+
122
+ interface _DeleteImageSetResponseSuccess
123
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteImageSetResponse]
124
+ def datastore_id: () -> ::String
125
+ def image_set_id: () -> ::String
126
+ def image_set_state: () -> ("ACTIVE" | "LOCKED" | "DELETED")
127
+ def image_set_workflow_status: () -> ("CREATED" | "COPIED" | "COPYING" | "COPYING_WITH_READ_ONLY_ACCESS" | "COPY_FAILED" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETED")
128
+ end
129
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#delete_image_set-instance_method
130
+ def delete_image_set: (
131
+ datastore_id: ::String,
132
+ image_set_id: ::String
133
+ ) -> _DeleteImageSetResponseSuccess
134
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteImageSetResponseSuccess
135
+
136
+ interface _GetDICOMImportJobResponseSuccess
137
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDICOMImportJobResponse]
138
+ def job_properties: () -> Types::DICOMImportJobProperties
139
+ end
140
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#get_dicom_import_job-instance_method
141
+ def get_dicom_import_job: (
142
+ datastore_id: ::String,
143
+ job_id: ::String
144
+ ) -> _GetDICOMImportJobResponseSuccess
145
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDICOMImportJobResponseSuccess
146
+
147
+ interface _GetDatastoreResponseSuccess
148
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDatastoreResponse]
149
+ def datastore_properties: () -> Types::DatastoreProperties
150
+ end
151
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#get_datastore-instance_method
152
+ def get_datastore: (
153
+ datastore_id: ::String
154
+ ) -> _GetDatastoreResponseSuccess
155
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDatastoreResponseSuccess
156
+
157
+ interface _GetImageFrameResponseSuccess
158
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetImageFrameResponse]
159
+ def image_frame_blob: () -> ::IO
160
+ def content_type: () -> ::String
161
+ end
162
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#get_image_frame-instance_method
163
+ def get_image_frame: (
164
+ datastore_id: ::String,
165
+ image_set_id: ::String,
166
+ image_frame_information: {
167
+ image_frame_id: ::String
168
+ }
169
+ ) ?{ (*untyped) -> void } -> _GetImageFrameResponseSuccess
170
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetImageFrameResponseSuccess
171
+
172
+ interface _GetImageSetResponseSuccess
173
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetImageSetResponse]
174
+ def datastore_id: () -> ::String
175
+ def image_set_id: () -> ::String
176
+ def version_id: () -> ::String
177
+ def image_set_state: () -> ("ACTIVE" | "LOCKED" | "DELETED")
178
+ def image_set_workflow_status: () -> ("CREATED" | "COPIED" | "COPYING" | "COPYING_WITH_READ_ONLY_ACCESS" | "COPY_FAILED" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETED")
179
+ def created_at: () -> ::Time
180
+ def updated_at: () -> ::Time
181
+ def deleted_at: () -> ::Time
182
+ def message: () -> ::String
183
+ def image_set_arn: () -> ::String
184
+ end
185
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#get_image_set-instance_method
186
+ def get_image_set: (
187
+ datastore_id: ::String,
188
+ image_set_id: ::String,
189
+ ?version_id: ::String
190
+ ) -> _GetImageSetResponseSuccess
191
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetImageSetResponseSuccess
192
+
193
+ interface _GetImageSetMetadataResponseSuccess
194
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetImageSetMetadataResponse]
195
+ def image_set_metadata_blob: () -> ::IO
196
+ def content_type: () -> ::String
197
+ def content_encoding: () -> ::String
198
+ end
199
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#get_image_set_metadata-instance_method
200
+ def get_image_set_metadata: (
201
+ datastore_id: ::String,
202
+ image_set_id: ::String,
203
+ ?version_id: ::String
204
+ ) ?{ (*untyped) -> void } -> _GetImageSetMetadataResponseSuccess
205
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetImageSetMetadataResponseSuccess
206
+
207
+ interface _ListDICOMImportJobsResponseSuccess
208
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDICOMImportJobsResponse]
209
+ def job_summaries: () -> ::Array[Types::DICOMImportJobSummary]
210
+ def next_token: () -> ::String
211
+ end
212
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#list_dicom_import_jobs-instance_method
213
+ def list_dicom_import_jobs: (
214
+ datastore_id: ::String,
215
+ ?job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED"),
216
+ ?next_token: ::String,
217
+ ?max_results: ::Integer
218
+ ) -> _ListDICOMImportJobsResponseSuccess
219
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDICOMImportJobsResponseSuccess
220
+
221
+ interface _ListDatastoresResponseSuccess
222
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDatastoresResponse]
223
+ def datastore_summaries: () -> ::Array[Types::DatastoreSummary]
224
+ def next_token: () -> ::String
225
+ end
226
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#list_datastores-instance_method
227
+ def list_datastores: (
228
+ ?datastore_status: ("CREATING" | "CREATE_FAILED" | "ACTIVE" | "DELETING" | "DELETED"),
229
+ ?next_token: ::String,
230
+ ?max_results: ::Integer
231
+ ) -> _ListDatastoresResponseSuccess
232
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatastoresResponseSuccess
233
+
234
+ interface _ListImageSetVersionsResponseSuccess
235
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListImageSetVersionsResponse]
236
+ def image_set_properties_list: () -> ::Array[Types::ImageSetProperties]
237
+ def next_token: () -> ::String
238
+ end
239
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#list_image_set_versions-instance_method
240
+ def list_image_set_versions: (
241
+ datastore_id: ::String,
242
+ image_set_id: ::String,
243
+ ?next_token: ::String,
244
+ ?max_results: ::Integer
245
+ ) -> _ListImageSetVersionsResponseSuccess
246
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListImageSetVersionsResponseSuccess
247
+
248
+ interface _ListTagsForResourceResponseSuccess
249
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
250
+ def tags: () -> ::Hash[::String, ::String]
251
+ end
252
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#list_tags_for_resource-instance_method
253
+ def list_tags_for_resource: (
254
+ resource_arn: ::String
255
+ ) -> _ListTagsForResourceResponseSuccess
256
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
257
+
258
+ interface _SearchImageSetsResponseSuccess
259
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchImageSetsResponse]
260
+ def image_sets_metadata_summaries: () -> ::Array[Types::ImageSetsMetadataSummary]
261
+ def sort: () -> Types::Sort
262
+ def next_token: () -> ::String
263
+ end
264
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#search_image_sets-instance_method
265
+ def search_image_sets: (
266
+ datastore_id: ::String,
267
+ ?search_criteria: {
268
+ filters: Array[
269
+ {
270
+ values: Array[
271
+ {
272
+ dicom_patient_id: ::String?,
273
+ dicom_accession_number: ::String?,
274
+ dicom_study_id: ::String?,
275
+ dicom_study_instance_uid: ::String?,
276
+ dicom_series_instance_uid: ::String?,
277
+ created_at: ::Time?,
278
+ updated_at: ::Time?,
279
+ dicom_study_date_and_time: {
280
+ dicom_study_date: ::String,
281
+ dicom_study_time: ::String?
282
+ }?
283
+ },
284
+ ],
285
+ operator: ("EQUAL" | "BETWEEN")
286
+ },
287
+ ]?,
288
+ sort: {
289
+ sort_order: ("ASC" | "DESC"),
290
+ sort_field: ("updatedAt" | "createdAt" | "DICOMStudyDateAndTime")
291
+ }?
292
+ },
293
+ ?max_results: ::Integer,
294
+ ?next_token: ::String
295
+ ) -> _SearchImageSetsResponseSuccess
296
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchImageSetsResponseSuccess
297
+
298
+ interface _StartDICOMImportJobResponseSuccess
299
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartDICOMImportJobResponse]
300
+ def datastore_id: () -> ::String
301
+ def job_id: () -> ::String
302
+ def job_status: () -> ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "FAILED")
303
+ def submitted_at: () -> ::Time
304
+ end
305
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#start_dicom_import_job-instance_method
306
+ def start_dicom_import_job: (
307
+ ?job_name: ::String,
308
+ data_access_role_arn: ::String,
309
+ client_token: ::String,
310
+ datastore_id: ::String,
311
+ input_s3_uri: ::String,
312
+ output_s3_uri: ::String
313
+ ) -> _StartDICOMImportJobResponseSuccess
314
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDICOMImportJobResponseSuccess
315
+
316
+ interface _TagResourceResponseSuccess
317
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
318
+ end
319
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#tag_resource-instance_method
320
+ def tag_resource: (
321
+ resource_arn: ::String,
322
+ tags: Hash[::String, ::String]
323
+ ) -> _TagResourceResponseSuccess
324
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
325
+
326
+ interface _UntagResourceResponseSuccess
327
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
328
+ end
329
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#untag_resource-instance_method
330
+ def untag_resource: (
331
+ resource_arn: ::String,
332
+ tag_keys: Array[::String]
333
+ ) -> _UntagResourceResponseSuccess
334
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
335
+
336
+ interface _UpdateImageSetMetadataResponseSuccess
337
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateImageSetMetadataResponse]
338
+ def datastore_id: () -> ::String
339
+ def image_set_id: () -> ::String
340
+ def latest_version_id: () -> ::String
341
+ def image_set_state: () -> ("ACTIVE" | "LOCKED" | "DELETED")
342
+ def image_set_workflow_status: () -> ("CREATED" | "COPIED" | "COPYING" | "COPYING_WITH_READ_ONLY_ACCESS" | "COPY_FAILED" | "UPDATING" | "UPDATED" | "UPDATE_FAILED" | "DELETING" | "DELETED")
343
+ def created_at: () -> ::Time
344
+ def updated_at: () -> ::Time
345
+ def message: () -> ::String
346
+ end
347
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Client.html#update_image_set_metadata-instance_method
348
+ def update_image_set_metadata: (
349
+ datastore_id: ::String,
350
+ image_set_id: ::String,
351
+ latest_version_id: ::String,
352
+ update_image_set_metadata_updates: {
353
+ dicom_updates: {
354
+ removable_attributes: ::String?,
355
+ updatable_attributes: ::String?
356
+ }?
357
+ }
358
+ ) -> _UpdateImageSetMetadataResponseSuccess
359
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateImageSetMetadataResponseSuccess
360
+ end
361
+ end
362
+ end
363
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,37 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module MedicalImaging
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ConflictException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class InternalServerException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class ThrottlingException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ end
32
+ class ValidationException < ::Aws::Errors::ServiceError
33
+ def message: () -> ::String
34
+ end
35
+ end
36
+ end
37
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,79 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module MedicalImaging
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MedicalImaging/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> void
72
+ | (?Hash[Symbol, untyped]) -> void
73
+
74
+ def client: () -> Client
75
+
76
+
77
+ end
78
+ end
79
+ end