aws-sdk-b2bi 1.1.0 → 1.3.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 +68 -63
- data/lib/aws-sdk-b2bi/client_api.rb +3 -0
- data/lib/aws-sdk-b2bi/types.rb +22 -17
- data/lib/aws-sdk-b2bi.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8159efce06dfd87e91abeec77fc51bcb3bdfd43d40e1c9c4d58ddeef19799b08
|
|
4
|
+
data.tar.gz: 79850f073f9a42be4c47060d626aed5c3ebf949ef9ff3495995b6a58ffec4f6d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fd901f92730371653c45def5c8369ea9d26af14839a2b7b90893424d5f6c789d7bcefbf2d1d1dbe172b56c9b55c50d180d639984d03d1e097cd2073394e8628
|
|
7
|
+
data.tar.gz: b5f9dfff7442169afb7d9fb21a46d70c01b786624d687bed13f7708e146b758f07ccbc9ca8b4b707933ce1207fc74bcf75684041409df53d7a916f916e600262
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.3.0 (2024-01-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Increasing TestMapping inputFileContent file size limit to 5MB and adding file size limit 250KB for TestParsing input file. This release also includes exposing InternalServerException for Tag APIs.
|
|
8
|
+
|
|
9
|
+
1.2.0 (2023-12-14)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Documentation updates for AWS B2B Data Interchange
|
|
13
|
+
|
|
4
14
|
1.1.0 (2023-11-28)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.3.0
|
data/lib/aws-sdk-b2bi/client.rb
CHANGED
|
@@ -398,9 +398,9 @@ module Aws::B2bi
|
|
|
398
398
|
|
|
399
399
|
# @!group API Operations
|
|
400
400
|
|
|
401
|
-
# Instantiates a capability based on the specified parameters.
|
|
402
|
-
#
|
|
403
|
-
#
|
|
401
|
+
# Instantiates a capability based on the specified parameters. A trading
|
|
402
|
+
# capability contains the information required to transform incoming EDI
|
|
403
|
+
# documents into JSON or XML outputs.
|
|
404
404
|
#
|
|
405
405
|
# @option params [required, String] :name
|
|
406
406
|
# Specifies the name of the capability, used to identify it.
|
|
@@ -579,10 +579,9 @@ module Aws::B2bi
|
|
|
579
579
|
end
|
|
580
580
|
|
|
581
581
|
# Creates a partnership between a customer and a trading partner, based
|
|
582
|
-
# on the supplied parameters.
|
|
583
|
-
#
|
|
584
|
-
#
|
|
585
|
-
# processed according to their specifications.
|
|
582
|
+
# on the supplied parameters. A partnership represents the connection
|
|
583
|
+
# between you and your trading partner. It ties together a profile and
|
|
584
|
+
# one or more trading capabilities.
|
|
586
585
|
#
|
|
587
586
|
# @option params [required, String] :profile_id
|
|
588
587
|
# Specifies the unique, system-generated identifier for the profile
|
|
@@ -698,8 +697,8 @@ module Aws::B2bi
|
|
|
698
697
|
end
|
|
699
698
|
|
|
700
699
|
# Creates a customer profile. You can have up to five customer profiles,
|
|
701
|
-
# each representing a distinct private network.
|
|
702
|
-
#
|
|
700
|
+
# each representing a distinct private network. A profile is the
|
|
701
|
+
# mechanism used to create the concept of a private network.
|
|
703
702
|
#
|
|
704
703
|
# @option params [required, String] :name
|
|
705
704
|
# Specifies the name of the profile.
|
|
@@ -808,9 +807,9 @@ module Aws::B2bi
|
|
|
808
807
|
req.send_request(options)
|
|
809
808
|
end
|
|
810
809
|
|
|
811
|
-
# Creates a transformer.
|
|
812
|
-
# incoming EDI
|
|
813
|
-
#
|
|
810
|
+
# Creates a transformer. A transformer describes how to process the
|
|
811
|
+
# incoming EDI documents and extract the necessary information to the
|
|
812
|
+
# output file.
|
|
814
813
|
#
|
|
815
814
|
# @option params [required, String] :name
|
|
816
815
|
# Specifies the name of the transformer, used to identify it.
|
|
@@ -942,9 +941,9 @@ module Aws::B2bi
|
|
|
942
941
|
req.send_request(options)
|
|
943
942
|
end
|
|
944
943
|
|
|
945
|
-
# Deletes the specified capability.
|
|
946
|
-
#
|
|
947
|
-
#
|
|
944
|
+
# Deletes the specified capability. A trading capability contains the
|
|
945
|
+
# information required to transform incoming EDI documents into JSON or
|
|
946
|
+
# XML outputs.
|
|
948
947
|
#
|
|
949
948
|
# @option params [required, String] :capability_id
|
|
950
949
|
# Specifies a system-assigned unique identifier for the capability.
|
|
@@ -973,10 +972,9 @@ module Aws::B2bi
|
|
|
973
972
|
req.send_request(options)
|
|
974
973
|
end
|
|
975
974
|
|
|
976
|
-
# Deletes the specified partnership.
|
|
977
|
-
#
|
|
978
|
-
#
|
|
979
|
-
# can be processed according to their specifications.
|
|
975
|
+
# Deletes the specified partnership. A partnership represents the
|
|
976
|
+
# connection between you and your trading partner. It ties together a
|
|
977
|
+
# profile and one or more trading capabilities.
|
|
980
978
|
#
|
|
981
979
|
# @option params [required, String] :partnership_id
|
|
982
980
|
# Specifies the unique, system-generated identifier for a partnership.
|
|
@@ -1005,8 +1003,8 @@ module Aws::B2bi
|
|
|
1005
1003
|
req.send_request(options)
|
|
1006
1004
|
end
|
|
1007
1005
|
|
|
1008
|
-
# Deletes the specified profile.
|
|
1009
|
-
#
|
|
1006
|
+
# Deletes the specified profile. A profile is the mechanism used to
|
|
1007
|
+
# create the concept of a private network.
|
|
1010
1008
|
#
|
|
1011
1009
|
# @option params [required, String] :profile_id
|
|
1012
1010
|
# Specifies the unique, system-generated identifier for the profile.
|
|
@@ -1035,9 +1033,9 @@ module Aws::B2bi
|
|
|
1035
1033
|
req.send_request(options)
|
|
1036
1034
|
end
|
|
1037
1035
|
|
|
1038
|
-
# Deletes the specified transformer.
|
|
1039
|
-
# process the incoming EDI
|
|
1040
|
-
#
|
|
1036
|
+
# Deletes the specified transformer. A transformer describes how to
|
|
1037
|
+
# process the incoming EDI documents and extract the necessary
|
|
1038
|
+
# information to the output file.
|
|
1041
1039
|
#
|
|
1042
1040
|
# @option params [required, String] :transformer_id
|
|
1043
1041
|
# Specifies the system-assigned unique identifier for the transformer.
|
|
@@ -1066,9 +1064,9 @@ module Aws::B2bi
|
|
|
1066
1064
|
req.send_request(options)
|
|
1067
1065
|
end
|
|
1068
1066
|
|
|
1069
|
-
# Retrieves the details for the specified capability.
|
|
1070
|
-
#
|
|
1071
|
-
#
|
|
1067
|
+
# Retrieves the details for the specified capability. A trading
|
|
1068
|
+
# capability contains the information required to transform incoming EDI
|
|
1069
|
+
# documents into JSON or XML outputs.
|
|
1072
1070
|
#
|
|
1073
1071
|
# @option params [required, String] :capability_id
|
|
1074
1072
|
# Specifies a system-assigned unique identifier for the capability.
|
|
@@ -1161,10 +1159,9 @@ module Aws::B2bi
|
|
|
1161
1159
|
end
|
|
1162
1160
|
|
|
1163
1161
|
# Retrieves the details for a partnership, based on the partner and
|
|
1164
|
-
# profile IDs specified.
|
|
1165
|
-
#
|
|
1166
|
-
#
|
|
1167
|
-
# according to their specifications.
|
|
1162
|
+
# profile IDs specified. A partnership represents the connection between
|
|
1163
|
+
# you and your trading partner. It ties together a profile and one or
|
|
1164
|
+
# more trading capabilities.
|
|
1168
1165
|
#
|
|
1169
1166
|
# @option params [required, String] :partnership_id
|
|
1170
1167
|
# Specifies the unique, system-generated identifier for a partnership.
|
|
@@ -1234,8 +1231,9 @@ module Aws::B2bi
|
|
|
1234
1231
|
req.send_request(options)
|
|
1235
1232
|
end
|
|
1236
1233
|
|
|
1237
|
-
# Retrieves the details for the profile specified by the profile ID.
|
|
1238
|
-
#
|
|
1234
|
+
# Retrieves the details for the profile specified by the profile ID. A
|
|
1235
|
+
# profile is the mechanism used to create the concept of a private
|
|
1236
|
+
# network.
|
|
1239
1237
|
#
|
|
1240
1238
|
# @option params [required, String] :profile_id
|
|
1241
1239
|
# Specifies the unique, system-generated identifier for the profile.
|
|
@@ -1302,8 +1300,8 @@ module Aws::B2bi
|
|
|
1302
1300
|
end
|
|
1303
1301
|
|
|
1304
1302
|
# Retrieves the details for the transformer specified by the transformer
|
|
1305
|
-
# ID.
|
|
1306
|
-
#
|
|
1303
|
+
# ID. A transformer describes how to process the incoming EDI documents
|
|
1304
|
+
# and extract the necessary information to the output file.
|
|
1307
1305
|
#
|
|
1308
1306
|
# @option params [required, String] :transformer_id
|
|
1309
1307
|
# Specifies the system-assigned unique identifier for the transformer.
|
|
@@ -1437,9 +1435,9 @@ module Aws::B2bi
|
|
|
1437
1435
|
end
|
|
1438
1436
|
|
|
1439
1437
|
# Lists the capabilities associated with your Amazon Web Services
|
|
1440
|
-
# account for your current or specified region.
|
|
1441
|
-
# information
|
|
1442
|
-
#
|
|
1438
|
+
# account for your current or specified region. A trading capability
|
|
1439
|
+
# contains the information required to transform incoming EDI documents
|
|
1440
|
+
# into JSON or XML outputs.
|
|
1443
1441
|
#
|
|
1444
1442
|
# @option params [String] :next_token
|
|
1445
1443
|
# When additional results are obtained from the command, a `NextToken`
|
|
@@ -1506,10 +1504,9 @@ module Aws::B2bi
|
|
|
1506
1504
|
end
|
|
1507
1505
|
|
|
1508
1506
|
# Lists the partnerships associated with your Amazon Web Services
|
|
1509
|
-
# account for your current or specified region.
|
|
1510
|
-
#
|
|
1511
|
-
#
|
|
1512
|
-
# Amazon S3 can be processed according to their specifications.
|
|
1507
|
+
# account for your current or specified region. A partnership represents
|
|
1508
|
+
# the connection between you and your trading partner. It ties together
|
|
1509
|
+
# a profile and one or more trading capabilities.
|
|
1513
1510
|
#
|
|
1514
1511
|
# @option params [String] :profile_id
|
|
1515
1512
|
# Specifies the unique, system-generated identifier for the profile
|
|
@@ -1589,8 +1586,8 @@ module Aws::B2bi
|
|
|
1589
1586
|
end
|
|
1590
1587
|
|
|
1591
1588
|
# Lists the profiles associated with your Amazon Web Services account
|
|
1592
|
-
# for your current or specified region.
|
|
1593
|
-
#
|
|
1589
|
+
# for your current or specified region. A profile is the mechanism used
|
|
1590
|
+
# to create the concept of a private network.
|
|
1594
1591
|
#
|
|
1595
1592
|
# @option params [String] :next_token
|
|
1596
1593
|
# When additional results are obtained from the command, a `NextToken`
|
|
@@ -1710,9 +1707,9 @@ module Aws::B2bi
|
|
|
1710
1707
|
req.send_request(options)
|
|
1711
1708
|
end
|
|
1712
1709
|
|
|
1713
|
-
# Lists the available transformers.
|
|
1714
|
-
# the incoming EDI
|
|
1715
|
-
# the
|
|
1710
|
+
# Lists the available transformers. A transformer describes how to
|
|
1711
|
+
# process the incoming EDI documents and extract the necessary
|
|
1712
|
+
# information to the output file.
|
|
1716
1713
|
#
|
|
1717
1714
|
# @option params [String] :next_token
|
|
1718
1715
|
# When additional results are obtained from the command, a `NextToken`
|
|
@@ -1796,6 +1793,11 @@ module Aws::B2bi
|
|
|
1796
1793
|
# interchange) file into the output structures used by Amazon Web
|
|
1797
1794
|
# Services B2BI Data Interchange.
|
|
1798
1795
|
#
|
|
1796
|
+
# If you only want to transform EDI (electronic data interchange)
|
|
1797
|
+
# documents, you don't need to create profiles, partnerships or
|
|
1798
|
+
# capabilities. Just create and configure a transformer, and then run
|
|
1799
|
+
# the `StartTransformerJob` API to process your files.
|
|
1800
|
+
#
|
|
1799
1801
|
# @option params [required, Types::S3Location] :input_file
|
|
1800
1802
|
# Specifies the location of the input file for the transformation. The
|
|
1801
1803
|
# location consists of an Amazon S3 bucket and prefix.
|
|
@@ -1918,11 +1920,14 @@ module Aws::B2bi
|
|
|
1918
1920
|
req.send_request(options)
|
|
1919
1921
|
end
|
|
1920
1922
|
|
|
1921
|
-
# Maps the input file according to the provided template file.
|
|
1923
|
+
# Maps the input file according to the provided template file. The API
|
|
1924
|
+
# call downloads the file contents from the Amazon S3 location, and
|
|
1925
|
+
# passes the contents in as a string, to the `inputFileContent`
|
|
1926
|
+
# parameter.
|
|
1922
1927
|
#
|
|
1923
1928
|
# @option params [required, String] :input_file_content
|
|
1924
|
-
# Specify the EDI (electronic data interchange)
|
|
1925
|
-
# input for the transform.
|
|
1929
|
+
# Specify the contents of the EDI (electronic data interchange) XML or
|
|
1930
|
+
# JSON file that is used as input for the transform.
|
|
1926
1931
|
#
|
|
1927
1932
|
# @option params [required, String] :mapping_template
|
|
1928
1933
|
# Specifies the name of the mapping template for the transformer. This
|
|
@@ -1972,7 +1977,8 @@ module Aws::B2bi
|
|
|
1972
1977
|
req.send_request(options)
|
|
1973
1978
|
end
|
|
1974
1979
|
|
|
1975
|
-
# Parses the input EDI (electronic data interchange) file.
|
|
1980
|
+
# Parses the input EDI (electronic data interchange) file. The input
|
|
1981
|
+
# file has a file size limit of 250 KB.
|
|
1976
1982
|
#
|
|
1977
1983
|
# @option params [required, Types::S3Location] :input_file
|
|
1978
1984
|
# Specifies an `S3Location` object, which contains the Amazon S3 bucket
|
|
@@ -2086,8 +2092,8 @@ module Aws::B2bi
|
|
|
2086
2092
|
end
|
|
2087
2093
|
|
|
2088
2094
|
# Updates some of the parameters for a capability, based on the
|
|
2089
|
-
# specified parameters.
|
|
2090
|
-
# to
|
|
2095
|
+
# specified parameters. A trading capability contains the information
|
|
2096
|
+
# required to transform incoming EDI documents into JSON or XML outputs.
|
|
2091
2097
|
#
|
|
2092
2098
|
# @option params [required, String] :capability_id
|
|
2093
2099
|
# Specifies a system-assigned unique identifier for the capability.
|
|
@@ -2243,10 +2249,9 @@ module Aws::B2bi
|
|
|
2243
2249
|
end
|
|
2244
2250
|
|
|
2245
2251
|
# Updates some of the parameters for a partnership between a customer
|
|
2246
|
-
# and trading partner.
|
|
2247
|
-
#
|
|
2248
|
-
#
|
|
2249
|
-
# according to their specifications.
|
|
2252
|
+
# and trading partner. A partnership represents the connection between
|
|
2253
|
+
# you and your trading partner. It ties together a profile and one or
|
|
2254
|
+
# more trading capabilities.
|
|
2250
2255
|
#
|
|
2251
2256
|
# @option params [required, String] :partnership_id
|
|
2252
2257
|
# Specifies the unique, system-generated identifier for a partnership.
|
|
@@ -2328,8 +2333,8 @@ module Aws::B2bi
|
|
|
2328
2333
|
req.send_request(options)
|
|
2329
2334
|
end
|
|
2330
2335
|
|
|
2331
|
-
# Updates the specified parameters for a profile.
|
|
2332
|
-
#
|
|
2336
|
+
# Updates the specified parameters for a profile. A profile is the
|
|
2337
|
+
# mechanism used to create the concept of a private network.
|
|
2333
2338
|
#
|
|
2334
2339
|
# @option params [required, String] :profile_id
|
|
2335
2340
|
# Specifies the unique, system-generated identifier for the profile.
|
|
@@ -2416,9 +2421,9 @@ module Aws::B2bi
|
|
|
2416
2421
|
req.send_request(options)
|
|
2417
2422
|
end
|
|
2418
2423
|
|
|
2419
|
-
# Updates the specified parameters for a transformer.
|
|
2420
|
-
#
|
|
2421
|
-
#
|
|
2424
|
+
# Updates the specified parameters for a transformer. A transformer
|
|
2425
|
+
# describes how to process the incoming EDI documents and extract the
|
|
2426
|
+
# necessary information to the output file.
|
|
2422
2427
|
#
|
|
2423
2428
|
# @option params [required, String] :transformer_id
|
|
2424
2429
|
# Specifies the system-assigned unique identifier for the transformer.
|
|
@@ -2552,7 +2557,7 @@ module Aws::B2bi
|
|
|
2552
2557
|
params: params,
|
|
2553
2558
|
config: config)
|
|
2554
2559
|
context[:gem_name] = 'aws-sdk-b2bi'
|
|
2555
|
-
context[:gem_version] = '1.
|
|
2560
|
+
context[:gem_version] = '1.3.0'
|
|
2556
2561
|
Seahorse::Client::Request.new(handlers, context)
|
|
2557
2562
|
end
|
|
2558
2563
|
|
|
@@ -793,6 +793,7 @@ module Aws::B2bi
|
|
|
793
793
|
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
|
794
794
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
795
795
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
796
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
796
797
|
end)
|
|
797
798
|
|
|
798
799
|
api.add_operation(:list_transformers, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -831,6 +832,7 @@ module Aws::B2bi
|
|
|
831
832
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
832
833
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
833
834
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
835
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
834
836
|
end)
|
|
835
837
|
|
|
836
838
|
api.add_operation(:test_mapping, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -867,6 +869,7 @@ module Aws::B2bi
|
|
|
867
869
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
|
868
870
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
869
871
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
872
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
870
873
|
end)
|
|
871
874
|
|
|
872
875
|
api.add_operation(:update_capability, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-b2bi/types.rb
CHANGED
|
@@ -24,9 +24,9 @@ module Aws::B2bi
|
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
# A capability object. Currently, only EDI (electronic data interchange)
|
|
27
|
-
# capabilities are supported.
|
|
28
|
-
#
|
|
29
|
-
#
|
|
27
|
+
# capabilities are supported. A trading capability contains the
|
|
28
|
+
# information required to transform incoming EDI documents into JSON or
|
|
29
|
+
# XML outputs.
|
|
30
30
|
#
|
|
31
31
|
# @note CapabilityConfiguration is a union - when making an API calls you must set exactly one of the members.
|
|
32
32
|
#
|
|
@@ -49,9 +49,9 @@ module Aws::B2bi
|
|
|
49
49
|
class Unknown < CapabilityConfiguration; end
|
|
50
50
|
end
|
|
51
51
|
|
|
52
|
-
# Returns the capability summary details.
|
|
53
|
-
# information
|
|
54
|
-
#
|
|
52
|
+
# Returns the capability summary details. A trading capability contains
|
|
53
|
+
# the information required to transform incoming EDI documents into JSON
|
|
54
|
+
# or XML outputs.
|
|
55
55
|
#
|
|
56
56
|
# @!attribute [rw] capability_id
|
|
57
57
|
# Returns a system-assigned unique identifier for the capability.
|
|
@@ -1183,10 +1183,9 @@ module Aws::B2bi
|
|
|
1183
1183
|
include Aws::Structure
|
|
1184
1184
|
end
|
|
1185
1185
|
|
|
1186
|
-
# A structure that contains the details for a partnership.
|
|
1187
|
-
#
|
|
1188
|
-
#
|
|
1189
|
-
# to Amazon S3 can be processed according to their specifications.
|
|
1186
|
+
# A structure that contains the details for a partnership. A partnership
|
|
1187
|
+
# represents the connection between you and your trading partner. It
|
|
1188
|
+
# ties together a profile and one or more trading capabilities.
|
|
1190
1189
|
#
|
|
1191
1190
|
# @!attribute [rw] profile_id
|
|
1192
1191
|
# Returns the unique, system-generated identifier for the profile
|
|
@@ -1233,8 +1232,8 @@ module Aws::B2bi
|
|
|
1233
1232
|
include Aws::Structure
|
|
1234
1233
|
end
|
|
1235
1234
|
|
|
1236
|
-
# Contains the details for a profile.
|
|
1237
|
-
#
|
|
1235
|
+
# Contains the details for a profile. A profile is the mechanism used to
|
|
1236
|
+
# create the concept of a private network.
|
|
1238
1237
|
#
|
|
1239
1238
|
# @!attribute [rw] profile_id
|
|
1240
1239
|
# Returns the unique, system-generated identifier for the profile.
|
|
@@ -1447,8 +1446,8 @@ module Aws::B2bi
|
|
|
1447
1446
|
end
|
|
1448
1447
|
|
|
1449
1448
|
# @!attribute [rw] input_file_content
|
|
1450
|
-
# Specify the EDI (electronic data interchange)
|
|
1451
|
-
# input for the transform.
|
|
1449
|
+
# Specify the contents of the EDI (electronic data interchange) XML or
|
|
1450
|
+
# JSON file that is used as input for the transform.
|
|
1452
1451
|
# @return [String]
|
|
1453
1452
|
#
|
|
1454
1453
|
# @!attribute [rw] mapping_template
|
|
@@ -1544,9 +1543,9 @@ module Aws::B2bi
|
|
|
1544
1543
|
include Aws::Structure
|
|
1545
1544
|
end
|
|
1546
1545
|
|
|
1547
|
-
# Contains the details for a transformer object.
|
|
1548
|
-
# how to process the incoming EDI
|
|
1549
|
-
#
|
|
1546
|
+
# Contains the details for a transformer object. A transformer describes
|
|
1547
|
+
# how to process the incoming EDI documents and extract the necessary
|
|
1548
|
+
# information to the output file.
|
|
1550
1549
|
#
|
|
1551
1550
|
# @!attribute [rw] transformer_id
|
|
1552
1551
|
# Returns the system-assigned unique identifier for the transformer.
|
|
@@ -2027,6 +2026,12 @@ module Aws::B2bi
|
|
|
2027
2026
|
# structure is used when the system transforms an EDI (electronic data
|
|
2028
2027
|
# interchange) file.
|
|
2029
2028
|
#
|
|
2029
|
+
# <note markdown="1"> If an EDI input file contains more than one transaction, each
|
|
2030
|
+
# transaction must have the same transaction set and version, for
|
|
2031
|
+
# example 214/4010. If not, the transformer cannot parse the file.
|
|
2032
|
+
#
|
|
2033
|
+
# </note>
|
|
2034
|
+
#
|
|
2030
2035
|
# @!attribute [rw] transaction_set
|
|
2031
2036
|
# Returns an enumerated type where each value identifies an X12
|
|
2032
2037
|
# transaction set. Transaction sets are maintained by the X12
|
data/lib/aws-sdk-b2bi.rb
CHANGED
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.
|
|
4
|
+
version: 1.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -72,7 +72,7 @@ licenses:
|
|
|
72
72
|
metadata:
|
|
73
73
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-b2bi
|
|
74
74
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-b2bi/CHANGELOG.md
|
|
75
|
-
post_install_message:
|
|
75
|
+
post_install_message:
|
|
76
76
|
rdoc_options: []
|
|
77
77
|
require_paths:
|
|
78
78
|
- lib
|
|
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
87
|
- !ruby/object:Gem::Version
|
|
88
88
|
version: '0'
|
|
89
89
|
requirements: []
|
|
90
|
-
rubygems_version: 3.
|
|
91
|
-
signing_key:
|
|
90
|
+
rubygems_version: 3.4.10
|
|
91
|
+
signing_key:
|
|
92
92
|
specification_version: 4
|
|
93
93
|
summary: AWS SDK for Ruby - AWS B2BI
|
|
94
94
|
test_files: []
|