@aws-sdk/client-supplychain 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 (28) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
  2. package/dist-cjs/index.js +17 -18
  3. package/dist-es/SupplyChainClient.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/CreateBillOfMaterialsImportJobCommand.d.ts +7 -7
  8. package/dist-types/commands/CreateDataIntegrationFlowCommand.d.ts +47 -48
  9. package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +160 -161
  10. package/dist-types/commands/CreateInstanceCommand.d.ts +29 -30
  11. package/dist-types/commands/DeleteDataIntegrationFlowCommand.d.ts +7 -7
  12. package/dist-types/commands/DeleteDataLakeDatasetCommand.d.ts +16 -17
  13. package/dist-types/commands/DeleteInstanceCommand.d.ts +14 -14
  14. package/dist-types/commands/GetBillOfMaterialsImportJobCommand.d.ts +19 -20
  15. package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +24 -24
  16. package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +136 -137
  17. package/dist-types/commands/GetInstanceCommand.d.ts +27 -28
  18. package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +44 -44
  19. package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +157 -158
  20. package/dist-types/commands/ListInstancesCommand.d.ts +60 -63
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
  22. package/dist-types/commands/SendDataIntegrationEventCommand.d.ts +107 -121
  23. package/dist-types/commands/TagResourceCommand.d.ts +9 -6
  24. package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
  25. package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +80 -81
  26. package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +138 -139
  27. package/dist-types/commands/UpdateInstanceCommand.d.ts +16 -16
  28. package/package.json +33 -33
@@ -80,307 +80,293 @@ declare const SendDataIntegrationEventCommand_base: {
80
80
  * @throws {@link SupplyChainServiceException}
81
81
  * <p>Base exception class for all service exceptions from SupplyChain service.</p>
82
82
  *
83
- * @public
83
+ *
84
84
  * @example Successful SendDataIntegrationEvent for inboundorder event type
85
85
  * ```javascript
86
86
  * //
87
87
  * const input = {
88
- * "data": "{\"id\": \"inbound-order-id-test-123\", \"tpartner_id\": \"partner-id-test-123\" }",
89
- * "eventGroupId": "inboundOrderId",
90
- * "eventTimestamp": 1515531081.123,
91
- * "eventType": "scn.data.inboundorder",
92
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
88
+ * data: `{"id": "inbound-order-id-test-123", "tpartner_id": "partner-id-test-123" }`,
89
+ * eventGroupId: "inboundOrderId",
90
+ * eventTimestamp: 1.515531081123E9,
91
+ * eventType: "scn.data.inboundorder",
92
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
93
93
  * };
94
94
  * const command = new SendDataIntegrationEventCommand(input);
95
95
  * const response = await client.send(command);
96
- * /* response ==
96
+ * /* response is
97
97
  * {
98
- * "eventId": "c4132c1d-8f60-44a2-9932-f723c4f7b8a7"
98
+ * eventId: "c4132c1d-8f60-44a2-9932-f723c4f7b8a7"
99
99
  * }
100
100
  * *\/
101
- * // example id: example-1
102
101
  * ```
103
102
  *
104
103
  * @example Successful SendDataIntegrationEvent for inboundorderline event type
105
104
  * ```javascript
106
105
  * //
107
106
  * const input = {
108
- * "data": "{\"id\": \"inbound-order-line-id-test-123\", \"order_id\": \"order-id-test-123\", \"tpartner_id\": \"partner-id-test-123\", \"product_id\": \"product-id-test-123\", \"quantity_submitted\": \"100.0\" }",
109
- * "eventGroupId": "inboundOrderLineId",
110
- * "eventTimestamp": 1515531081.123,
111
- * "eventType": "scn.data.inboundorderline",
112
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
107
+ * data: `{"id": "inbound-order-line-id-test-123", "order_id": "order-id-test-123", "tpartner_id": "partner-id-test-123", "product_id": "product-id-test-123", "quantity_submitted": "100.0" }`,
108
+ * eventGroupId: "inboundOrderLineId",
109
+ * eventTimestamp: 1.515531081123E9,
110
+ * eventType: "scn.data.inboundorderline",
111
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
113
112
  * };
114
113
  * const command = new SendDataIntegrationEventCommand(input);
115
114
  * const response = await client.send(command);
116
- * /* response ==
115
+ * /* response is
117
116
  * {
118
- * "eventId": "45d95db2-d106-40e0-aa98-f1204230a691"
117
+ * eventId: "45d95db2-d106-40e0-aa98-f1204230a691"
119
118
  * }
120
119
  * *\/
121
- * // example id: example-2
122
120
  * ```
123
121
  *
124
122
  * @example Successful SendDataIntegrationEvent for inboundorderlineschedule event type
125
123
  * ```javascript
126
124
  * //
127
125
  * const input = {
128
- * "data": "{\"id\": \"inbound-order-line-schedule-id-test-123\", \"order_id\": \"order-id-test-123\", \"order_line_id\": \"order-line-id-test-123\", \"product_id\": \"product-id-test-123\"}",
129
- * "eventGroupId": "inboundOrderLineScheduleId",
130
- * "eventTimestamp": 1515531081.123,
131
- * "eventType": "scn.data.inboundorderlineschedule",
132
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
126
+ * data: `{"id": "inbound-order-line-schedule-id-test-123", "order_id": "order-id-test-123", "order_line_id": "order-line-id-test-123", "product_id": "product-id-test-123"}`,
127
+ * eventGroupId: "inboundOrderLineScheduleId",
128
+ * eventTimestamp: 1.515531081123E9,
129
+ * eventType: "scn.data.inboundorderlineschedule",
130
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
133
131
  * };
134
132
  * const command = new SendDataIntegrationEventCommand(input);
135
133
  * const response = await client.send(command);
136
- * /* response ==
134
+ * /* response is
137
135
  * {
138
- * "eventId": "5abba995-7735-4d1e-95c4-7cc93e48cf9f"
136
+ * eventId: "5abba995-7735-4d1e-95c4-7cc93e48cf9f"
139
137
  * }
140
138
  * *\/
141
- * // example id: example-3
142
139
  * ```
143
140
  *
144
141
  * @example Successful SendDataIntegrationEvent for forecast event type
145
142
  * ```javascript
146
143
  * //
147
144
  * const input = {
148
- * "data": "{\"snapshot_date\": \"1672470400000\", \"product_id\": \"product-id-test-123\", \"site_id\": \"site-id-test-123\", \"region_id\": \"region-id-test-123\", \"product_group_id\": \"product-group-id-test-123\", \"forecast_start_dttm\": \"1672470400000\", \"forecast_end_dttm\": \"1672470400000\" }",
149
- * "eventGroupId": "forecastId",
150
- * "eventTimestamp": 1515531081.123,
151
- * "eventType": "scn.data.forecast",
152
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
145
+ * data: `{"snapshot_date": "1672470400000", "product_id": "product-id-test-123", "site_id": "site-id-test-123", "region_id": "region-id-test-123", "product_group_id": "product-group-id-test-123", "forecast_start_dttm": "1672470400000", "forecast_end_dttm": "1672470400000" }`,
146
+ * eventGroupId: "forecastId",
147
+ * eventTimestamp: 1.515531081123E9,
148
+ * eventType: "scn.data.forecast",
149
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
153
150
  * };
154
151
  * const command = new SendDataIntegrationEventCommand(input);
155
152
  * const response = await client.send(command);
156
- * /* response ==
153
+ * /* response is
157
154
  * {
158
- * "eventId": "29312d5b-f499-4dcd-b017-3dab3cd34d61"
155
+ * eventId: "29312d5b-f499-4dcd-b017-3dab3cd34d61"
159
156
  * }
160
157
  * *\/
161
- * // example id: example-4
162
158
  * ```
163
159
  *
164
160
  * @example Successful SendDataIntegrationEvent for inventorylevel event type
165
161
  * ```javascript
166
162
  * //
167
163
  * const input = {
168
- * "data": "{\"snapshot_date\": \"1672470400000\", \"site_id\": \"site-id-test-123\", \"product_id\": \"product-id-test-123\", \"on_hand_inventory\": \"100.0\", \"inv_condition\": \"good\", \"lot_number\": \"lot-number-test-123\"}",
169
- * "eventGroupId": "inventoryLevelId",
170
- * "eventTimestamp": 1515531081.123,
171
- * "eventType": "scn.data.inventorylevel",
172
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
164
+ * data: `{"snapshot_date": "1672470400000", "site_id": "site-id-test-123", "product_id": "product-id-test-123", "on_hand_inventory": "100.0", "inv_condition": "good", "lot_number": "lot-number-test-123"}`,
165
+ * eventGroupId: "inventoryLevelId",
166
+ * eventTimestamp: 1.515531081123E9,
167
+ * eventType: "scn.data.inventorylevel",
168
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
173
169
  * };
174
170
  * const command = new SendDataIntegrationEventCommand(input);
175
171
  * const response = await client.send(command);
176
- * /* response ==
172
+ * /* response is
177
173
  * {
178
- * "eventId": "3aa78324-acd8-4fdd-a19e-231ea003c2b3"
174
+ * eventId: "3aa78324-acd8-4fdd-a19e-231ea003c2b3"
179
175
  * }
180
176
  * *\/
181
- * // example id: example-5
182
177
  * ```
183
178
  *
184
179
  * @example Successful SendDataIntegrationEvent for outboundorderline event type
185
180
  * ```javascript
186
181
  * //
187
182
  * const input = {
188
- * "data": "{\"id\": \"outbound-orderline-id-test-123\", \"cust_order_id\": \"cust-order-id-test-123\", \"product_id\": \"product-id-test-123\" }",
189
- * "eventGroupId": "outboundOrderLineId",
190
- * "eventTimestamp": 1515531081.123,
191
- * "eventType": "scn.data.outboundorderline",
192
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
183
+ * data: `{"id": "outbound-orderline-id-test-123", "cust_order_id": "cust-order-id-test-123", "product_id": "product-id-test-123" }`,
184
+ * eventGroupId: "outboundOrderLineId",
185
+ * eventTimestamp: 1.515531081123E9,
186
+ * eventType: "scn.data.outboundorderline",
187
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
193
188
  * };
194
189
  * const command = new SendDataIntegrationEventCommand(input);
195
190
  * const response = await client.send(command);
196
- * /* response ==
191
+ * /* response is
197
192
  * {
198
- * "eventId": "959b7ef9-5e2d-4795-b1ca-5b16a3eb6b89"
193
+ * eventId: "959b7ef9-5e2d-4795-b1ca-5b16a3eb6b89"
199
194
  * }
200
195
  * *\/
201
- * // example id: example-6
202
196
  * ```
203
197
  *
204
198
  * @example Successful SendDataIntegrationEvent for outboundshipment event type
205
199
  * ```javascript
206
200
  * //
207
201
  * const input = {
208
- * "data": "{\"id\": \"outbound-shipment-id-test-123\", \"cust_order_id\": \"cust-order-id-test-123\", \"cust_order_line_id\": \"cust-order-line-id-test-123\", \"product_id\": \"product-id-test-123\" }",
209
- * "eventGroupId": "outboundShipmentId",
210
- * "eventTimestamp": 1515531081.123,
211
- * "eventType": "scn.data.outboundshipment",
212
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
202
+ * data: `{"id": "outbound-shipment-id-test-123", "cust_order_id": "cust-order-id-test-123", "cust_order_line_id": "cust-order-line-id-test-123", "product_id": "product-id-test-123" }`,
203
+ * eventGroupId: "outboundShipmentId",
204
+ * eventTimestamp: 1.515531081123E9,
205
+ * eventType: "scn.data.outboundshipment",
206
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
213
207
  * };
214
208
  * const command = new SendDataIntegrationEventCommand(input);
215
209
  * const response = await client.send(command);
216
- * /* response ==
210
+ * /* response is
217
211
  * {
218
- * "eventId": "59feded3-5e46-4126-81bf-0137ca176ee0"
212
+ * eventId: "59feded3-5e46-4126-81bf-0137ca176ee0"
219
213
  * }
220
214
  * *\/
221
- * // example id: example-7
222
215
  * ```
223
216
  *
224
217
  * @example Successful SendDataIntegrationEvent for processheader event type
225
218
  * ```javascript
226
219
  * //
227
220
  * const input = {
228
- * "data": "{\"process_id\": \"process-id-test-123\" }",
229
- * "eventGroupId": "processHeaderId",
230
- * "eventTimestamp": 1515531081.123,
231
- * "eventType": "scn.data.processheader",
232
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
221
+ * data: `{"process_id": "process-id-test-123" }`,
222
+ * eventGroupId: "processHeaderId",
223
+ * eventTimestamp: 1.515531081123E9,
224
+ * eventType: "scn.data.processheader",
225
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
233
226
  * };
234
227
  * const command = new SendDataIntegrationEventCommand(input);
235
228
  * const response = await client.send(command);
236
- * /* response ==
229
+ * /* response is
237
230
  * {
238
- * "eventId": "564130eb-2d8a-4550-a768-ddf0daf7b4a9"
231
+ * eventId: "564130eb-2d8a-4550-a768-ddf0daf7b4a9"
239
232
  * }
240
233
  * *\/
241
- * // example id: example-8
242
234
  * ```
243
235
  *
244
236
  * @example Successful SendDataIntegrationEvent for processoperation event type
245
237
  * ```javascript
246
238
  * //
247
239
  * const input = {
248
- * "data": "{\"process_operation_id\": \"process-operation-id-test-123\", \"process_id\": \"process-id-test-123\" }",
249
- * "eventGroupId": "processOperationId",
250
- * "eventTimestamp": 1515531081.123,
251
- * "eventType": "scn.data.processoperation",
252
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
240
+ * data: `{"process_operation_id": "process-operation-id-test-123", "process_id": "process-id-test-123" }`,
241
+ * eventGroupId: "processOperationId",
242
+ * eventTimestamp: 1.515531081123E9,
243
+ * eventType: "scn.data.processoperation",
244
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
253
245
  * };
254
246
  * const command = new SendDataIntegrationEventCommand(input);
255
247
  * const response = await client.send(command);
256
- * /* response ==
248
+ * /* response is
257
249
  * {
258
- * "eventId": "db5df408-89c7-4b9f-a326-016f6c2b3396"
250
+ * eventId: "db5df408-89c7-4b9f-a326-016f6c2b3396"
259
251
  * }
260
252
  * *\/
261
- * // example id: example-9
262
253
  * ```
263
254
  *
264
255
  * @example Successful SendDataIntegrationEvent for processproduct event type
265
256
  * ```javascript
266
257
  * //
267
258
  * const input = {
268
- * "data": "{\"process_product_id\": \"process-product-id-test-123\", \"process_id\": \"process-id-test-123\" }",
269
- * "eventGroupId": "processProductId",
270
- * "eventTimestamp": 1515531081.123,
271
- * "eventType": "scn.data.processproduct",
272
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
259
+ * data: `{"process_product_id": "process-product-id-test-123", "process_id": "process-id-test-123" }`,
260
+ * eventGroupId: "processProductId",
261
+ * eventTimestamp: 1.515531081123E9,
262
+ * eventType: "scn.data.processproduct",
263
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
273
264
  * };
274
265
  * const command = new SendDataIntegrationEventCommand(input);
275
266
  * const response = await client.send(command);
276
- * /* response ==
267
+ * /* response is
277
268
  * {
278
- * "eventId": "6929b275-485e-4035-a798-99077ca6d669"
269
+ * eventId: "6929b275-485e-4035-a798-99077ca6d669"
279
270
  * }
280
271
  * *\/
281
- * // example id: example-10
282
272
  * ```
283
273
  *
284
274
  * @example Successful SendDataIntegrationEvent for reservation event type
285
275
  * ```javascript
286
276
  * //
287
277
  * const input = {
288
- * "data": "{\"reservation_id\": \"reservation-id-test-123\", \"reservation_detail_id\": \"reservation-detail-id-test-123\" }",
289
- * "eventGroupId": "reservationId",
290
- * "eventTimestamp": 1515531081.123,
291
- * "eventType": "scn.data.reservation",
292
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
278
+ * data: `{"reservation_id": "reservation-id-test-123", "reservation_detail_id": "reservation-detail-id-test-123" }`,
279
+ * eventGroupId: "reservationId",
280
+ * eventTimestamp: 1.515531081123E9,
281
+ * eventType: "scn.data.reservation",
282
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
293
283
  * };
294
284
  * const command = new SendDataIntegrationEventCommand(input);
295
285
  * const response = await client.send(command);
296
- * /* response ==
286
+ * /* response is
297
287
  * {
298
- * "eventId": "f6c55a8b-fde2-44f6-848a-9b4336c77209"
288
+ * eventId: "f6c55a8b-fde2-44f6-848a-9b4336c77209"
299
289
  * }
300
290
  * *\/
301
- * // example id: example-11
302
291
  * ```
303
292
  *
304
293
  * @example Successful SendDataIntegrationEvent for shipment event type
305
294
  * ```javascript
306
295
  * //
307
296
  * const input = {
308
- * "data": "{\"id\": \"shipment-id-test-123\", \"supplier_tpartner_id\": \"supplier-tpartner-id-test-123\", \"product_id\": \"product-id-test-123\", \"order_id\": \"order-id-test-123\", \"order_line_id\": \"order-line-id-test-123\", \"package_id\": \"package-id-test-123\" }",
309
- * "eventGroupId": "shipmentId",
310
- * "eventTimestamp": 1515531081.123,
311
- * "eventType": "scn.data.shipment",
312
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
297
+ * data: `{"id": "shipment-id-test-123", "supplier_tpartner_id": "supplier-tpartner-id-test-123", "product_id": "product-id-test-123", "order_id": "order-id-test-123", "order_line_id": "order-line-id-test-123", "package_id": "package-id-test-123" }`,
298
+ * eventGroupId: "shipmentId",
299
+ * eventTimestamp: 1.515531081123E9,
300
+ * eventType: "scn.data.shipment",
301
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
313
302
  * };
314
303
  * const command = new SendDataIntegrationEventCommand(input);
315
304
  * const response = await client.send(command);
316
- * /* response ==
305
+ * /* response is
317
306
  * {
318
- * "eventId": "61d079d8-3f56-49bb-b35a-c0271a4e4f0a"
307
+ * eventId: "61d079d8-3f56-49bb-b35a-c0271a4e4f0a"
319
308
  * }
320
309
  * *\/
321
- * // example id: example-12
322
310
  * ```
323
311
  *
324
312
  * @example Successful SendDataIntegrationEvent for shipmentstop event type
325
313
  * ```javascript
326
314
  * //
327
315
  * const input = {
328
- * "data": "{\"shipment_stop_id\": \"shipment-stop-id-test-123\", \"shipment_id\": \"shipment-id-test-123\" }",
329
- * "eventGroupId": "shipmentStopId",
330
- * "eventTimestamp": 1515531081.123,
331
- * "eventType": "scn.data.shipmentstop",
332
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
316
+ * data: `{"shipment_stop_id": "shipment-stop-id-test-123", "shipment_id": "shipment-id-test-123" }`,
317
+ * eventGroupId: "shipmentStopId",
318
+ * eventTimestamp: 1.515531081123E9,
319
+ * eventType: "scn.data.shipmentstop",
320
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
333
321
  * };
334
322
  * const command = new SendDataIntegrationEventCommand(input);
335
323
  * const response = await client.send(command);
336
- * /* response ==
324
+ * /* response is
337
325
  * {
338
- * "eventId": "3610992a-fc2f-4da4-9beb-724994622ba1"
326
+ * eventId: "3610992a-fc2f-4da4-9beb-724994622ba1"
339
327
  * }
340
328
  * *\/
341
- * // example id: example-13
342
329
  * ```
343
330
  *
344
331
  * @example Successful SendDataIntegrationEvent for shipmentstoporder event type
345
332
  * ```javascript
346
333
  * //
347
334
  * const input = {
348
- * "data": "{\"shipment_stop_order_id\": \"shipment-stop-order-id-test-123\", \"shipment_stop_id\": \"shipment-stop-id-test-123\", \"shipment_id\": \"shipment-id-test-123\" }",
349
- * "eventGroupId": "shipmentStopOrderId",
350
- * "eventTimestamp": 1515531081.123,
351
- * "eventType": "scn.data.shipmentstoporder",
352
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
335
+ * data: `{"shipment_stop_order_id": "shipment-stop-order-id-test-123", "shipment_stop_id": "shipment-stop-id-test-123", "shipment_id": "shipment-id-test-123" }`,
336
+ * eventGroupId: "shipmentStopOrderId",
337
+ * eventTimestamp: 1.515531081123E9,
338
+ * eventType: "scn.data.shipmentstoporder",
339
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
353
340
  * };
354
341
  * const command = new SendDataIntegrationEventCommand(input);
355
342
  * const response = await client.send(command);
356
- * /* response ==
343
+ * /* response is
357
344
  * {
358
- * "eventId": "1d550a60-9321-4d25-a132-9dd4b2d9e934"
345
+ * eventId: "1d550a60-9321-4d25-a132-9dd4b2d9e934"
359
346
  * }
360
347
  * *\/
361
- * // example id: example-14
362
348
  * ```
363
349
  *
364
350
  * @example Successful SendDataIntegrationEvent for supplyplan event type
365
351
  * ```javascript
366
352
  * //
367
353
  * const input = {
368
- * "data": "{\"supply_plan_id\": \"supply-plan-id-test-123\" }",
369
- * "eventGroupId": "supplyPlanId",
370
- * "eventTimestamp": 1515531081.123,
371
- * "eventType": "scn.data.supplyplan",
372
- * "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
354
+ * data: `{"supply_plan_id": "supply-plan-id-test-123" }`,
355
+ * eventGroupId: "supplyPlanId",
356
+ * eventTimestamp: 1.515531081123E9,
357
+ * eventType: "scn.data.supplyplan",
358
+ * instanceId: "8928ae12-15e5-4441-825d-ec2184f0a43a"
373
359
  * };
374
360
  * const command = new SendDataIntegrationEventCommand(input);
375
361
  * const response = await client.send(command);
376
- * /* response ==
362
+ * /* response is
377
363
  * {
378
- * "eventId": "9abaee56-5dc4-4c31-8250-3206a651d8a1"
364
+ * eventId: "9abaee56-5dc4-4c31-8250-3206a651d8a1"
379
365
  * }
380
366
  * *\/
381
- * // example id: example-15
382
367
  * ```
383
368
  *
369
+ * @public
384
370
  */
385
371
  export declare class SendDataIntegrationEventCommand extends SendDataIntegrationEventCommand_base {
386
372
  /** @internal type navigation helper, not in runtime. */
@@ -76,21 +76,24 @@ declare const TagResourceCommand_base: {
76
76
  * @throws {@link SupplyChainServiceException}
77
77
  * <p>Base exception class for all service exceptions from SupplyChain service.</p>
78
78
  *
79
- * @public
79
+ *
80
80
  * @example Successful TagResource
81
81
  * ```javascript
82
82
  * //
83
83
  * const input = {
84
- * "resourceArn": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1",
85
- * "tags": {
86
- * "tagKey1": "tagValue1"
84
+ * resourceArn: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1",
85
+ * tags: {
86
+ * tagKey1: "tagValue1"
87
87
  * }
88
88
  * };
89
89
  * const command = new TagResourceCommand(input);
90
- * await client.send(command);
91
- * // example id: example-1
90
+ * const response = await client.send(command);
91
+ * /* response is
92
+ * { /* empty *\/ }
93
+ * *\/
92
94
  * ```
93
95
  *
96
+ * @public
94
97
  */
95
98
  export declare class TagResourceCommand extends TagResourceCommand_base {
96
99
  /** @internal type navigation helper, not in runtime. */
@@ -76,21 +76,24 @@ declare const UntagResourceCommand_base: {
76
76
  * @throws {@link SupplyChainServiceException}
77
77
  * <p>Base exception class for all service exceptions from SupplyChain service.</p>
78
78
  *
79
- * @public
79
+ *
80
80
  * @example Successful UntagResource
81
81
  * ```javascript
82
82
  * //
83
83
  * const input = {
84
- * "resourceArn": "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1",
85
- * "tagKeys": [
84
+ * resourceArn: "arn:aws:scn:us-east-1:123456789012:instance/8850c54e-e187-4fa7-89d4-6370f165174d/data-integration-flows/my_flow1",
85
+ * tagKeys: [
86
86
  * "tagKey1"
87
87
  * ]
88
88
  * };
89
89
  * const command = new UntagResourceCommand(input);
90
- * await client.send(command);
91
- * // example id: example-1
90
+ * const response = await client.send(command);
91
+ * /* response is
92
+ * { /* empty *\/ }
93
+ * *\/
92
94
  * ```
93
95
  *
96
+ * @public
94
97
  */
95
98
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
96
99
  /** @internal type navigation helper, not in runtime. */