@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
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDataIntegrationEventsCommandInput, ListDataIntegrationEventsCommandOutput } from "../commands/ListDataIntegrationEventsCommand";
3
+ import { SupplyChainPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDataIntegrationEvents: (config: SupplyChainPaginationConfiguration, input: ListDataIntegrationEventsCommandInput, ...rest: any[]) => Paginator<ListDataIntegrationEventsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDataIntegrationFlowExecutionsCommandInput, ListDataIntegrationFlowExecutionsCommandOutput } from "../commands/ListDataIntegrationFlowExecutionsCommand";
3
+ import { SupplyChainPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDataIntegrationFlowExecutions: (config: SupplyChainPaginationConfiguration, input: ListDataIntegrationFlowExecutionsCommandInput, ...rest: any[]) => Paginator<ListDataIntegrationFlowExecutionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDataLakeNamespacesCommandInput, ListDataLakeNamespacesCommandOutput } from "../commands/ListDataLakeNamespacesCommand";
3
+ import { SupplyChainPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDataLakeNamespaces: (config: SupplyChainPaginationConfiguration, input: ListDataLakeNamespacesCommandInput, ...rest: any[]) => 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";
@@ -3,16 +3,24 @@ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { CreateBillOfMaterialsImportJobCommandInput, CreateBillOfMaterialsImportJobCommandOutput } from "../commands/CreateBillOfMaterialsImportJobCommand";
4
4
  import { CreateDataIntegrationFlowCommandInput, CreateDataIntegrationFlowCommandOutput } from "../commands/CreateDataIntegrationFlowCommand";
5
5
  import { CreateDataLakeDatasetCommandInput, CreateDataLakeDatasetCommandOutput } from "../commands/CreateDataLakeDatasetCommand";
6
+ import { CreateDataLakeNamespaceCommandInput, CreateDataLakeNamespaceCommandOutput } from "../commands/CreateDataLakeNamespaceCommand";
6
7
  import { CreateInstanceCommandInput, CreateInstanceCommandOutput } from "../commands/CreateInstanceCommand";
7
8
  import { DeleteDataIntegrationFlowCommandInput, DeleteDataIntegrationFlowCommandOutput } from "../commands/DeleteDataIntegrationFlowCommand";
8
9
  import { DeleteDataLakeDatasetCommandInput, DeleteDataLakeDatasetCommandOutput } from "../commands/DeleteDataLakeDatasetCommand";
10
+ import { DeleteDataLakeNamespaceCommandInput, DeleteDataLakeNamespaceCommandOutput } from "../commands/DeleteDataLakeNamespaceCommand";
9
11
  import { DeleteInstanceCommandInput, DeleteInstanceCommandOutput } from "../commands/DeleteInstanceCommand";
10
12
  import { GetBillOfMaterialsImportJobCommandInput, GetBillOfMaterialsImportJobCommandOutput } from "../commands/GetBillOfMaterialsImportJobCommand";
13
+ import { GetDataIntegrationEventCommandInput, GetDataIntegrationEventCommandOutput } from "../commands/GetDataIntegrationEventCommand";
11
14
  import { GetDataIntegrationFlowCommandInput, GetDataIntegrationFlowCommandOutput } from "../commands/GetDataIntegrationFlowCommand";
15
+ import { GetDataIntegrationFlowExecutionCommandInput, GetDataIntegrationFlowExecutionCommandOutput } from "../commands/GetDataIntegrationFlowExecutionCommand";
12
16
  import { GetDataLakeDatasetCommandInput, GetDataLakeDatasetCommandOutput } from "../commands/GetDataLakeDatasetCommand";
17
+ import { GetDataLakeNamespaceCommandInput, GetDataLakeNamespaceCommandOutput } from "../commands/GetDataLakeNamespaceCommand";
13
18
  import { GetInstanceCommandInput, GetInstanceCommandOutput } from "../commands/GetInstanceCommand";
19
+ import { ListDataIntegrationEventsCommandInput, ListDataIntegrationEventsCommandOutput } from "../commands/ListDataIntegrationEventsCommand";
20
+ import { ListDataIntegrationFlowExecutionsCommandInput, ListDataIntegrationFlowExecutionsCommandOutput } from "../commands/ListDataIntegrationFlowExecutionsCommand";
14
21
  import { ListDataIntegrationFlowsCommandInput, ListDataIntegrationFlowsCommandOutput } from "../commands/ListDataIntegrationFlowsCommand";
15
22
  import { ListDataLakeDatasetsCommandInput, ListDataLakeDatasetsCommandOutput } from "../commands/ListDataLakeDatasetsCommand";
23
+ import { ListDataLakeNamespacesCommandInput, ListDataLakeNamespacesCommandOutput } from "../commands/ListDataLakeNamespacesCommand";
16
24
  import { ListInstancesCommandInput, ListInstancesCommandOutput } from "../commands/ListInstancesCommand";
17
25
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
18
26
  import { SendDataIntegrationEventCommandInput, SendDataIntegrationEventCommandOutput } from "../commands/SendDataIntegrationEventCommand";
@@ -20,6 +28,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
20
28
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
21
29
  import { UpdateDataIntegrationFlowCommandInput, UpdateDataIntegrationFlowCommandOutput } from "../commands/UpdateDataIntegrationFlowCommand";
22
30
  import { UpdateDataLakeDatasetCommandInput, UpdateDataLakeDatasetCommandOutput } from "../commands/UpdateDataLakeDatasetCommand";
31
+ import { UpdateDataLakeNamespaceCommandInput, UpdateDataLakeNamespaceCommandOutput } from "../commands/UpdateDataLakeNamespaceCommand";
23
32
  import { UpdateInstanceCommandInput, UpdateInstanceCommandOutput } from "../commands/UpdateInstanceCommand";
24
33
  /**
25
34
  * serializeAws_restJson1CreateBillOfMaterialsImportJobCommand
@@ -33,6 +42,10 @@ export declare const se_CreateDataIntegrationFlowCommand: (input: CreateDataInte
33
42
  * serializeAws_restJson1CreateDataLakeDatasetCommand
34
43
  */
35
44
  export declare const se_CreateDataLakeDatasetCommand: (input: CreateDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
+ /**
46
+ * serializeAws_restJson1CreateDataLakeNamespaceCommand
47
+ */
48
+ export declare const se_CreateDataLakeNamespaceCommand: (input: CreateDataLakeNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
49
  /**
37
50
  * serializeAws_restJson1CreateInstanceCommand
38
51
  */
@@ -45,6 +58,10 @@ export declare const se_DeleteDataIntegrationFlowCommand: (input: DeleteDataInte
45
58
  * serializeAws_restJson1DeleteDataLakeDatasetCommand
46
59
  */
47
60
  export declare const se_DeleteDataLakeDatasetCommand: (input: DeleteDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
+ /**
62
+ * serializeAws_restJson1DeleteDataLakeNamespaceCommand
63
+ */
64
+ export declare const se_DeleteDataLakeNamespaceCommand: (input: DeleteDataLakeNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
65
  /**
49
66
  * serializeAws_restJson1DeleteInstanceCommand
50
67
  */
@@ -53,18 +70,38 @@ export declare const se_DeleteInstanceCommand: (input: DeleteInstanceCommandInpu
53
70
  * serializeAws_restJson1GetBillOfMaterialsImportJobCommand
54
71
  */
55
72
  export declare const se_GetBillOfMaterialsImportJobCommand: (input: GetBillOfMaterialsImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
73
+ /**
74
+ * serializeAws_restJson1GetDataIntegrationEventCommand
75
+ */
76
+ export declare const se_GetDataIntegrationEventCommand: (input: GetDataIntegrationEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
77
  /**
57
78
  * serializeAws_restJson1GetDataIntegrationFlowCommand
58
79
  */
59
80
  export declare const se_GetDataIntegrationFlowCommand: (input: GetDataIntegrationFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
+ /**
82
+ * serializeAws_restJson1GetDataIntegrationFlowExecutionCommand
83
+ */
84
+ export declare const se_GetDataIntegrationFlowExecutionCommand: (input: GetDataIntegrationFlowExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
85
  /**
61
86
  * serializeAws_restJson1GetDataLakeDatasetCommand
62
87
  */
63
88
  export declare const se_GetDataLakeDatasetCommand: (input: GetDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
+ /**
90
+ * serializeAws_restJson1GetDataLakeNamespaceCommand
91
+ */
92
+ export declare const se_GetDataLakeNamespaceCommand: (input: GetDataLakeNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
93
  /**
65
94
  * serializeAws_restJson1GetInstanceCommand
66
95
  */
67
96
  export declare const se_GetInstanceCommand: (input: GetInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
97
+ /**
98
+ * serializeAws_restJson1ListDataIntegrationEventsCommand
99
+ */
100
+ export declare const se_ListDataIntegrationEventsCommand: (input: ListDataIntegrationEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
101
+ /**
102
+ * serializeAws_restJson1ListDataIntegrationFlowExecutionsCommand
103
+ */
104
+ export declare const se_ListDataIntegrationFlowExecutionsCommand: (input: ListDataIntegrationFlowExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
105
  /**
69
106
  * serializeAws_restJson1ListDataIntegrationFlowsCommand
70
107
  */
@@ -73,6 +110,10 @@ export declare const se_ListDataIntegrationFlowsCommand: (input: ListDataIntegra
73
110
  * serializeAws_restJson1ListDataLakeDatasetsCommand
74
111
  */
75
112
  export declare const se_ListDataLakeDatasetsCommand: (input: ListDataLakeDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
113
+ /**
114
+ * serializeAws_restJson1ListDataLakeNamespacesCommand
115
+ */
116
+ export declare const se_ListDataLakeNamespacesCommand: (input: ListDataLakeNamespacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
117
  /**
77
118
  * serializeAws_restJson1ListInstancesCommand
78
119
  */
@@ -101,6 +142,10 @@ export declare const se_UpdateDataIntegrationFlowCommand: (input: UpdateDataInte
101
142
  * serializeAws_restJson1UpdateDataLakeDatasetCommand
102
143
  */
103
144
  export declare const se_UpdateDataLakeDatasetCommand: (input: UpdateDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
145
+ /**
146
+ * serializeAws_restJson1UpdateDataLakeNamespaceCommand
147
+ */
148
+ export declare const se_UpdateDataLakeNamespaceCommand: (input: UpdateDataLakeNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
149
  /**
105
150
  * serializeAws_restJson1UpdateInstanceCommand
106
151
  */
@@ -117,6 +162,10 @@ export declare const de_CreateDataIntegrationFlowCommand: (output: __HttpRespons
117
162
  * deserializeAws_restJson1CreateDataLakeDatasetCommand
118
163
  */
119
164
  export declare const de_CreateDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataLakeDatasetCommandOutput>;
165
+ /**
166
+ * deserializeAws_restJson1CreateDataLakeNamespaceCommand
167
+ */
168
+ export declare const de_CreateDataLakeNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataLakeNamespaceCommandOutput>;
120
169
  /**
121
170
  * deserializeAws_restJson1CreateInstanceCommand
122
171
  */
@@ -129,6 +178,10 @@ export declare const de_DeleteDataIntegrationFlowCommand: (output: __HttpRespons
129
178
  * deserializeAws_restJson1DeleteDataLakeDatasetCommand
130
179
  */
131
180
  export declare const de_DeleteDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataLakeDatasetCommandOutput>;
181
+ /**
182
+ * deserializeAws_restJson1DeleteDataLakeNamespaceCommand
183
+ */
184
+ export declare const de_DeleteDataLakeNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataLakeNamespaceCommandOutput>;
132
185
  /**
133
186
  * deserializeAws_restJson1DeleteInstanceCommand
134
187
  */
@@ -137,18 +190,38 @@ export declare const de_DeleteInstanceCommand: (output: __HttpResponse, context:
137
190
  * deserializeAws_restJson1GetBillOfMaterialsImportJobCommand
138
191
  */
139
192
  export declare const de_GetBillOfMaterialsImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBillOfMaterialsImportJobCommandOutput>;
193
+ /**
194
+ * deserializeAws_restJson1GetDataIntegrationEventCommand
195
+ */
196
+ export declare const de_GetDataIntegrationEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataIntegrationEventCommandOutput>;
140
197
  /**
141
198
  * deserializeAws_restJson1GetDataIntegrationFlowCommand
142
199
  */
143
200
  export declare const de_GetDataIntegrationFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataIntegrationFlowCommandOutput>;
201
+ /**
202
+ * deserializeAws_restJson1GetDataIntegrationFlowExecutionCommand
203
+ */
204
+ export declare const de_GetDataIntegrationFlowExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataIntegrationFlowExecutionCommandOutput>;
144
205
  /**
145
206
  * deserializeAws_restJson1GetDataLakeDatasetCommand
146
207
  */
147
208
  export declare const de_GetDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataLakeDatasetCommandOutput>;
209
+ /**
210
+ * deserializeAws_restJson1GetDataLakeNamespaceCommand
211
+ */
212
+ export declare const de_GetDataLakeNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataLakeNamespaceCommandOutput>;
148
213
  /**
149
214
  * deserializeAws_restJson1GetInstanceCommand
150
215
  */
151
216
  export declare const de_GetInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInstanceCommandOutput>;
217
+ /**
218
+ * deserializeAws_restJson1ListDataIntegrationEventsCommand
219
+ */
220
+ export declare const de_ListDataIntegrationEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIntegrationEventsCommandOutput>;
221
+ /**
222
+ * deserializeAws_restJson1ListDataIntegrationFlowExecutionsCommand
223
+ */
224
+ export declare const de_ListDataIntegrationFlowExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIntegrationFlowExecutionsCommandOutput>;
152
225
  /**
153
226
  * deserializeAws_restJson1ListDataIntegrationFlowsCommand
154
227
  */
@@ -157,6 +230,10 @@ export declare const de_ListDataIntegrationFlowsCommand: (output: __HttpResponse
157
230
  * deserializeAws_restJson1ListDataLakeDatasetsCommand
158
231
  */
159
232
  export declare const de_ListDataLakeDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataLakeDatasetsCommandOutput>;
233
+ /**
234
+ * deserializeAws_restJson1ListDataLakeNamespacesCommand
235
+ */
236
+ export declare const de_ListDataLakeNamespacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataLakeNamespacesCommandOutput>;
160
237
  /**
161
238
  * deserializeAws_restJson1ListInstancesCommand
162
239
  */
@@ -185,6 +262,10 @@ export declare const de_UpdateDataIntegrationFlowCommand: (output: __HttpRespons
185
262
  * deserializeAws_restJson1UpdateDataLakeDatasetCommand
186
263
  */
187
264
  export declare const de_UpdateDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataLakeDatasetCommandOutput>;
265
+ /**
266
+ * deserializeAws_restJson1UpdateDataLakeNamespaceCommand
267
+ */
268
+ export declare const de_UpdateDataLakeNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataLakeNamespaceCommandOutput>;
188
269
  /**
189
270
  * deserializeAws_restJson1UpdateInstanceCommand
190
271
  */
@@ -11,6 +11,10 @@ import {
11
11
  CreateDataLakeDatasetCommandInput,
12
12
  CreateDataLakeDatasetCommandOutput,
13
13
  } from "./commands/CreateDataLakeDatasetCommand";
14
+ import {
15
+ CreateDataLakeNamespaceCommandInput,
16
+ CreateDataLakeNamespaceCommandOutput,
17
+ } from "./commands/CreateDataLakeNamespaceCommand";
14
18
  import {
15
19
  CreateInstanceCommandInput,
16
20
  CreateInstanceCommandOutput,
@@ -23,6 +27,10 @@ import {
23
27
  DeleteDataLakeDatasetCommandInput,
24
28
  DeleteDataLakeDatasetCommandOutput,
25
29
  } from "./commands/DeleteDataLakeDatasetCommand";
30
+ import {
31
+ DeleteDataLakeNamespaceCommandInput,
32
+ DeleteDataLakeNamespaceCommandOutput,
33
+ } from "./commands/DeleteDataLakeNamespaceCommand";
26
34
  import {
27
35
  DeleteInstanceCommandInput,
28
36
  DeleteInstanceCommandOutput,
@@ -31,18 +39,38 @@ import {
31
39
  GetBillOfMaterialsImportJobCommandInput,
32
40
  GetBillOfMaterialsImportJobCommandOutput,
33
41
  } from "./commands/GetBillOfMaterialsImportJobCommand";
42
+ import {
43
+ GetDataIntegrationEventCommandInput,
44
+ GetDataIntegrationEventCommandOutput,
45
+ } from "./commands/GetDataIntegrationEventCommand";
34
46
  import {
35
47
  GetDataIntegrationFlowCommandInput,
36
48
  GetDataIntegrationFlowCommandOutput,
37
49
  } from "./commands/GetDataIntegrationFlowCommand";
50
+ import {
51
+ GetDataIntegrationFlowExecutionCommandInput,
52
+ GetDataIntegrationFlowExecutionCommandOutput,
53
+ } from "./commands/GetDataIntegrationFlowExecutionCommand";
38
54
  import {
39
55
  GetDataLakeDatasetCommandInput,
40
56
  GetDataLakeDatasetCommandOutput,
41
57
  } from "./commands/GetDataLakeDatasetCommand";
58
+ import {
59
+ GetDataLakeNamespaceCommandInput,
60
+ GetDataLakeNamespaceCommandOutput,
61
+ } from "./commands/GetDataLakeNamespaceCommand";
42
62
  import {
43
63
  GetInstanceCommandInput,
44
64
  GetInstanceCommandOutput,
45
65
  } from "./commands/GetInstanceCommand";
66
+ import {
67
+ ListDataIntegrationEventsCommandInput,
68
+ ListDataIntegrationEventsCommandOutput,
69
+ } from "./commands/ListDataIntegrationEventsCommand";
70
+ import {
71
+ ListDataIntegrationFlowExecutionsCommandInput,
72
+ ListDataIntegrationFlowExecutionsCommandOutput,
73
+ } from "./commands/ListDataIntegrationFlowExecutionsCommand";
46
74
  import {
47
75
  ListDataIntegrationFlowsCommandInput,
48
76
  ListDataIntegrationFlowsCommandOutput,
@@ -51,6 +79,10 @@ import {
51
79
  ListDataLakeDatasetsCommandInput,
52
80
  ListDataLakeDatasetsCommandOutput,
53
81
  } from "./commands/ListDataLakeDatasetsCommand";
82
+ import {
83
+ ListDataLakeNamespacesCommandInput,
84
+ ListDataLakeNamespacesCommandOutput,
85
+ } from "./commands/ListDataLakeNamespacesCommand";
54
86
  import {
55
87
  ListInstancesCommandInput,
56
88
  ListInstancesCommandOutput,
@@ -79,6 +111,10 @@ import {
79
111
  UpdateDataLakeDatasetCommandInput,
80
112
  UpdateDataLakeDatasetCommandOutput,
81
113
  } from "./commands/UpdateDataLakeDatasetCommand";
114
+ import {
115
+ UpdateDataLakeNamespaceCommandInput,
116
+ UpdateDataLakeNamespaceCommandOutput,
117
+ } from "./commands/UpdateDataLakeNamespaceCommand";
82
118
  import {
83
119
  UpdateInstanceCommandInput,
84
120
  UpdateInstanceCommandOutput,
@@ -124,6 +160,19 @@ export interface SupplyChain {
124
160
  options: __HttpHandlerOptions,
125
161
  cb: (err: any, data?: CreateDataLakeDatasetCommandOutput) => void
126
162
  ): void;
163
+ createDataLakeNamespace(
164
+ args: CreateDataLakeNamespaceCommandInput,
165
+ options?: __HttpHandlerOptions
166
+ ): Promise<CreateDataLakeNamespaceCommandOutput>;
167
+ createDataLakeNamespace(
168
+ args: CreateDataLakeNamespaceCommandInput,
169
+ cb: (err: any, data?: CreateDataLakeNamespaceCommandOutput) => void
170
+ ): void;
171
+ createDataLakeNamespace(
172
+ args: CreateDataLakeNamespaceCommandInput,
173
+ options: __HttpHandlerOptions,
174
+ cb: (err: any, data?: CreateDataLakeNamespaceCommandOutput) => void
175
+ ): void;
127
176
  createInstance(): Promise<CreateInstanceCommandOutput>;
128
177
  createInstance(
129
178
  args: CreateInstanceCommandInput,
@@ -164,6 +213,19 @@ export interface SupplyChain {
164
213
  options: __HttpHandlerOptions,
165
214
  cb: (err: any, data?: DeleteDataLakeDatasetCommandOutput) => void
166
215
  ): void;
216
+ deleteDataLakeNamespace(
217
+ args: DeleteDataLakeNamespaceCommandInput,
218
+ options?: __HttpHandlerOptions
219
+ ): Promise<DeleteDataLakeNamespaceCommandOutput>;
220
+ deleteDataLakeNamespace(
221
+ args: DeleteDataLakeNamespaceCommandInput,
222
+ cb: (err: any, data?: DeleteDataLakeNamespaceCommandOutput) => void
223
+ ): void;
224
+ deleteDataLakeNamespace(
225
+ args: DeleteDataLakeNamespaceCommandInput,
226
+ options: __HttpHandlerOptions,
227
+ cb: (err: any, data?: DeleteDataLakeNamespaceCommandOutput) => void
228
+ ): void;
167
229
  deleteInstance(
168
230
  args: DeleteInstanceCommandInput,
169
231
  options?: __HttpHandlerOptions
@@ -190,6 +252,19 @@ export interface SupplyChain {
190
252
  options: __HttpHandlerOptions,
191
253
  cb: (err: any, data?: GetBillOfMaterialsImportJobCommandOutput) => void
192
254
  ): void;
255
+ getDataIntegrationEvent(
256
+ args: GetDataIntegrationEventCommandInput,
257
+ options?: __HttpHandlerOptions
258
+ ): Promise<GetDataIntegrationEventCommandOutput>;
259
+ getDataIntegrationEvent(
260
+ args: GetDataIntegrationEventCommandInput,
261
+ cb: (err: any, data?: GetDataIntegrationEventCommandOutput) => void
262
+ ): void;
263
+ getDataIntegrationEvent(
264
+ args: GetDataIntegrationEventCommandInput,
265
+ options: __HttpHandlerOptions,
266
+ cb: (err: any, data?: GetDataIntegrationEventCommandOutput) => void
267
+ ): void;
193
268
  getDataIntegrationFlow(
194
269
  args: GetDataIntegrationFlowCommandInput,
195
270
  options?: __HttpHandlerOptions
@@ -203,6 +278,19 @@ export interface SupplyChain {
203
278
  options: __HttpHandlerOptions,
204
279
  cb: (err: any, data?: GetDataIntegrationFlowCommandOutput) => void
205
280
  ): void;
281
+ getDataIntegrationFlowExecution(
282
+ args: GetDataIntegrationFlowExecutionCommandInput,
283
+ options?: __HttpHandlerOptions
284
+ ): Promise<GetDataIntegrationFlowExecutionCommandOutput>;
285
+ getDataIntegrationFlowExecution(
286
+ args: GetDataIntegrationFlowExecutionCommandInput,
287
+ cb: (err: any, data?: GetDataIntegrationFlowExecutionCommandOutput) => void
288
+ ): void;
289
+ getDataIntegrationFlowExecution(
290
+ args: GetDataIntegrationFlowExecutionCommandInput,
291
+ options: __HttpHandlerOptions,
292
+ cb: (err: any, data?: GetDataIntegrationFlowExecutionCommandOutput) => void
293
+ ): void;
206
294
  getDataLakeDataset(
207
295
  args: GetDataLakeDatasetCommandInput,
208
296
  options?: __HttpHandlerOptions
@@ -216,6 +304,19 @@ export interface SupplyChain {
216
304
  options: __HttpHandlerOptions,
217
305
  cb: (err: any, data?: GetDataLakeDatasetCommandOutput) => void
218
306
  ): void;
307
+ getDataLakeNamespace(
308
+ args: GetDataLakeNamespaceCommandInput,
309
+ options?: __HttpHandlerOptions
310
+ ): Promise<GetDataLakeNamespaceCommandOutput>;
311
+ getDataLakeNamespace(
312
+ args: GetDataLakeNamespaceCommandInput,
313
+ cb: (err: any, data?: GetDataLakeNamespaceCommandOutput) => void
314
+ ): void;
315
+ getDataLakeNamespace(
316
+ args: GetDataLakeNamespaceCommandInput,
317
+ options: __HttpHandlerOptions,
318
+ cb: (err: any, data?: GetDataLakeNamespaceCommandOutput) => void
319
+ ): void;
219
320
  getInstance(
220
321
  args: GetInstanceCommandInput,
221
322
  options?: __HttpHandlerOptions
@@ -229,6 +330,38 @@ export interface SupplyChain {
229
330
  options: __HttpHandlerOptions,
230
331
  cb: (err: any, data?: GetInstanceCommandOutput) => void
231
332
  ): void;
333
+ listDataIntegrationEvents(
334
+ args: ListDataIntegrationEventsCommandInput,
335
+ options?: __HttpHandlerOptions
336
+ ): Promise<ListDataIntegrationEventsCommandOutput>;
337
+ listDataIntegrationEvents(
338
+ args: ListDataIntegrationEventsCommandInput,
339
+ cb: (err: any, data?: ListDataIntegrationEventsCommandOutput) => void
340
+ ): void;
341
+ listDataIntegrationEvents(
342
+ args: ListDataIntegrationEventsCommandInput,
343
+ options: __HttpHandlerOptions,
344
+ cb: (err: any, data?: ListDataIntegrationEventsCommandOutput) => void
345
+ ): void;
346
+ listDataIntegrationFlowExecutions(
347
+ args: ListDataIntegrationFlowExecutionsCommandInput,
348
+ options?: __HttpHandlerOptions
349
+ ): Promise<ListDataIntegrationFlowExecutionsCommandOutput>;
350
+ listDataIntegrationFlowExecutions(
351
+ args: ListDataIntegrationFlowExecutionsCommandInput,
352
+ cb: (
353
+ err: any,
354
+ data?: ListDataIntegrationFlowExecutionsCommandOutput
355
+ ) => void
356
+ ): void;
357
+ listDataIntegrationFlowExecutions(
358
+ args: ListDataIntegrationFlowExecutionsCommandInput,
359
+ options: __HttpHandlerOptions,
360
+ cb: (
361
+ err: any,
362
+ data?: ListDataIntegrationFlowExecutionsCommandOutput
363
+ ) => void
364
+ ): void;
232
365
  listDataIntegrationFlows(
233
366
  args: ListDataIntegrationFlowsCommandInput,
234
367
  options?: __HttpHandlerOptions
@@ -255,6 +388,19 @@ export interface SupplyChain {
255
388
  options: __HttpHandlerOptions,
256
389
  cb: (err: any, data?: ListDataLakeDatasetsCommandOutput) => void
257
390
  ): void;
391
+ listDataLakeNamespaces(
392
+ args: ListDataLakeNamespacesCommandInput,
393
+ options?: __HttpHandlerOptions
394
+ ): Promise<ListDataLakeNamespacesCommandOutput>;
395
+ listDataLakeNamespaces(
396
+ args: ListDataLakeNamespacesCommandInput,
397
+ cb: (err: any, data?: ListDataLakeNamespacesCommandOutput) => void
398
+ ): void;
399
+ listDataLakeNamespaces(
400
+ args: ListDataLakeNamespacesCommandInput,
401
+ options: __HttpHandlerOptions,
402
+ cb: (err: any, data?: ListDataLakeNamespacesCommandOutput) => void
403
+ ): void;
258
404
  listInstances(): Promise<ListInstancesCommandOutput>;
259
405
  listInstances(
260
406
  args: ListInstancesCommandInput,
@@ -347,6 +493,19 @@ export interface SupplyChain {
347
493
  options: __HttpHandlerOptions,
348
494
  cb: (err: any, data?: UpdateDataLakeDatasetCommandOutput) => void
349
495
  ): void;
496
+ updateDataLakeNamespace(
497
+ args: UpdateDataLakeNamespaceCommandInput,
498
+ options?: __HttpHandlerOptions
499
+ ): Promise<UpdateDataLakeNamespaceCommandOutput>;
500
+ updateDataLakeNamespace(
501
+ args: UpdateDataLakeNamespaceCommandInput,
502
+ cb: (err: any, data?: UpdateDataLakeNamespaceCommandOutput) => void
503
+ ): void;
504
+ updateDataLakeNamespace(
505
+ args: UpdateDataLakeNamespaceCommandInput,
506
+ options: __HttpHandlerOptions,
507
+ cb: (err: any, data?: UpdateDataLakeNamespaceCommandOutput) => void
508
+ ): void;
350
509
  updateInstance(
351
510
  args: UpdateInstanceCommandInput,
352
511
  options?: __HttpHandlerOptions
@@ -57,6 +57,10 @@ import {
57
57
  CreateDataLakeDatasetCommandInput,
58
58
  CreateDataLakeDatasetCommandOutput,
59
59
  } from "./commands/CreateDataLakeDatasetCommand";
60
+ import {
61
+ CreateDataLakeNamespaceCommandInput,
62
+ CreateDataLakeNamespaceCommandOutput,
63
+ } from "./commands/CreateDataLakeNamespaceCommand";
60
64
  import {
61
65
  CreateInstanceCommandInput,
62
66
  CreateInstanceCommandOutput,
@@ -69,6 +73,10 @@ import {
69
73
  DeleteDataLakeDatasetCommandInput,
70
74
  DeleteDataLakeDatasetCommandOutput,
71
75
  } from "./commands/DeleteDataLakeDatasetCommand";
76
+ import {
77
+ DeleteDataLakeNamespaceCommandInput,
78
+ DeleteDataLakeNamespaceCommandOutput,
79
+ } from "./commands/DeleteDataLakeNamespaceCommand";
72
80
  import {
73
81
  DeleteInstanceCommandInput,
74
82
  DeleteInstanceCommandOutput,
@@ -77,18 +85,38 @@ import {
77
85
  GetBillOfMaterialsImportJobCommandInput,
78
86
  GetBillOfMaterialsImportJobCommandOutput,
79
87
  } from "./commands/GetBillOfMaterialsImportJobCommand";
88
+ import {
89
+ GetDataIntegrationEventCommandInput,
90
+ GetDataIntegrationEventCommandOutput,
91
+ } from "./commands/GetDataIntegrationEventCommand";
80
92
  import {
81
93
  GetDataIntegrationFlowCommandInput,
82
94
  GetDataIntegrationFlowCommandOutput,
83
95
  } from "./commands/GetDataIntegrationFlowCommand";
96
+ import {
97
+ GetDataIntegrationFlowExecutionCommandInput,
98
+ GetDataIntegrationFlowExecutionCommandOutput,
99
+ } from "./commands/GetDataIntegrationFlowExecutionCommand";
84
100
  import {
85
101
  GetDataLakeDatasetCommandInput,
86
102
  GetDataLakeDatasetCommandOutput,
87
103
  } from "./commands/GetDataLakeDatasetCommand";
104
+ import {
105
+ GetDataLakeNamespaceCommandInput,
106
+ GetDataLakeNamespaceCommandOutput,
107
+ } from "./commands/GetDataLakeNamespaceCommand";
88
108
  import {
89
109
  GetInstanceCommandInput,
90
110
  GetInstanceCommandOutput,
91
111
  } from "./commands/GetInstanceCommand";
112
+ import {
113
+ ListDataIntegrationEventsCommandInput,
114
+ ListDataIntegrationEventsCommandOutput,
115
+ } from "./commands/ListDataIntegrationEventsCommand";
116
+ import {
117
+ ListDataIntegrationFlowExecutionsCommandInput,
118
+ ListDataIntegrationFlowExecutionsCommandOutput,
119
+ } from "./commands/ListDataIntegrationFlowExecutionsCommand";
92
120
  import {
93
121
  ListDataIntegrationFlowsCommandInput,
94
122
  ListDataIntegrationFlowsCommandOutput,
@@ -97,6 +125,10 @@ import {
97
125
  ListDataLakeDatasetsCommandInput,
98
126
  ListDataLakeDatasetsCommandOutput,
99
127
  } from "./commands/ListDataLakeDatasetsCommand";
128
+ import {
129
+ ListDataLakeNamespacesCommandInput,
130
+ ListDataLakeNamespacesCommandOutput,
131
+ } from "./commands/ListDataLakeNamespacesCommand";
100
132
  import {
101
133
  ListInstancesCommandInput,
102
134
  ListInstancesCommandOutput,
@@ -125,6 +157,10 @@ import {
125
157
  UpdateDataLakeDatasetCommandInput,
126
158
  UpdateDataLakeDatasetCommandOutput,
127
159
  } from "./commands/UpdateDataLakeDatasetCommand";
160
+ import {
161
+ UpdateDataLakeNamespaceCommandInput,
162
+ UpdateDataLakeNamespaceCommandOutput,
163
+ } from "./commands/UpdateDataLakeNamespaceCommand";
128
164
  import {
129
165
  UpdateInstanceCommandInput,
130
166
  UpdateInstanceCommandOutput,
@@ -140,16 +176,24 @@ export type ServiceInputTypes =
140
176
  | CreateBillOfMaterialsImportJobCommandInput
141
177
  | CreateDataIntegrationFlowCommandInput
142
178
  | CreateDataLakeDatasetCommandInput
179
+ | CreateDataLakeNamespaceCommandInput
143
180
  | CreateInstanceCommandInput
144
181
  | DeleteDataIntegrationFlowCommandInput
145
182
  | DeleteDataLakeDatasetCommandInput
183
+ | DeleteDataLakeNamespaceCommandInput
146
184
  | DeleteInstanceCommandInput
147
185
  | GetBillOfMaterialsImportJobCommandInput
186
+ | GetDataIntegrationEventCommandInput
148
187
  | GetDataIntegrationFlowCommandInput
188
+ | GetDataIntegrationFlowExecutionCommandInput
149
189
  | GetDataLakeDatasetCommandInput
190
+ | GetDataLakeNamespaceCommandInput
150
191
  | GetInstanceCommandInput
192
+ | ListDataIntegrationEventsCommandInput
193
+ | ListDataIntegrationFlowExecutionsCommandInput
151
194
  | ListDataIntegrationFlowsCommandInput
152
195
  | ListDataLakeDatasetsCommandInput
196
+ | ListDataLakeNamespacesCommandInput
153
197
  | ListInstancesCommandInput
154
198
  | ListTagsForResourceCommandInput
155
199
  | SendDataIntegrationEventCommandInput
@@ -157,21 +201,30 @@ export type ServiceInputTypes =
157
201
  | UntagResourceCommandInput
158
202
  | UpdateDataIntegrationFlowCommandInput
159
203
  | UpdateDataLakeDatasetCommandInput
204
+ | UpdateDataLakeNamespaceCommandInput
160
205
  | UpdateInstanceCommandInput;
161
206
  export type ServiceOutputTypes =
162
207
  | CreateBillOfMaterialsImportJobCommandOutput
163
208
  | CreateDataIntegrationFlowCommandOutput
164
209
  | CreateDataLakeDatasetCommandOutput
210
+ | CreateDataLakeNamespaceCommandOutput
165
211
  | CreateInstanceCommandOutput
166
212
  | DeleteDataIntegrationFlowCommandOutput
167
213
  | DeleteDataLakeDatasetCommandOutput
214
+ | DeleteDataLakeNamespaceCommandOutput
168
215
  | DeleteInstanceCommandOutput
169
216
  | GetBillOfMaterialsImportJobCommandOutput
217
+ | GetDataIntegrationEventCommandOutput
170
218
  | GetDataIntegrationFlowCommandOutput
219
+ | GetDataIntegrationFlowExecutionCommandOutput
171
220
  | GetDataLakeDatasetCommandOutput
221
+ | GetDataLakeNamespaceCommandOutput
172
222
  | GetInstanceCommandOutput
223
+ | ListDataIntegrationEventsCommandOutput
224
+ | ListDataIntegrationFlowExecutionsCommandOutput
173
225
  | ListDataIntegrationFlowsCommandOutput
174
226
  | ListDataLakeDatasetsCommandOutput
227
+ | ListDataLakeNamespacesCommandOutput
175
228
  | ListInstancesCommandOutput
176
229
  | ListTagsForResourceCommandOutput
177
230
  | SendDataIntegrationEventCommandOutput
@@ -179,6 +232,7 @@ export type ServiceOutputTypes =
179
232
  | UntagResourceCommandOutput
180
233
  | UpdateDataIntegrationFlowCommandOutput
181
234
  | UpdateDataLakeDatasetCommandOutput
235
+ | UpdateDataLakeNamespaceCommandOutput
182
236
  | UpdateInstanceCommandOutput;
183
237
  export interface ClientDefaults
184
238
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {