@aws-sdk/client-b2bi 3.775.0 → 3.782.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.
- package/dist-types/commands/CreateCapabilityCommand.d.ts +52 -52
- package/dist-types/commands/CreatePartnershipCommand.d.ts +21 -21
- package/dist-types/commands/CreateProfileCommand.d.ts +21 -21
- package/dist-types/commands/CreateStarterMappingTemplateCommand.d.ts +12 -12
- package/dist-types/commands/CreateTransformerCommand.d.ts +39 -39
- package/dist-types/commands/DeleteCapabilityCommand.d.ts +7 -4
- package/dist-types/commands/DeletePartnershipCommand.d.ts +7 -4
- package/dist-types/commands/DeleteProfileCommand.d.ts +7 -4
- package/dist-types/commands/DeleteTransformerCommand.d.ts +7 -4
- package/dist-types/commands/GenerateMappingCommand.d.ts +8 -8
- package/dist-types/commands/GetCapabilityCommand.d.ts +28 -28
- package/dist-types/commands/GetPartnershipCommand.d.ts +14 -14
- package/dist-types/commands/GetProfileCommand.d.ts +13 -13
- package/dist-types/commands/GetTransformerCommand.d.ts +22 -22
- package/dist-types/commands/GetTransformerJobCommand.d.ts +10 -10
- package/dist-types/commands/ListCapabilitiesCommand.d.ts +12 -12
- package/dist-types/commands/ListPartnershipsCommand.d.ts +15 -15
- package/dist-types/commands/ListProfilesCommand.d.ts +13 -13
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +7 -7
- package/dist-types/commands/ListTransformersCommand.d.ts +19 -19
- package/dist-types/commands/StartTransformerJobCommand.d.ts +12 -12
- package/dist-types/commands/TagResourceCommand.d.ts +10 -7
- package/dist-types/commands/TestConversionCommand.d.ts +15 -15
- package/dist-types/commands/TestMappingCommand.d.ts +7 -7
- package/dist-types/commands/TestParsingCommand.d.ts +12 -12
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateCapabilityCommand.d.ts +48 -48
- package/dist-types/commands/UpdatePartnershipCommand.d.ts +16 -16
- package/dist-types/commands/UpdateProfileCommand.d.ts +18 -18
- package/dist-types/commands/UpdateTransformerCommand.d.ts +38 -38
- package/package.json +5 -5
|
@@ -109,34 +109,34 @@ declare const GetPartnershipCommand_base: {
|
|
|
109
109
|
* @throws {@link B2biServiceException}
|
|
110
110
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
111
111
|
*
|
|
112
|
-
*
|
|
112
|
+
*
|
|
113
113
|
* @example Sample GetPartnership call
|
|
114
114
|
* ```javascript
|
|
115
115
|
* //
|
|
116
116
|
* const input = {
|
|
117
|
-
*
|
|
117
|
+
* partnershipId: "ps-219fa02f5b4242af8"
|
|
118
118
|
* };
|
|
119
119
|
* const command = new GetPartnershipCommand(input);
|
|
120
120
|
* const response = await client.send(command);
|
|
121
|
-
* /* response
|
|
121
|
+
* /* response is
|
|
122
122
|
* {
|
|
123
|
-
*
|
|
124
|
-
* "capabilities": [
|
|
123
|
+
* capabilities: [
|
|
125
124
|
* "ca-963a8121e4fc4e348"
|
|
126
125
|
* ],
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
*
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
-
*
|
|
126
|
+
* createdAt: "2023-11-01T21:51:05.504Z",
|
|
127
|
+
* email: "john@example.com",
|
|
128
|
+
* modifiedAt: "2023-11-01T21:51:05.504Z",
|
|
129
|
+
* name: "b2bipartner",
|
|
130
|
+
* partnershipArn: "arn:aws:b2bi:us-west-2:123456789012:partnership/ps-219fa02f5b4242af8",
|
|
131
|
+
* partnershipId: "ps-219fa02f5b4242af8",
|
|
132
|
+
* phone: "5555555555",
|
|
133
|
+
* profileId: "p-60fbc37c87f04fce9",
|
|
134
|
+
* tradingPartnerId: "tp-2a17ca447f6f4a8a8"
|
|
135
135
|
* }
|
|
136
136
|
* *\/
|
|
137
|
-
* // example id: example-1
|
|
138
137
|
* ```
|
|
139
138
|
*
|
|
139
|
+
* @public
|
|
140
140
|
*/
|
|
141
141
|
export declare class GetPartnershipCommand extends GetPartnershipCommand_base {
|
|
142
142
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -79,31 +79,31 @@ declare const GetProfileCommand_base: {
|
|
|
79
79
|
* @throws {@link B2biServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
81
81
|
*
|
|
82
|
-
*
|
|
82
|
+
*
|
|
83
83
|
* @example Sample GetProfile call
|
|
84
84
|
* ```javascript
|
|
85
85
|
* //
|
|
86
86
|
* const input = {
|
|
87
|
-
*
|
|
87
|
+
* profileId: "p-60fbc37c87f04fce9"
|
|
88
88
|
* };
|
|
89
89
|
* const command = new GetProfileCommand(input);
|
|
90
90
|
* const response = await client.send(command);
|
|
91
|
-
* /* response
|
|
91
|
+
* /* response is
|
|
92
92
|
* {
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
93
|
+
* businessName: "John's Trucking",
|
|
94
|
+
* createdAt: "2023-11-01T21:51:05.504Z",
|
|
95
|
+
* email: "john@example.com",
|
|
96
|
+
* logGroupName: "b2bi/p-60fbc37c87f04fce9-Logs",
|
|
97
|
+
* logging: "ENABLED",
|
|
98
|
+
* name: "Shipping Profile",
|
|
99
|
+
* phone: "5555555555",
|
|
100
|
+
* profileArn: "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9",
|
|
101
|
+
* profileId: "p-60fbc37c87f04fce9"
|
|
102
102
|
* }
|
|
103
103
|
* *\/
|
|
104
|
-
* // example id: example-1
|
|
105
104
|
* ```
|
|
106
105
|
*
|
|
106
|
+
* @public
|
|
107
107
|
*/
|
|
108
108
|
export declare class GetProfileCommand extends GetProfileCommand_base {
|
|
109
109
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -115,48 +115,48 @@ declare const GetTransformerCommand_base: {
|
|
|
115
115
|
* @throws {@link B2biServiceException}
|
|
116
116
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
117
117
|
*
|
|
118
|
-
*
|
|
118
|
+
*
|
|
119
119
|
* @example Sample GetTransformer call
|
|
120
120
|
* ```javascript
|
|
121
121
|
* //
|
|
122
122
|
* const input = {
|
|
123
|
-
*
|
|
123
|
+
* transformerId: "tr-974c129999f84d8c9"
|
|
124
124
|
* };
|
|
125
125
|
* const command = new GetTransformerCommand(input);
|
|
126
126
|
* const response = await client.send(command);
|
|
127
|
-
* /* response
|
|
127
|
+
* /* response is
|
|
128
128
|
* {
|
|
129
|
-
*
|
|
130
|
-
*
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
* "transactionSet": "X12_110"
|
|
129
|
+
* createdAt: "2023-11-01T21:51:05.504Z",
|
|
130
|
+
* inputConversion: {
|
|
131
|
+
* formatOptions: {
|
|
132
|
+
* x12: {
|
|
133
|
+
* transactionSet: "X12_110",
|
|
134
|
+
* version: "VERSION_4010"
|
|
136
135
|
* }
|
|
137
136
|
* },
|
|
138
|
-
*
|
|
137
|
+
* fromFormat: "X12"
|
|
139
138
|
* },
|
|
140
|
-
*
|
|
141
|
-
*
|
|
142
|
-
*
|
|
139
|
+
* mapping: {
|
|
140
|
+
* template: "{}",
|
|
141
|
+
* templateLanguage: "JSONATA"
|
|
143
142
|
* },
|
|
144
|
-
* "
|
|
145
|
-
*
|
|
146
|
-
* "
|
|
143
|
+
* name: "transformX12",
|
|
144
|
+
* sampleDocuments: {
|
|
145
|
+
* bucketName: "test-bucket",
|
|
146
|
+
* keys: [
|
|
147
147
|
* {
|
|
148
|
-
*
|
|
148
|
+
* input: "sampleDoc.txt"
|
|
149
149
|
* }
|
|
150
150
|
* ]
|
|
151
151
|
* },
|
|
152
|
-
*
|
|
153
|
-
*
|
|
154
|
-
*
|
|
152
|
+
* status: "inactive",
|
|
153
|
+
* transformerArn: "arn:aws:b2bi:us-west-2:123456789012:transformer/tr-974c129999f84d8c9",
|
|
154
|
+
* transformerId: "tr-974c129999f84d8c9"
|
|
155
155
|
* }
|
|
156
156
|
* *\/
|
|
157
|
-
* // example id: example-1
|
|
158
157
|
* ```
|
|
159
158
|
*
|
|
159
|
+
* @public
|
|
160
160
|
*/
|
|
161
161
|
export declare class GetTransformerCommand extends GetTransformerCommand_base {
|
|
162
162
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -77,31 +77,31 @@ declare const GetTransformerJobCommand_base: {
|
|
|
77
77
|
* @throws {@link B2biServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
79
79
|
*
|
|
80
|
-
*
|
|
80
|
+
*
|
|
81
81
|
* @example Sample GetTransformerJob call
|
|
82
82
|
* ```javascript
|
|
83
83
|
* //
|
|
84
84
|
* const input = {
|
|
85
|
-
*
|
|
86
|
-
*
|
|
85
|
+
* transformerId: "tr-974c129999f84d8c9",
|
|
86
|
+
* transformerJobId: "tj-vpYxfV7yQOqjMSYllEslLw"
|
|
87
87
|
* };
|
|
88
88
|
* const command = new GetTransformerJobCommand(input);
|
|
89
89
|
* const response = await client.send(command);
|
|
90
|
-
* /* response
|
|
90
|
+
* /* response is
|
|
91
91
|
* {
|
|
92
|
-
*
|
|
93
|
-
*
|
|
92
|
+
* message: "Transformed, writing output",
|
|
93
|
+
* outputFiles: [
|
|
94
94
|
* {
|
|
95
|
-
*
|
|
96
|
-
*
|
|
95
|
+
* bucketName: "gt-edi-test",
|
|
96
|
+
* key: "output/sample-214.edi.2023-11-01T10:44:03.353Z.json"
|
|
97
97
|
* }
|
|
98
98
|
* ],
|
|
99
|
-
*
|
|
99
|
+
* status: "succeeded"
|
|
100
100
|
* }
|
|
101
101
|
* *\/
|
|
102
|
-
* // example id: example-1
|
|
103
102
|
* ```
|
|
104
103
|
*
|
|
104
|
+
* @public
|
|
105
105
|
*/
|
|
106
106
|
export declare class GetTransformerJobCommand extends GetTransformerJobCommand_base {
|
|
107
107
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -76,33 +76,33 @@ declare const ListCapabilitiesCommand_base: {
|
|
|
76
76
|
* @throws {@link B2biServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
78
78
|
*
|
|
79
|
-
*
|
|
79
|
+
*
|
|
80
80
|
* @example Sample ListCapabilities call
|
|
81
81
|
* ```javascript
|
|
82
82
|
* //
|
|
83
83
|
* const input = {
|
|
84
|
-
*
|
|
85
|
-
*
|
|
84
|
+
* maxResults: 50,
|
|
85
|
+
* nextToken: "foo"
|
|
86
86
|
* };
|
|
87
87
|
* const command = new ListCapabilitiesCommand(input);
|
|
88
88
|
* const response = await client.send(command);
|
|
89
|
-
* /* response
|
|
89
|
+
* /* response is
|
|
90
90
|
* {
|
|
91
|
-
*
|
|
91
|
+
* capabilities: [
|
|
92
92
|
* {
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
93
|
+
* capabilityId: "ca-963a8121e4fc4e348",
|
|
94
|
+
* createdAt: "2023-11-01T21:51:05.504Z",
|
|
95
|
+
* modifiedAt: "2023-11-01T21:51:05.504Z",
|
|
96
|
+
* name: "b2biexample",
|
|
97
|
+
* type: "edi"
|
|
98
98
|
* }
|
|
99
99
|
* ],
|
|
100
|
-
*
|
|
100
|
+
* nextToken: "foo"
|
|
101
101
|
* }
|
|
102
102
|
* *\/
|
|
103
|
-
* // example id: example-1
|
|
104
103
|
* ```
|
|
105
104
|
*
|
|
105
|
+
* @public
|
|
106
106
|
*/
|
|
107
107
|
export declare class ListCapabilitiesCommand extends ListCapabilitiesCommand_base {
|
|
108
108
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -113,38 +113,38 @@ declare const ListPartnershipsCommand_base: {
|
|
|
113
113
|
* @throws {@link B2biServiceException}
|
|
114
114
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
115
115
|
*
|
|
116
|
-
*
|
|
116
|
+
*
|
|
117
117
|
* @example Sample ListPartnerships call
|
|
118
118
|
* ```javascript
|
|
119
119
|
* //
|
|
120
120
|
* const input = {
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
121
|
+
* maxResults: 50,
|
|
122
|
+
* nextToken: "foo",
|
|
123
|
+
* profileId: "p-60fbc37c87f04fce9"
|
|
124
124
|
* };
|
|
125
125
|
* const command = new ListPartnershipsCommand(input);
|
|
126
126
|
* const response = await client.send(command);
|
|
127
|
-
* /* response
|
|
127
|
+
* /* response is
|
|
128
128
|
* {
|
|
129
|
-
*
|
|
130
|
-
*
|
|
129
|
+
* nextToken: "string",
|
|
130
|
+
* partnerships: [
|
|
131
131
|
* {
|
|
132
|
-
*
|
|
133
|
-
* "capabilities": [
|
|
132
|
+
* capabilities: [
|
|
134
133
|
* "ca-963a8121e4fc4e348"
|
|
135
134
|
* ],
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
*
|
|
140
|
-
*
|
|
135
|
+
* createdAt: "2023-11-01T21:51:05.504Z",
|
|
136
|
+
* modifiedAt: "2023-11-01T21:51:05.504Z",
|
|
137
|
+
* name: "b2bipartner",
|
|
138
|
+
* partnershipId: "ps-219fa02f5b4242af8",
|
|
139
|
+
* profileId: "p-60fbc37c87f04fce9",
|
|
140
|
+
* tradingPartnerId: "tp-2a17ca447f6f4a8a8"
|
|
141
141
|
* }
|
|
142
142
|
* ]
|
|
143
143
|
* }
|
|
144
144
|
* *\/
|
|
145
|
-
* // example id: example-1
|
|
146
145
|
* ```
|
|
147
146
|
*
|
|
147
|
+
* @public
|
|
148
148
|
*/
|
|
149
149
|
export declare class ListPartnershipsCommand extends ListPartnershipsCommand_base {
|
|
150
150
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -79,34 +79,34 @@ declare const ListProfilesCommand_base: {
|
|
|
79
79
|
* @throws {@link B2biServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
81
81
|
*
|
|
82
|
-
*
|
|
82
|
+
*
|
|
83
83
|
* @example Sample ListProfiles call
|
|
84
84
|
* ```javascript
|
|
85
85
|
* //
|
|
86
86
|
* const input = {
|
|
87
|
-
*
|
|
88
|
-
*
|
|
87
|
+
* maxResults: 50,
|
|
88
|
+
* nextToken: "foo"
|
|
89
89
|
* };
|
|
90
90
|
* const command = new ListProfilesCommand(input);
|
|
91
91
|
* const response = await client.send(command);
|
|
92
|
-
* /* response
|
|
92
|
+
* /* response is
|
|
93
93
|
* {
|
|
94
|
-
*
|
|
95
|
-
*
|
|
94
|
+
* nextToken: "foo",
|
|
95
|
+
* profiles: [
|
|
96
96
|
* {
|
|
97
|
-
*
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
97
|
+
* businessName: "John's Trucking",
|
|
98
|
+
* createdAt: "2023-11-01T21:51:05.504Z",
|
|
99
|
+
* logGroupName: "b2bi/p-60fbc37c87f04fce9-Logs",
|
|
100
|
+
* logging: "ENABLED",
|
|
101
|
+
* name: "Shipping Profile",
|
|
102
|
+
* profileId: "p-60fbc37c87f04fce9"
|
|
103
103
|
* }
|
|
104
104
|
* ]
|
|
105
105
|
* }
|
|
106
106
|
* *\/
|
|
107
|
-
* // example id: example-1
|
|
108
107
|
* ```
|
|
109
108
|
*
|
|
109
|
+
* @public
|
|
110
110
|
*/
|
|
111
111
|
export declare class ListProfilesCommand extends ListProfilesCommand_base {
|
|
112
112
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -68,28 +68,28 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
68
68
|
* @throws {@link B2biServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
70
70
|
*
|
|
71
|
-
*
|
|
71
|
+
*
|
|
72
72
|
* @example Sample ListTagsForResources call
|
|
73
73
|
* ```javascript
|
|
74
74
|
* //
|
|
75
75
|
* const input = {
|
|
76
|
-
*
|
|
76
|
+
* ResourceARN: "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9"
|
|
77
77
|
* };
|
|
78
78
|
* const command = new ListTagsForResourceCommand(input);
|
|
79
79
|
* const response = await client.send(command);
|
|
80
|
-
* /* response
|
|
80
|
+
* /* response is
|
|
81
81
|
* {
|
|
82
|
-
*
|
|
82
|
+
* Tags: [
|
|
83
83
|
* {
|
|
84
|
-
*
|
|
85
|
-
*
|
|
84
|
+
* Key: "sampleKey",
|
|
85
|
+
* Value: "SampleValue"
|
|
86
86
|
* }
|
|
87
87
|
* ]
|
|
88
88
|
* }
|
|
89
89
|
* *\/
|
|
90
|
-
* // example id: example-1
|
|
91
90
|
* ```
|
|
92
91
|
*
|
|
92
|
+
* @public
|
|
93
93
|
*/
|
|
94
94
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
95
95
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -117,42 +117,42 @@ declare const ListTransformersCommand_base: {
|
|
|
117
117
|
* @throws {@link B2biServiceException}
|
|
118
118
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
119
119
|
*
|
|
120
|
-
*
|
|
120
|
+
*
|
|
121
121
|
* @example Sample ListTransformers call
|
|
122
122
|
* ```javascript
|
|
123
123
|
* //
|
|
124
124
|
* const input = {
|
|
125
|
-
*
|
|
126
|
-
*
|
|
125
|
+
* maxResults: 50,
|
|
126
|
+
* nextToken: "foo"
|
|
127
127
|
* };
|
|
128
128
|
* const command = new ListTransformersCommand(input);
|
|
129
129
|
* const response = await client.send(command);
|
|
130
|
-
* /* response
|
|
130
|
+
* /* response is
|
|
131
131
|
* {
|
|
132
|
-
*
|
|
133
|
-
*
|
|
132
|
+
* nextToken: "foo",
|
|
133
|
+
* transformers: [
|
|
134
134
|
* {
|
|
135
|
-
*
|
|
136
|
-
*
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
*
|
|
140
|
-
* "transactionSet": "X12_110"
|
|
135
|
+
* createdAt: "2023-11-01T21:51:05.504Z",
|
|
136
|
+
* ediType: {
|
|
137
|
+
* x12Details: {
|
|
138
|
+
* transactionSet: "X12_110",
|
|
139
|
+
* version: "VERSION_4010"
|
|
141
140
|
* }
|
|
142
141
|
* },
|
|
143
|
-
*
|
|
144
|
-
*
|
|
145
|
-
*
|
|
146
|
-
*
|
|
147
|
-
*
|
|
148
|
-
*
|
|
142
|
+
* fileFormat: "JSON",
|
|
143
|
+
* mappingTemplate: "$",
|
|
144
|
+
* modifiedAt: "2023-11-01T21:51:05.504Z",
|
|
145
|
+
* name: "transformJSON",
|
|
146
|
+
* sampleDocument: "s3://test-bucket/sampleDoc.txt",
|
|
147
|
+
* status: "inactive",
|
|
148
|
+
* transformerId: "tr-974c129999f84d8c9"
|
|
149
149
|
* }
|
|
150
150
|
* ]
|
|
151
151
|
* }
|
|
152
152
|
* *\/
|
|
153
|
-
* // example id: example-1
|
|
154
153
|
* ```
|
|
155
154
|
*
|
|
155
|
+
* @public
|
|
156
156
|
*/
|
|
157
157
|
export declare class ListTransformersCommand extends ListTransformersCommand_base {
|
|
158
158
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -83,32 +83,32 @@ declare const StartTransformerJobCommand_base: {
|
|
|
83
83
|
* @throws {@link B2biServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
85
85
|
*
|
|
86
|
-
*
|
|
86
|
+
*
|
|
87
87
|
* @example Sample StartTransformerJob call
|
|
88
88
|
* ```javascript
|
|
89
89
|
* //
|
|
90
90
|
* const input = {
|
|
91
|
-
*
|
|
92
|
-
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
91
|
+
* clientToken: "foo",
|
|
92
|
+
* inputFile: {
|
|
93
|
+
* bucketName: "test-bucket",
|
|
94
|
+
* key: "input/inputFile.txt"
|
|
95
95
|
* },
|
|
96
|
-
*
|
|
97
|
-
*
|
|
98
|
-
*
|
|
96
|
+
* outputLocation: {
|
|
97
|
+
* bucketName: "test-bucket",
|
|
98
|
+
* key: "output/"
|
|
99
99
|
* },
|
|
100
|
-
*
|
|
100
|
+
* transformerId: "tr-974c129999f84d8c9"
|
|
101
101
|
* };
|
|
102
102
|
* const command = new StartTransformerJobCommand(input);
|
|
103
103
|
* const response = await client.send(command);
|
|
104
|
-
* /* response
|
|
104
|
+
* /* response is
|
|
105
105
|
* {
|
|
106
|
-
*
|
|
106
|
+
* transformerJobId: "tj-vpYxfV7yQOqjMSYllEslLw"
|
|
107
107
|
* }
|
|
108
108
|
* *\/
|
|
109
|
-
* // example id: example-1
|
|
110
109
|
* ```
|
|
111
110
|
*
|
|
111
|
+
* @public
|
|
112
112
|
*/
|
|
113
113
|
export declare class StartTransformerJobCommand extends StartTransformerJobCommand_base {
|
|
114
114
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -71,24 +71,27 @@ declare const TagResourceCommand_base: {
|
|
|
71
71
|
* @throws {@link B2biServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
73
73
|
*
|
|
74
|
-
*
|
|
74
|
+
*
|
|
75
75
|
* @example Sample TagResource call
|
|
76
76
|
* ```javascript
|
|
77
77
|
* //
|
|
78
78
|
* const input = {
|
|
79
|
-
*
|
|
80
|
-
*
|
|
79
|
+
* ResourceARN: "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9",
|
|
80
|
+
* Tags: [
|
|
81
81
|
* {
|
|
82
|
-
*
|
|
83
|
-
*
|
|
82
|
+
* Key: "sampleKey",
|
|
83
|
+
* Value: "SampleValue"
|
|
84
84
|
* }
|
|
85
85
|
* ]
|
|
86
86
|
* };
|
|
87
87
|
* const command = new TagResourceCommand(input);
|
|
88
|
-
* await client.send(command);
|
|
89
|
-
*
|
|
88
|
+
* const response = await client.send(command);
|
|
89
|
+
* /* response is
|
|
90
|
+
* { /* metadata only *\/ }
|
|
91
|
+
* *\/
|
|
90
92
|
* ```
|
|
91
93
|
*
|
|
94
|
+
* @public
|
|
92
95
|
*/
|
|
93
96
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
94
97
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -92,38 +92,38 @@ declare const TestConversionCommand_base: {
|
|
|
92
92
|
* @throws {@link B2biServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
94
94
|
*
|
|
95
|
-
*
|
|
95
|
+
*
|
|
96
96
|
* @example Sample TestConversion call
|
|
97
97
|
* ```javascript
|
|
98
98
|
* //
|
|
99
99
|
* const input = {
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
100
|
+
* source: {
|
|
101
|
+
* fileFormat: "JSON",
|
|
102
|
+
* inputFile: {
|
|
103
|
+
* fileContent: "Sample file content"
|
|
104
104
|
* }
|
|
105
105
|
* },
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
106
|
+
* target: {
|
|
107
|
+
* fileFormat: "X12",
|
|
108
|
+
* formatDetails: {
|
|
109
|
+
* x12: {
|
|
110
|
+
* transactionSet: "X12_110",
|
|
111
|
+
* version: "VERSION_4010"
|
|
112
112
|
* }
|
|
113
113
|
* }
|
|
114
114
|
* }
|
|
115
115
|
* };
|
|
116
116
|
* const command = new TestConversionCommand(input);
|
|
117
117
|
* const response = await client.send(command);
|
|
118
|
-
* /* response
|
|
118
|
+
* /* response is
|
|
119
119
|
* {
|
|
120
|
-
*
|
|
121
|
-
*
|
|
120
|
+
* convertedFileContent: "Sample converted file content",
|
|
121
|
+
* validationMessages: []
|
|
122
122
|
* }
|
|
123
123
|
* *\/
|
|
124
|
-
* // example id: example-1
|
|
125
124
|
* ```
|
|
126
125
|
*
|
|
126
|
+
* @public
|
|
127
127
|
*/
|
|
128
128
|
export declare class TestConversionCommand extends TestConversionCommand_base {
|
|
129
129
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -71,25 +71,25 @@ declare const TestMappingCommand_base: {
|
|
|
71
71
|
* @throws {@link B2biServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from B2bi service.</p>
|
|
73
73
|
*
|
|
74
|
-
*
|
|
74
|
+
*
|
|
75
75
|
* @example Sample TestMapping call
|
|
76
76
|
* ```javascript
|
|
77
77
|
* //
|
|
78
78
|
* const input = {
|
|
79
|
-
*
|
|
80
|
-
*
|
|
81
|
-
*
|
|
79
|
+
* fileFormat: "JSON",
|
|
80
|
+
* inputFileContent: "Sample file content",
|
|
81
|
+
* mappingTemplate: "$"
|
|
82
82
|
* };
|
|
83
83
|
* const command = new TestMappingCommand(input);
|
|
84
84
|
* const response = await client.send(command);
|
|
85
|
-
* /* response
|
|
85
|
+
* /* response is
|
|
86
86
|
* {
|
|
87
|
-
*
|
|
87
|
+
* mappedFileContent: "Sample file content"
|
|
88
88
|
* }
|
|
89
89
|
* *\/
|
|
90
|
-
* // example id: example-1
|
|
91
90
|
* ```
|
|
92
91
|
*
|
|
92
|
+
* @public
|
|
93
93
|
*/
|
|
94
94
|
export declare class TestMappingCommand extends TestMappingCommand_base {
|
|
95
95
|
/** @internal type navigation helper, not in runtime. */
|