@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.
- package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/SupplyChainClient.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- package/dist-types/commands/CreateBillOfMaterialsImportJobCommand.d.ts +7 -7
- package/dist-types/commands/CreateDataIntegrationFlowCommand.d.ts +47 -48
- package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +160 -161
- package/dist-types/commands/CreateInstanceCommand.d.ts +29 -30
- package/dist-types/commands/DeleteDataIntegrationFlowCommand.d.ts +7 -7
- package/dist-types/commands/DeleteDataLakeDatasetCommand.d.ts +16 -17
- package/dist-types/commands/DeleteInstanceCommand.d.ts +14 -14
- package/dist-types/commands/GetBillOfMaterialsImportJobCommand.d.ts +19 -20
- package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +24 -24
- package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +136 -137
- package/dist-types/commands/GetInstanceCommand.d.ts +27 -28
- package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +44 -44
- package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +157 -158
- package/dist-types/commands/ListInstancesCommand.d.ts +60 -63
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
- package/dist-types/commands/SendDataIntegrationEventCommand.d.ts +107 -121
- package/dist-types/commands/TagResourceCommand.d.ts +9 -6
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +80 -81
- package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +138 -139
- package/dist-types/commands/UpdateInstanceCommand.d.ts +16 -16
- package/package.json +33 -33
|
@@ -109,274 +109,273 @@ declare const CreateDataLakeDatasetCommand_base: {
|
|
|
109
109
|
* @throws {@link SupplyChainServiceException}
|
|
110
110
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
111
111
|
*
|
|
112
|
-
*
|
|
112
|
+
*
|
|
113
113
|
* @example Create an AWS Supply Chain inbound order dataset
|
|
114
114
|
* ```javascript
|
|
115
115
|
* //
|
|
116
116
|
* const input = {
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
117
|
+
* description: "This is an AWS Supply Chain inbound order dataset",
|
|
118
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
119
|
+
* name: "inbound_order",
|
|
120
|
+
* namespace: "asc",
|
|
121
|
+
* tags: {
|
|
122
|
+
* tagKey1: "tagValue1",
|
|
123
|
+
* tagKey2: "tagValue2"
|
|
124
124
|
* }
|
|
125
125
|
* };
|
|
126
126
|
* const command = new CreateDataLakeDatasetCommand(input);
|
|
127
127
|
* const response = await client.send(command);
|
|
128
|
-
* /* response
|
|
128
|
+
* /* response is
|
|
129
129
|
* {
|
|
130
|
-
*
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
* "
|
|
134
|
-
*
|
|
135
|
-
*
|
|
136
|
-
* "
|
|
137
|
-
*
|
|
138
|
-
*
|
|
139
|
-
*
|
|
140
|
-
* "fields": [
|
|
130
|
+
* dataset: {
|
|
131
|
+
* arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/asc/datasets/inbound_order",
|
|
132
|
+
* createdTime: 1.727116807751E9,
|
|
133
|
+
* description: "This is an AWS Supply Chain inbound order dataset",
|
|
134
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
135
|
+
* lastModifiedTime: 1.727116807751E9,
|
|
136
|
+
* name: "inbound_order",
|
|
137
|
+
* namespace: "asc",
|
|
138
|
+
* schema: {
|
|
139
|
+
* fields: [
|
|
141
140
|
* {
|
|
142
|
-
*
|
|
143
|
-
*
|
|
144
|
-
* "
|
|
141
|
+
* isRequired: true,
|
|
142
|
+
* name: "id",
|
|
143
|
+
* type: "STRING"
|
|
145
144
|
* },
|
|
146
145
|
* {
|
|
147
|
-
*
|
|
148
|
-
*
|
|
149
|
-
* "
|
|
146
|
+
* isRequired: true,
|
|
147
|
+
* name: "tpartner_id",
|
|
148
|
+
* type: "STRING"
|
|
150
149
|
* },
|
|
151
150
|
* {
|
|
152
|
-
*
|
|
153
|
-
*
|
|
154
|
-
* "
|
|
151
|
+
* isRequired: true,
|
|
152
|
+
* name: "connection_id",
|
|
153
|
+
* type: "STRING"
|
|
155
154
|
* },
|
|
156
155
|
* {
|
|
157
|
-
*
|
|
158
|
-
*
|
|
159
|
-
* "
|
|
156
|
+
* isRequired: false,
|
|
157
|
+
* name: "order_type",
|
|
158
|
+
* type: "STRING"
|
|
160
159
|
* },
|
|
161
160
|
* {
|
|
162
|
-
*
|
|
163
|
-
*
|
|
164
|
-
* "
|
|
161
|
+
* isRequired: false,
|
|
162
|
+
* name: "order_status",
|
|
163
|
+
* type: "STRING"
|
|
165
164
|
* },
|
|
166
165
|
* {
|
|
167
|
-
*
|
|
168
|
-
*
|
|
169
|
-
* "
|
|
166
|
+
* isRequired: false,
|
|
167
|
+
* name: "inbound_order_url",
|
|
168
|
+
* type: "STRING"
|
|
170
169
|
* },
|
|
171
170
|
* {
|
|
172
|
-
*
|
|
173
|
-
*
|
|
174
|
-
* "
|
|
171
|
+
* isRequired: false,
|
|
172
|
+
* name: "order_creation_date",
|
|
173
|
+
* type: "TIMESTAMP"
|
|
175
174
|
* },
|
|
176
175
|
* {
|
|
177
|
-
*
|
|
178
|
-
*
|
|
179
|
-
* "
|
|
176
|
+
* isRequired: false,
|
|
177
|
+
* name: "company_id",
|
|
178
|
+
* type: "STRING"
|
|
180
179
|
* },
|
|
181
180
|
* {
|
|
182
|
-
*
|
|
183
|
-
*
|
|
184
|
-
* "
|
|
181
|
+
* isRequired: false,
|
|
182
|
+
* name: "to_site_id",
|
|
183
|
+
* type: "STRING"
|
|
185
184
|
* },
|
|
186
185
|
* {
|
|
187
|
-
*
|
|
188
|
-
*
|
|
189
|
-
* "
|
|
186
|
+
* isRequired: false,
|
|
187
|
+
* name: "order_currency_uom",
|
|
188
|
+
* type: "STRING"
|
|
190
189
|
* },
|
|
191
190
|
* {
|
|
192
|
-
*
|
|
193
|
-
*
|
|
194
|
-
* "
|
|
191
|
+
* isRequired: false,
|
|
192
|
+
* name: "vendor_currency_uom",
|
|
193
|
+
* type: "STRING"
|
|
195
194
|
* },
|
|
196
195
|
* {
|
|
197
|
-
*
|
|
198
|
-
*
|
|
199
|
-
* "
|
|
196
|
+
* isRequired: false,
|
|
197
|
+
* name: "exchange_rate",
|
|
198
|
+
* type: "DOUBLE"
|
|
200
199
|
* },
|
|
201
200
|
* {
|
|
202
|
-
*
|
|
203
|
-
*
|
|
204
|
-
* "
|
|
201
|
+
* isRequired: false,
|
|
202
|
+
* name: "exchange_rate_date",
|
|
203
|
+
* type: "TIMESTAMP"
|
|
205
204
|
* },
|
|
206
205
|
* {
|
|
207
|
-
*
|
|
208
|
-
*
|
|
209
|
-
* "
|
|
206
|
+
* isRequired: false,
|
|
207
|
+
* name: "incoterm",
|
|
208
|
+
* type: "STRING"
|
|
210
209
|
* },
|
|
211
210
|
* {
|
|
212
|
-
*
|
|
213
|
-
*
|
|
214
|
-
* "
|
|
211
|
+
* isRequired: false,
|
|
212
|
+
* name: "incoterm2",
|
|
213
|
+
* type: "STRING"
|
|
215
214
|
* },
|
|
216
215
|
* {
|
|
217
|
-
*
|
|
218
|
-
*
|
|
219
|
-
* "
|
|
216
|
+
* isRequired: false,
|
|
217
|
+
* name: "incoterm_location_1",
|
|
218
|
+
* type: "STRING"
|
|
220
219
|
* },
|
|
221
220
|
* {
|
|
222
|
-
*
|
|
223
|
-
*
|
|
224
|
-
* "
|
|
221
|
+
* isRequired: false,
|
|
222
|
+
* name: "incoterm_location_2",
|
|
223
|
+
* type: "STRING"
|
|
225
224
|
* },
|
|
226
225
|
* {
|
|
227
|
-
*
|
|
228
|
-
*
|
|
229
|
-
* "
|
|
226
|
+
* isRequired: false,
|
|
227
|
+
* name: "submitted_date",
|
|
228
|
+
* type: "TIMESTAMP"
|
|
230
229
|
* },
|
|
231
230
|
* {
|
|
232
|
-
*
|
|
233
|
-
*
|
|
234
|
-
* "
|
|
231
|
+
* isRequired: false,
|
|
232
|
+
* name: "agreement_start_date",
|
|
233
|
+
* type: "TIMESTAMP"
|
|
235
234
|
* },
|
|
236
235
|
* {
|
|
237
|
-
*
|
|
238
|
-
*
|
|
239
|
-
* "
|
|
236
|
+
* isRequired: false,
|
|
237
|
+
* name: "agreement_end_date",
|
|
238
|
+
* type: "TIMESTAMP"
|
|
240
239
|
* },
|
|
241
240
|
* {
|
|
242
|
-
*
|
|
243
|
-
*
|
|
244
|
-
* "
|
|
241
|
+
* isRequired: false,
|
|
242
|
+
* name: "shipping_instr_code",
|
|
243
|
+
* type: "STRING"
|
|
245
244
|
* },
|
|
246
245
|
* {
|
|
247
|
-
*
|
|
248
|
-
*
|
|
249
|
-
* "
|
|
246
|
+
* isRequired: false,
|
|
247
|
+
* name: "payment_terms_code",
|
|
248
|
+
* type: "STRING"
|
|
250
249
|
* },
|
|
251
250
|
* {
|
|
252
|
-
*
|
|
253
|
-
*
|
|
254
|
-
* "
|
|
251
|
+
* isRequired: false,
|
|
252
|
+
* name: "std_terms_agreement",
|
|
253
|
+
* type: "STRING"
|
|
255
254
|
* },
|
|
256
255
|
* {
|
|
257
|
-
*
|
|
258
|
-
*
|
|
259
|
-
* "
|
|
256
|
+
* isRequired: false,
|
|
257
|
+
* name: "std_terms_agreement_ver",
|
|
258
|
+
* type: "STRING"
|
|
260
259
|
* },
|
|
261
260
|
* {
|
|
262
|
-
*
|
|
263
|
-
*
|
|
264
|
-
* "
|
|
261
|
+
* isRequired: false,
|
|
262
|
+
* name: "agreement_number",
|
|
263
|
+
* type: "STRING"
|
|
265
264
|
* },
|
|
266
265
|
* {
|
|
267
|
-
*
|
|
268
|
-
*
|
|
269
|
-
* "
|
|
266
|
+
* isRequired: false,
|
|
267
|
+
* name: "source",
|
|
268
|
+
* type: "STRING"
|
|
270
269
|
* },
|
|
271
270
|
* {
|
|
272
|
-
*
|
|
273
|
-
*
|
|
274
|
-
* "
|
|
271
|
+
* isRequired: false,
|
|
272
|
+
* name: "source_update_dttm",
|
|
273
|
+
* type: "TIMESTAMP"
|
|
275
274
|
* },
|
|
276
275
|
* {
|
|
277
|
-
*
|
|
278
|
-
*
|
|
279
|
-
* "
|
|
276
|
+
* isRequired: false,
|
|
277
|
+
* name: "source_event_id",
|
|
278
|
+
* type: "STRING"
|
|
280
279
|
* },
|
|
281
280
|
* {
|
|
282
|
-
*
|
|
283
|
-
*
|
|
284
|
-
* "
|
|
281
|
+
* isRequired: false,
|
|
282
|
+
* name: "db_creation_dttm",
|
|
283
|
+
* type: "TIMESTAMP"
|
|
285
284
|
* },
|
|
286
285
|
* {
|
|
287
|
-
*
|
|
288
|
-
*
|
|
289
|
-
* "
|
|
286
|
+
* isRequired: false,
|
|
287
|
+
* name: "db_updation_dttm",
|
|
288
|
+
* type: "TIMESTAMP"
|
|
290
289
|
* }
|
|
291
|
-
* ]
|
|
290
|
+
* ],
|
|
291
|
+
* name: "InboundOrder"
|
|
292
292
|
* }
|
|
293
293
|
* }
|
|
294
294
|
* }
|
|
295
295
|
* *\/
|
|
296
|
-
* // example id: example-1
|
|
297
296
|
* ```
|
|
298
297
|
*
|
|
299
298
|
* @example Create a custom dataset
|
|
300
299
|
* ```javascript
|
|
301
300
|
* //
|
|
302
301
|
* const input = {
|
|
303
|
-
*
|
|
304
|
-
*
|
|
305
|
-
*
|
|
306
|
-
*
|
|
307
|
-
*
|
|
308
|
-
*
|
|
309
|
-
* "fields": [
|
|
302
|
+
* description: "This is a custom dataset",
|
|
303
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
304
|
+
* name: "my_dataset",
|
|
305
|
+
* namespace: "default",
|
|
306
|
+
* schema: {
|
|
307
|
+
* fields: [
|
|
310
308
|
* {
|
|
311
|
-
*
|
|
312
|
-
*
|
|
313
|
-
* "
|
|
309
|
+
* isRequired: true,
|
|
310
|
+
* name: "id",
|
|
311
|
+
* type: "INT"
|
|
314
312
|
* },
|
|
315
313
|
* {
|
|
316
|
-
*
|
|
317
|
-
*
|
|
318
|
-
* "
|
|
314
|
+
* isRequired: true,
|
|
315
|
+
* name: "description",
|
|
316
|
+
* type: "STRING"
|
|
319
317
|
* },
|
|
320
318
|
* {
|
|
321
|
-
*
|
|
322
|
-
*
|
|
323
|
-
* "
|
|
319
|
+
* isRequired: false,
|
|
320
|
+
* name: "price",
|
|
321
|
+
* type: "DOUBLE"
|
|
324
322
|
* },
|
|
325
323
|
* {
|
|
326
|
-
*
|
|
327
|
-
*
|
|
328
|
-
* "
|
|
324
|
+
* isRequired: false,
|
|
325
|
+
* name: "creation_time",
|
|
326
|
+
* type: "TIMESTAMP"
|
|
329
327
|
* }
|
|
330
|
-
* ]
|
|
328
|
+
* ],
|
|
329
|
+
* name: "MyDataset"
|
|
331
330
|
* },
|
|
332
|
-
*
|
|
333
|
-
*
|
|
334
|
-
*
|
|
331
|
+
* tags: {
|
|
332
|
+
* tagKey1: "tagValue1",
|
|
333
|
+
* tagKey2: "tagValue2"
|
|
335
334
|
* }
|
|
336
335
|
* };
|
|
337
336
|
* const command = new CreateDataLakeDatasetCommand(input);
|
|
338
337
|
* const response = await client.send(command);
|
|
339
|
-
* /* response
|
|
338
|
+
* /* response is
|
|
340
339
|
* {
|
|
341
|
-
*
|
|
342
|
-
*
|
|
343
|
-
*
|
|
344
|
-
* "
|
|
345
|
-
*
|
|
346
|
-
*
|
|
347
|
-
* "
|
|
348
|
-
*
|
|
349
|
-
*
|
|
350
|
-
*
|
|
351
|
-
* "fields": [
|
|
340
|
+
* dataset: {
|
|
341
|
+
* arn: "arn:aws:scn:us-east-1:012345678910:instance/1877dd20-dee9-4639-8e99-cb67acf21fe5/namespaces/default/datasets/my_dataset",
|
|
342
|
+
* createdTime: 1.727116807751E9,
|
|
343
|
+
* description: "This is a custom dataset",
|
|
344
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
345
|
+
* lastModifiedTime: 1.727116807751E9,
|
|
346
|
+
* name: "my_dataset",
|
|
347
|
+
* namespace: "default",
|
|
348
|
+
* schema: {
|
|
349
|
+
* fields: [
|
|
352
350
|
* {
|
|
353
|
-
*
|
|
354
|
-
*
|
|
355
|
-
* "
|
|
351
|
+
* isRequired: true,
|
|
352
|
+
* name: "id",
|
|
353
|
+
* type: "INT"
|
|
356
354
|
* },
|
|
357
355
|
* {
|
|
358
|
-
*
|
|
359
|
-
*
|
|
360
|
-
* "
|
|
356
|
+
* isRequired: true,
|
|
357
|
+
* name: "description",
|
|
358
|
+
* type: "STRING"
|
|
361
359
|
* },
|
|
362
360
|
* {
|
|
363
|
-
*
|
|
364
|
-
*
|
|
365
|
-
* "
|
|
361
|
+
* isRequired: false,
|
|
362
|
+
* name: "price",
|
|
363
|
+
* type: "DOUBLE"
|
|
366
364
|
* },
|
|
367
365
|
* {
|
|
368
|
-
*
|
|
369
|
-
*
|
|
370
|
-
* "
|
|
366
|
+
* isRequired: false,
|
|
367
|
+
* name: "creation_time",
|
|
368
|
+
* type: "TIMESTAMP"
|
|
371
369
|
* }
|
|
372
|
-
* ]
|
|
370
|
+
* ],
|
|
371
|
+
* name: "MyDataset"
|
|
373
372
|
* }
|
|
374
373
|
* }
|
|
375
374
|
* }
|
|
376
375
|
* *\/
|
|
377
|
-
* // example id: example-2
|
|
378
376
|
* ```
|
|
379
377
|
*
|
|
378
|
+
* @public
|
|
380
379
|
*/
|
|
381
380
|
export declare class CreateDataLakeDatasetCommand extends CreateDataLakeDatasetCommand_base {
|
|
382
381
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -95,61 +95,60 @@ declare const CreateInstanceCommand_base: {
|
|
|
95
95
|
* @throws {@link SupplyChainServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
97
97
|
*
|
|
98
|
-
*
|
|
98
|
+
*
|
|
99
99
|
* @example Successful CreateInstance request with all input data
|
|
100
100
|
* ```javascript
|
|
101
101
|
* //
|
|
102
102
|
* const input = {
|
|
103
|
-
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
103
|
+
* instanceDescription: "example instance description",
|
|
104
|
+
* instanceName: "example instance name",
|
|
105
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
106
|
+
* tags: {
|
|
107
|
+
* tagKey1: "tagValue1"
|
|
108
108
|
* }
|
|
109
109
|
* };
|
|
110
110
|
* const command = new CreateInstanceCommand(input);
|
|
111
111
|
* const response = await client.send(command);
|
|
112
|
-
* /* response
|
|
112
|
+
* /* response is
|
|
113
113
|
* {
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
*
|
|
121
|
-
*
|
|
122
|
-
*
|
|
123
|
-
*
|
|
114
|
+
* instance: {
|
|
115
|
+
* awsAccountId: "123456789012",
|
|
116
|
+
* createdTime: 172615383136,
|
|
117
|
+
* instanceDescription: "example instance description",
|
|
118
|
+
* instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
|
119
|
+
* instanceName: "example instance name",
|
|
120
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
|
|
121
|
+
* lastModifiedTime: 172615383136,
|
|
122
|
+
* state: "Initializing",
|
|
123
|
+
* versionNumber: 2.0
|
|
124
124
|
* }
|
|
125
125
|
* }
|
|
126
126
|
* *\/
|
|
127
|
-
* // example id: example-1
|
|
128
127
|
* ```
|
|
129
128
|
*
|
|
130
129
|
* @example Successful CreateInstance request with no input data
|
|
131
130
|
* ```javascript
|
|
132
131
|
* //
|
|
133
|
-
* const input = {};
|
|
132
|
+
* const input = { /* empty *\/ };
|
|
134
133
|
* const command = new CreateInstanceCommand(input);
|
|
135
134
|
* const response = await client.send(command);
|
|
136
|
-
* /* response
|
|
135
|
+
* /* response is
|
|
137
136
|
* {
|
|
138
|
-
*
|
|
139
|
-
*
|
|
140
|
-
*
|
|
141
|
-
*
|
|
142
|
-
*
|
|
143
|
-
*
|
|
144
|
-
*
|
|
145
|
-
*
|
|
146
|
-
*
|
|
137
|
+
* instance: {
|
|
138
|
+
* awsAccountId: "123456789012",
|
|
139
|
+
* createdTime: 172615383136,
|
|
140
|
+
* instanceDescription: "",
|
|
141
|
+
* instanceId: "9e193580-7cc5-45f7-9609-c43ba0ada793",
|
|
142
|
+
* kmsKeyArn: "arn:aws:kms:us-west-2:456789012345:key/7372eb6d-874c-4212-8d49-7804282d33a8",
|
|
143
|
+
* lastModifiedTime: 172615383136,
|
|
144
|
+
* state: "Initializing",
|
|
145
|
+
* versionNumber: 2.0
|
|
147
146
|
* }
|
|
148
147
|
* }
|
|
149
148
|
* *\/
|
|
150
|
-
* // example id: example-2
|
|
151
149
|
* ```
|
|
152
150
|
*
|
|
151
|
+
* @public
|
|
153
152
|
*/
|
|
154
153
|
export declare class CreateInstanceCommand extends CreateInstanceCommand_base {
|
|
155
154
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -77,25 +77,25 @@ declare const DeleteDataIntegrationFlowCommand_base: {
|
|
|
77
77
|
* @throws {@link SupplyChainServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
79
79
|
*
|
|
80
|
-
*
|
|
80
|
+
*
|
|
81
81
|
* @example Successful DeleteDataIntegrationFlow
|
|
82
82
|
* ```javascript
|
|
83
83
|
* //
|
|
84
84
|
* const input = {
|
|
85
|
-
*
|
|
86
|
-
*
|
|
85
|
+
* instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d",
|
|
86
|
+
* name: "testStagingFlow"
|
|
87
87
|
* };
|
|
88
88
|
* const command = new DeleteDataIntegrationFlowCommand(input);
|
|
89
89
|
* const response = await client.send(command);
|
|
90
|
-
* /* response
|
|
90
|
+
* /* response is
|
|
91
91
|
* {
|
|
92
|
-
*
|
|
93
|
-
*
|
|
92
|
+
* instanceId: "8850c54e-e187-4fa7-89d4-6370f165174d",
|
|
93
|
+
* name: "testStagingFlow"
|
|
94
94
|
* }
|
|
95
95
|
* *\/
|
|
96
|
-
* // example id: example-1
|
|
97
96
|
* ```
|
|
98
97
|
*
|
|
98
|
+
* @public
|
|
99
99
|
*/
|
|
100
100
|
export declare class DeleteDataIntegrationFlowCommand extends DeleteDataIntegrationFlowCommand_base {
|
|
101
101
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -79,47 +79,46 @@ declare const DeleteDataLakeDatasetCommand_base: {
|
|
|
79
79
|
* @throws {@link SupplyChainServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from SupplyChain service.</p>
|
|
81
81
|
*
|
|
82
|
-
*
|
|
82
|
+
*
|
|
83
83
|
* @example Delete an AWS Supply Chain inbound_order dataset
|
|
84
84
|
* ```javascript
|
|
85
85
|
* //
|
|
86
86
|
* const input = {
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
*
|
|
87
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
88
|
+
* name: "inbound_order",
|
|
89
|
+
* namespace: "asc"
|
|
90
90
|
* };
|
|
91
91
|
* const command = new DeleteDataLakeDatasetCommand(input);
|
|
92
92
|
* const response = await client.send(command);
|
|
93
|
-
* /* response
|
|
93
|
+
* /* response is
|
|
94
94
|
* {
|
|
95
|
-
*
|
|
96
|
-
*
|
|
97
|
-
*
|
|
95
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
96
|
+
* name: "inbound_order",
|
|
97
|
+
* namespace: "asc"
|
|
98
98
|
* }
|
|
99
99
|
* *\/
|
|
100
|
-
* // example id: example-1
|
|
101
100
|
* ```
|
|
102
101
|
*
|
|
103
102
|
* @example Delete a custom dataset
|
|
104
103
|
* ```javascript
|
|
105
104
|
* //
|
|
106
105
|
* const input = {
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
106
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
107
|
+
* name: "my_dataset",
|
|
108
|
+
* namespace: "default"
|
|
110
109
|
* };
|
|
111
110
|
* const command = new DeleteDataLakeDatasetCommand(input);
|
|
112
111
|
* const response = await client.send(command);
|
|
113
|
-
* /* response
|
|
112
|
+
* /* response is
|
|
114
113
|
* {
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
114
|
+
* instanceId: "1877dd20-dee9-4639-8e99-cb67acf21fe5",
|
|
115
|
+
* name: "my_dataset",
|
|
116
|
+
* namespace: "default"
|
|
118
117
|
* }
|
|
119
118
|
* *\/
|
|
120
|
-
* // example id: example-2
|
|
121
119
|
* ```
|
|
122
120
|
*
|
|
121
|
+
* @public
|
|
123
122
|
*/
|
|
124
123
|
export declare class DeleteDataLakeDatasetCommand extends DeleteDataLakeDatasetCommand_base {
|
|
125
124
|
/** @internal type navigation helper, not in runtime. */
|