@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.
- package/README.md +72 -0
- package/dist-cjs/index.js +585 -4
- package/dist-es/SupplyChain.js +18 -0
- package/dist-es/commands/CreateDataIntegrationFlowCommand.js +2 -1
- package/dist-es/commands/CreateDataLakeNamespaceCommand.js +22 -0
- package/dist-es/commands/DeleteDataLakeNamespaceCommand.js +22 -0
- package/dist-es/commands/GetDataIntegrationEventCommand.js +22 -0
- package/dist-es/commands/GetDataIntegrationFlowCommand.js +2 -1
- package/dist-es/commands/GetDataIntegrationFlowExecutionCommand.js +22 -0
- package/dist-es/commands/GetDataLakeNamespaceCommand.js +22 -0
- package/dist-es/commands/ListDataIntegrationEventsCommand.js +22 -0
- package/dist-es/commands/ListDataIntegrationFlowExecutionsCommand.js +22 -0
- package/dist-es/commands/ListDataIntegrationFlowsCommand.js +2 -1
- package/dist-es/commands/ListDataLakeNamespacesCommand.js +22 -0
- package/dist-es/commands/UpdateDataIntegrationFlowCommand.js +2 -1
- package/dist-es/commands/UpdateDataLakeNamespaceCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +71 -0
- package/dist-es/pagination/ListDataIntegrationEventsPaginator.js +4 -0
- package/dist-es/pagination/ListDataIntegrationFlowExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListDataLakeNamespacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +304 -0
- package/dist-types/SupplyChain.d.ts +63 -0
- package/dist-types/SupplyChainClient.d.ts +11 -2
- package/dist-types/commands/CreateDataIntegrationFlowCommand.d.ts +38 -1
- package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +89 -7
- package/dist-types/commands/CreateDataLakeNamespaceCommand.d.ts +133 -0
- package/dist-types/commands/DeleteDataLakeNamespaceCommand.d.ts +112 -0
- package/dist-types/commands/GetDataIntegrationEventCommand.d.ts +137 -0
- package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +22 -0
- package/dist-types/commands/GetDataIntegrationFlowExecutionCommand.d.ts +177 -0
- package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +43 -2
- package/dist-types/commands/GetDataLakeNamespaceCommand.d.ts +146 -0
- package/dist-types/commands/ListDataIntegrationEventsCommand.d.ts +143 -0
- package/dist-types/commands/ListDataIntegrationFlowExecutionsCommand.d.ts +152 -0
- package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +38 -1
- package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +43 -2
- package/dist-types/commands/ListDataLakeNamespacesCommand.d.ts +161 -0
- package/dist-types/commands/SendDataIntegrationEventCommand.d.ts +29 -2
- package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +76 -2
- package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +43 -2
- package/dist-types/commands/UpdateDataLakeNamespaceCommand.d.ts +126 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +938 -34
- package/dist-types/pagination/ListDataIntegrationEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDataIntegrationFlowExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDataLakeNamespacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
- package/dist-types/ts3.4/SupplyChain.d.ts +159 -0
- package/dist-types/ts3.4/SupplyChainClient.d.ts +54 -0
- package/dist-types/ts3.4/commands/CreateDataLakeNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDataLakeNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataIntegrationEventCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataIntegrationFlowExecutionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDataLakeNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationEventsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataIntegrationFlowExecutionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataLakeNamespacesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateDataLakeNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +237 -6
- package/dist-types/ts3.4/pagination/ListDataIntegrationEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDataIntegrationFlowExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDataLakeNamespacesPaginator.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 +108 -0
- package/package.json +15 -15
package/dist-es/SupplyChain.js
CHANGED
|
@@ -2,16 +2,24 @@ import { createAggregatedClient } from "@smithy/smithy-client";
|
|
|
2
2
|
import { CreateBillOfMaterialsImportJobCommand, } from "./commands/CreateBillOfMaterialsImportJobCommand";
|
|
3
3
|
import { CreateDataIntegrationFlowCommand, } from "./commands/CreateDataIntegrationFlowCommand";
|
|
4
4
|
import { CreateDataLakeDatasetCommand, } from "./commands/CreateDataLakeDatasetCommand";
|
|
5
|
+
import { CreateDataLakeNamespaceCommand, } from "./commands/CreateDataLakeNamespaceCommand";
|
|
5
6
|
import { CreateInstanceCommand, } from "./commands/CreateInstanceCommand";
|
|
6
7
|
import { DeleteDataIntegrationFlowCommand, } from "./commands/DeleteDataIntegrationFlowCommand";
|
|
7
8
|
import { DeleteDataLakeDatasetCommand, } from "./commands/DeleteDataLakeDatasetCommand";
|
|
9
|
+
import { DeleteDataLakeNamespaceCommand, } from "./commands/DeleteDataLakeNamespaceCommand";
|
|
8
10
|
import { DeleteInstanceCommand, } from "./commands/DeleteInstanceCommand";
|
|
9
11
|
import { GetBillOfMaterialsImportJobCommand, } from "./commands/GetBillOfMaterialsImportJobCommand";
|
|
12
|
+
import { GetDataIntegrationEventCommand, } from "./commands/GetDataIntegrationEventCommand";
|
|
10
13
|
import { GetDataIntegrationFlowCommand, } from "./commands/GetDataIntegrationFlowCommand";
|
|
14
|
+
import { GetDataIntegrationFlowExecutionCommand, } from "./commands/GetDataIntegrationFlowExecutionCommand";
|
|
11
15
|
import { GetDataLakeDatasetCommand, } from "./commands/GetDataLakeDatasetCommand";
|
|
16
|
+
import { GetDataLakeNamespaceCommand, } from "./commands/GetDataLakeNamespaceCommand";
|
|
12
17
|
import { GetInstanceCommand } from "./commands/GetInstanceCommand";
|
|
18
|
+
import { ListDataIntegrationEventsCommand, } from "./commands/ListDataIntegrationEventsCommand";
|
|
19
|
+
import { ListDataIntegrationFlowExecutionsCommand, } from "./commands/ListDataIntegrationFlowExecutionsCommand";
|
|
13
20
|
import { ListDataIntegrationFlowsCommand, } from "./commands/ListDataIntegrationFlowsCommand";
|
|
14
21
|
import { ListDataLakeDatasetsCommand, } from "./commands/ListDataLakeDatasetsCommand";
|
|
22
|
+
import { ListDataLakeNamespacesCommand, } from "./commands/ListDataLakeNamespacesCommand";
|
|
15
23
|
import { ListInstancesCommand, } from "./commands/ListInstancesCommand";
|
|
16
24
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
17
25
|
import { SendDataIntegrationEventCommand, } from "./commands/SendDataIntegrationEventCommand";
|
|
@@ -19,22 +27,31 @@ import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
|
19
27
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
20
28
|
import { UpdateDataIntegrationFlowCommand, } from "./commands/UpdateDataIntegrationFlowCommand";
|
|
21
29
|
import { UpdateDataLakeDatasetCommand, } from "./commands/UpdateDataLakeDatasetCommand";
|
|
30
|
+
import { UpdateDataLakeNamespaceCommand, } from "./commands/UpdateDataLakeNamespaceCommand";
|
|
22
31
|
import { UpdateInstanceCommand, } from "./commands/UpdateInstanceCommand";
|
|
23
32
|
import { SupplyChainClient } from "./SupplyChainClient";
|
|
24
33
|
const commands = {
|
|
25
34
|
CreateBillOfMaterialsImportJobCommand,
|
|
26
35
|
CreateDataIntegrationFlowCommand,
|
|
27
36
|
CreateDataLakeDatasetCommand,
|
|
37
|
+
CreateDataLakeNamespaceCommand,
|
|
28
38
|
CreateInstanceCommand,
|
|
29
39
|
DeleteDataIntegrationFlowCommand,
|
|
30
40
|
DeleteDataLakeDatasetCommand,
|
|
41
|
+
DeleteDataLakeNamespaceCommand,
|
|
31
42
|
DeleteInstanceCommand,
|
|
32
43
|
GetBillOfMaterialsImportJobCommand,
|
|
44
|
+
GetDataIntegrationEventCommand,
|
|
33
45
|
GetDataIntegrationFlowCommand,
|
|
46
|
+
GetDataIntegrationFlowExecutionCommand,
|
|
34
47
|
GetDataLakeDatasetCommand,
|
|
48
|
+
GetDataLakeNamespaceCommand,
|
|
35
49
|
GetInstanceCommand,
|
|
50
|
+
ListDataIntegrationEventsCommand,
|
|
51
|
+
ListDataIntegrationFlowExecutionsCommand,
|
|
36
52
|
ListDataIntegrationFlowsCommand,
|
|
37
53
|
ListDataLakeDatasetsCommand,
|
|
54
|
+
ListDataLakeNamespacesCommand,
|
|
38
55
|
ListInstancesCommand,
|
|
39
56
|
ListTagsForResourceCommand,
|
|
40
57
|
SendDataIntegrationEventCommand,
|
|
@@ -42,6 +59,7 @@ const commands = {
|
|
|
42
59
|
UntagResourceCommand,
|
|
43
60
|
UpdateDataIntegrationFlowCommand,
|
|
44
61
|
UpdateDataLakeDatasetCommand,
|
|
62
|
+
UpdateDataLakeNamespaceCommand,
|
|
45
63
|
UpdateInstanceCommand,
|
|
46
64
|
};
|
|
47
65
|
export class SupplyChain extends SupplyChainClient {
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateDataIntegrationFlowRequestFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_CreateDataIntegrationFlowCommand, se_CreateDataIntegrationFlowCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class CreateDataIntegrationFlowCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class CreateDataIntegrationFlowCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("GalaxyPublicAPIGateway", "CreateDataIntegrationFlow", {})
|
|
17
18
|
.n("SupplyChainClient", "CreateDataIntegrationFlowCommand")
|
|
18
|
-
.f(
|
|
19
|
+
.f(CreateDataIntegrationFlowRequestFilterSensitiveLog, void 0)
|
|
19
20
|
.ser(se_CreateDataIntegrationFlowCommand)
|
|
20
21
|
.de(de_CreateDataIntegrationFlowCommand)
|
|
21
22
|
.build() {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_CreateDataLakeNamespaceCommand, se_CreateDataLakeNamespaceCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class CreateDataLakeNamespaceCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("GalaxyPublicAPIGateway", "CreateDataLakeNamespace", {})
|
|
17
|
+
.n("SupplyChainClient", "CreateDataLakeNamespaceCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_CreateDataLakeNamespaceCommand)
|
|
20
|
+
.de(de_CreateDataLakeNamespaceCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteDataLakeNamespaceCommand, se_DeleteDataLakeNamespaceCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteDataLakeNamespaceCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("GalaxyPublicAPIGateway", "DeleteDataLakeNamespace", {})
|
|
17
|
+
.n("SupplyChainClient", "DeleteDataLakeNamespaceCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DeleteDataLakeNamespaceCommand)
|
|
20
|
+
.de(de_DeleteDataLakeNamespaceCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_GetDataIntegrationEventCommand, se_GetDataIntegrationEventCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetDataIntegrationEventCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("GalaxyPublicAPIGateway", "GetDataIntegrationEvent", {})
|
|
17
|
+
.n("SupplyChainClient", "GetDataIntegrationEventCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_GetDataIntegrationEventCommand)
|
|
20
|
+
.de(de_GetDataIntegrationEventCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { GetDataIntegrationFlowResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_GetDataIntegrationFlowCommand, se_GetDataIntegrationFlowCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class GetDataIntegrationFlowCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class GetDataIntegrationFlowCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("GalaxyPublicAPIGateway", "GetDataIntegrationFlow", {})
|
|
17
18
|
.n("SupplyChainClient", "GetDataIntegrationFlowCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, GetDataIntegrationFlowResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_GetDataIntegrationFlowCommand)
|
|
20
21
|
.de(de_GetDataIntegrationFlowCommand)
|
|
21
22
|
.build() {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_GetDataIntegrationFlowExecutionCommand, se_GetDataIntegrationFlowExecutionCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetDataIntegrationFlowExecutionCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("GalaxyPublicAPIGateway", "GetDataIntegrationFlowExecution", {})
|
|
17
|
+
.n("SupplyChainClient", "GetDataIntegrationFlowExecutionCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_GetDataIntegrationFlowExecutionCommand)
|
|
20
|
+
.de(de_GetDataIntegrationFlowExecutionCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_GetDataLakeNamespaceCommand, se_GetDataLakeNamespaceCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetDataLakeNamespaceCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("GalaxyPublicAPIGateway", "GetDataLakeNamespace", {})
|
|
17
|
+
.n("SupplyChainClient", "GetDataLakeNamespaceCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_GetDataLakeNamespaceCommand)
|
|
20
|
+
.de(de_GetDataLakeNamespaceCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListDataIntegrationEventsCommand, se_ListDataIntegrationEventsCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListDataIntegrationEventsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("GalaxyPublicAPIGateway", "ListDataIntegrationEvents", {})
|
|
17
|
+
.n("SupplyChainClient", "ListDataIntegrationEventsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListDataIntegrationEventsCommand)
|
|
20
|
+
.de(de_ListDataIntegrationEventsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListDataIntegrationFlowExecutionsCommand, se_ListDataIntegrationFlowExecutionsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListDataIntegrationFlowExecutionsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("GalaxyPublicAPIGateway", "ListDataIntegrationFlowExecutions", {})
|
|
17
|
+
.n("SupplyChainClient", "ListDataIntegrationFlowExecutionsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListDataIntegrationFlowExecutionsCommand)
|
|
20
|
+
.de(de_ListDataIntegrationFlowExecutionsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListDataIntegrationFlowsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_ListDataIntegrationFlowsCommand, se_ListDataIntegrationFlowsCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class ListDataIntegrationFlowsCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class ListDataIntegrationFlowsCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("GalaxyPublicAPIGateway", "ListDataIntegrationFlows", {})
|
|
17
18
|
.n("SupplyChainClient", "ListDataIntegrationFlowsCommand")
|
|
18
|
-
.f(void 0,
|
|
19
|
+
.f(void 0, ListDataIntegrationFlowsResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_ListDataIntegrationFlowsCommand)
|
|
20
21
|
.de(de_ListDataIntegrationFlowsCommand)
|
|
21
22
|
.build() {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListDataLakeNamespacesCommand, se_ListDataLakeNamespacesCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListDataLakeNamespacesCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("GalaxyPublicAPIGateway", "ListDataLakeNamespaces", {})
|
|
17
|
+
.n("SupplyChainClient", "ListDataLakeNamespacesCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListDataLakeNamespacesCommand)
|
|
20
|
+
.de(de_ListDataLakeNamespacesCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdateDataIntegrationFlowRequestFilterSensitiveLog, UpdateDataIntegrationFlowResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
6
|
import { de_UpdateDataIntegrationFlowCommand, se_UpdateDataIntegrationFlowCommand } from "../protocols/Aws_restJson1";
|
|
6
7
|
export { $Command };
|
|
7
8
|
export class UpdateDataIntegrationFlowCommand extends $Command
|
|
@@ -15,7 +16,7 @@ export class UpdateDataIntegrationFlowCommand extends $Command
|
|
|
15
16
|
})
|
|
16
17
|
.s("GalaxyPublicAPIGateway", "UpdateDataIntegrationFlow", {})
|
|
17
18
|
.n("SupplyChainClient", "UpdateDataIntegrationFlowCommand")
|
|
18
|
-
.f(
|
|
19
|
+
.f(UpdateDataIntegrationFlowRequestFilterSensitiveLog, UpdateDataIntegrationFlowResponseFilterSensitiveLog)
|
|
19
20
|
.ser(se_UpdateDataIntegrationFlowCommand)
|
|
20
21
|
.de(de_UpdateDataIntegrationFlowCommand)
|
|
21
22
|
.build() {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_UpdateDataLakeNamespaceCommand, se_UpdateDataLakeNamespaceCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class UpdateDataLakeNamespaceCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("GalaxyPublicAPIGateway", "UpdateDataLakeNamespace", {})
|
|
17
|
+
.n("SupplyChainClient", "UpdateDataLakeNamespaceCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_UpdateDataLakeNamespaceCommand)
|
|
20
|
+
.de(de_UpdateDataLakeNamespaceCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -1,16 +1,24 @@
|
|
|
1
1
|
export * from "./CreateBillOfMaterialsImportJobCommand";
|
|
2
2
|
export * from "./CreateDataIntegrationFlowCommand";
|
|
3
3
|
export * from "./CreateDataLakeDatasetCommand";
|
|
4
|
+
export * from "./CreateDataLakeNamespaceCommand";
|
|
4
5
|
export * from "./CreateInstanceCommand";
|
|
5
6
|
export * from "./DeleteDataIntegrationFlowCommand";
|
|
6
7
|
export * from "./DeleteDataLakeDatasetCommand";
|
|
8
|
+
export * from "./DeleteDataLakeNamespaceCommand";
|
|
7
9
|
export * from "./DeleteInstanceCommand";
|
|
8
10
|
export * from "./GetBillOfMaterialsImportJobCommand";
|
|
11
|
+
export * from "./GetDataIntegrationEventCommand";
|
|
9
12
|
export * from "./GetDataIntegrationFlowCommand";
|
|
13
|
+
export * from "./GetDataIntegrationFlowExecutionCommand";
|
|
10
14
|
export * from "./GetDataLakeDatasetCommand";
|
|
15
|
+
export * from "./GetDataLakeNamespaceCommand";
|
|
11
16
|
export * from "./GetInstanceCommand";
|
|
17
|
+
export * from "./ListDataIntegrationEventsCommand";
|
|
18
|
+
export * from "./ListDataIntegrationFlowExecutionsCommand";
|
|
12
19
|
export * from "./ListDataIntegrationFlowsCommand";
|
|
13
20
|
export * from "./ListDataLakeDatasetsCommand";
|
|
21
|
+
export * from "./ListDataLakeNamespacesCommand";
|
|
14
22
|
export * from "./ListInstancesCommand";
|
|
15
23
|
export * from "./ListTagsForResourceCommand";
|
|
16
24
|
export * from "./SendDataIntegrationEventCommand";
|
|
@@ -18,4 +26,5 @@ export * from "./TagResourceCommand";
|
|
|
18
26
|
export * from "./UntagResourceCommand";
|
|
19
27
|
export * from "./UpdateDataIntegrationFlowCommand";
|
|
20
28
|
export * from "./UpdateDataLakeDatasetCommand";
|
|
29
|
+
export * from "./UpdateDataLakeNamespaceCommand";
|
|
21
30
|
export * from "./UpdateInstanceCommand";
|
|
@@ -95,6 +95,13 @@ export class ValidationException extends __BaseException {
|
|
|
95
95
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
|
+
export const DataIntegrationFlowFieldPriorityDedupeSortOrder = {
|
|
99
|
+
ASC: "ASC",
|
|
100
|
+
DESC: "DESC",
|
|
101
|
+
};
|
|
102
|
+
export const DataIntegrationFlowDedupeStrategyType = {
|
|
103
|
+
FIELD_PRIORITY: "FIELD_PRIORITY",
|
|
104
|
+
};
|
|
98
105
|
export const DataIntegrationFlowLoadType = {
|
|
99
106
|
INCREMENTAL: "INCREMENTAL",
|
|
100
107
|
REPLACE: "REPLACE",
|
|
@@ -116,9 +123,17 @@ export const DataIntegrationFlowTransformationType = {
|
|
|
116
123
|
NONE: "NONE",
|
|
117
124
|
SQL: "SQL",
|
|
118
125
|
};
|
|
126
|
+
export const DataLakeDatasetPartitionTransformType = {
|
|
127
|
+
DAY: "DAY",
|
|
128
|
+
HOUR: "HOUR",
|
|
129
|
+
IDENTITY: "IDENTITY",
|
|
130
|
+
MONTH: "MONTH",
|
|
131
|
+
YEAR: "YEAR",
|
|
132
|
+
};
|
|
119
133
|
export const DataLakeDatasetSchemaFieldType = {
|
|
120
134
|
DOUBLE: "DOUBLE",
|
|
121
135
|
INT: "INT",
|
|
136
|
+
LONG: "LONG",
|
|
122
137
|
STRING: "STRING",
|
|
123
138
|
TIMESTAMP: "TIMESTAMP",
|
|
124
139
|
};
|
|
@@ -130,7 +145,18 @@ export const InstanceState = {
|
|
|
130
145
|
DELETING: "Deleting",
|
|
131
146
|
INITIALIZING: "Initializing",
|
|
132
147
|
};
|
|
148
|
+
export const DataIntegrationEventDatasetLoadStatus = {
|
|
149
|
+
FAILED: "FAILED",
|
|
150
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
151
|
+
SUCCEEDED: "SUCCEEDED",
|
|
152
|
+
};
|
|
153
|
+
export const DataIntegrationEventDatasetOperationType = {
|
|
154
|
+
APPEND: "APPEND",
|
|
155
|
+
DELETE: "DELETE",
|
|
156
|
+
UPSERT: "UPSERT",
|
|
157
|
+
};
|
|
133
158
|
export const DataIntegrationEventType = {
|
|
159
|
+
DATASET: "scn.data.dataset",
|
|
134
160
|
FORECAST: "scn.data.forecast",
|
|
135
161
|
INBOUND_ORDER: "scn.data.inboundorder",
|
|
136
162
|
INBOUND_ORDER_LINE: "scn.data.inboundorderline",
|
|
@@ -147,6 +173,51 @@ export const DataIntegrationEventType = {
|
|
|
147
173
|
SHIPMENT_STOP_ORDER: "scn.data.shipmentstoporder",
|
|
148
174
|
SUPPLY_PLAN: "scn.data.supplyplan",
|
|
149
175
|
};
|
|
176
|
+
export const DataIntegrationFlowExecutionStatus = {
|
|
177
|
+
FAILED: "FAILED",
|
|
178
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
179
|
+
SUCCEEDED: "SUCCEEDED",
|
|
180
|
+
};
|
|
181
|
+
export const DataIntegrationFlowSQLTransformationConfigurationFilterSensitiveLog = (obj) => ({
|
|
182
|
+
...obj,
|
|
183
|
+
...(obj.query && { query: SENSITIVE_STRING }),
|
|
184
|
+
});
|
|
185
|
+
export const DataIntegrationFlowTransformationFilterSensitiveLog = (obj) => ({
|
|
186
|
+
...obj,
|
|
187
|
+
...(obj.sqlTransformation && {
|
|
188
|
+
sqlTransformation: DataIntegrationFlowSQLTransformationConfigurationFilterSensitiveLog(obj.sqlTransformation),
|
|
189
|
+
}),
|
|
190
|
+
});
|
|
191
|
+
export const CreateDataIntegrationFlowRequestFilterSensitiveLog = (obj) => ({
|
|
192
|
+
...obj,
|
|
193
|
+
...(obj.transformation && {
|
|
194
|
+
transformation: DataIntegrationFlowTransformationFilterSensitiveLog(obj.transformation),
|
|
195
|
+
}),
|
|
196
|
+
});
|
|
197
|
+
export const DataIntegrationFlowFilterSensitiveLog = (obj) => ({
|
|
198
|
+
...obj,
|
|
199
|
+
...(obj.transformation && {
|
|
200
|
+
transformation: DataIntegrationFlowTransformationFilterSensitiveLog(obj.transformation),
|
|
201
|
+
}),
|
|
202
|
+
});
|
|
203
|
+
export const GetDataIntegrationFlowResponseFilterSensitiveLog = (obj) => ({
|
|
204
|
+
...obj,
|
|
205
|
+
...(obj.flow && { flow: DataIntegrationFlowFilterSensitiveLog(obj.flow) }),
|
|
206
|
+
});
|
|
207
|
+
export const ListDataIntegrationFlowsResponseFilterSensitiveLog = (obj) => ({
|
|
208
|
+
...obj,
|
|
209
|
+
...(obj.flows && { flows: obj.flows.map((item) => DataIntegrationFlowFilterSensitiveLog(item)) }),
|
|
210
|
+
});
|
|
211
|
+
export const UpdateDataIntegrationFlowRequestFilterSensitiveLog = (obj) => ({
|
|
212
|
+
...obj,
|
|
213
|
+
...(obj.transformation && {
|
|
214
|
+
transformation: DataIntegrationFlowTransformationFilterSensitiveLog(obj.transformation),
|
|
215
|
+
}),
|
|
216
|
+
});
|
|
217
|
+
export const UpdateDataIntegrationFlowResponseFilterSensitiveLog = (obj) => ({
|
|
218
|
+
...obj,
|
|
219
|
+
...(obj.flow && { flow: DataIntegrationFlowFilterSensitiveLog(obj.flow) }),
|
|
220
|
+
});
|
|
150
221
|
export const SendDataIntegrationEventRequestFilterSensitiveLog = (obj) => ({
|
|
151
222
|
...obj,
|
|
152
223
|
...(obj.data && { data: SENSITIVE_STRING }),
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListDataIntegrationEventsCommand, } from "../commands/ListDataIntegrationEventsCommand";
|
|
3
|
+
import { SupplyChainClient } from "../SupplyChainClient";
|
|
4
|
+
export const paginateListDataIntegrationEvents = createPaginator(SupplyChainClient, ListDataIntegrationEventsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListDataIntegrationFlowExecutionsCommand, } from "../commands/ListDataIntegrationFlowExecutionsCommand";
|
|
3
|
+
import { SupplyChainClient } from "../SupplyChainClient";
|
|
4
|
+
export const paginateListDataIntegrationFlowExecutions = createPaginator(SupplyChainClient, ListDataIntegrationFlowExecutionsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListDataLakeNamespacesCommand, } from "../commands/ListDataLakeNamespacesCommand";
|
|
3
|
+
import { SupplyChainClient } from "../SupplyChainClient";
|
|
4
|
+
export const paginateListDataLakeNamespaces = createPaginator(SupplyChainClient, ListDataLakeNamespacesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -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";
|