aws-sdk-b2bi 1.3.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sig/resource.rbs ADDED
@@ -0,0 +1,80 @@
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 B2bi
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/B2bi/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/B2bi/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
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> void
73
+ | (?Hash[Symbol, untyped]) -> void
74
+
75
+ def client: () -> Client
76
+
77
+
78
+ end
79
+ end
80
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,541 @@
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::B2bi
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class CapabilityConfiguration
17
+ attr_accessor edi: Types::EdiConfiguration
18
+ attr_accessor unknown: untyped
19
+ SENSITIVE: []
20
+
21
+ class Edi < CapabilityConfiguration
22
+ end
23
+ class Unknown < CapabilityConfiguration
24
+ end
25
+ end
26
+
27
+ class CapabilitySummary
28
+ attr_accessor capability_id: ::String
29
+ attr_accessor name: ::String
30
+ attr_accessor type: ("edi")
31
+ attr_accessor created_at: ::Time
32
+ attr_accessor modified_at: ::Time
33
+ SENSITIVE: []
34
+ end
35
+
36
+ class ConflictException
37
+ attr_accessor message: ::String
38
+ SENSITIVE: []
39
+ end
40
+
41
+ class CreateCapabilityRequest
42
+ attr_accessor name: ::String
43
+ attr_accessor type: ("edi")
44
+ attr_accessor configuration: Types::CapabilityConfiguration
45
+ attr_accessor instructions_documents: ::Array[Types::S3Location]
46
+ attr_accessor client_token: ::String
47
+ attr_accessor tags: ::Array[Types::Tag]
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class CreateCapabilityResponse
52
+ attr_accessor capability_id: ::String
53
+ attr_accessor capability_arn: ::String
54
+ attr_accessor name: ::String
55
+ attr_accessor type: ("edi")
56
+ attr_accessor configuration: Types::CapabilityConfiguration
57
+ attr_accessor instructions_documents: ::Array[Types::S3Location]
58
+ attr_accessor created_at: ::Time
59
+ SENSITIVE: []
60
+ end
61
+
62
+ class CreatePartnershipRequest
63
+ attr_accessor profile_id: ::String
64
+ attr_accessor name: ::String
65
+ attr_accessor email: ::String
66
+ attr_accessor phone: ::String
67
+ attr_accessor capabilities: ::Array[::String]
68
+ attr_accessor client_token: ::String
69
+ attr_accessor tags: ::Array[Types::Tag]
70
+ SENSITIVE: [:email, :phone]
71
+ end
72
+
73
+ class CreatePartnershipResponse
74
+ attr_accessor profile_id: ::String
75
+ attr_accessor partnership_id: ::String
76
+ attr_accessor partnership_arn: ::String
77
+ attr_accessor name: ::String
78
+ attr_accessor email: ::String
79
+ attr_accessor phone: ::String
80
+ attr_accessor capabilities: ::Array[::String]
81
+ attr_accessor trading_partner_id: ::String
82
+ attr_accessor created_at: ::Time
83
+ SENSITIVE: [:email, :phone]
84
+ end
85
+
86
+ class CreateProfileRequest
87
+ attr_accessor name: ::String
88
+ attr_accessor email: ::String
89
+ attr_accessor phone: ::String
90
+ attr_accessor business_name: ::String
91
+ attr_accessor logging: ("ENABLED" | "DISABLED")
92
+ attr_accessor client_token: ::String
93
+ attr_accessor tags: ::Array[Types::Tag]
94
+ SENSITIVE: [:email, :phone]
95
+ end
96
+
97
+ class CreateProfileResponse
98
+ attr_accessor profile_id: ::String
99
+ attr_accessor profile_arn: ::String
100
+ attr_accessor name: ::String
101
+ attr_accessor business_name: ::String
102
+ attr_accessor phone: ::String
103
+ attr_accessor email: ::String
104
+ attr_accessor logging: ("ENABLED" | "DISABLED")
105
+ attr_accessor log_group_name: ::String
106
+ attr_accessor created_at: ::Time
107
+ SENSITIVE: [:phone, :email]
108
+ end
109
+
110
+ class CreateTransformerRequest
111
+ attr_accessor name: ::String
112
+ attr_accessor file_format: ("XML" | "JSON")
113
+ attr_accessor mapping_template: ::String
114
+ attr_accessor edi_type: Types::EdiType
115
+ attr_accessor sample_document: ::String
116
+ attr_accessor client_token: ::String
117
+ attr_accessor tags: ::Array[Types::Tag]
118
+ SENSITIVE: []
119
+ end
120
+
121
+ class CreateTransformerResponse
122
+ attr_accessor transformer_id: ::String
123
+ attr_accessor transformer_arn: ::String
124
+ attr_accessor name: ::String
125
+ attr_accessor file_format: ("XML" | "JSON")
126
+ attr_accessor mapping_template: ::String
127
+ attr_accessor status: ("active" | "inactive")
128
+ attr_accessor edi_type: Types::EdiType
129
+ attr_accessor sample_document: ::String
130
+ attr_accessor created_at: ::Time
131
+ SENSITIVE: []
132
+ end
133
+
134
+ class DeleteCapabilityRequest
135
+ attr_accessor capability_id: ::String
136
+ SENSITIVE: []
137
+ end
138
+
139
+ class DeletePartnershipRequest
140
+ attr_accessor partnership_id: ::String
141
+ SENSITIVE: []
142
+ end
143
+
144
+ class DeleteProfileRequest
145
+ attr_accessor profile_id: ::String
146
+ SENSITIVE: []
147
+ end
148
+
149
+ class DeleteTransformerRequest
150
+ attr_accessor transformer_id: ::String
151
+ SENSITIVE: []
152
+ end
153
+
154
+ class EdiConfiguration
155
+ attr_accessor type: Types::EdiType
156
+ attr_accessor input_location: Types::S3Location
157
+ attr_accessor output_location: Types::S3Location
158
+ attr_accessor transformer_id: ::String
159
+ SENSITIVE: []
160
+ end
161
+
162
+ class EdiType
163
+ attr_accessor x12_details: Types::X12Details
164
+ attr_accessor unknown: untyped
165
+ SENSITIVE: []
166
+
167
+ class X12Details < EdiType
168
+ end
169
+ class Unknown < EdiType
170
+ end
171
+ end
172
+
173
+ class GetCapabilityRequest
174
+ attr_accessor capability_id: ::String
175
+ SENSITIVE: []
176
+ end
177
+
178
+ class GetCapabilityResponse
179
+ attr_accessor capability_id: ::String
180
+ attr_accessor capability_arn: ::String
181
+ attr_accessor name: ::String
182
+ attr_accessor type: ("edi")
183
+ attr_accessor configuration: Types::CapabilityConfiguration
184
+ attr_accessor instructions_documents: ::Array[Types::S3Location]
185
+ attr_accessor created_at: ::Time
186
+ attr_accessor modified_at: ::Time
187
+ SENSITIVE: []
188
+ end
189
+
190
+ class GetPartnershipRequest
191
+ attr_accessor partnership_id: ::String
192
+ SENSITIVE: []
193
+ end
194
+
195
+ class GetPartnershipResponse
196
+ attr_accessor profile_id: ::String
197
+ attr_accessor partnership_id: ::String
198
+ attr_accessor partnership_arn: ::String
199
+ attr_accessor name: ::String
200
+ attr_accessor email: ::String
201
+ attr_accessor phone: ::String
202
+ attr_accessor capabilities: ::Array[::String]
203
+ attr_accessor trading_partner_id: ::String
204
+ attr_accessor created_at: ::Time
205
+ attr_accessor modified_at: ::Time
206
+ SENSITIVE: [:email, :phone]
207
+ end
208
+
209
+ class GetProfileRequest
210
+ attr_accessor profile_id: ::String
211
+ SENSITIVE: []
212
+ end
213
+
214
+ class GetProfileResponse
215
+ attr_accessor profile_id: ::String
216
+ attr_accessor profile_arn: ::String
217
+ attr_accessor name: ::String
218
+ attr_accessor email: ::String
219
+ attr_accessor phone: ::String
220
+ attr_accessor business_name: ::String
221
+ attr_accessor logging: ("ENABLED" | "DISABLED")
222
+ attr_accessor log_group_name: ::String
223
+ attr_accessor created_at: ::Time
224
+ attr_accessor modified_at: ::Time
225
+ SENSITIVE: [:email, :phone]
226
+ end
227
+
228
+ class GetTransformerJobRequest
229
+ attr_accessor transformer_job_id: ::String
230
+ attr_accessor transformer_id: ::String
231
+ SENSITIVE: []
232
+ end
233
+
234
+ class GetTransformerJobResponse
235
+ attr_accessor status: ("running" | "succeeded" | "failed")
236
+ attr_accessor output_files: ::Array[Types::S3Location]
237
+ attr_accessor message: ::String
238
+ SENSITIVE: []
239
+ end
240
+
241
+ class GetTransformerRequest
242
+ attr_accessor transformer_id: ::String
243
+ SENSITIVE: []
244
+ end
245
+
246
+ class GetTransformerResponse
247
+ attr_accessor transformer_id: ::String
248
+ attr_accessor transformer_arn: ::String
249
+ attr_accessor name: ::String
250
+ attr_accessor file_format: ("XML" | "JSON")
251
+ attr_accessor mapping_template: ::String
252
+ attr_accessor status: ("active" | "inactive")
253
+ attr_accessor edi_type: Types::EdiType
254
+ attr_accessor sample_document: ::String
255
+ attr_accessor created_at: ::Time
256
+ attr_accessor modified_at: ::Time
257
+ SENSITIVE: []
258
+ end
259
+
260
+ class InternalServerException
261
+ attr_accessor message: ::String
262
+ attr_accessor retry_after_seconds: ::Integer
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class ListCapabilitiesRequest
267
+ attr_accessor next_token: ::String
268
+ attr_accessor max_results: ::Integer
269
+ SENSITIVE: []
270
+ end
271
+
272
+ class ListCapabilitiesResponse
273
+ attr_accessor capabilities: ::Array[Types::CapabilitySummary]
274
+ attr_accessor next_token: ::String
275
+ SENSITIVE: []
276
+ end
277
+
278
+ class ListPartnershipsRequest
279
+ attr_accessor profile_id: ::String
280
+ attr_accessor next_token: ::String
281
+ attr_accessor max_results: ::Integer
282
+ SENSITIVE: []
283
+ end
284
+
285
+ class ListPartnershipsResponse
286
+ attr_accessor partnerships: ::Array[Types::PartnershipSummary]
287
+ attr_accessor next_token: ::String
288
+ SENSITIVE: []
289
+ end
290
+
291
+ class ListProfilesRequest
292
+ attr_accessor next_token: ::String
293
+ attr_accessor max_results: ::Integer
294
+ SENSITIVE: []
295
+ end
296
+
297
+ class ListProfilesResponse
298
+ attr_accessor profiles: ::Array[Types::ProfileSummary]
299
+ attr_accessor next_token: ::String
300
+ SENSITIVE: []
301
+ end
302
+
303
+ class ListTagsForResourceRequest
304
+ attr_accessor resource_arn: ::String
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class ListTagsForResourceResponse
309
+ attr_accessor tags: ::Array[Types::Tag]
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class ListTransformersRequest
314
+ attr_accessor next_token: ::String
315
+ attr_accessor max_results: ::Integer
316
+ SENSITIVE: []
317
+ end
318
+
319
+ class ListTransformersResponse
320
+ attr_accessor transformers: ::Array[Types::TransformerSummary]
321
+ attr_accessor next_token: ::String
322
+ SENSITIVE: []
323
+ end
324
+
325
+ class PartnershipSummary
326
+ attr_accessor profile_id: ::String
327
+ attr_accessor partnership_id: ::String
328
+ attr_accessor name: ::String
329
+ attr_accessor capabilities: ::Array[::String]
330
+ attr_accessor trading_partner_id: ::String
331
+ attr_accessor created_at: ::Time
332
+ attr_accessor modified_at: ::Time
333
+ SENSITIVE: []
334
+ end
335
+
336
+ class ProfileSummary
337
+ attr_accessor profile_id: ::String
338
+ attr_accessor name: ::String
339
+ attr_accessor business_name: ::String
340
+ attr_accessor logging: ("ENABLED" | "DISABLED")
341
+ attr_accessor log_group_name: ::String
342
+ attr_accessor created_at: ::Time
343
+ attr_accessor modified_at: ::Time
344
+ SENSITIVE: []
345
+ end
346
+
347
+ class ResourceNotFoundException
348
+ attr_accessor message: ::String
349
+ SENSITIVE: []
350
+ end
351
+
352
+ class S3Location
353
+ attr_accessor bucket_name: ::String
354
+ attr_accessor key: ::String
355
+ SENSITIVE: []
356
+ end
357
+
358
+ class ServiceQuotaExceededException
359
+ attr_accessor message: ::String
360
+ attr_accessor resource_id: ::String
361
+ attr_accessor resource_type: ::String
362
+ attr_accessor service_code: ::String
363
+ attr_accessor quota_code: ::String
364
+ SENSITIVE: []
365
+ end
366
+
367
+ class StartTransformerJobRequest
368
+ attr_accessor input_file: Types::S3Location
369
+ attr_accessor output_location: Types::S3Location
370
+ attr_accessor transformer_id: ::String
371
+ attr_accessor client_token: ::String
372
+ SENSITIVE: []
373
+ end
374
+
375
+ class StartTransformerJobResponse
376
+ attr_accessor transformer_job_id: ::String
377
+ SENSITIVE: []
378
+ end
379
+
380
+ class Tag
381
+ attr_accessor key: ::String
382
+ attr_accessor value: ::String
383
+ SENSITIVE: []
384
+ end
385
+
386
+ class TagResourceRequest
387
+ attr_accessor resource_arn: ::String
388
+ attr_accessor tags: ::Array[Types::Tag]
389
+ SENSITIVE: []
390
+ end
391
+
392
+ class TestMappingRequest
393
+ attr_accessor input_file_content: ::String
394
+ attr_accessor mapping_template: ::String
395
+ attr_accessor file_format: ("XML" | "JSON")
396
+ SENSITIVE: []
397
+ end
398
+
399
+ class TestMappingResponse
400
+ attr_accessor mapped_file_content: ::String
401
+ SENSITIVE: []
402
+ end
403
+
404
+ class TestParsingRequest
405
+ attr_accessor input_file: Types::S3Location
406
+ attr_accessor file_format: ("XML" | "JSON")
407
+ attr_accessor edi_type: Types::EdiType
408
+ SENSITIVE: []
409
+ end
410
+
411
+ class TestParsingResponse
412
+ attr_accessor parsed_file_content: ::String
413
+ SENSITIVE: []
414
+ end
415
+
416
+ class ThrottlingException
417
+ attr_accessor message: ::String
418
+ attr_accessor retry_after_seconds: ::Integer
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class TransformerSummary
423
+ attr_accessor transformer_id: ::String
424
+ attr_accessor name: ::String
425
+ attr_accessor file_format: ("XML" | "JSON")
426
+ attr_accessor mapping_template: ::String
427
+ attr_accessor status: ("active" | "inactive")
428
+ attr_accessor edi_type: Types::EdiType
429
+ attr_accessor sample_document: ::String
430
+ attr_accessor created_at: ::Time
431
+ attr_accessor modified_at: ::Time
432
+ SENSITIVE: []
433
+ end
434
+
435
+ class UntagResourceRequest
436
+ attr_accessor resource_arn: ::String
437
+ attr_accessor tag_keys: ::Array[::String]
438
+ SENSITIVE: []
439
+ end
440
+
441
+ class UpdateCapabilityRequest
442
+ attr_accessor capability_id: ::String
443
+ attr_accessor name: ::String
444
+ attr_accessor configuration: Types::CapabilityConfiguration
445
+ attr_accessor instructions_documents: ::Array[Types::S3Location]
446
+ SENSITIVE: []
447
+ end
448
+
449
+ class UpdateCapabilityResponse
450
+ attr_accessor capability_id: ::String
451
+ attr_accessor capability_arn: ::String
452
+ attr_accessor name: ::String
453
+ attr_accessor type: ("edi")
454
+ attr_accessor configuration: Types::CapabilityConfiguration
455
+ attr_accessor instructions_documents: ::Array[Types::S3Location]
456
+ attr_accessor created_at: ::Time
457
+ attr_accessor modified_at: ::Time
458
+ SENSITIVE: []
459
+ end
460
+
461
+ class UpdatePartnershipRequest
462
+ attr_accessor partnership_id: ::String
463
+ attr_accessor name: ::String
464
+ attr_accessor capabilities: ::Array[::String]
465
+ SENSITIVE: []
466
+ end
467
+
468
+ class UpdatePartnershipResponse
469
+ attr_accessor profile_id: ::String
470
+ attr_accessor partnership_id: ::String
471
+ attr_accessor partnership_arn: ::String
472
+ attr_accessor name: ::String
473
+ attr_accessor email: ::String
474
+ attr_accessor phone: ::String
475
+ attr_accessor capabilities: ::Array[::String]
476
+ attr_accessor trading_partner_id: ::String
477
+ attr_accessor created_at: ::Time
478
+ attr_accessor modified_at: ::Time
479
+ SENSITIVE: [:email, :phone]
480
+ end
481
+
482
+ class UpdateProfileRequest
483
+ attr_accessor profile_id: ::String
484
+ attr_accessor name: ::String
485
+ attr_accessor email: ::String
486
+ attr_accessor phone: ::String
487
+ attr_accessor business_name: ::String
488
+ SENSITIVE: [:email, :phone]
489
+ end
490
+
491
+ class UpdateProfileResponse
492
+ attr_accessor profile_id: ::String
493
+ attr_accessor profile_arn: ::String
494
+ attr_accessor name: ::String
495
+ attr_accessor email: ::String
496
+ attr_accessor phone: ::String
497
+ attr_accessor business_name: ::String
498
+ attr_accessor logging: ("ENABLED" | "DISABLED")
499
+ attr_accessor log_group_name: ::String
500
+ attr_accessor created_at: ::Time
501
+ attr_accessor modified_at: ::Time
502
+ SENSITIVE: [:email, :phone]
503
+ end
504
+
505
+ class UpdateTransformerRequest
506
+ attr_accessor transformer_id: ::String
507
+ attr_accessor name: ::String
508
+ attr_accessor file_format: ("XML" | "JSON")
509
+ attr_accessor mapping_template: ::String
510
+ attr_accessor status: ("active" | "inactive")
511
+ attr_accessor edi_type: Types::EdiType
512
+ attr_accessor sample_document: ::String
513
+ SENSITIVE: []
514
+ end
515
+
516
+ class UpdateTransformerResponse
517
+ attr_accessor transformer_id: ::String
518
+ attr_accessor transformer_arn: ::String
519
+ attr_accessor name: ::String
520
+ attr_accessor file_format: ("XML" | "JSON")
521
+ attr_accessor mapping_template: ::String
522
+ attr_accessor status: ("active" | "inactive")
523
+ attr_accessor edi_type: Types::EdiType
524
+ attr_accessor sample_document: ::String
525
+ attr_accessor created_at: ::Time
526
+ attr_accessor modified_at: ::Time
527
+ SENSITIVE: []
528
+ end
529
+
530
+ class ValidationException
531
+ attr_accessor message: ::String
532
+ SENSITIVE: []
533
+ end
534
+
535
+ class X12Details
536
+ attr_accessor transaction_set: ("X12_110" | "X12_180" | "X12_204" | "X12_210" | "X12_211" | "X12_214" | "X12_215" | "X12_259" | "X12_260" | "X12_266" | "X12_269" | "X12_270" | "X12_271" | "X12_274" | "X12_275" | "X12_276" | "X12_277" | "X12_278" | "X12_310" | "X12_315" | "X12_322" | "X12_404" | "X12_410" | "X12_417" | "X12_421" | "X12_426" | "X12_810" | "X12_820" | "X12_824" | "X12_830" | "X12_832" | "X12_834" | "X12_835" | "X12_837" | "X12_844" | "X12_846" | "X12_849" | "X12_850" | "X12_852" | "X12_855" | "X12_856" | "X12_860" | "X12_861" | "X12_864" | "X12_865" | "X12_869" | "X12_870" | "X12_940" | "X12_945" | "X12_990" | "X12_997" | "X12_999")
537
+ attr_accessor version: ("VERSION_4010" | "VERSION_4030" | "VERSION_5010")
538
+ SENSITIVE: []
539
+ end
540
+ end
541
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
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 B2bi
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-b2bi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.5.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-18 00:00:00.000000000 Z
11
+ date: 2024-03-29 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.188.0
22
+ version: 3.191.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.188.0
32
+ version: 3.191.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,6 +66,11 @@ files:
66
66
  - lib/aws-sdk-b2bi/plugins/endpoints.rb
67
67
  - lib/aws-sdk-b2bi/resource.rb
68
68
  - lib/aws-sdk-b2bi/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0