@aws-sdk/client-supplychain 3.658.1 → 3.662.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/README.md +111 -7
- package/dist-cjs/index.js +675 -2
- package/dist-es/SupplyChain.js +26 -0
- package/dist-es/commands/CreateDataIntegrationFlowCommand.js +22 -0
- package/dist-es/commands/CreateDataLakeDatasetCommand.js +22 -0
- package/dist-es/commands/DeleteDataIntegrationFlowCommand.js +22 -0
- package/dist-es/commands/DeleteDataLakeDatasetCommand.js +22 -0
- package/dist-es/commands/GetDataIntegrationFlowCommand.js +22 -0
- package/dist-es/commands/GetDataLakeDatasetCommand.js +22 -0
- package/dist-es/commands/ListDataIntegrationFlowsCommand.js +22 -0
- package/dist-es/commands/ListDataLakeDatasetsCommand.js +22 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
- package/dist-es/commands/TagResourceCommand.js +22 -0
- package/dist-es/commands/UntagResourceCommand.js +22 -0
- package/dist-es/commands/UpdateDataIntegrationFlowCommand.js +22 -0
- package/dist-es/commands/UpdateDataLakeDatasetCommand.js +22 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +27 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDataIntegrationFlowsPaginator.js +4 -0
- package/dist-es/pagination/ListDataLakeDatasetsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +396 -1
- package/dist-types/SupplyChain.d.ts +91 -0
- package/dist-types/SupplyChainClient.d.ts +15 -2
- package/dist-types/commands/CreateDataIntegrationFlowCommand.d.ts +232 -0
- package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +393 -0
- package/dist-types/commands/DeleteDataIntegrationFlowCommand.d.ts +112 -0
- package/dist-types/commands/DeleteDataLakeDatasetCommand.d.ts +136 -0
- package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +185 -0
- package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +344 -0
- package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +224 -0
- package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +377 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +112 -0
- package/dist-types/commands/TagResourceCommand.d.ts +107 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +107 -0
- package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +328 -0
- package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +347 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +909 -18
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDataIntegrationFlowsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDataLakeDatasetsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +117 -0
- package/dist-types/ts3.4/SupplyChain.d.ts +221 -0
- package/dist-types/ts3.4/SupplyChainClient.d.ts +80 -2
- package/dist-types/ts3.4/commands/CreateDataIntegrationFlowCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateDataLakeDatasetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDataIntegrationFlowCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDataLakeDatasetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataIntegrationFlowCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataLakeDatasetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationFlowsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataLakeDatasetsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateDataIntegrationFlowCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDataLakeDatasetCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +220 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDataIntegrationFlowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDataLakeDatasetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +156 -0
- package/package.json +35 -35
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody } from "@aws-sdk/core";
|
|
2
2
|
import { requestBuilder as rb } from "@smithy/core";
|
|
3
|
-
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, map, take, withBaseException, } from "@smithy/smithy-client";
|
|
3
|
+
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, map, parseEpochTimestamp as __parseEpochTimestamp, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
4
|
import { v4 as generateIdempotencyToken } from "uuid";
|
|
5
5
|
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
6
6
|
import { SupplyChainServiceException as __BaseException } from "../models/SupplyChainServiceException";
|
|
@@ -19,6 +19,63 @@ export const se_CreateBillOfMaterialsImportJobCommand = async (input, context) =
|
|
|
19
19
|
b.m("POST").h(headers).b(body);
|
|
20
20
|
return b.build();
|
|
21
21
|
};
|
|
22
|
+
export const se_CreateDataIntegrationFlowCommand = async (input, context) => {
|
|
23
|
+
const b = rb(input, context);
|
|
24
|
+
const headers = {
|
|
25
|
+
"content-type": "application/json",
|
|
26
|
+
};
|
|
27
|
+
b.bp("/api/data-integration/instance/{instanceId}/data-integration-flows/{name}");
|
|
28
|
+
b.p("instanceId", () => input.instanceId, "{instanceId}", false);
|
|
29
|
+
b.p("name", () => input.name, "{name}", false);
|
|
30
|
+
let body;
|
|
31
|
+
body = JSON.stringify(take(input, {
|
|
32
|
+
sources: (_) => _json(_),
|
|
33
|
+
tags: (_) => _json(_),
|
|
34
|
+
target: (_) => _json(_),
|
|
35
|
+
transformation: (_) => _json(_),
|
|
36
|
+
}));
|
|
37
|
+
b.m("PUT").h(headers).b(body);
|
|
38
|
+
return b.build();
|
|
39
|
+
};
|
|
40
|
+
export const se_CreateDataLakeDatasetCommand = async (input, context) => {
|
|
41
|
+
const b = rb(input, context);
|
|
42
|
+
const headers = {
|
|
43
|
+
"content-type": "application/json",
|
|
44
|
+
};
|
|
45
|
+
b.bp("/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}");
|
|
46
|
+
b.p("instanceId", () => input.instanceId, "{instanceId}", false);
|
|
47
|
+
b.p("namespace", () => input.namespace, "{namespace}", false);
|
|
48
|
+
b.p("name", () => input.name, "{name}", false);
|
|
49
|
+
let body;
|
|
50
|
+
body = JSON.stringify(take(input, {
|
|
51
|
+
description: [],
|
|
52
|
+
schema: (_) => _json(_),
|
|
53
|
+
tags: (_) => _json(_),
|
|
54
|
+
}));
|
|
55
|
+
b.m("PUT").h(headers).b(body);
|
|
56
|
+
return b.build();
|
|
57
|
+
};
|
|
58
|
+
export const se_DeleteDataIntegrationFlowCommand = async (input, context) => {
|
|
59
|
+
const b = rb(input, context);
|
|
60
|
+
const headers = {};
|
|
61
|
+
b.bp("/api/data-integration/instance/{instanceId}/data-integration-flows/{name}");
|
|
62
|
+
b.p("instanceId", () => input.instanceId, "{instanceId}", false);
|
|
63
|
+
b.p("name", () => input.name, "{name}", false);
|
|
64
|
+
let body;
|
|
65
|
+
b.m("DELETE").h(headers).b(body);
|
|
66
|
+
return b.build();
|
|
67
|
+
};
|
|
68
|
+
export const se_DeleteDataLakeDatasetCommand = async (input, context) => {
|
|
69
|
+
const b = rb(input, context);
|
|
70
|
+
const headers = {};
|
|
71
|
+
b.bp("/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}");
|
|
72
|
+
b.p("instanceId", () => input.instanceId, "{instanceId}", false);
|
|
73
|
+
b.p("namespace", () => input.namespace, "{namespace}", false);
|
|
74
|
+
b.p("name", () => input.name, "{name}", false);
|
|
75
|
+
let body;
|
|
76
|
+
b.m("DELETE").h(headers).b(body);
|
|
77
|
+
return b.build();
|
|
78
|
+
};
|
|
22
79
|
export const se_GetBillOfMaterialsImportJobCommand = async (input, context) => {
|
|
23
80
|
const b = rb(input, context);
|
|
24
81
|
const headers = {};
|
|
@@ -29,6 +86,63 @@ export const se_GetBillOfMaterialsImportJobCommand = async (input, context) => {
|
|
|
29
86
|
b.m("GET").h(headers).b(body);
|
|
30
87
|
return b.build();
|
|
31
88
|
};
|
|
89
|
+
export const se_GetDataIntegrationFlowCommand = async (input, context) => {
|
|
90
|
+
const b = rb(input, context);
|
|
91
|
+
const headers = {};
|
|
92
|
+
b.bp("/api/data-integration/instance/{instanceId}/data-integration-flows/{name}");
|
|
93
|
+
b.p("instanceId", () => input.instanceId, "{instanceId}", false);
|
|
94
|
+
b.p("name", () => input.name, "{name}", false);
|
|
95
|
+
let body;
|
|
96
|
+
b.m("GET").h(headers).b(body);
|
|
97
|
+
return b.build();
|
|
98
|
+
};
|
|
99
|
+
export const se_GetDataLakeDatasetCommand = async (input, context) => {
|
|
100
|
+
const b = rb(input, context);
|
|
101
|
+
const headers = {};
|
|
102
|
+
b.bp("/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}");
|
|
103
|
+
b.p("instanceId", () => input.instanceId, "{instanceId}", false);
|
|
104
|
+
b.p("namespace", () => input.namespace, "{namespace}", false);
|
|
105
|
+
b.p("name", () => input.name, "{name}", false);
|
|
106
|
+
let body;
|
|
107
|
+
b.m("GET").h(headers).b(body);
|
|
108
|
+
return b.build();
|
|
109
|
+
};
|
|
110
|
+
export const se_ListDataIntegrationFlowsCommand = async (input, context) => {
|
|
111
|
+
const b = rb(input, context);
|
|
112
|
+
const headers = {};
|
|
113
|
+
b.bp("/api/data-integration/instance/{instanceId}/data-integration-flows");
|
|
114
|
+
b.p("instanceId", () => input.instanceId, "{instanceId}", false);
|
|
115
|
+
const query = map({
|
|
116
|
+
[_nT]: [, input[_nT]],
|
|
117
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
118
|
+
});
|
|
119
|
+
let body;
|
|
120
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
121
|
+
return b.build();
|
|
122
|
+
};
|
|
123
|
+
export const se_ListDataLakeDatasetsCommand = async (input, context) => {
|
|
124
|
+
const b = rb(input, context);
|
|
125
|
+
const headers = {};
|
|
126
|
+
b.bp("/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets");
|
|
127
|
+
b.p("instanceId", () => input.instanceId, "{instanceId}", false);
|
|
128
|
+
b.p("namespace", () => input.namespace, "{namespace}", false);
|
|
129
|
+
const query = map({
|
|
130
|
+
[_nT]: [, input[_nT]],
|
|
131
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
132
|
+
});
|
|
133
|
+
let body;
|
|
134
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
135
|
+
return b.build();
|
|
136
|
+
};
|
|
137
|
+
export const se_ListTagsForResourceCommand = async (input, context) => {
|
|
138
|
+
const b = rb(input, context);
|
|
139
|
+
const headers = {};
|
|
140
|
+
b.bp("/api/tags/{resourceArn}");
|
|
141
|
+
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
142
|
+
let body;
|
|
143
|
+
b.m("GET").h(headers).b(body);
|
|
144
|
+
return b.build();
|
|
145
|
+
};
|
|
32
146
|
export const se_SendDataIntegrationEventCommand = async (input, context) => {
|
|
33
147
|
const b = rb(input, context);
|
|
34
148
|
const headers = {
|
|
@@ -47,6 +161,65 @@ export const se_SendDataIntegrationEventCommand = async (input, context) => {
|
|
|
47
161
|
b.m("POST").h(headers).b(body);
|
|
48
162
|
return b.build();
|
|
49
163
|
};
|
|
164
|
+
export const se_TagResourceCommand = async (input, context) => {
|
|
165
|
+
const b = rb(input, context);
|
|
166
|
+
const headers = {
|
|
167
|
+
"content-type": "application/json",
|
|
168
|
+
};
|
|
169
|
+
b.bp("/api/tags/{resourceArn}");
|
|
170
|
+
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
171
|
+
let body;
|
|
172
|
+
body = JSON.stringify(take(input, {
|
|
173
|
+
tags: (_) => _json(_),
|
|
174
|
+
}));
|
|
175
|
+
b.m("POST").h(headers).b(body);
|
|
176
|
+
return b.build();
|
|
177
|
+
};
|
|
178
|
+
export const se_UntagResourceCommand = async (input, context) => {
|
|
179
|
+
const b = rb(input, context);
|
|
180
|
+
const headers = {};
|
|
181
|
+
b.bp("/api/tags/{resourceArn}");
|
|
182
|
+
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
183
|
+
const query = map({
|
|
184
|
+
[_tK]: [__expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
185
|
+
});
|
|
186
|
+
let body;
|
|
187
|
+
b.m("DELETE").h(headers).q(query).b(body);
|
|
188
|
+
return b.build();
|
|
189
|
+
};
|
|
190
|
+
export const se_UpdateDataIntegrationFlowCommand = async (input, context) => {
|
|
191
|
+
const b = rb(input, context);
|
|
192
|
+
const headers = {
|
|
193
|
+
"content-type": "application/json",
|
|
194
|
+
};
|
|
195
|
+
b.bp("/api/data-integration/instance/{instanceId}/data-integration-flows/{name}");
|
|
196
|
+
b.p("instanceId", () => input.instanceId, "{instanceId}", false);
|
|
197
|
+
b.p("name", () => input.name, "{name}", false);
|
|
198
|
+
let body;
|
|
199
|
+
body = JSON.stringify(take(input, {
|
|
200
|
+
sources: (_) => _json(_),
|
|
201
|
+
target: (_) => _json(_),
|
|
202
|
+
transformation: (_) => _json(_),
|
|
203
|
+
}));
|
|
204
|
+
b.m("PATCH").h(headers).b(body);
|
|
205
|
+
return b.build();
|
|
206
|
+
};
|
|
207
|
+
export const se_UpdateDataLakeDatasetCommand = async (input, context) => {
|
|
208
|
+
const b = rb(input, context);
|
|
209
|
+
const headers = {
|
|
210
|
+
"content-type": "application/json",
|
|
211
|
+
};
|
|
212
|
+
b.bp("/api/datalake/instance/{instanceId}/namespaces/{namespace}/datasets/{name}");
|
|
213
|
+
b.p("instanceId", () => input.instanceId, "{instanceId}", false);
|
|
214
|
+
b.p("namespace", () => input.namespace, "{namespace}", false);
|
|
215
|
+
b.p("name", () => input.name, "{name}", false);
|
|
216
|
+
let body;
|
|
217
|
+
body = JSON.stringify(take(input, {
|
|
218
|
+
description: [],
|
|
219
|
+
}));
|
|
220
|
+
b.m("PATCH").h(headers).b(body);
|
|
221
|
+
return b.build();
|
|
222
|
+
};
|
|
50
223
|
export const de_CreateBillOfMaterialsImportJobCommand = async (output, context) => {
|
|
51
224
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
52
225
|
return de_CommandError(output, context);
|
|
@@ -61,6 +234,66 @@ export const de_CreateBillOfMaterialsImportJobCommand = async (output, context)
|
|
|
61
234
|
Object.assign(contents, doc);
|
|
62
235
|
return contents;
|
|
63
236
|
};
|
|
237
|
+
export const de_CreateDataIntegrationFlowCommand = async (output, context) => {
|
|
238
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
239
|
+
return de_CommandError(output, context);
|
|
240
|
+
}
|
|
241
|
+
const contents = map({
|
|
242
|
+
$metadata: deserializeMetadata(output),
|
|
243
|
+
});
|
|
244
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
245
|
+
const doc = take(data, {
|
|
246
|
+
instanceId: __expectString,
|
|
247
|
+
name: __expectString,
|
|
248
|
+
});
|
|
249
|
+
Object.assign(contents, doc);
|
|
250
|
+
return contents;
|
|
251
|
+
};
|
|
252
|
+
export const de_CreateDataLakeDatasetCommand = async (output, context) => {
|
|
253
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
254
|
+
return de_CommandError(output, context);
|
|
255
|
+
}
|
|
256
|
+
const contents = map({
|
|
257
|
+
$metadata: deserializeMetadata(output),
|
|
258
|
+
});
|
|
259
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
260
|
+
const doc = take(data, {
|
|
261
|
+
dataset: (_) => de_DataLakeDataset(_, context),
|
|
262
|
+
});
|
|
263
|
+
Object.assign(contents, doc);
|
|
264
|
+
return contents;
|
|
265
|
+
};
|
|
266
|
+
export const de_DeleteDataIntegrationFlowCommand = async (output, context) => {
|
|
267
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
268
|
+
return de_CommandError(output, context);
|
|
269
|
+
}
|
|
270
|
+
const contents = map({
|
|
271
|
+
$metadata: deserializeMetadata(output),
|
|
272
|
+
});
|
|
273
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
274
|
+
const doc = take(data, {
|
|
275
|
+
instanceId: __expectString,
|
|
276
|
+
name: __expectString,
|
|
277
|
+
});
|
|
278
|
+
Object.assign(contents, doc);
|
|
279
|
+
return contents;
|
|
280
|
+
};
|
|
281
|
+
export const de_DeleteDataLakeDatasetCommand = async (output, context) => {
|
|
282
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
283
|
+
return de_CommandError(output, context);
|
|
284
|
+
}
|
|
285
|
+
const contents = map({
|
|
286
|
+
$metadata: deserializeMetadata(output),
|
|
287
|
+
});
|
|
288
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
289
|
+
const doc = take(data, {
|
|
290
|
+
instanceId: __expectString,
|
|
291
|
+
name: __expectString,
|
|
292
|
+
namespace: __expectString,
|
|
293
|
+
});
|
|
294
|
+
Object.assign(contents, doc);
|
|
295
|
+
return contents;
|
|
296
|
+
};
|
|
64
297
|
export const de_GetBillOfMaterialsImportJobCommand = async (output, context) => {
|
|
65
298
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
66
299
|
return de_CommandError(output, context);
|
|
@@ -75,6 +308,78 @@ export const de_GetBillOfMaterialsImportJobCommand = async (output, context) =>
|
|
|
75
308
|
Object.assign(contents, doc);
|
|
76
309
|
return contents;
|
|
77
310
|
};
|
|
311
|
+
export const de_GetDataIntegrationFlowCommand = async (output, context) => {
|
|
312
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
313
|
+
return de_CommandError(output, context);
|
|
314
|
+
}
|
|
315
|
+
const contents = map({
|
|
316
|
+
$metadata: deserializeMetadata(output),
|
|
317
|
+
});
|
|
318
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
319
|
+
const doc = take(data, {
|
|
320
|
+
flow: (_) => de_DataIntegrationFlow(_, context),
|
|
321
|
+
});
|
|
322
|
+
Object.assign(contents, doc);
|
|
323
|
+
return contents;
|
|
324
|
+
};
|
|
325
|
+
export const de_GetDataLakeDatasetCommand = async (output, context) => {
|
|
326
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
327
|
+
return de_CommandError(output, context);
|
|
328
|
+
}
|
|
329
|
+
const contents = map({
|
|
330
|
+
$metadata: deserializeMetadata(output),
|
|
331
|
+
});
|
|
332
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
333
|
+
const doc = take(data, {
|
|
334
|
+
dataset: (_) => de_DataLakeDataset(_, context),
|
|
335
|
+
});
|
|
336
|
+
Object.assign(contents, doc);
|
|
337
|
+
return contents;
|
|
338
|
+
};
|
|
339
|
+
export const de_ListDataIntegrationFlowsCommand = async (output, context) => {
|
|
340
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
341
|
+
return de_CommandError(output, context);
|
|
342
|
+
}
|
|
343
|
+
const contents = map({
|
|
344
|
+
$metadata: deserializeMetadata(output),
|
|
345
|
+
});
|
|
346
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
347
|
+
const doc = take(data, {
|
|
348
|
+
flows: (_) => de_DataIntegrationFlowList(_, context),
|
|
349
|
+
nextToken: __expectString,
|
|
350
|
+
});
|
|
351
|
+
Object.assign(contents, doc);
|
|
352
|
+
return contents;
|
|
353
|
+
};
|
|
354
|
+
export const de_ListDataLakeDatasetsCommand = async (output, context) => {
|
|
355
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
356
|
+
return de_CommandError(output, context);
|
|
357
|
+
}
|
|
358
|
+
const contents = map({
|
|
359
|
+
$metadata: deserializeMetadata(output),
|
|
360
|
+
});
|
|
361
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
362
|
+
const doc = take(data, {
|
|
363
|
+
datasets: (_) => de_DataLakeDatasetList(_, context),
|
|
364
|
+
nextToken: __expectString,
|
|
365
|
+
});
|
|
366
|
+
Object.assign(contents, doc);
|
|
367
|
+
return contents;
|
|
368
|
+
};
|
|
369
|
+
export const de_ListTagsForResourceCommand = async (output, context) => {
|
|
370
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
371
|
+
return de_CommandError(output, context);
|
|
372
|
+
}
|
|
373
|
+
const contents = map({
|
|
374
|
+
$metadata: deserializeMetadata(output),
|
|
375
|
+
});
|
|
376
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
377
|
+
const doc = take(data, {
|
|
378
|
+
tags: _json,
|
|
379
|
+
});
|
|
380
|
+
Object.assign(contents, doc);
|
|
381
|
+
return contents;
|
|
382
|
+
};
|
|
78
383
|
export const de_SendDataIntegrationEventCommand = async (output, context) => {
|
|
79
384
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
80
385
|
return de_CommandError(output, context);
|
|
@@ -89,6 +394,54 @@ export const de_SendDataIntegrationEventCommand = async (output, context) => {
|
|
|
89
394
|
Object.assign(contents, doc);
|
|
90
395
|
return contents;
|
|
91
396
|
};
|
|
397
|
+
export const de_TagResourceCommand = async (output, context) => {
|
|
398
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
399
|
+
return de_CommandError(output, context);
|
|
400
|
+
}
|
|
401
|
+
const contents = map({
|
|
402
|
+
$metadata: deserializeMetadata(output),
|
|
403
|
+
});
|
|
404
|
+
await collectBody(output.body, context);
|
|
405
|
+
return contents;
|
|
406
|
+
};
|
|
407
|
+
export const de_UntagResourceCommand = async (output, context) => {
|
|
408
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
409
|
+
return de_CommandError(output, context);
|
|
410
|
+
}
|
|
411
|
+
const contents = map({
|
|
412
|
+
$metadata: deserializeMetadata(output),
|
|
413
|
+
});
|
|
414
|
+
await collectBody(output.body, context);
|
|
415
|
+
return contents;
|
|
416
|
+
};
|
|
417
|
+
export const de_UpdateDataIntegrationFlowCommand = async (output, context) => {
|
|
418
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
419
|
+
return de_CommandError(output, context);
|
|
420
|
+
}
|
|
421
|
+
const contents = map({
|
|
422
|
+
$metadata: deserializeMetadata(output),
|
|
423
|
+
});
|
|
424
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
425
|
+
const doc = take(data, {
|
|
426
|
+
flow: (_) => de_DataIntegrationFlow(_, context),
|
|
427
|
+
});
|
|
428
|
+
Object.assign(contents, doc);
|
|
429
|
+
return contents;
|
|
430
|
+
};
|
|
431
|
+
export const de_UpdateDataLakeDatasetCommand = async (output, context) => {
|
|
432
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
433
|
+
return de_CommandError(output, context);
|
|
434
|
+
}
|
|
435
|
+
const contents = map({
|
|
436
|
+
$metadata: deserializeMetadata(output),
|
|
437
|
+
});
|
|
438
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
439
|
+
const doc = take(data, {
|
|
440
|
+
dataset: (_) => de_DataLakeDataset(_, context),
|
|
441
|
+
});
|
|
442
|
+
Object.assign(contents, doc);
|
|
443
|
+
return contents;
|
|
444
|
+
};
|
|
92
445
|
const de_CommandError = async (output, context) => {
|
|
93
446
|
const parsedOutput = {
|
|
94
447
|
...output,
|
|
@@ -218,6 +571,45 @@ const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
|
218
571
|
});
|
|
219
572
|
return __decorateServiceException(exception, parsedOutput.body);
|
|
220
573
|
};
|
|
574
|
+
const de_DataIntegrationFlow = (output, context) => {
|
|
575
|
+
return take(output, {
|
|
576
|
+
createdTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
577
|
+
instanceId: __expectString,
|
|
578
|
+
lastModifiedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
579
|
+
name: __expectString,
|
|
580
|
+
sources: _json,
|
|
581
|
+
target: _json,
|
|
582
|
+
transformation: _json,
|
|
583
|
+
});
|
|
584
|
+
};
|
|
585
|
+
const de_DataIntegrationFlowList = (output, context) => {
|
|
586
|
+
const retVal = (output || [])
|
|
587
|
+
.filter((e) => e != null)
|
|
588
|
+
.map((entry) => {
|
|
589
|
+
return de_DataIntegrationFlow(entry, context);
|
|
590
|
+
});
|
|
591
|
+
return retVal;
|
|
592
|
+
};
|
|
593
|
+
const de_DataLakeDataset = (output, context) => {
|
|
594
|
+
return take(output, {
|
|
595
|
+
arn: __expectString,
|
|
596
|
+
createdTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
597
|
+
description: __expectString,
|
|
598
|
+
instanceId: __expectString,
|
|
599
|
+
lastModifiedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
600
|
+
name: __expectString,
|
|
601
|
+
namespace: __expectString,
|
|
602
|
+
schema: _json,
|
|
603
|
+
});
|
|
604
|
+
};
|
|
605
|
+
const de_DataLakeDatasetList = (output, context) => {
|
|
606
|
+
const retVal = (output || [])
|
|
607
|
+
.filter((e) => e != null)
|
|
608
|
+
.map((entry) => {
|
|
609
|
+
return de_DataLakeDataset(entry, context);
|
|
610
|
+
});
|
|
611
|
+
return retVal;
|
|
612
|
+
};
|
|
221
613
|
const deserializeMetadata = (output) => ({
|
|
222
614
|
httpStatusCode: output.statusCode,
|
|
223
615
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
@@ -225,3 +617,6 @@ const deserializeMetadata = (output) => ({
|
|
|
225
617
|
cfId: output.headers["x-amz-cf-id"],
|
|
226
618
|
});
|
|
227
619
|
const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
620
|
+
const _mR = "maxResults";
|
|
621
|
+
const _nT = "nextToken";
|
|
622
|
+
const _tK = "tagKeys";
|
|
@@ -1,7 +1,20 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
2
|
import { CreateBillOfMaterialsImportJobCommandInput, CreateBillOfMaterialsImportJobCommandOutput } from "./commands/CreateBillOfMaterialsImportJobCommand";
|
|
3
|
+
import { CreateDataIntegrationFlowCommandInput, CreateDataIntegrationFlowCommandOutput } from "./commands/CreateDataIntegrationFlowCommand";
|
|
4
|
+
import { CreateDataLakeDatasetCommandInput, CreateDataLakeDatasetCommandOutput } from "./commands/CreateDataLakeDatasetCommand";
|
|
5
|
+
import { DeleteDataIntegrationFlowCommandInput, DeleteDataIntegrationFlowCommandOutput } from "./commands/DeleteDataIntegrationFlowCommand";
|
|
6
|
+
import { DeleteDataLakeDatasetCommandInput, DeleteDataLakeDatasetCommandOutput } from "./commands/DeleteDataLakeDatasetCommand";
|
|
3
7
|
import { GetBillOfMaterialsImportJobCommandInput, GetBillOfMaterialsImportJobCommandOutput } from "./commands/GetBillOfMaterialsImportJobCommand";
|
|
8
|
+
import { GetDataIntegrationFlowCommandInput, GetDataIntegrationFlowCommandOutput } from "./commands/GetDataIntegrationFlowCommand";
|
|
9
|
+
import { GetDataLakeDatasetCommandInput, GetDataLakeDatasetCommandOutput } from "./commands/GetDataLakeDatasetCommand";
|
|
10
|
+
import { ListDataIntegrationFlowsCommandInput, ListDataIntegrationFlowsCommandOutput } from "./commands/ListDataIntegrationFlowsCommand";
|
|
11
|
+
import { ListDataLakeDatasetsCommandInput, ListDataLakeDatasetsCommandOutput } from "./commands/ListDataLakeDatasetsCommand";
|
|
12
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
4
13
|
import { SendDataIntegrationEventCommandInput, SendDataIntegrationEventCommandOutput } from "./commands/SendDataIntegrationEventCommand";
|
|
14
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
15
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
16
|
+
import { UpdateDataIntegrationFlowCommandInput, UpdateDataIntegrationFlowCommandOutput } from "./commands/UpdateDataIntegrationFlowCommand";
|
|
17
|
+
import { UpdateDataLakeDatasetCommandInput, UpdateDataLakeDatasetCommandOutput } from "./commands/UpdateDataLakeDatasetCommand";
|
|
5
18
|
import { SupplyChainClient } from "./SupplyChainClient";
|
|
6
19
|
export interface SupplyChain {
|
|
7
20
|
/**
|
|
@@ -10,18 +23,96 @@ export interface SupplyChain {
|
|
|
10
23
|
createBillOfMaterialsImportJob(args: CreateBillOfMaterialsImportJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateBillOfMaterialsImportJobCommandOutput>;
|
|
11
24
|
createBillOfMaterialsImportJob(args: CreateBillOfMaterialsImportJobCommandInput, cb: (err: any, data?: CreateBillOfMaterialsImportJobCommandOutput) => void): void;
|
|
12
25
|
createBillOfMaterialsImportJob(args: CreateBillOfMaterialsImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBillOfMaterialsImportJobCommandOutput) => void): void;
|
|
26
|
+
/**
|
|
27
|
+
* @see {@link CreateDataIntegrationFlowCommand}
|
|
28
|
+
*/
|
|
29
|
+
createDataIntegrationFlow(args: CreateDataIntegrationFlowCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataIntegrationFlowCommandOutput>;
|
|
30
|
+
createDataIntegrationFlow(args: CreateDataIntegrationFlowCommandInput, cb: (err: any, data?: CreateDataIntegrationFlowCommandOutput) => void): void;
|
|
31
|
+
createDataIntegrationFlow(args: CreateDataIntegrationFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataIntegrationFlowCommandOutput) => void): void;
|
|
32
|
+
/**
|
|
33
|
+
* @see {@link CreateDataLakeDatasetCommand}
|
|
34
|
+
*/
|
|
35
|
+
createDataLakeDataset(args: CreateDataLakeDatasetCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataLakeDatasetCommandOutput>;
|
|
36
|
+
createDataLakeDataset(args: CreateDataLakeDatasetCommandInput, cb: (err: any, data?: CreateDataLakeDatasetCommandOutput) => void): void;
|
|
37
|
+
createDataLakeDataset(args: CreateDataLakeDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataLakeDatasetCommandOutput) => void): void;
|
|
38
|
+
/**
|
|
39
|
+
* @see {@link DeleteDataIntegrationFlowCommand}
|
|
40
|
+
*/
|
|
41
|
+
deleteDataIntegrationFlow(args: DeleteDataIntegrationFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataIntegrationFlowCommandOutput>;
|
|
42
|
+
deleteDataIntegrationFlow(args: DeleteDataIntegrationFlowCommandInput, cb: (err: any, data?: DeleteDataIntegrationFlowCommandOutput) => void): void;
|
|
43
|
+
deleteDataIntegrationFlow(args: DeleteDataIntegrationFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataIntegrationFlowCommandOutput) => void): void;
|
|
44
|
+
/**
|
|
45
|
+
* @see {@link DeleteDataLakeDatasetCommand}
|
|
46
|
+
*/
|
|
47
|
+
deleteDataLakeDataset(args: DeleteDataLakeDatasetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataLakeDatasetCommandOutput>;
|
|
48
|
+
deleteDataLakeDataset(args: DeleteDataLakeDatasetCommandInput, cb: (err: any, data?: DeleteDataLakeDatasetCommandOutput) => void): void;
|
|
49
|
+
deleteDataLakeDataset(args: DeleteDataLakeDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataLakeDatasetCommandOutput) => void): void;
|
|
13
50
|
/**
|
|
14
51
|
* @see {@link GetBillOfMaterialsImportJobCommand}
|
|
15
52
|
*/
|
|
16
53
|
getBillOfMaterialsImportJob(args: GetBillOfMaterialsImportJobCommandInput, options?: __HttpHandlerOptions): Promise<GetBillOfMaterialsImportJobCommandOutput>;
|
|
17
54
|
getBillOfMaterialsImportJob(args: GetBillOfMaterialsImportJobCommandInput, cb: (err: any, data?: GetBillOfMaterialsImportJobCommandOutput) => void): void;
|
|
18
55
|
getBillOfMaterialsImportJob(args: GetBillOfMaterialsImportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBillOfMaterialsImportJobCommandOutput) => void): void;
|
|
56
|
+
/**
|
|
57
|
+
* @see {@link GetDataIntegrationFlowCommand}
|
|
58
|
+
*/
|
|
59
|
+
getDataIntegrationFlow(args: GetDataIntegrationFlowCommandInput, options?: __HttpHandlerOptions): Promise<GetDataIntegrationFlowCommandOutput>;
|
|
60
|
+
getDataIntegrationFlow(args: GetDataIntegrationFlowCommandInput, cb: (err: any, data?: GetDataIntegrationFlowCommandOutput) => void): void;
|
|
61
|
+
getDataIntegrationFlow(args: GetDataIntegrationFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataIntegrationFlowCommandOutput) => void): void;
|
|
62
|
+
/**
|
|
63
|
+
* @see {@link GetDataLakeDatasetCommand}
|
|
64
|
+
*/
|
|
65
|
+
getDataLakeDataset(args: GetDataLakeDatasetCommandInput, options?: __HttpHandlerOptions): Promise<GetDataLakeDatasetCommandOutput>;
|
|
66
|
+
getDataLakeDataset(args: GetDataLakeDatasetCommandInput, cb: (err: any, data?: GetDataLakeDatasetCommandOutput) => void): void;
|
|
67
|
+
getDataLakeDataset(args: GetDataLakeDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDataLakeDatasetCommandOutput) => void): void;
|
|
68
|
+
/**
|
|
69
|
+
* @see {@link ListDataIntegrationFlowsCommand}
|
|
70
|
+
*/
|
|
71
|
+
listDataIntegrationFlows(args: ListDataIntegrationFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataIntegrationFlowsCommandOutput>;
|
|
72
|
+
listDataIntegrationFlows(args: ListDataIntegrationFlowsCommandInput, cb: (err: any, data?: ListDataIntegrationFlowsCommandOutput) => void): void;
|
|
73
|
+
listDataIntegrationFlows(args: ListDataIntegrationFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataIntegrationFlowsCommandOutput) => void): void;
|
|
74
|
+
/**
|
|
75
|
+
* @see {@link ListDataLakeDatasetsCommand}
|
|
76
|
+
*/
|
|
77
|
+
listDataLakeDatasets(args: ListDataLakeDatasetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataLakeDatasetsCommandOutput>;
|
|
78
|
+
listDataLakeDatasets(args: ListDataLakeDatasetsCommandInput, cb: (err: any, data?: ListDataLakeDatasetsCommandOutput) => void): void;
|
|
79
|
+
listDataLakeDatasets(args: ListDataLakeDatasetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataLakeDatasetsCommandOutput) => void): void;
|
|
80
|
+
/**
|
|
81
|
+
* @see {@link ListTagsForResourceCommand}
|
|
82
|
+
*/
|
|
83
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
84
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
85
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
19
86
|
/**
|
|
20
87
|
* @see {@link SendDataIntegrationEventCommand}
|
|
21
88
|
*/
|
|
22
89
|
sendDataIntegrationEvent(args: SendDataIntegrationEventCommandInput, options?: __HttpHandlerOptions): Promise<SendDataIntegrationEventCommandOutput>;
|
|
23
90
|
sendDataIntegrationEvent(args: SendDataIntegrationEventCommandInput, cb: (err: any, data?: SendDataIntegrationEventCommandOutput) => void): void;
|
|
24
91
|
sendDataIntegrationEvent(args: SendDataIntegrationEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SendDataIntegrationEventCommandOutput) => void): void;
|
|
92
|
+
/**
|
|
93
|
+
* @see {@link TagResourceCommand}
|
|
94
|
+
*/
|
|
95
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
96
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
97
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
98
|
+
/**
|
|
99
|
+
* @see {@link UntagResourceCommand}
|
|
100
|
+
*/
|
|
101
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
102
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
103
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
104
|
+
/**
|
|
105
|
+
* @see {@link UpdateDataIntegrationFlowCommand}
|
|
106
|
+
*/
|
|
107
|
+
updateDataIntegrationFlow(args: UpdateDataIntegrationFlowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataIntegrationFlowCommandOutput>;
|
|
108
|
+
updateDataIntegrationFlow(args: UpdateDataIntegrationFlowCommandInput, cb: (err: any, data?: UpdateDataIntegrationFlowCommandOutput) => void): void;
|
|
109
|
+
updateDataIntegrationFlow(args: UpdateDataIntegrationFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataIntegrationFlowCommandOutput) => void): void;
|
|
110
|
+
/**
|
|
111
|
+
* @see {@link UpdateDataLakeDatasetCommand}
|
|
112
|
+
*/
|
|
113
|
+
updateDataLakeDataset(args: UpdateDataLakeDatasetCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataLakeDatasetCommandOutput>;
|
|
114
|
+
updateDataLakeDataset(args: UpdateDataLakeDatasetCommandInput, cb: (err: any, data?: UpdateDataLakeDatasetCommandOutput) => void): void;
|
|
115
|
+
updateDataLakeDataset(args: UpdateDataLakeDatasetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataLakeDatasetCommandOutput) => void): void;
|
|
25
116
|
}
|
|
26
117
|
/**
|
|
27
118
|
* <p>
|
|
@@ -8,19 +8,32 @@ import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration
|
|
|
8
8
|
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateBillOfMaterialsImportJobCommandInput, CreateBillOfMaterialsImportJobCommandOutput } from "./commands/CreateBillOfMaterialsImportJobCommand";
|
|
11
|
+
import { CreateDataIntegrationFlowCommandInput, CreateDataIntegrationFlowCommandOutput } from "./commands/CreateDataIntegrationFlowCommand";
|
|
12
|
+
import { CreateDataLakeDatasetCommandInput, CreateDataLakeDatasetCommandOutput } from "./commands/CreateDataLakeDatasetCommand";
|
|
13
|
+
import { DeleteDataIntegrationFlowCommandInput, DeleteDataIntegrationFlowCommandOutput } from "./commands/DeleteDataIntegrationFlowCommand";
|
|
14
|
+
import { DeleteDataLakeDatasetCommandInput, DeleteDataLakeDatasetCommandOutput } from "./commands/DeleteDataLakeDatasetCommand";
|
|
11
15
|
import { GetBillOfMaterialsImportJobCommandInput, GetBillOfMaterialsImportJobCommandOutput } from "./commands/GetBillOfMaterialsImportJobCommand";
|
|
16
|
+
import { GetDataIntegrationFlowCommandInput, GetDataIntegrationFlowCommandOutput } from "./commands/GetDataIntegrationFlowCommand";
|
|
17
|
+
import { GetDataLakeDatasetCommandInput, GetDataLakeDatasetCommandOutput } from "./commands/GetDataLakeDatasetCommand";
|
|
18
|
+
import { ListDataIntegrationFlowsCommandInput, ListDataIntegrationFlowsCommandOutput } from "./commands/ListDataIntegrationFlowsCommand";
|
|
19
|
+
import { ListDataLakeDatasetsCommandInput, ListDataLakeDatasetsCommandOutput } from "./commands/ListDataLakeDatasetsCommand";
|
|
20
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
12
21
|
import { SendDataIntegrationEventCommandInput, SendDataIntegrationEventCommandOutput } from "./commands/SendDataIntegrationEventCommand";
|
|
22
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
23
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
24
|
+
import { UpdateDataIntegrationFlowCommandInput, UpdateDataIntegrationFlowCommandOutput } from "./commands/UpdateDataIntegrationFlowCommand";
|
|
25
|
+
import { UpdateDataLakeDatasetCommandInput, UpdateDataLakeDatasetCommandOutput } from "./commands/UpdateDataLakeDatasetCommand";
|
|
13
26
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
14
27
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
15
28
|
export { __Client };
|
|
16
29
|
/**
|
|
17
30
|
* @public
|
|
18
31
|
*/
|
|
19
|
-
export type ServiceInputTypes = CreateBillOfMaterialsImportJobCommandInput | GetBillOfMaterialsImportJobCommandInput | SendDataIntegrationEventCommandInput;
|
|
32
|
+
export type ServiceInputTypes = CreateBillOfMaterialsImportJobCommandInput | CreateDataIntegrationFlowCommandInput | CreateDataLakeDatasetCommandInput | DeleteDataIntegrationFlowCommandInput | DeleteDataLakeDatasetCommandInput | GetBillOfMaterialsImportJobCommandInput | GetDataIntegrationFlowCommandInput | GetDataLakeDatasetCommandInput | ListDataIntegrationFlowsCommandInput | ListDataLakeDatasetsCommandInput | ListTagsForResourceCommandInput | SendDataIntegrationEventCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDataIntegrationFlowCommandInput | UpdateDataLakeDatasetCommandInput;
|
|
20
33
|
/**
|
|
21
34
|
* @public
|
|
22
35
|
*/
|
|
23
|
-
export type ServiceOutputTypes = CreateBillOfMaterialsImportJobCommandOutput | GetBillOfMaterialsImportJobCommandOutput | SendDataIntegrationEventCommandOutput;
|
|
36
|
+
export type ServiceOutputTypes = CreateBillOfMaterialsImportJobCommandOutput | CreateDataIntegrationFlowCommandOutput | CreateDataLakeDatasetCommandOutput | DeleteDataIntegrationFlowCommandOutput | DeleteDataLakeDatasetCommandOutput | GetBillOfMaterialsImportJobCommandOutput | GetDataIntegrationFlowCommandOutput | GetDataLakeDatasetCommandOutput | ListDataIntegrationFlowsCommandOutput | ListDataLakeDatasetsCommandOutput | ListTagsForResourceCommandOutput | SendDataIntegrationEventCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDataIntegrationFlowCommandOutput | UpdateDataLakeDatasetCommandOutput;
|
|
24
37
|
/**
|
|
25
38
|
* @public
|
|
26
39
|
*/
|