@aws-sdk/client-supplychain 3.658.1 → 3.661.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 +140 -0
- package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +126 -0
- package/dist-types/commands/DeleteDataIntegrationFlowCommand.d.ts +94 -0
- package/dist-types/commands/DeleteDataLakeDatasetCommand.d.ts +96 -0
- package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +141 -0
- package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +112 -0
- package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +145 -0
- package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +116 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +94 -0
- package/dist-types/commands/TagResourceCommand.d.ts +93 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
- package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +184 -0
- package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +113 -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 +1 -1
|
@@ -82,6 +82,130 @@ export interface GetBillOfMaterialsImportJobRequest {
|
|
|
82
82
|
export interface GetBillOfMaterialsImportJobResponse {
|
|
83
83
|
job: BillOfMaterialsImportJob | undefined;
|
|
84
84
|
}
|
|
85
|
+
export declare const DataIntegrationFlowLoadType: {
|
|
86
|
+
readonly INCREMENTAL: "INCREMENTAL";
|
|
87
|
+
readonly REPLACE: "REPLACE";
|
|
88
|
+
};
|
|
89
|
+
export type DataIntegrationFlowLoadType =
|
|
90
|
+
(typeof DataIntegrationFlowLoadType)[keyof typeof DataIntegrationFlowLoadType];
|
|
91
|
+
export interface DataIntegrationFlowDatasetOptions {
|
|
92
|
+
loadType?: DataIntegrationFlowLoadType;
|
|
93
|
+
dedupeRecords?: boolean;
|
|
94
|
+
}
|
|
95
|
+
export interface DataIntegrationFlowDatasetSourceConfiguration {
|
|
96
|
+
datasetIdentifier: string | undefined;
|
|
97
|
+
options?: DataIntegrationFlowDatasetOptions;
|
|
98
|
+
}
|
|
99
|
+
export declare const DataIntegrationFlowFileType: {
|
|
100
|
+
readonly CSV: "CSV";
|
|
101
|
+
readonly JSON: "JSON";
|
|
102
|
+
readonly PARQUET: "PARQUET";
|
|
103
|
+
};
|
|
104
|
+
export type DataIntegrationFlowFileType =
|
|
105
|
+
(typeof DataIntegrationFlowFileType)[keyof typeof DataIntegrationFlowFileType];
|
|
106
|
+
export interface DataIntegrationFlowS3Options {
|
|
107
|
+
fileType?: DataIntegrationFlowFileType;
|
|
108
|
+
}
|
|
109
|
+
export interface DataIntegrationFlowS3SourceConfiguration {
|
|
110
|
+
bucketName: string | undefined;
|
|
111
|
+
prefix: string | undefined;
|
|
112
|
+
options?: DataIntegrationFlowS3Options;
|
|
113
|
+
}
|
|
114
|
+
export declare const DataIntegrationFlowSourceType: {
|
|
115
|
+
readonly DATASET: "DATASET";
|
|
116
|
+
readonly S3: "S3";
|
|
117
|
+
};
|
|
118
|
+
export type DataIntegrationFlowSourceType =
|
|
119
|
+
(typeof DataIntegrationFlowSourceType)[keyof typeof DataIntegrationFlowSourceType];
|
|
120
|
+
export interface DataIntegrationFlowSource {
|
|
121
|
+
sourceType: DataIntegrationFlowSourceType | undefined;
|
|
122
|
+
sourceName: string | undefined;
|
|
123
|
+
s3Source?: DataIntegrationFlowS3SourceConfiguration;
|
|
124
|
+
datasetSource?: DataIntegrationFlowDatasetSourceConfiguration;
|
|
125
|
+
}
|
|
126
|
+
export interface DataIntegrationFlowDatasetTargetConfiguration {
|
|
127
|
+
datasetIdentifier: string | undefined;
|
|
128
|
+
options?: DataIntegrationFlowDatasetOptions;
|
|
129
|
+
}
|
|
130
|
+
export interface DataIntegrationFlowS3TargetConfiguration {
|
|
131
|
+
bucketName: string | undefined;
|
|
132
|
+
prefix: string | undefined;
|
|
133
|
+
options?: DataIntegrationFlowS3Options;
|
|
134
|
+
}
|
|
135
|
+
export declare const DataIntegrationFlowTargetType: {
|
|
136
|
+
readonly DATASET: "DATASET";
|
|
137
|
+
readonly S3: "S3";
|
|
138
|
+
};
|
|
139
|
+
export type DataIntegrationFlowTargetType =
|
|
140
|
+
(typeof DataIntegrationFlowTargetType)[keyof typeof DataIntegrationFlowTargetType];
|
|
141
|
+
export interface DataIntegrationFlowTarget {
|
|
142
|
+
targetType: DataIntegrationFlowTargetType | undefined;
|
|
143
|
+
s3Target?: DataIntegrationFlowS3TargetConfiguration;
|
|
144
|
+
datasetTarget?: DataIntegrationFlowDatasetTargetConfiguration;
|
|
145
|
+
}
|
|
146
|
+
export interface DataIntegrationFlowSQLTransformationConfiguration {
|
|
147
|
+
query: string | undefined;
|
|
148
|
+
}
|
|
149
|
+
export declare const DataIntegrationFlowTransformationType: {
|
|
150
|
+
readonly NONE: "NONE";
|
|
151
|
+
readonly SQL: "SQL";
|
|
152
|
+
};
|
|
153
|
+
export type DataIntegrationFlowTransformationType =
|
|
154
|
+
(typeof DataIntegrationFlowTransformationType)[keyof typeof DataIntegrationFlowTransformationType];
|
|
155
|
+
export interface DataIntegrationFlowTransformation {
|
|
156
|
+
transformationType: DataIntegrationFlowTransformationType | undefined;
|
|
157
|
+
sqlTransformation?: DataIntegrationFlowSQLTransformationConfiguration;
|
|
158
|
+
}
|
|
159
|
+
export interface CreateDataIntegrationFlowRequest {
|
|
160
|
+
instanceId: string | undefined;
|
|
161
|
+
name: string | undefined;
|
|
162
|
+
sources: DataIntegrationFlowSource[] | undefined;
|
|
163
|
+
transformation: DataIntegrationFlowTransformation | undefined;
|
|
164
|
+
target: DataIntegrationFlowTarget | undefined;
|
|
165
|
+
tags?: Record<string, string>;
|
|
166
|
+
}
|
|
167
|
+
export interface CreateDataIntegrationFlowResponse {
|
|
168
|
+
instanceId: string | undefined;
|
|
169
|
+
name: string | undefined;
|
|
170
|
+
}
|
|
171
|
+
export declare const DataLakeDatasetSchemaFieldType: {
|
|
172
|
+
readonly DOUBLE: "DOUBLE";
|
|
173
|
+
readonly INT: "INT";
|
|
174
|
+
readonly STRING: "STRING";
|
|
175
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
176
|
+
};
|
|
177
|
+
export type DataLakeDatasetSchemaFieldType =
|
|
178
|
+
(typeof DataLakeDatasetSchemaFieldType)[keyof typeof DataLakeDatasetSchemaFieldType];
|
|
179
|
+
export interface DataLakeDatasetSchemaField {
|
|
180
|
+
name: string | undefined;
|
|
181
|
+
type: DataLakeDatasetSchemaFieldType | undefined;
|
|
182
|
+
isRequired: boolean | undefined;
|
|
183
|
+
}
|
|
184
|
+
export interface DataLakeDatasetSchema {
|
|
185
|
+
name: string | undefined;
|
|
186
|
+
fields: DataLakeDatasetSchemaField[] | undefined;
|
|
187
|
+
}
|
|
188
|
+
export interface CreateDataLakeDatasetRequest {
|
|
189
|
+
instanceId: string | undefined;
|
|
190
|
+
namespace: string | undefined;
|
|
191
|
+
name: string | undefined;
|
|
192
|
+
schema?: DataLakeDatasetSchema;
|
|
193
|
+
description?: string;
|
|
194
|
+
tags?: Record<string, string>;
|
|
195
|
+
}
|
|
196
|
+
export interface DataLakeDataset {
|
|
197
|
+
instanceId: string | undefined;
|
|
198
|
+
namespace: string | undefined;
|
|
199
|
+
name: string | undefined;
|
|
200
|
+
arn: string | undefined;
|
|
201
|
+
schema: DataLakeDatasetSchema | undefined;
|
|
202
|
+
description?: string;
|
|
203
|
+
createdTime: Date | undefined;
|
|
204
|
+
lastModifiedTime: Date | undefined;
|
|
205
|
+
}
|
|
206
|
+
export interface CreateDataLakeDatasetResponse {
|
|
207
|
+
dataset: DataLakeDataset | undefined;
|
|
208
|
+
}
|
|
85
209
|
export declare const DataIntegrationEventType: {
|
|
86
210
|
readonly FORECAST: "scn.data.forecast";
|
|
87
211
|
readonly INBOUND_ORDER: "scn.data.inboundorder";
|
|
@@ -112,6 +236,102 @@ export interface SendDataIntegrationEventRequest {
|
|
|
112
236
|
export interface SendDataIntegrationEventResponse {
|
|
113
237
|
eventId: string | undefined;
|
|
114
238
|
}
|
|
239
|
+
export interface DataIntegrationFlow {
|
|
240
|
+
instanceId: string | undefined;
|
|
241
|
+
name: string | undefined;
|
|
242
|
+
sources: DataIntegrationFlowSource[] | undefined;
|
|
243
|
+
transformation: DataIntegrationFlowTransformation | undefined;
|
|
244
|
+
target: DataIntegrationFlowTarget | undefined;
|
|
245
|
+
createdTime: Date | undefined;
|
|
246
|
+
lastModifiedTime: Date | undefined;
|
|
247
|
+
}
|
|
248
|
+
export interface DeleteDataIntegrationFlowRequest {
|
|
249
|
+
instanceId: string | undefined;
|
|
250
|
+
name: string | undefined;
|
|
251
|
+
}
|
|
252
|
+
export interface DeleteDataIntegrationFlowResponse {
|
|
253
|
+
instanceId: string | undefined;
|
|
254
|
+
name: string | undefined;
|
|
255
|
+
}
|
|
256
|
+
export interface GetDataIntegrationFlowRequest {
|
|
257
|
+
instanceId: string | undefined;
|
|
258
|
+
name: string | undefined;
|
|
259
|
+
}
|
|
260
|
+
export interface GetDataIntegrationFlowResponse {
|
|
261
|
+
flow: DataIntegrationFlow | undefined;
|
|
262
|
+
}
|
|
263
|
+
export interface ListDataIntegrationFlowsRequest {
|
|
264
|
+
instanceId: string | undefined;
|
|
265
|
+
nextToken?: string;
|
|
266
|
+
maxResults?: number;
|
|
267
|
+
}
|
|
268
|
+
export interface ListDataIntegrationFlowsResponse {
|
|
269
|
+
flows: DataIntegrationFlow[] | undefined;
|
|
270
|
+
nextToken?: string;
|
|
271
|
+
}
|
|
272
|
+
export interface UpdateDataIntegrationFlowRequest {
|
|
273
|
+
instanceId: string | undefined;
|
|
274
|
+
name: string | undefined;
|
|
275
|
+
sources?: DataIntegrationFlowSource[];
|
|
276
|
+
transformation?: DataIntegrationFlowTransformation;
|
|
277
|
+
target?: DataIntegrationFlowTarget;
|
|
278
|
+
}
|
|
279
|
+
export interface UpdateDataIntegrationFlowResponse {
|
|
280
|
+
flow: DataIntegrationFlow | undefined;
|
|
281
|
+
}
|
|
282
|
+
export interface DeleteDataLakeDatasetRequest {
|
|
283
|
+
instanceId: string | undefined;
|
|
284
|
+
namespace: string | undefined;
|
|
285
|
+
name: string | undefined;
|
|
286
|
+
}
|
|
287
|
+
export interface DeleteDataLakeDatasetResponse {
|
|
288
|
+
instanceId: string | undefined;
|
|
289
|
+
namespace: string | undefined;
|
|
290
|
+
name: string | undefined;
|
|
291
|
+
}
|
|
292
|
+
export interface GetDataLakeDatasetRequest {
|
|
293
|
+
instanceId: string | undefined;
|
|
294
|
+
namespace: string | undefined;
|
|
295
|
+
name: string | undefined;
|
|
296
|
+
}
|
|
297
|
+
export interface GetDataLakeDatasetResponse {
|
|
298
|
+
dataset: DataLakeDataset | undefined;
|
|
299
|
+
}
|
|
300
|
+
export interface ListDataLakeDatasetsRequest {
|
|
301
|
+
instanceId: string | undefined;
|
|
302
|
+
namespace: string | undefined;
|
|
303
|
+
nextToken?: string;
|
|
304
|
+
maxResults?: number;
|
|
305
|
+
}
|
|
306
|
+
export interface ListDataLakeDatasetsResponse {
|
|
307
|
+
datasets: DataLakeDataset[] | undefined;
|
|
308
|
+
nextToken?: string;
|
|
309
|
+
}
|
|
310
|
+
export interface UpdateDataLakeDatasetRequest {
|
|
311
|
+
instanceId: string | undefined;
|
|
312
|
+
namespace: string | undefined;
|
|
313
|
+
name: string | undefined;
|
|
314
|
+
description?: string;
|
|
315
|
+
}
|
|
316
|
+
export interface UpdateDataLakeDatasetResponse {
|
|
317
|
+
dataset: DataLakeDataset | undefined;
|
|
318
|
+
}
|
|
319
|
+
export interface ListTagsForResourceRequest {
|
|
320
|
+
resourceArn: string | undefined;
|
|
321
|
+
}
|
|
322
|
+
export interface ListTagsForResourceResponse {
|
|
323
|
+
tags: Record<string, string> | undefined;
|
|
324
|
+
}
|
|
325
|
+
export interface TagResourceRequest {
|
|
326
|
+
resourceArn: string | undefined;
|
|
327
|
+
tags: Record<string, string> | undefined;
|
|
328
|
+
}
|
|
329
|
+
export interface TagResourceResponse {}
|
|
330
|
+
export interface UntagResourceRequest {
|
|
331
|
+
resourceArn: string | undefined;
|
|
332
|
+
tagKeys: string[] | undefined;
|
|
333
|
+
}
|
|
334
|
+
export interface UntagResourceResponse {}
|
|
115
335
|
export declare const SendDataIntegrationEventRequestFilterSensitiveLog: (
|
|
116
336
|
obj: SendDataIntegrationEventRequest
|
|
117
337
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDataIntegrationFlowsCommandInput,
|
|
4
|
+
ListDataIntegrationFlowsCommandOutput,
|
|
5
|
+
} from "../commands/ListDataIntegrationFlowsCommand";
|
|
6
|
+
import { SupplyChainPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDataIntegrationFlows: (
|
|
8
|
+
config: SupplyChainPaginationConfiguration,
|
|
9
|
+
input: ListDataIntegrationFlowsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDataIntegrationFlowsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDataLakeDatasetsCommandInput,
|
|
4
|
+
ListDataLakeDatasetsCommandOutput,
|
|
5
|
+
} from "../commands/ListDataLakeDatasetsCommand";
|
|
6
|
+
import { SupplyChainPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDataLakeDatasets: (
|
|
8
|
+
config: SupplyChainPaginationConfiguration,
|
|
9
|
+
input: ListDataLakeDatasetsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDataLakeDatasetsCommandOutput>;
|
|
@@ -7,35 +7,191 @@ import {
|
|
|
7
7
|
CreateBillOfMaterialsImportJobCommandInput,
|
|
8
8
|
CreateBillOfMaterialsImportJobCommandOutput,
|
|
9
9
|
} from "../commands/CreateBillOfMaterialsImportJobCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateDataIntegrationFlowCommandInput,
|
|
12
|
+
CreateDataIntegrationFlowCommandOutput,
|
|
13
|
+
} from "../commands/CreateDataIntegrationFlowCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateDataLakeDatasetCommandInput,
|
|
16
|
+
CreateDataLakeDatasetCommandOutput,
|
|
17
|
+
} from "../commands/CreateDataLakeDatasetCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteDataIntegrationFlowCommandInput,
|
|
20
|
+
DeleteDataIntegrationFlowCommandOutput,
|
|
21
|
+
} from "../commands/DeleteDataIntegrationFlowCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteDataLakeDatasetCommandInput,
|
|
24
|
+
DeleteDataLakeDatasetCommandOutput,
|
|
25
|
+
} from "../commands/DeleteDataLakeDatasetCommand";
|
|
10
26
|
import {
|
|
11
27
|
GetBillOfMaterialsImportJobCommandInput,
|
|
12
28
|
GetBillOfMaterialsImportJobCommandOutput,
|
|
13
29
|
} from "../commands/GetBillOfMaterialsImportJobCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetDataIntegrationFlowCommandInput,
|
|
32
|
+
GetDataIntegrationFlowCommandOutput,
|
|
33
|
+
} from "../commands/GetDataIntegrationFlowCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetDataLakeDatasetCommandInput,
|
|
36
|
+
GetDataLakeDatasetCommandOutput,
|
|
37
|
+
} from "../commands/GetDataLakeDatasetCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListDataIntegrationFlowsCommandInput,
|
|
40
|
+
ListDataIntegrationFlowsCommandOutput,
|
|
41
|
+
} from "../commands/ListDataIntegrationFlowsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListDataLakeDatasetsCommandInput,
|
|
44
|
+
ListDataLakeDatasetsCommandOutput,
|
|
45
|
+
} from "../commands/ListDataLakeDatasetsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListTagsForResourceCommandInput,
|
|
48
|
+
ListTagsForResourceCommandOutput,
|
|
49
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
14
50
|
import {
|
|
15
51
|
SendDataIntegrationEventCommandInput,
|
|
16
52
|
SendDataIntegrationEventCommandOutput,
|
|
17
53
|
} from "../commands/SendDataIntegrationEventCommand";
|
|
54
|
+
import {
|
|
55
|
+
TagResourceCommandInput,
|
|
56
|
+
TagResourceCommandOutput,
|
|
57
|
+
} from "../commands/TagResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
UntagResourceCommandInput,
|
|
60
|
+
UntagResourceCommandOutput,
|
|
61
|
+
} from "../commands/UntagResourceCommand";
|
|
62
|
+
import {
|
|
63
|
+
UpdateDataIntegrationFlowCommandInput,
|
|
64
|
+
UpdateDataIntegrationFlowCommandOutput,
|
|
65
|
+
} from "../commands/UpdateDataIntegrationFlowCommand";
|
|
66
|
+
import {
|
|
67
|
+
UpdateDataLakeDatasetCommandInput,
|
|
68
|
+
UpdateDataLakeDatasetCommandOutput,
|
|
69
|
+
} from "../commands/UpdateDataLakeDatasetCommand";
|
|
18
70
|
export declare const se_CreateBillOfMaterialsImportJobCommand: (
|
|
19
71
|
input: CreateBillOfMaterialsImportJobCommandInput,
|
|
20
72
|
context: __SerdeContext
|
|
21
73
|
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_CreateDataIntegrationFlowCommand: (
|
|
75
|
+
input: CreateDataIntegrationFlowCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const se_CreateDataLakeDatasetCommand: (
|
|
79
|
+
input: CreateDataLakeDatasetCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const se_DeleteDataIntegrationFlowCommand: (
|
|
83
|
+
input: DeleteDataIntegrationFlowCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_DeleteDataLakeDatasetCommand: (
|
|
87
|
+
input: DeleteDataLakeDatasetCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
22
90
|
export declare const se_GetBillOfMaterialsImportJobCommand: (
|
|
23
91
|
input: GetBillOfMaterialsImportJobCommandInput,
|
|
24
92
|
context: __SerdeContext
|
|
25
93
|
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_GetDataIntegrationFlowCommand: (
|
|
95
|
+
input: GetDataIntegrationFlowCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_GetDataLakeDatasetCommand: (
|
|
99
|
+
input: GetDataLakeDatasetCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const se_ListDataIntegrationFlowsCommand: (
|
|
103
|
+
input: ListDataIntegrationFlowsCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const se_ListDataLakeDatasetsCommand: (
|
|
107
|
+
input: ListDataLakeDatasetsCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
111
|
+
input: ListTagsForResourceCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
26
114
|
export declare const se_SendDataIntegrationEventCommand: (
|
|
27
115
|
input: SendDataIntegrationEventCommandInput,
|
|
28
116
|
context: __SerdeContext
|
|
29
117
|
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const se_TagResourceCommand: (
|
|
119
|
+
input: TagResourceCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_UntagResourceCommand: (
|
|
123
|
+
input: UntagResourceCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_UpdateDataIntegrationFlowCommand: (
|
|
127
|
+
input: UpdateDataIntegrationFlowCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_UpdateDataLakeDatasetCommand: (
|
|
131
|
+
input: UpdateDataLakeDatasetCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
30
134
|
export declare const de_CreateBillOfMaterialsImportJobCommand: (
|
|
31
135
|
output: __HttpResponse,
|
|
32
136
|
context: __SerdeContext
|
|
33
137
|
) => Promise<CreateBillOfMaterialsImportJobCommandOutput>;
|
|
138
|
+
export declare const de_CreateDataIntegrationFlowCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<CreateDataIntegrationFlowCommandOutput>;
|
|
142
|
+
export declare const de_CreateDataLakeDatasetCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<CreateDataLakeDatasetCommandOutput>;
|
|
146
|
+
export declare const de_DeleteDataIntegrationFlowCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<DeleteDataIntegrationFlowCommandOutput>;
|
|
150
|
+
export declare const de_DeleteDataLakeDatasetCommand: (
|
|
151
|
+
output: __HttpResponse,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<DeleteDataLakeDatasetCommandOutput>;
|
|
34
154
|
export declare const de_GetBillOfMaterialsImportJobCommand: (
|
|
35
155
|
output: __HttpResponse,
|
|
36
156
|
context: __SerdeContext
|
|
37
157
|
) => Promise<GetBillOfMaterialsImportJobCommandOutput>;
|
|
158
|
+
export declare const de_GetDataIntegrationFlowCommand: (
|
|
159
|
+
output: __HttpResponse,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<GetDataIntegrationFlowCommandOutput>;
|
|
162
|
+
export declare const de_GetDataLakeDatasetCommand: (
|
|
163
|
+
output: __HttpResponse,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<GetDataLakeDatasetCommandOutput>;
|
|
166
|
+
export declare const de_ListDataIntegrationFlowsCommand: (
|
|
167
|
+
output: __HttpResponse,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<ListDataIntegrationFlowsCommandOutput>;
|
|
170
|
+
export declare const de_ListDataLakeDatasetsCommand: (
|
|
171
|
+
output: __HttpResponse,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<ListDataLakeDatasetsCommandOutput>;
|
|
174
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
38
178
|
export declare const de_SendDataIntegrationEventCommand: (
|
|
39
179
|
output: __HttpResponse,
|
|
40
180
|
context: __SerdeContext
|
|
41
181
|
) => Promise<SendDataIntegrationEventCommandOutput>;
|
|
182
|
+
export declare const de_TagResourceCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<TagResourceCommandOutput>;
|
|
186
|
+
export declare const de_UntagResourceCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
190
|
+
export declare const de_UpdateDataIntegrationFlowCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<UpdateDataIntegrationFlowCommandOutput>;
|
|
194
|
+
export declare const de_UpdateDataLakeDatasetCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<UpdateDataLakeDatasetCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-supplychain",
|
|
3
3
|
"description": "AWS SDK for JavaScript Supplychain Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.661.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-supplychain",
|