@aws-sdk/client-supplychain 3.806.0 → 3.808.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 (69) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/index.js +585 -4
  3. package/dist-es/SupplyChain.js +18 -0
  4. package/dist-es/commands/CreateDataIntegrationFlowCommand.js +2 -1
  5. package/dist-es/commands/CreateDataLakeNamespaceCommand.js +22 -0
  6. package/dist-es/commands/DeleteDataLakeNamespaceCommand.js +22 -0
  7. package/dist-es/commands/GetDataIntegrationEventCommand.js +22 -0
  8. package/dist-es/commands/GetDataIntegrationFlowCommand.js +2 -1
  9. package/dist-es/commands/GetDataIntegrationFlowExecutionCommand.js +22 -0
  10. package/dist-es/commands/GetDataLakeNamespaceCommand.js +22 -0
  11. package/dist-es/commands/ListDataIntegrationEventsCommand.js +22 -0
  12. package/dist-es/commands/ListDataIntegrationFlowExecutionsCommand.js +22 -0
  13. package/dist-es/commands/ListDataIntegrationFlowsCommand.js +2 -1
  14. package/dist-es/commands/ListDataLakeNamespacesCommand.js +22 -0
  15. package/dist-es/commands/UpdateDataIntegrationFlowCommand.js +2 -1
  16. package/dist-es/commands/UpdateDataLakeNamespaceCommand.js +22 -0
  17. package/dist-es/commands/index.js +9 -0
  18. package/dist-es/models/models_0.js +71 -0
  19. package/dist-es/pagination/ListDataIntegrationEventsPaginator.js +4 -0
  20. package/dist-es/pagination/ListDataIntegrationFlowExecutionsPaginator.js +4 -0
  21. package/dist-es/pagination/ListDataLakeNamespacesPaginator.js +4 -0
  22. package/dist-es/pagination/index.js +3 -0
  23. package/dist-es/protocols/Aws_restJson1.js +304 -0
  24. package/dist-types/SupplyChain.d.ts +63 -0
  25. package/dist-types/SupplyChainClient.d.ts +11 -2
  26. package/dist-types/commands/CreateDataIntegrationFlowCommand.d.ts +38 -1
  27. package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +89 -7
  28. package/dist-types/commands/CreateDataLakeNamespaceCommand.d.ts +133 -0
  29. package/dist-types/commands/DeleteDataLakeNamespaceCommand.d.ts +112 -0
  30. package/dist-types/commands/GetDataIntegrationEventCommand.d.ts +137 -0
  31. package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +22 -0
  32. package/dist-types/commands/GetDataIntegrationFlowExecutionCommand.d.ts +177 -0
  33. package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +43 -2
  34. package/dist-types/commands/GetDataLakeNamespaceCommand.d.ts +146 -0
  35. package/dist-types/commands/ListDataIntegrationEventsCommand.d.ts +143 -0
  36. package/dist-types/commands/ListDataIntegrationFlowExecutionsCommand.d.ts +152 -0
  37. package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +38 -1
  38. package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +43 -2
  39. package/dist-types/commands/ListDataLakeNamespacesCommand.d.ts +161 -0
  40. package/dist-types/commands/SendDataIntegrationEventCommand.d.ts +29 -2
  41. package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +76 -2
  42. package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +43 -2
  43. package/dist-types/commands/UpdateDataLakeNamespaceCommand.d.ts +126 -0
  44. package/dist-types/commands/index.d.ts +9 -0
  45. package/dist-types/models/models_0.d.ts +938 -34
  46. package/dist-types/pagination/ListDataIntegrationEventsPaginator.d.ts +7 -0
  47. package/dist-types/pagination/ListDataIntegrationFlowExecutionsPaginator.d.ts +7 -0
  48. package/dist-types/pagination/ListDataLakeNamespacesPaginator.d.ts +7 -0
  49. package/dist-types/pagination/index.d.ts +3 -0
  50. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  51. package/dist-types/ts3.4/SupplyChain.d.ts +159 -0
  52. package/dist-types/ts3.4/SupplyChainClient.d.ts +54 -0
  53. package/dist-types/ts3.4/commands/CreateDataLakeNamespaceCommand.d.ts +51 -0
  54. package/dist-types/ts3.4/commands/DeleteDataLakeNamespaceCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/GetDataIntegrationEventCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/GetDataIntegrationFlowExecutionCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/GetDataLakeNamespaceCommand.d.ts +51 -0
  58. package/dist-types/ts3.4/commands/ListDataIntegrationEventsCommand.d.ts +51 -0
  59. package/dist-types/ts3.4/commands/ListDataIntegrationFlowExecutionsCommand.d.ts +51 -0
  60. package/dist-types/ts3.4/commands/ListDataLakeNamespacesCommand.d.ts +51 -0
  61. package/dist-types/ts3.4/commands/UpdateDataLakeNamespaceCommand.d.ts +51 -0
  62. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  63. package/dist-types/ts3.4/models/models_0.d.ts +237 -6
  64. package/dist-types/ts3.4/pagination/ListDataIntegrationEventsPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/ListDataIntegrationFlowExecutionsPaginator.d.ts +11 -0
  66. package/dist-types/ts3.4/pagination/ListDataLakeNamespacesPaginator.d.ts +11 -0
  67. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  68. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  69. package/package.json +15 -15
@@ -82,6 +82,30 @@ export interface GetBillOfMaterialsImportJobRequest {
82
82
  export interface GetBillOfMaterialsImportJobResponse {
83
83
  job: BillOfMaterialsImportJob | undefined;
84
84
  }
85
+ export declare const DataIntegrationFlowFieldPriorityDedupeSortOrder: {
86
+ readonly ASC: "ASC";
87
+ readonly DESC: "DESC";
88
+ };
89
+ export type DataIntegrationFlowFieldPriorityDedupeSortOrder =
90
+ (typeof DataIntegrationFlowFieldPriorityDedupeSortOrder)[keyof typeof DataIntegrationFlowFieldPriorityDedupeSortOrder];
91
+ export interface DataIntegrationFlowFieldPriorityDedupeField {
92
+ name: string | undefined;
93
+ sortOrder: DataIntegrationFlowFieldPriorityDedupeSortOrder | undefined;
94
+ }
95
+ export interface DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration {
96
+ fields: DataIntegrationFlowFieldPriorityDedupeField[] | undefined;
97
+ }
98
+ export declare const DataIntegrationFlowDedupeStrategyType: {
99
+ readonly FIELD_PRIORITY: "FIELD_PRIORITY";
100
+ };
101
+ export type DataIntegrationFlowDedupeStrategyType =
102
+ (typeof DataIntegrationFlowDedupeStrategyType)[keyof typeof DataIntegrationFlowDedupeStrategyType];
103
+ export interface DataIntegrationFlowDedupeStrategy {
104
+ type: DataIntegrationFlowDedupeStrategyType | undefined;
105
+ fieldPriority?:
106
+ | DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration
107
+ | undefined;
108
+ }
85
109
  export declare const DataIntegrationFlowLoadType: {
86
110
  readonly INCREMENTAL: "INCREMENTAL";
87
111
  readonly REPLACE: "REPLACE";
@@ -91,6 +115,7 @@ export type DataIntegrationFlowLoadType =
91
115
  export interface DataIntegrationFlowDatasetOptions {
92
116
  loadType?: DataIntegrationFlowLoadType | undefined;
93
117
  dedupeRecords?: boolean | undefined;
118
+ dedupeStrategy?: DataIntegrationFlowDedupeStrategy | undefined;
94
119
  }
95
120
  export interface DataIntegrationFlowDatasetSourceConfiguration {
96
121
  datasetIdentifier: string | undefined;
@@ -170,9 +195,29 @@ export interface CreateDataIntegrationFlowResponse {
170
195
  instanceId: string | undefined;
171
196
  name: string | undefined;
172
197
  }
198
+ export declare const DataLakeDatasetPartitionTransformType: {
199
+ readonly DAY: "DAY";
200
+ readonly HOUR: "HOUR";
201
+ readonly IDENTITY: "IDENTITY";
202
+ readonly MONTH: "MONTH";
203
+ readonly YEAR: "YEAR";
204
+ };
205
+ export type DataLakeDatasetPartitionTransformType =
206
+ (typeof DataLakeDatasetPartitionTransformType)[keyof typeof DataLakeDatasetPartitionTransformType];
207
+ export interface DataLakeDatasetPartitionFieldTransform {
208
+ type: DataLakeDatasetPartitionTransformType | undefined;
209
+ }
210
+ export interface DataLakeDatasetPartitionField {
211
+ name: string | undefined;
212
+ transform: DataLakeDatasetPartitionFieldTransform | undefined;
213
+ }
214
+ export interface DataLakeDatasetPartitionSpec {
215
+ fields: DataLakeDatasetPartitionField[] | undefined;
216
+ }
173
217
  export declare const DataLakeDatasetSchemaFieldType: {
174
218
  readonly DOUBLE: "DOUBLE";
175
219
  readonly INT: "INT";
220
+ readonly LONG: "LONG";
176
221
  readonly STRING: "STRING";
177
222
  readonly TIMESTAMP: "TIMESTAMP";
178
223
  };
@@ -183,9 +228,13 @@ export interface DataLakeDatasetSchemaField {
183
228
  type: DataLakeDatasetSchemaFieldType | undefined;
184
229
  isRequired: boolean | undefined;
185
230
  }
231
+ export interface DataLakeDatasetPrimaryKeyField {
232
+ name: string | undefined;
233
+ }
186
234
  export interface DataLakeDatasetSchema {
187
235
  name: string | undefined;
188
236
  fields: DataLakeDatasetSchemaField[] | undefined;
237
+ primaryKeys?: DataLakeDatasetPrimaryKeyField[] | undefined;
189
238
  }
190
239
  export interface CreateDataLakeDatasetRequest {
191
240
  instanceId: string | undefined;
@@ -193,6 +242,7 @@ export interface CreateDataLakeDatasetRequest {
193
242
  name: string | undefined;
194
243
  schema?: DataLakeDatasetSchema | undefined;
195
244
  description?: string | undefined;
245
+ partitionSpec?: DataLakeDatasetPartitionSpec | undefined;
196
246
  tags?: Record<string, string> | undefined;
197
247
  }
198
248
  export interface DataLakeDataset {
@@ -202,12 +252,30 @@ export interface DataLakeDataset {
202
252
  arn: string | undefined;
203
253
  schema: DataLakeDatasetSchema | undefined;
204
254
  description?: string | undefined;
255
+ partitionSpec?: DataLakeDatasetPartitionSpec | undefined;
205
256
  createdTime: Date | undefined;
206
257
  lastModifiedTime: Date | undefined;
207
258
  }
208
259
  export interface CreateDataLakeDatasetResponse {
209
260
  dataset: DataLakeDataset | undefined;
210
261
  }
262
+ export interface CreateDataLakeNamespaceRequest {
263
+ instanceId: string | undefined;
264
+ name: string | undefined;
265
+ description?: string | undefined;
266
+ tags?: Record<string, string> | undefined;
267
+ }
268
+ export interface DataLakeNamespace {
269
+ instanceId: string | undefined;
270
+ name: string | undefined;
271
+ arn: string | undefined;
272
+ description?: string | undefined;
273
+ createdTime: Date | undefined;
274
+ lastModifiedTime: Date | undefined;
275
+ }
276
+ export interface CreateDataLakeNamespaceResponse {
277
+ namespace: DataLakeNamespace | undefined;
278
+ }
211
279
  export interface CreateInstanceRequest {
212
280
  instanceName?: string | undefined;
213
281
  instanceDescription?: string | undefined;
@@ -241,7 +309,33 @@ export interface Instance {
241
309
  export interface CreateInstanceResponse {
242
310
  instance: Instance | undefined;
243
311
  }
312
+ export declare const DataIntegrationEventDatasetLoadStatus: {
313
+ readonly FAILED: "FAILED";
314
+ readonly IN_PROGRESS: "IN_PROGRESS";
315
+ readonly SUCCEEDED: "SUCCEEDED";
316
+ };
317
+ export type DataIntegrationEventDatasetLoadStatus =
318
+ (typeof DataIntegrationEventDatasetLoadStatus)[keyof typeof DataIntegrationEventDatasetLoadStatus];
319
+ export interface DataIntegrationEventDatasetLoadExecutionDetails {
320
+ status: DataIntegrationEventDatasetLoadStatus | undefined;
321
+ message?: string | undefined;
322
+ }
323
+ export declare const DataIntegrationEventDatasetOperationType: {
324
+ readonly APPEND: "APPEND";
325
+ readonly DELETE: "DELETE";
326
+ readonly UPSERT: "UPSERT";
327
+ };
328
+ export type DataIntegrationEventDatasetOperationType =
329
+ (typeof DataIntegrationEventDatasetOperationType)[keyof typeof DataIntegrationEventDatasetOperationType];
330
+ export interface DataIntegrationEventDatasetTargetDetails {
331
+ datasetIdentifier: string | undefined;
332
+ operationType: DataIntegrationEventDatasetOperationType | undefined;
333
+ datasetLoadExecution:
334
+ | DataIntegrationEventDatasetLoadExecutionDetails
335
+ | undefined;
336
+ }
244
337
  export declare const DataIntegrationEventType: {
338
+ readonly DATASET: "scn.data.dataset";
245
339
  readonly FORECAST: "scn.data.forecast";
246
340
  readonly INBOUND_ORDER: "scn.data.inboundorder";
247
341
  readonly INBOUND_ORDER_LINE: "scn.data.inboundorderline";
@@ -260,16 +354,17 @@ export declare const DataIntegrationEventType: {
260
354
  };
261
355
  export type DataIntegrationEventType =
262
356
  (typeof DataIntegrationEventType)[keyof typeof DataIntegrationEventType];
263
- export interface SendDataIntegrationEventRequest {
357
+ export interface DataIntegrationEvent {
264
358
  instanceId: string | undefined;
359
+ eventId: string | undefined;
265
360
  eventType: DataIntegrationEventType | undefined;
266
- data: string | undefined;
267
361
  eventGroupId: string | undefined;
268
- eventTimestamp?: Date | undefined;
269
- clientToken?: string | undefined;
362
+ eventTimestamp: Date | undefined;
363
+ datasetTargetDetails?: DataIntegrationEventDatasetTargetDetails | undefined;
270
364
  }
271
- export interface SendDataIntegrationEventResponse {
272
- eventId: string | undefined;
365
+ export interface DataIntegrationEventDatasetTargetConfiguration {
366
+ datasetIdentifier: string | undefined;
367
+ operationType: DataIntegrationEventDatasetOperationType | undefined;
273
368
  }
274
369
  export interface DataIntegrationFlow {
275
370
  instanceId: string | undefined;
@@ -280,6 +375,39 @@ export interface DataIntegrationFlow {
280
375
  createdTime: Date | undefined;
281
376
  lastModifiedTime: Date | undefined;
282
377
  }
378
+ export interface DataIntegrationFlowDatasetSource {
379
+ datasetIdentifier: string | undefined;
380
+ }
381
+ export interface DataIntegrationFlowExecutionOutputMetadata {
382
+ diagnosticReportsRootS3URI?: string | undefined;
383
+ }
384
+ export interface DataIntegrationFlowS3Source {
385
+ bucketName: string | undefined;
386
+ key: string | undefined;
387
+ }
388
+ export interface DataIntegrationFlowExecutionSourceInfo {
389
+ sourceType: DataIntegrationFlowSourceType | undefined;
390
+ s3Source?: DataIntegrationFlowS3Source | undefined;
391
+ datasetSource?: DataIntegrationFlowDatasetSource | undefined;
392
+ }
393
+ export declare const DataIntegrationFlowExecutionStatus: {
394
+ readonly FAILED: "FAILED";
395
+ readonly IN_PROGRESS: "IN_PROGRESS";
396
+ readonly SUCCEEDED: "SUCCEEDED";
397
+ };
398
+ export type DataIntegrationFlowExecutionStatus =
399
+ (typeof DataIntegrationFlowExecutionStatus)[keyof typeof DataIntegrationFlowExecutionStatus];
400
+ export interface DataIntegrationFlowExecution {
401
+ instanceId: string | undefined;
402
+ flowName: string | undefined;
403
+ executionId: string | undefined;
404
+ status?: DataIntegrationFlowExecutionStatus | undefined;
405
+ sourceInfo?: DataIntegrationFlowExecutionSourceInfo | undefined;
406
+ message?: string | undefined;
407
+ startTime?: Date | undefined;
408
+ endTime?: Date | undefined;
409
+ outputMetadata?: DataIntegrationFlowExecutionOutputMetadata | undefined;
410
+ }
283
411
  export interface DeleteDataIntegrationFlowRequest {
284
412
  instanceId: string | undefined;
285
413
  name: string | undefined;
@@ -351,12 +479,59 @@ export interface UpdateDataLakeDatasetRequest {
351
479
  export interface UpdateDataLakeDatasetResponse {
352
480
  dataset: DataLakeDataset | undefined;
353
481
  }
482
+ export interface DeleteDataLakeNamespaceRequest {
483
+ instanceId: string | undefined;
484
+ name: string | undefined;
485
+ }
486
+ export interface DeleteDataLakeNamespaceResponse {
487
+ instanceId: string | undefined;
488
+ name: string | undefined;
489
+ }
490
+ export interface GetDataLakeNamespaceRequest {
491
+ instanceId: string | undefined;
492
+ name: string | undefined;
493
+ }
494
+ export interface GetDataLakeNamespaceResponse {
495
+ namespace: DataLakeNamespace | undefined;
496
+ }
497
+ export interface ListDataLakeNamespacesRequest {
498
+ instanceId: string | undefined;
499
+ nextToken?: string | undefined;
500
+ maxResults?: number | undefined;
501
+ }
502
+ export interface ListDataLakeNamespacesResponse {
503
+ namespaces: DataLakeNamespace[] | undefined;
504
+ nextToken?: string | undefined;
505
+ }
506
+ export interface UpdateDataLakeNamespaceRequest {
507
+ instanceId: string | undefined;
508
+ name: string | undefined;
509
+ description?: string | undefined;
510
+ }
511
+ export interface UpdateDataLakeNamespaceResponse {
512
+ namespace: DataLakeNamespace | undefined;
513
+ }
354
514
  export interface DeleteInstanceRequest {
355
515
  instanceId: string | undefined;
356
516
  }
357
517
  export interface DeleteInstanceResponse {
358
518
  instance: Instance | undefined;
359
519
  }
520
+ export interface GetDataIntegrationEventRequest {
521
+ instanceId: string | undefined;
522
+ eventId: string | undefined;
523
+ }
524
+ export interface GetDataIntegrationEventResponse {
525
+ event: DataIntegrationEvent | undefined;
526
+ }
527
+ export interface GetDataIntegrationFlowExecutionRequest {
528
+ instanceId: string | undefined;
529
+ flowName: string | undefined;
530
+ executionId: string | undefined;
531
+ }
532
+ export interface GetDataIntegrationFlowExecutionResponse {
533
+ flowExecution: DataIntegrationFlowExecution | undefined;
534
+ }
360
535
  export interface GetInstanceRequest {
361
536
  instanceId: string | undefined;
362
537
  }
@@ -381,12 +556,44 @@ export interface UpdateInstanceRequest {
381
556
  export interface UpdateInstanceResponse {
382
557
  instance: Instance | undefined;
383
558
  }
559
+ export interface ListDataIntegrationEventsRequest {
560
+ instanceId: string | undefined;
561
+ eventType?: DataIntegrationEventType | undefined;
562
+ nextToken?: string | undefined;
563
+ maxResults?: number | undefined;
564
+ }
565
+ export interface ListDataIntegrationEventsResponse {
566
+ events: DataIntegrationEvent[] | undefined;
567
+ nextToken?: string | undefined;
568
+ }
569
+ export interface ListDataIntegrationFlowExecutionsRequest {
570
+ instanceId: string | undefined;
571
+ flowName: string | undefined;
572
+ nextToken?: string | undefined;
573
+ maxResults?: number | undefined;
574
+ }
575
+ export interface ListDataIntegrationFlowExecutionsResponse {
576
+ flowExecutions: DataIntegrationFlowExecution[] | undefined;
577
+ nextToken?: string | undefined;
578
+ }
384
579
  export interface ListTagsForResourceRequest {
385
580
  resourceArn: string | undefined;
386
581
  }
387
582
  export interface ListTagsForResourceResponse {
388
583
  tags: Record<string, string> | undefined;
389
584
  }
585
+ export interface SendDataIntegrationEventRequest {
586
+ instanceId: string | undefined;
587
+ eventType: DataIntegrationEventType | undefined;
588
+ data: string | undefined;
589
+ eventGroupId: string | undefined;
590
+ eventTimestamp?: Date | undefined;
591
+ clientToken?: string | undefined;
592
+ datasetTarget?: DataIntegrationEventDatasetTargetConfiguration | undefined;
593
+ }
594
+ export interface SendDataIntegrationEventResponse {
595
+ eventId: string | undefined;
596
+ }
390
597
  export interface TagResourceRequest {
391
598
  resourceArn: string | undefined;
392
599
  tags: Record<string, string> | undefined;
@@ -397,6 +604,30 @@ export interface UntagResourceRequest {
397
604
  tagKeys: string[] | undefined;
398
605
  }
399
606
  export interface UntagResourceResponse {}
607
+ export declare const DataIntegrationFlowSQLTransformationConfigurationFilterSensitiveLog: (
608
+ obj: DataIntegrationFlowSQLTransformationConfiguration
609
+ ) => any;
610
+ export declare const DataIntegrationFlowTransformationFilterSensitiveLog: (
611
+ obj: DataIntegrationFlowTransformation
612
+ ) => any;
613
+ export declare const CreateDataIntegrationFlowRequestFilterSensitiveLog: (
614
+ obj: CreateDataIntegrationFlowRequest
615
+ ) => any;
616
+ export declare const DataIntegrationFlowFilterSensitiveLog: (
617
+ obj: DataIntegrationFlow
618
+ ) => any;
619
+ export declare const GetDataIntegrationFlowResponseFilterSensitiveLog: (
620
+ obj: GetDataIntegrationFlowResponse
621
+ ) => any;
622
+ export declare const ListDataIntegrationFlowsResponseFilterSensitiveLog: (
623
+ obj: ListDataIntegrationFlowsResponse
624
+ ) => any;
625
+ export declare const UpdateDataIntegrationFlowRequestFilterSensitiveLog: (
626
+ obj: UpdateDataIntegrationFlowRequest
627
+ ) => any;
628
+ export declare const UpdateDataIntegrationFlowResponseFilterSensitiveLog: (
629
+ obj: UpdateDataIntegrationFlowResponse
630
+ ) => any;
400
631
  export declare const SendDataIntegrationEventRequestFilterSensitiveLog: (
401
632
  obj: SendDataIntegrationEventRequest
402
633
  ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDataIntegrationEventsCommandInput,
4
+ ListDataIntegrationEventsCommandOutput,
5
+ } from "../commands/ListDataIntegrationEventsCommand";
6
+ import { SupplyChainPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListDataIntegrationEvents: (
8
+ config: SupplyChainPaginationConfiguration,
9
+ input: ListDataIntegrationEventsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListDataIntegrationEventsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDataIntegrationFlowExecutionsCommandInput,
4
+ ListDataIntegrationFlowExecutionsCommandOutput,
5
+ } from "../commands/ListDataIntegrationFlowExecutionsCommand";
6
+ import { SupplyChainPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListDataIntegrationFlowExecutions: (
8
+ config: SupplyChainPaginationConfiguration,
9
+ input: ListDataIntegrationFlowExecutionsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListDataIntegrationFlowExecutionsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDataLakeNamespacesCommandInput,
4
+ ListDataLakeNamespacesCommandOutput,
5
+ } from "../commands/ListDataLakeNamespacesCommand";
6
+ import { SupplyChainPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListDataLakeNamespaces: (
8
+ config: SupplyChainPaginationConfiguration,
9
+ input: ListDataLakeNamespacesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListDataLakeNamespacesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListDataIntegrationEventsPaginator";
3
+ export * from "./ListDataIntegrationFlowExecutionsPaginator";
2
4
  export * from "./ListDataIntegrationFlowsPaginator";
3
5
  export * from "./ListDataLakeDatasetsPaginator";
6
+ export * from "./ListDataLakeNamespacesPaginator";
4
7
  export * from "./ListInstancesPaginator";
@@ -15,6 +15,10 @@ import {
15
15
  CreateDataLakeDatasetCommandInput,
16
16
  CreateDataLakeDatasetCommandOutput,
17
17
  } from "../commands/CreateDataLakeDatasetCommand";
18
+ import {
19
+ CreateDataLakeNamespaceCommandInput,
20
+ CreateDataLakeNamespaceCommandOutput,
21
+ } from "../commands/CreateDataLakeNamespaceCommand";
18
22
  import {
19
23
  CreateInstanceCommandInput,
20
24
  CreateInstanceCommandOutput,
@@ -27,6 +31,10 @@ import {
27
31
  DeleteDataLakeDatasetCommandInput,
28
32
  DeleteDataLakeDatasetCommandOutput,
29
33
  } from "../commands/DeleteDataLakeDatasetCommand";
34
+ import {
35
+ DeleteDataLakeNamespaceCommandInput,
36
+ DeleteDataLakeNamespaceCommandOutput,
37
+ } from "../commands/DeleteDataLakeNamespaceCommand";
30
38
  import {
31
39
  DeleteInstanceCommandInput,
32
40
  DeleteInstanceCommandOutput,
@@ -35,18 +43,38 @@ import {
35
43
  GetBillOfMaterialsImportJobCommandInput,
36
44
  GetBillOfMaterialsImportJobCommandOutput,
37
45
  } from "../commands/GetBillOfMaterialsImportJobCommand";
46
+ import {
47
+ GetDataIntegrationEventCommandInput,
48
+ GetDataIntegrationEventCommandOutput,
49
+ } from "../commands/GetDataIntegrationEventCommand";
38
50
  import {
39
51
  GetDataIntegrationFlowCommandInput,
40
52
  GetDataIntegrationFlowCommandOutput,
41
53
  } from "../commands/GetDataIntegrationFlowCommand";
54
+ import {
55
+ GetDataIntegrationFlowExecutionCommandInput,
56
+ GetDataIntegrationFlowExecutionCommandOutput,
57
+ } from "../commands/GetDataIntegrationFlowExecutionCommand";
42
58
  import {
43
59
  GetDataLakeDatasetCommandInput,
44
60
  GetDataLakeDatasetCommandOutput,
45
61
  } from "../commands/GetDataLakeDatasetCommand";
62
+ import {
63
+ GetDataLakeNamespaceCommandInput,
64
+ GetDataLakeNamespaceCommandOutput,
65
+ } from "../commands/GetDataLakeNamespaceCommand";
46
66
  import {
47
67
  GetInstanceCommandInput,
48
68
  GetInstanceCommandOutput,
49
69
  } from "../commands/GetInstanceCommand";
70
+ import {
71
+ ListDataIntegrationEventsCommandInput,
72
+ ListDataIntegrationEventsCommandOutput,
73
+ } from "../commands/ListDataIntegrationEventsCommand";
74
+ import {
75
+ ListDataIntegrationFlowExecutionsCommandInput,
76
+ ListDataIntegrationFlowExecutionsCommandOutput,
77
+ } from "../commands/ListDataIntegrationFlowExecutionsCommand";
50
78
  import {
51
79
  ListDataIntegrationFlowsCommandInput,
52
80
  ListDataIntegrationFlowsCommandOutput,
@@ -55,6 +83,10 @@ import {
55
83
  ListDataLakeDatasetsCommandInput,
56
84
  ListDataLakeDatasetsCommandOutput,
57
85
  } from "../commands/ListDataLakeDatasetsCommand";
86
+ import {
87
+ ListDataLakeNamespacesCommandInput,
88
+ ListDataLakeNamespacesCommandOutput,
89
+ } from "../commands/ListDataLakeNamespacesCommand";
58
90
  import {
59
91
  ListInstancesCommandInput,
60
92
  ListInstancesCommandOutput,
@@ -83,6 +115,10 @@ import {
83
115
  UpdateDataLakeDatasetCommandInput,
84
116
  UpdateDataLakeDatasetCommandOutput,
85
117
  } from "../commands/UpdateDataLakeDatasetCommand";
118
+ import {
119
+ UpdateDataLakeNamespaceCommandInput,
120
+ UpdateDataLakeNamespaceCommandOutput,
121
+ } from "../commands/UpdateDataLakeNamespaceCommand";
86
122
  import {
87
123
  UpdateInstanceCommandInput,
88
124
  UpdateInstanceCommandOutput,
@@ -99,6 +135,10 @@ export declare const se_CreateDataLakeDatasetCommand: (
99
135
  input: CreateDataLakeDatasetCommandInput,
100
136
  context: __SerdeContext
101
137
  ) => Promise<__HttpRequest>;
138
+ export declare const se_CreateDataLakeNamespaceCommand: (
139
+ input: CreateDataLakeNamespaceCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
102
142
  export declare const se_CreateInstanceCommand: (
103
143
  input: CreateInstanceCommandInput,
104
144
  context: __SerdeContext
@@ -111,6 +151,10 @@ export declare const se_DeleteDataLakeDatasetCommand: (
111
151
  input: DeleteDataLakeDatasetCommandInput,
112
152
  context: __SerdeContext
113
153
  ) => Promise<__HttpRequest>;
154
+ export declare const se_DeleteDataLakeNamespaceCommand: (
155
+ input: DeleteDataLakeNamespaceCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
114
158
  export declare const se_DeleteInstanceCommand: (
115
159
  input: DeleteInstanceCommandInput,
116
160
  context: __SerdeContext
@@ -119,18 +163,38 @@ export declare const se_GetBillOfMaterialsImportJobCommand: (
119
163
  input: GetBillOfMaterialsImportJobCommandInput,
120
164
  context: __SerdeContext
121
165
  ) => Promise<__HttpRequest>;
166
+ export declare const se_GetDataIntegrationEventCommand: (
167
+ input: GetDataIntegrationEventCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
122
170
  export declare const se_GetDataIntegrationFlowCommand: (
123
171
  input: GetDataIntegrationFlowCommandInput,
124
172
  context: __SerdeContext
125
173
  ) => Promise<__HttpRequest>;
174
+ export declare const se_GetDataIntegrationFlowExecutionCommand: (
175
+ input: GetDataIntegrationFlowExecutionCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
126
178
  export declare const se_GetDataLakeDatasetCommand: (
127
179
  input: GetDataLakeDatasetCommandInput,
128
180
  context: __SerdeContext
129
181
  ) => Promise<__HttpRequest>;
182
+ export declare const se_GetDataLakeNamespaceCommand: (
183
+ input: GetDataLakeNamespaceCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
130
186
  export declare const se_GetInstanceCommand: (
131
187
  input: GetInstanceCommandInput,
132
188
  context: __SerdeContext
133
189
  ) => Promise<__HttpRequest>;
190
+ export declare const se_ListDataIntegrationEventsCommand: (
191
+ input: ListDataIntegrationEventsCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const se_ListDataIntegrationFlowExecutionsCommand: (
195
+ input: ListDataIntegrationFlowExecutionsCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
134
198
  export declare const se_ListDataIntegrationFlowsCommand: (
135
199
  input: ListDataIntegrationFlowsCommandInput,
136
200
  context: __SerdeContext
@@ -139,6 +203,10 @@ export declare const se_ListDataLakeDatasetsCommand: (
139
203
  input: ListDataLakeDatasetsCommandInput,
140
204
  context: __SerdeContext
141
205
  ) => Promise<__HttpRequest>;
206
+ export declare const se_ListDataLakeNamespacesCommand: (
207
+ input: ListDataLakeNamespacesCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
142
210
  export declare const se_ListInstancesCommand: (
143
211
  input: ListInstancesCommandInput,
144
212
  context: __SerdeContext
@@ -167,6 +235,10 @@ export declare const se_UpdateDataLakeDatasetCommand: (
167
235
  input: UpdateDataLakeDatasetCommandInput,
168
236
  context: __SerdeContext
169
237
  ) => Promise<__HttpRequest>;
238
+ export declare const se_UpdateDataLakeNamespaceCommand: (
239
+ input: UpdateDataLakeNamespaceCommandInput,
240
+ context: __SerdeContext
241
+ ) => Promise<__HttpRequest>;
170
242
  export declare const se_UpdateInstanceCommand: (
171
243
  input: UpdateInstanceCommandInput,
172
244
  context: __SerdeContext
@@ -183,6 +255,10 @@ export declare const de_CreateDataLakeDatasetCommand: (
183
255
  output: __HttpResponse,
184
256
  context: __SerdeContext
185
257
  ) => Promise<CreateDataLakeDatasetCommandOutput>;
258
+ export declare const de_CreateDataLakeNamespaceCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<CreateDataLakeNamespaceCommandOutput>;
186
262
  export declare const de_CreateInstanceCommand: (
187
263
  output: __HttpResponse,
188
264
  context: __SerdeContext
@@ -195,6 +271,10 @@ export declare const de_DeleteDataLakeDatasetCommand: (
195
271
  output: __HttpResponse,
196
272
  context: __SerdeContext
197
273
  ) => Promise<DeleteDataLakeDatasetCommandOutput>;
274
+ export declare const de_DeleteDataLakeNamespaceCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<DeleteDataLakeNamespaceCommandOutput>;
198
278
  export declare const de_DeleteInstanceCommand: (
199
279
  output: __HttpResponse,
200
280
  context: __SerdeContext
@@ -203,18 +283,38 @@ export declare const de_GetBillOfMaterialsImportJobCommand: (
203
283
  output: __HttpResponse,
204
284
  context: __SerdeContext
205
285
  ) => Promise<GetBillOfMaterialsImportJobCommandOutput>;
286
+ export declare const de_GetDataIntegrationEventCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<GetDataIntegrationEventCommandOutput>;
206
290
  export declare const de_GetDataIntegrationFlowCommand: (
207
291
  output: __HttpResponse,
208
292
  context: __SerdeContext
209
293
  ) => Promise<GetDataIntegrationFlowCommandOutput>;
294
+ export declare const de_GetDataIntegrationFlowExecutionCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<GetDataIntegrationFlowExecutionCommandOutput>;
210
298
  export declare const de_GetDataLakeDatasetCommand: (
211
299
  output: __HttpResponse,
212
300
  context: __SerdeContext
213
301
  ) => Promise<GetDataLakeDatasetCommandOutput>;
302
+ export declare const de_GetDataLakeNamespaceCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<GetDataLakeNamespaceCommandOutput>;
214
306
  export declare const de_GetInstanceCommand: (
215
307
  output: __HttpResponse,
216
308
  context: __SerdeContext
217
309
  ) => Promise<GetInstanceCommandOutput>;
310
+ export declare const de_ListDataIntegrationEventsCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<ListDataIntegrationEventsCommandOutput>;
314
+ export declare const de_ListDataIntegrationFlowExecutionsCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<ListDataIntegrationFlowExecutionsCommandOutput>;
218
318
  export declare const de_ListDataIntegrationFlowsCommand: (
219
319
  output: __HttpResponse,
220
320
  context: __SerdeContext
@@ -223,6 +323,10 @@ export declare const de_ListDataLakeDatasetsCommand: (
223
323
  output: __HttpResponse,
224
324
  context: __SerdeContext
225
325
  ) => Promise<ListDataLakeDatasetsCommandOutput>;
326
+ export declare const de_ListDataLakeNamespacesCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<ListDataLakeNamespacesCommandOutput>;
226
330
  export declare const de_ListInstancesCommand: (
227
331
  output: __HttpResponse,
228
332
  context: __SerdeContext
@@ -251,6 +355,10 @@ export declare const de_UpdateDataLakeDatasetCommand: (
251
355
  output: __HttpResponse,
252
356
  context: __SerdeContext
253
357
  ) => Promise<UpdateDataLakeDatasetCommandOutput>;
358
+ export declare const de_UpdateDataLakeNamespaceCommand: (
359
+ output: __HttpResponse,
360
+ context: __SerdeContext
361
+ ) => Promise<UpdateDataLakeNamespaceCommandOutput>;
254
362
  export declare const de_UpdateInstanceCommand: (
255
363
  output: __HttpResponse,
256
364
  context: __SerdeContext