aws-sdk-marketplacecatalog 1.38.0 → 1.40.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,491 @@
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 MarketplaceCatalog
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/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 _BatchDescribeEntitiesResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchDescribeEntitiesResponse]
77
+ def entity_details: () -> ::Hash[::String, Types::EntityDetail]
78
+ def errors: () -> ::Hash[::String, Types::BatchDescribeErrorDetail]
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#batch_describe_entities-instance_method
81
+ def batch_describe_entities: (
82
+ entity_request_list: Array[
83
+ {
84
+ catalog: ::String,
85
+ entity_id: ::String
86
+ },
87
+ ]
88
+ ) -> _BatchDescribeEntitiesResponseSuccess
89
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDescribeEntitiesResponseSuccess
90
+
91
+ interface _CancelChangeSetResponseSuccess
92
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelChangeSetResponse]
93
+ def change_set_id: () -> ::String
94
+ def change_set_arn: () -> ::String
95
+ end
96
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#cancel_change_set-instance_method
97
+ def cancel_change_set: (
98
+ catalog: ::String,
99
+ change_set_id: ::String
100
+ ) -> _CancelChangeSetResponseSuccess
101
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelChangeSetResponseSuccess
102
+
103
+ interface _DeleteResourcePolicyResponseSuccess
104
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteResourcePolicyResponse]
105
+ end
106
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#delete_resource_policy-instance_method
107
+ def delete_resource_policy: (
108
+ resource_arn: ::String
109
+ ) -> _DeleteResourcePolicyResponseSuccess
110
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteResourcePolicyResponseSuccess
111
+
112
+ interface _DescribeChangeSetResponseSuccess
113
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChangeSetResponse]
114
+ def change_set_id: () -> ::String
115
+ def change_set_arn: () -> ::String
116
+ def change_set_name: () -> ::String
117
+ def intent: () -> ("VALIDATE" | "APPLY")
118
+ def start_time: () -> ::String
119
+ def end_time: () -> ::String
120
+ def status: () -> ("PREPARING" | "APPLYING" | "SUCCEEDED" | "CANCELLED" | "FAILED")
121
+ def failure_code: () -> ("CLIENT_ERROR" | "SERVER_FAULT")
122
+ def failure_description: () -> ::String
123
+ def change_set: () -> ::Array[Types::ChangeSummary]
124
+ end
125
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#describe_change_set-instance_method
126
+ def describe_change_set: (
127
+ catalog: ::String,
128
+ change_set_id: ::String
129
+ ) -> _DescribeChangeSetResponseSuccess
130
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeChangeSetResponseSuccess
131
+
132
+ interface _DescribeEntityResponseSuccess
133
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEntityResponse]
134
+ def entity_type: () -> ::String
135
+ def entity_identifier: () -> ::String
136
+ def entity_arn: () -> ::String
137
+ def last_modified_date: () -> ::String
138
+ def details: () -> ::String
139
+ def details_document: () -> untyped
140
+ end
141
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#describe_entity-instance_method
142
+ def describe_entity: (
143
+ catalog: ::String,
144
+ entity_id: ::String
145
+ ) -> _DescribeEntityResponseSuccess
146
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEntityResponseSuccess
147
+
148
+ interface _GetResourcePolicyResponseSuccess
149
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetResourcePolicyResponse]
150
+ def policy: () -> ::String
151
+ end
152
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#get_resource_policy-instance_method
153
+ def get_resource_policy: (
154
+ resource_arn: ::String
155
+ ) -> _GetResourcePolicyResponseSuccess
156
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetResourcePolicyResponseSuccess
157
+
158
+ interface _ListChangeSetsResponseSuccess
159
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListChangeSetsResponse]
160
+ def change_set_summary_list: () -> ::Array[Types::ChangeSetSummaryListItem]
161
+ def next_token: () -> ::String
162
+ end
163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#list_change_sets-instance_method
164
+ def list_change_sets: (
165
+ catalog: ::String,
166
+ ?filter_list: Array[
167
+ {
168
+ name: ::String?,
169
+ value_list: Array[::String]?
170
+ },
171
+ ],
172
+ ?sort: {
173
+ sort_by: ::String?,
174
+ sort_order: ("ASCENDING" | "DESCENDING")?
175
+ },
176
+ ?max_results: ::Integer,
177
+ ?next_token: ::String
178
+ ) -> _ListChangeSetsResponseSuccess
179
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListChangeSetsResponseSuccess
180
+
181
+ interface _ListEntitiesResponseSuccess
182
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEntitiesResponse]
183
+ def entity_summary_list: () -> ::Array[Types::EntitySummary]
184
+ def next_token: () -> ::String
185
+ end
186
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#list_entities-instance_method
187
+ def list_entities: (
188
+ catalog: ::String,
189
+ entity_type: ::String,
190
+ ?filter_list: Array[
191
+ {
192
+ name: ::String?,
193
+ value_list: Array[::String]?
194
+ },
195
+ ],
196
+ ?sort: {
197
+ sort_by: ::String?,
198
+ sort_order: ("ASCENDING" | "DESCENDING")?
199
+ },
200
+ ?next_token: ::String,
201
+ ?max_results: ::Integer,
202
+ ?ownership_type: ("SELF" | "SHARED"),
203
+ ?entity_type_filters: {
204
+ data_product_filters: {
205
+ entity_id: {
206
+ value_list: Array[::String]?
207
+ }?,
208
+ product_title: {
209
+ value_list: Array[::String]?,
210
+ wild_card_value: ::String?
211
+ }?,
212
+ visibility: {
213
+ value_list: Array[("Limited" | "Public" | "Restricted" | "Unavailable" | "Draft")]?
214
+ }?,
215
+ last_modified_date: {
216
+ date_range: {
217
+ after_value: ::String?,
218
+ before_value: ::String?
219
+ }?
220
+ }?
221
+ }?,
222
+ saa_s_product_filters: {
223
+ entity_id: {
224
+ value_list: Array[::String]?
225
+ }?,
226
+ product_title: {
227
+ value_list: Array[::String]?,
228
+ wild_card_value: ::String?
229
+ }?,
230
+ visibility: {
231
+ value_list: Array[("Limited" | "Public" | "Restricted" | "Draft")]?
232
+ }?,
233
+ last_modified_date: {
234
+ date_range: {
235
+ after_value: ::String?,
236
+ before_value: ::String?
237
+ }?
238
+ }?
239
+ }?,
240
+ ami_product_filters: {
241
+ entity_id: {
242
+ value_list: Array[::String]?
243
+ }?,
244
+ last_modified_date: {
245
+ date_range: {
246
+ after_value: ::String?,
247
+ before_value: ::String?
248
+ }?
249
+ }?,
250
+ product_title: {
251
+ value_list: Array[::String]?,
252
+ wild_card_value: ::String?
253
+ }?,
254
+ visibility: {
255
+ value_list: Array[("Limited" | "Public" | "Restricted" | "Draft")]?
256
+ }?
257
+ }?,
258
+ offer_filters: {
259
+ entity_id: {
260
+ value_list: Array[::String]?
261
+ }?,
262
+ name: {
263
+ value_list: Array[::String]?,
264
+ wild_card_value: ::String?
265
+ }?,
266
+ product_id: {
267
+ value_list: Array[::String]?
268
+ }?,
269
+ release_date: {
270
+ date_range: {
271
+ after_value: ::String?,
272
+ before_value: ::String?
273
+ }?
274
+ }?,
275
+ availability_end_date: {
276
+ date_range: {
277
+ after_value: ::String?,
278
+ before_value: ::String?
279
+ }?
280
+ }?,
281
+ buyer_accounts: {
282
+ wild_card_value: ::String?
283
+ }?,
284
+ state: {
285
+ value_list: Array[("Draft" | "Released")]?
286
+ }?,
287
+ targeting: {
288
+ value_list: Array[("BuyerAccounts" | "ParticipatingPrograms" | "CountryCodes" | "None")]?
289
+ }?,
290
+ last_modified_date: {
291
+ date_range: {
292
+ after_value: ::String?,
293
+ before_value: ::String?
294
+ }?
295
+ }?
296
+ }?,
297
+ container_product_filters: {
298
+ entity_id: {
299
+ value_list: Array[::String]?
300
+ }?,
301
+ last_modified_date: {
302
+ date_range: {
303
+ after_value: ::String?,
304
+ before_value: ::String?
305
+ }?
306
+ }?,
307
+ product_title: {
308
+ value_list: Array[::String]?,
309
+ wild_card_value: ::String?
310
+ }?,
311
+ visibility: {
312
+ value_list: Array[("Limited" | "Public" | "Restricted" | "Draft")]?
313
+ }?
314
+ }?,
315
+ resale_authorization_filters: {
316
+ entity_id: {
317
+ value_list: Array[::String]?
318
+ }?,
319
+ name: {
320
+ value_list: Array[::String]?,
321
+ wild_card_value: ::String?
322
+ }?,
323
+ product_id: {
324
+ value_list: Array[::String]?,
325
+ wild_card_value: ::String?
326
+ }?,
327
+ created_date: {
328
+ date_range: {
329
+ after_value: ::String?,
330
+ before_value: ::String?
331
+ }?,
332
+ value_list: Array[::String]?
333
+ }?,
334
+ availability_end_date: {
335
+ date_range: {
336
+ after_value: ::String?,
337
+ before_value: ::String?
338
+ }?,
339
+ value_list: Array[::String]?
340
+ }?,
341
+ manufacturer_account_id: {
342
+ value_list: Array[::String]?,
343
+ wild_card_value: ::String?
344
+ }?,
345
+ product_name: {
346
+ value_list: Array[::String]?,
347
+ wild_card_value: ::String?
348
+ }?,
349
+ manufacturer_legal_name: {
350
+ value_list: Array[::String]?,
351
+ wild_card_value: ::String?
352
+ }?,
353
+ reseller_account_id: {
354
+ value_list: Array[::String]?,
355
+ wild_card_value: ::String?
356
+ }?,
357
+ reseller_legal_name: {
358
+ value_list: Array[::String]?,
359
+ wild_card_value: ::String?
360
+ }?,
361
+ status: {
362
+ value_list: Array[("Draft" | "Active" | "Restricted")]?
363
+ }?,
364
+ offer_extended_status: {
365
+ value_list: Array[::String]?
366
+ }?,
367
+ last_modified_date: {
368
+ date_range: {
369
+ after_value: ::String?,
370
+ before_value: ::String?
371
+ }?
372
+ }?
373
+ }?
374
+ },
375
+ ?entity_type_sort: {
376
+ data_product_sort: {
377
+ sort_by: ("EntityId" | "ProductTitle" | "Visibility" | "LastModifiedDate")?,
378
+ sort_order: ("ASCENDING" | "DESCENDING")?
379
+ }?,
380
+ saa_s_product_sort: {
381
+ sort_by: ("EntityId" | "ProductTitle" | "Visibility" | "LastModifiedDate")?,
382
+ sort_order: ("ASCENDING" | "DESCENDING")?
383
+ }?,
384
+ ami_product_sort: {
385
+ sort_by: ("EntityId" | "LastModifiedDate" | "ProductTitle" | "Visibility")?,
386
+ sort_order: ("ASCENDING" | "DESCENDING")?
387
+ }?,
388
+ offer_sort: {
389
+ sort_by: ("EntityId" | "Name" | "ProductId" | "ReleaseDate" | "AvailabilityEndDate" | "BuyerAccounts" | "State" | "Targeting" | "LastModifiedDate")?,
390
+ sort_order: ("ASCENDING" | "DESCENDING")?
391
+ }?,
392
+ container_product_sort: {
393
+ sort_by: ("EntityId" | "LastModifiedDate" | "ProductTitle" | "Visibility")?,
394
+ sort_order: ("ASCENDING" | "DESCENDING")?
395
+ }?,
396
+ resale_authorization_sort: {
397
+ sort_by: ("EntityId" | "Name" | "ProductId" | "ProductName" | "ManufacturerAccountId" | "ManufacturerLegalName" | "ResellerAccountID" | "ResellerLegalName" | "Status" | "OfferExtendedStatus" | "CreatedDate" | "AvailabilityEndDate" | "LastModifiedDate")?,
398
+ sort_order: ("ASCENDING" | "DESCENDING")?
399
+ }?
400
+ }
401
+ ) -> _ListEntitiesResponseSuccess
402
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntitiesResponseSuccess
403
+
404
+ interface _ListTagsForResourceResponseSuccess
405
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
406
+ def resource_arn: () -> ::String
407
+ def tags: () -> ::Array[Types::Tag]
408
+ end
409
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#list_tags_for_resource-instance_method
410
+ def list_tags_for_resource: (
411
+ resource_arn: ::String
412
+ ) -> _ListTagsForResourceResponseSuccess
413
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
414
+
415
+ interface _PutResourcePolicyResponseSuccess
416
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutResourcePolicyResponse]
417
+ end
418
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#put_resource_policy-instance_method
419
+ def put_resource_policy: (
420
+ resource_arn: ::String,
421
+ policy: ::String
422
+ ) -> _PutResourcePolicyResponseSuccess
423
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutResourcePolicyResponseSuccess
424
+
425
+ interface _StartChangeSetResponseSuccess
426
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartChangeSetResponse]
427
+ def change_set_id: () -> ::String
428
+ def change_set_arn: () -> ::String
429
+ end
430
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#start_change_set-instance_method
431
+ def start_change_set: (
432
+ catalog: ::String,
433
+ change_set: Array[
434
+ {
435
+ change_type: ::String,
436
+ entity: {
437
+ type: ::String,
438
+ identifier: ::String?
439
+ },
440
+ entity_tags: Array[
441
+ {
442
+ key: ::String,
443
+ value: ::String
444
+ },
445
+ ]?,
446
+ details: ::String?,
447
+ details_document: {
448
+ }?,
449
+ change_name: ::String?
450
+ },
451
+ ],
452
+ ?change_set_name: ::String,
453
+ ?client_request_token: ::String,
454
+ ?change_set_tags: Array[
455
+ {
456
+ key: ::String,
457
+ value: ::String
458
+ },
459
+ ],
460
+ ?intent: ("VALIDATE" | "APPLY")
461
+ ) -> _StartChangeSetResponseSuccess
462
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChangeSetResponseSuccess
463
+
464
+ interface _TagResourceResponseSuccess
465
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
466
+ end
467
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#tag_resource-instance_method
468
+ def tag_resource: (
469
+ resource_arn: ::String,
470
+ tags: Array[
471
+ {
472
+ key: ::String,
473
+ value: ::String
474
+ },
475
+ ]
476
+ ) -> _TagResourceResponseSuccess
477
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
478
+
479
+ interface _UntagResourceResponseSuccess
480
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
481
+ end
482
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Client.html#untag_resource-instance_method
483
+ def untag_resource: (
484
+ resource_arn: ::String,
485
+ tag_keys: Array[::String]
486
+ ) -> _UntagResourceResponseSuccess
487
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
488
+ end
489
+ end
490
+ end
491
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,40 @@
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 MarketplaceCatalog
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 InternalServiceException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class ResourceInUseException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ class ResourceNotSupportedException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ end
29
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ end
32
+ class ThrottlingException < ::Aws::Errors::ServiceError
33
+ def message: () -> ::String
34
+ end
35
+ class ValidationException < ::Aws::Errors::ServiceError
36
+ def message: () -> ::String
37
+ end
38
+ end
39
+ end
40
+ 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 MarketplaceCatalog
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MarketplaceCatalog/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