aws-sdk-b2bi 1.30.0 → 1.32.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-b2bi/client.rb +317 -7
- data/lib/aws-sdk-b2bi/client_api.rb +83 -26
- data/lib/aws-sdk-b2bi/types.rb +267 -11
- data/lib/aws-sdk-b2bi/waiters.rb +120 -0
- data/lib/aws-sdk-b2bi.rb +2 -1
- data/sig/client.rbs +69 -2
- data/sig/types.rbs +52 -0
- data/sig/waiters.rbs +11 -0
- metadata +5 -4
data/sig/types.rbs
CHANGED
@@ -13,6 +13,11 @@ module Aws::B2bi
|
|
13
13
|
SENSITIVE: []
|
14
14
|
end
|
15
15
|
|
16
|
+
class AdvancedOptions
|
17
|
+
attr_accessor x12: Types::X12AdvancedOptions
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
16
21
|
class CapabilityConfiguration
|
17
22
|
attr_accessor edi: Types::EdiConfiguration
|
18
23
|
attr_accessor unknown: untyped
|
@@ -26,6 +31,7 @@ module Aws::B2bi
|
|
26
31
|
|
27
32
|
class CapabilityOptions
|
28
33
|
attr_accessor outbound_edi: Types::OutboundEdiOptions
|
34
|
+
attr_accessor inbound_edi: Types::InboundEdiOptions
|
29
35
|
SENSITIVE: []
|
30
36
|
end
|
31
37
|
|
@@ -338,9 +344,15 @@ module Aws::B2bi
|
|
338
344
|
SENSITIVE: []
|
339
345
|
end
|
340
346
|
|
347
|
+
class InboundEdiOptions
|
348
|
+
attr_accessor x12: Types::X12InboundEdiOptions
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
341
352
|
class InputConversion
|
342
353
|
attr_accessor from_format: ("X12")
|
343
354
|
attr_accessor format_options: Types::FormatOptions
|
355
|
+
attr_accessor advanced_options: Types::AdvancedOptions
|
344
356
|
SENSITIVE: []
|
345
357
|
end
|
346
358
|
|
@@ -573,11 +585,13 @@ module Aws::B2bi
|
|
573
585
|
attr_accessor input_file: Types::S3Location
|
574
586
|
attr_accessor file_format: ("XML" | "JSON" | "NOT_USED")
|
575
587
|
attr_accessor edi_type: Types::EdiType
|
588
|
+
attr_accessor advanced_options: Types::AdvancedOptions
|
576
589
|
SENSITIVE: []
|
577
590
|
end
|
578
591
|
|
579
592
|
class TestParsingResponse
|
580
593
|
attr_accessor parsed_file_content: ::String
|
594
|
+
attr_accessor parsed_split_file_contents: ::Array[::String]
|
581
595
|
SENSITIVE: []
|
582
596
|
end
|
583
597
|
|
@@ -714,6 +728,31 @@ module Aws::B2bi
|
|
714
728
|
SENSITIVE: []
|
715
729
|
end
|
716
730
|
|
731
|
+
class WrapOptions
|
732
|
+
attr_accessor wrap_by: ("SEGMENT" | "ONE_LINE" | "LINE_LENGTH")
|
733
|
+
attr_accessor line_terminator: ("CRLF" | "LF" | "CR")
|
734
|
+
attr_accessor line_length: ::Integer
|
735
|
+
SENSITIVE: []
|
736
|
+
end
|
737
|
+
|
738
|
+
class X12AcknowledgmentOptions
|
739
|
+
attr_accessor functional_acknowledgment: ("DO_NOT_GENERATE" | "GENERATE_ALL_SEGMENTS" | "GENERATE_WITHOUT_TRANSACTION_SET_RESPONSE_LOOP")
|
740
|
+
attr_accessor technical_acknowledgment: ("DO_NOT_GENERATE" | "GENERATE_ALL_SEGMENTS")
|
741
|
+
SENSITIVE: []
|
742
|
+
end
|
743
|
+
|
744
|
+
class X12AdvancedOptions
|
745
|
+
attr_accessor split_options: Types::X12SplitOptions
|
746
|
+
SENSITIVE: []
|
747
|
+
end
|
748
|
+
|
749
|
+
class X12ControlNumbers
|
750
|
+
attr_accessor starting_interchange_control_number: ::Integer
|
751
|
+
attr_accessor starting_functional_group_control_number: ::Integer
|
752
|
+
attr_accessor starting_transaction_set_control_number: ::Integer
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
717
756
|
class X12Delimiters
|
718
757
|
attr_accessor component_separator: ::String
|
719
758
|
attr_accessor data_element_separator: ::String
|
@@ -729,6 +768,7 @@ module Aws::B2bi
|
|
729
768
|
|
730
769
|
class X12Envelope
|
731
770
|
attr_accessor common: Types::X12OutboundEdiHeaders
|
771
|
+
attr_accessor wrap_options: Types::WrapOptions
|
732
772
|
SENSITIVE: []
|
733
773
|
end
|
734
774
|
|
@@ -739,6 +779,11 @@ module Aws::B2bi
|
|
739
779
|
SENSITIVE: []
|
740
780
|
end
|
741
781
|
|
782
|
+
class X12InboundEdiOptions
|
783
|
+
attr_accessor acknowledgment_options: Types::X12AcknowledgmentOptions
|
784
|
+
SENSITIVE: []
|
785
|
+
end
|
786
|
+
|
742
787
|
class X12InterchangeControlHeaders
|
743
788
|
attr_accessor sender_id_qualifier: ::String
|
744
789
|
attr_accessor sender_id: ::String
|
@@ -755,6 +800,13 @@ module Aws::B2bi
|
|
755
800
|
attr_accessor functional_group_headers: Types::X12FunctionalGroupHeaders
|
756
801
|
attr_accessor delimiters: Types::X12Delimiters
|
757
802
|
attr_accessor validate_edi: bool
|
803
|
+
attr_accessor control_numbers: Types::X12ControlNumbers
|
804
|
+
attr_accessor gs05_time_format: ("HHMM" | "HHMMSS" | "HHMMSSDD")
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class X12SplitOptions
|
809
|
+
attr_accessor split_by: ("NONE" | "TRANSACTION")
|
758
810
|
SENSITIVE: []
|
759
811
|
end
|
760
812
|
end
|
data/sig/waiters.rbs
CHANGED
@@ -8,6 +8,17 @@
|
|
8
8
|
module Aws
|
9
9
|
module B2bi
|
10
10
|
module Waiters
|
11
|
+
|
12
|
+
class TransformerJobSucceeded
|
13
|
+
def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
|
14
|
+
| (?Hash[Symbol, untyped]) -> void
|
15
|
+
|
16
|
+
def wait: (
|
17
|
+
transformer_job_id: ::String,
|
18
|
+
transformer_id: ::String
|
19
|
+
) -> Client::_GetTransformerJobResponseSuccess
|
20
|
+
| (Hash[Symbol, untyped]) -> Client::_GetTransformerJobResponseSuccess
|
21
|
+
end
|
11
22
|
end
|
12
23
|
end
|
13
24
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-b2bi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.225.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.225.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -65,6 +65,7 @@ files:
|
|
65
65
|
- lib/aws-sdk-b2bi/plugins/endpoints.rb
|
66
66
|
- lib/aws-sdk-b2bi/resource.rb
|
67
67
|
- lib/aws-sdk-b2bi/types.rb
|
68
|
+
- lib/aws-sdk-b2bi/waiters.rb
|
68
69
|
- sig/client.rbs
|
69
70
|
- sig/errors.rbs
|
70
71
|
- sig/resource.rbs
|
@@ -83,7 +84,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
83
84
|
requirements:
|
84
85
|
- - ">="
|
85
86
|
- !ruby/object:Gem::Version
|
86
|
-
version: '2.
|
87
|
+
version: '2.7'
|
87
88
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
88
89
|
requirements:
|
89
90
|
- - ">="
|