@aws-sdk/client-b2bi 3.774.0 → 3.777.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.
Files changed (37) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
  2. package/dist-cjs/index.js +17 -18
  3. package/dist-es/B2biClient.js +2 -1
  4. package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
  5. package/dist-es/endpoint/EndpointParameters.js +2 -3
  6. package/dist-es/runtimeExtensions.js +2 -14
  7. package/dist-types/commands/CreateCapabilityCommand.d.ts +52 -52
  8. package/dist-types/commands/CreatePartnershipCommand.d.ts +21 -21
  9. package/dist-types/commands/CreateProfileCommand.d.ts +21 -21
  10. package/dist-types/commands/CreateStarterMappingTemplateCommand.d.ts +12 -12
  11. package/dist-types/commands/CreateTransformerCommand.d.ts +39 -39
  12. package/dist-types/commands/DeleteCapabilityCommand.d.ts +7 -4
  13. package/dist-types/commands/DeletePartnershipCommand.d.ts +7 -4
  14. package/dist-types/commands/DeleteProfileCommand.d.ts +7 -4
  15. package/dist-types/commands/DeleteTransformerCommand.d.ts +7 -4
  16. package/dist-types/commands/GenerateMappingCommand.d.ts +8 -8
  17. package/dist-types/commands/GetCapabilityCommand.d.ts +28 -28
  18. package/dist-types/commands/GetPartnershipCommand.d.ts +14 -14
  19. package/dist-types/commands/GetProfileCommand.d.ts +13 -13
  20. package/dist-types/commands/GetTransformerCommand.d.ts +22 -22
  21. package/dist-types/commands/GetTransformerJobCommand.d.ts +10 -10
  22. package/dist-types/commands/ListCapabilitiesCommand.d.ts +12 -12
  23. package/dist-types/commands/ListPartnershipsCommand.d.ts +15 -15
  24. package/dist-types/commands/ListProfilesCommand.d.ts +13 -13
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +7 -7
  26. package/dist-types/commands/ListTransformersCommand.d.ts +19 -19
  27. package/dist-types/commands/StartTransformerJobCommand.d.ts +12 -12
  28. package/dist-types/commands/TagResourceCommand.d.ts +10 -7
  29. package/dist-types/commands/TestConversionCommand.d.ts +15 -15
  30. package/dist-types/commands/TestMappingCommand.d.ts +7 -7
  31. package/dist-types/commands/TestParsingCommand.d.ts +12 -12
  32. package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
  33. package/dist-types/commands/UpdateCapabilityCommand.d.ts +48 -48
  34. package/dist-types/commands/UpdatePartnershipCommand.d.ts +16 -16
  35. package/dist-types/commands/UpdateProfileCommand.d.ts +18 -18
  36. package/dist-types/commands/UpdateTransformerCommand.d.ts +38 -38
  37. package/package.json +33 -33
@@ -71,18 +71,21 @@ declare const DeleteProfileCommand_base: {
71
71
  * @throws {@link B2biServiceException}
72
72
  * <p>Base exception class for all service exceptions from B2bi service.</p>
73
73
  *
74
- * @public
74
+ *
75
75
  * @example Sample DeleteProfile call
76
76
  * ```javascript
77
77
  * //
78
78
  * const input = {
79
- * "profileId": "p-60fbc37c87f04fce9"
79
+ * profileId: "p-60fbc37c87f04fce9"
80
80
  * };
81
81
  * const command = new DeleteProfileCommand(input);
82
- * await client.send(command);
83
- * // example id: example-1
82
+ * const response = await client.send(command);
83
+ * /* response is
84
+ * { /* metadata only *\/ }
85
+ * *\/
84
86
  * ```
85
87
  *
88
+ * @public
86
89
  */
87
90
  export declare class DeleteProfileCommand extends DeleteProfileCommand_base {
88
91
  /** @internal type navigation helper, not in runtime. */
@@ -71,18 +71,21 @@ declare const DeleteTransformerCommand_base: {
71
71
  * @throws {@link B2biServiceException}
72
72
  * <p>Base exception class for all service exceptions from B2bi service.</p>
73
73
  *
74
- * @public
74
+ *
75
75
  * @example Sample DeleteTransformer call
76
76
  * ```javascript
77
77
  * //
78
78
  * const input = {
79
- * "transformerId": "tr-974c129999f84d8c9"
79
+ * transformerId: "tr-974c129999f84d8c9"
80
80
  * };
81
81
  * const command = new DeleteTransformerCommand(input);
82
- * await client.send(command);
83
- * // example id: example-1
82
+ * const response = await client.send(command);
83
+ * /* response is
84
+ * { /* metadata only *\/ }
85
+ * *\/
84
86
  * ```
85
87
  *
88
+ * @public
86
89
  */
87
90
  export declare class DeleteTransformerCommand extends DeleteTransformerCommand_base {
88
91
  /** @internal type navigation helper, not in runtime. */
@@ -73,26 +73,26 @@ declare const GenerateMappingCommand_base: {
73
73
  * @throws {@link B2biServiceException}
74
74
  * <p>Base exception class for all service exceptions from B2bi service.</p>
75
75
  *
76
- * @public
76
+ *
77
77
  * @example Sample GenerateMapping call
78
78
  * ```javascript
79
79
  * //
80
80
  * const input = {
81
- * "inputFileContent": "Sample input file content",
82
- * "mappingType": "JSONATA",
83
- * "outputFileContent": "Sample output file content"
81
+ * inputFileContent: "Sample input file content",
82
+ * mappingType: "JSONATA",
83
+ * outputFileContent: "Sample output file content"
84
84
  * };
85
85
  * const command = new GenerateMappingCommand(input);
86
86
  * const response = await client.send(command);
87
- * /* response ==
87
+ * /* response is
88
88
  * {
89
- * "mappingAccuracy": 0.95,
90
- * "mappingTemplate": "Sample mapping content"
89
+ * mappingAccuracy: 0.95,
90
+ * mappingTemplate: "Sample mapping content"
91
91
  * }
92
92
  * *\/
93
- * // example id: example-1
94
93
  * ```
95
94
  *
95
+ * @public
96
96
  */
97
97
  export declare class GenerateMappingCommand extends GenerateMappingCommand_base {
98
98
  /** @internal type navigation helper, not in runtime. */
@@ -100,53 +100,53 @@ declare const GetCapabilityCommand_base: {
100
100
  * @throws {@link B2biServiceException}
101
101
  * <p>Base exception class for all service exceptions from B2bi service.</p>
102
102
  *
103
- * @public
103
+ *
104
104
  * @example Sample GetCapabilty call
105
105
  * ```javascript
106
106
  * //
107
107
  * const input = {
108
- * "capabilityId": "ca-963a8121e4fc4e348"
108
+ * capabilityId: "ca-963a8121e4fc4e348"
109
109
  * };
110
110
  * const command = new GetCapabilityCommand(input);
111
111
  * const response = await client.send(command);
112
- * /* response ==
112
+ * /* response is
113
113
  * {
114
- * "name": "b2biexample",
115
- * "type": "edi",
116
- * "capabilityArn": "arn:aws:b2bi:us-west-2:123456789012:capability/ca-963a8121e4fc4e348",
117
- * "capabilityId": "ca-963a8121e4fc4e348",
118
- * "configuration": {
119
- * "edi": {
120
- * "type": {
121
- * "x12Details": {
122
- * "version": "VERSION_4010",
123
- * "transactionSet": "X12_110"
124
- * }
114
+ * capabilityArn: "arn:aws:b2bi:us-west-2:123456789012:capability/ca-963a8121e4fc4e348",
115
+ * capabilityId: "ca-963a8121e4fc4e348",
116
+ * configuration: {
117
+ * edi: {
118
+ * inputLocation: {
119
+ * bucketName: "test-bucket",
120
+ * key: "input/"
125
121
  * },
126
- * "inputLocation": {
127
- * "key": "input/",
128
- * "bucketName": "test-bucket"
122
+ * outputLocation: {
123
+ * bucketName: "test-bucket",
124
+ * key: "output/"
129
125
  * },
130
- * "outputLocation": {
131
- * "key": "output/",
132
- * "bucketName": "test-bucket"
133
- * },
134
- * "transformerId": "tr-9a893cf536df4658b"
126
+ * transformerId: "tr-9a893cf536df4658b",
127
+ * type: {
128
+ * x12Details: {
129
+ * transactionSet: "X12_110",
130
+ * version: "VERSION_4010"
131
+ * }
132
+ * }
135
133
  * }
136
134
  * },
137
- * "createdAt": "2023-11-01T21:51:05.504Z",
138
- * "instructionsDocuments": [
135
+ * createdAt: "2023-11-01T21:51:05.504Z",
136
+ * instructionsDocuments: [
139
137
  * {
140
- * "key": "instructiondoc.txt",
141
- * "bucketName": "test-bucket"
138
+ * bucketName: "test-bucket",
139
+ * key: "instructiondoc.txt"
142
140
  * }
143
141
  * ],
144
- * "modifiedAt": "2023-11-02T21:51:05.504Z"
142
+ * modifiedAt: "2023-11-02T21:51:05.504Z",
143
+ * name: "b2biexample",
144
+ * type: "edi"
145
145
  * }
146
146
  * *\/
147
- * // example id: example-1
148
147
  * ```
149
148
  *
149
+ * @public
150
150
  */
151
151
  export declare class GetCapabilityCommand extends GetCapabilityCommand_base {
152
152
  /** @internal type navigation helper, not in runtime. */
@@ -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
- * @public
112
+ *
113
113
  * @example Sample GetPartnership call
114
114
  * ```javascript
115
115
  * //
116
116
  * const input = {
117
- * "partnershipId": "ps-219fa02f5b4242af8"
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
- * "name": "b2bipartner",
124
- * "capabilities": [
123
+ * capabilities: [
125
124
  * "ca-963a8121e4fc4e348"
126
125
  * ],
127
- * "createdAt": "2023-11-01T21:51:05.504Z",
128
- * "email": "john@example.com",
129
- * "modifiedAt": "2023-11-01T21:51:05.504Z",
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"
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
- * @public
82
+ *
83
83
  * @example Sample GetProfile call
84
84
  * ```javascript
85
85
  * //
86
86
  * const input = {
87
- * "profileId": "p-60fbc37c87f04fce9"
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
- * "name": "Shipping Profile",
94
- * "businessName": "John's Trucking",
95
- * "createdAt": "2023-11-01T21:51:05.504Z",
96
- * "email": "john@example.com",
97
- * "logGroupName": "b2bi/p-60fbc37c87f04fce9-Logs",
98
- * "logging": "ENABLED",
99
- * "phone": "5555555555",
100
- * "profileArn": "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9",
101
- * "profileId": "p-60fbc37c87f04fce9"
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
- * @public
118
+ *
119
119
  * @example Sample GetTransformer call
120
120
  * ```javascript
121
121
  * //
122
122
  * const input = {
123
- * "transformerId": "tr-974c129999f84d8c9"
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
- * "name": "transformX12",
130
- * "createdAt": "2023-11-01T21:51:05.504Z",
131
- * "inputConversion": {
132
- * "formatOptions": {
133
- * "x12": {
134
- * "version": "VERSION_4010",
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
- * "fromFormat": "X12"
137
+ * fromFormat: "X12"
139
138
  * },
140
- * "mapping": {
141
- * "template": "{}",
142
- * "templateLanguage": "JSONATA"
139
+ * mapping: {
140
+ * template: "{}",
141
+ * templateLanguage: "JSONATA"
143
142
  * },
144
- * "sampleDocuments": {
145
- * "bucketName": "test-bucket",
146
- * "keys": [
143
+ * name: "transformX12",
144
+ * sampleDocuments: {
145
+ * bucketName: "test-bucket",
146
+ * keys: [
147
147
  * {
148
- * "input": "sampleDoc.txt"
148
+ * input: "sampleDoc.txt"
149
149
  * }
150
150
  * ]
151
151
  * },
152
- * "status": "inactive",
153
- * "transformerArn": "arn:aws:b2bi:us-west-2:123456789012:transformer/tr-974c129999f84d8c9",
154
- * "transformerId": "tr-974c129999f84d8c9"
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
- * @public
80
+ *
81
81
  * @example Sample GetTransformerJob call
82
82
  * ```javascript
83
83
  * //
84
84
  * const input = {
85
- * "transformerId": "tr-974c129999f84d8c9",
86
- * "transformerJobId": "tj-vpYxfV7yQOqjMSYllEslLw"
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
- * "message": "Transformed, writing output",
93
- * "outputFiles": [
92
+ * message: "Transformed, writing output",
93
+ * outputFiles: [
94
94
  * {
95
- * "key": "output/sample-214.edi.2023-11-01T10:44:03.353Z.json",
96
- * "bucketName": "gt-edi-test"
95
+ * bucketName: "gt-edi-test",
96
+ * key: "output/sample-214.edi.2023-11-01T10:44:03.353Z.json"
97
97
  * }
98
98
  * ],
99
- * "status": "succeeded"
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
- * @public
79
+ *
80
80
  * @example Sample ListCapabilities call
81
81
  * ```javascript
82
82
  * //
83
83
  * const input = {
84
- * "maxResults": 50,
85
- * "nextToken": "foo"
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
- * "capabilities": [
91
+ * capabilities: [
92
92
  * {
93
- * "name": "b2biexample",
94
- * "type": "edi",
95
- * "capabilityId": "ca-963a8121e4fc4e348",
96
- * "createdAt": "2023-11-01T21:51:05.504Z",
97
- * "modifiedAt": "2023-11-01T21:51:05.504Z"
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
- * "nextToken": "foo"
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
- * @public
116
+ *
117
117
  * @example Sample ListPartnerships call
118
118
  * ```javascript
119
119
  * //
120
120
  * const input = {
121
- * "maxResults": 50,
122
- * "nextToken": "foo",
123
- * "profileId": "p-60fbc37c87f04fce9"
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
- * "nextToken": "string",
130
- * "partnerships": [
129
+ * nextToken: "string",
130
+ * partnerships: [
131
131
  * {
132
- * "name": "b2bipartner",
133
- * "capabilities": [
132
+ * capabilities: [
134
133
  * "ca-963a8121e4fc4e348"
135
134
  * ],
136
- * "createdAt": "2023-11-01T21:51:05.504Z",
137
- * "modifiedAt": "2023-11-01T21:51:05.504Z",
138
- * "partnershipId": "ps-219fa02f5b4242af8",
139
- * "profileId": "p-60fbc37c87f04fce9",
140
- * "tradingPartnerId": "tp-2a17ca447f6f4a8a8"
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
- * @public
82
+ *
83
83
  * @example Sample ListProfiles call
84
84
  * ```javascript
85
85
  * //
86
86
  * const input = {
87
- * "maxResults": 50,
88
- * "nextToken": "foo"
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
- * "nextToken": "foo",
95
- * "profiles": [
94
+ * nextToken: "foo",
95
+ * profiles: [
96
96
  * {
97
- * "name": "Shipping Profile",
98
- * "businessName": "John's Trucking",
99
- * "createdAt": "2023-11-01T21:51:05.504Z",
100
- * "logGroupName": "b2bi/p-60fbc37c87f04fce9-Logs",
101
- * "logging": "ENABLED",
102
- * "profileId": "p-60fbc37c87f04fce9"
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
- * @public
71
+ *
72
72
  * @example Sample ListTagsForResources call
73
73
  * ```javascript
74
74
  * //
75
75
  * const input = {
76
- * "ResourceARN": "arn:aws:b2bi:us-west-2:123456789012:profile/p-60fbc37c87f04fce9"
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
- * "Tags": [
82
+ * Tags: [
83
83
  * {
84
- * "Key": "sampleKey",
85
- * "Value": "SampleValue"
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
- * @public
120
+ *
121
121
  * @example Sample ListTransformers call
122
122
  * ```javascript
123
123
  * //
124
124
  * const input = {
125
- * "maxResults": 50,
126
- * "nextToken": "foo"
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
- * "nextToken": "foo",
133
- * "transformers": [
132
+ * nextToken: "foo",
133
+ * transformers: [
134
134
  * {
135
- * "name": "transformJSON",
136
- * "createdAt": "2023-11-01T21:51:05.504Z",
137
- * "ediType": {
138
- * "x12Details": {
139
- * "version": "VERSION_4010",
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
- * "fileFormat": "JSON",
144
- * "mappingTemplate": "$",
145
- * "modifiedAt": "2023-11-01T21:51:05.504Z",
146
- * "sampleDocument": "s3://test-bucket/sampleDoc.txt",
147
- * "status": "inactive",
148
- * "transformerId": "tr-974c129999f84d8c9"
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. */