@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
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteDataIntegrationFlowRequest,
|
|
5
|
+
DeleteDataIntegrationFlowResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupplyChainClientResolvedConfig,
|
|
11
|
+
} from "../SupplyChainClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteDataIntegrationFlowCommandInput
|
|
15
|
+
extends DeleteDataIntegrationFlowRequest {}
|
|
16
|
+
export interface DeleteDataIntegrationFlowCommandOutput
|
|
17
|
+
extends DeleteDataIntegrationFlowResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteDataIntegrationFlowCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteDataIntegrationFlowCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteDataIntegrationFlowCommandInput,
|
|
24
|
+
DeleteDataIntegrationFlowCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteDataIntegrationFlowCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteDataIntegrationFlowCommandInput,
|
|
33
|
+
DeleteDataIntegrationFlowCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteDataIntegrationFlowCommand extends DeleteDataIntegrationFlowCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteDataIntegrationFlowRequest;
|
|
44
|
+
output: DeleteDataIntegrationFlowResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteDataIntegrationFlowCommandInput;
|
|
48
|
+
output: DeleteDataIntegrationFlowCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteDataLakeDatasetRequest,
|
|
5
|
+
DeleteDataLakeDatasetResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupplyChainClientResolvedConfig,
|
|
11
|
+
} from "../SupplyChainClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteDataLakeDatasetCommandInput
|
|
15
|
+
extends DeleteDataLakeDatasetRequest {}
|
|
16
|
+
export interface DeleteDataLakeDatasetCommandOutput
|
|
17
|
+
extends DeleteDataLakeDatasetResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteDataLakeDatasetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteDataLakeDatasetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteDataLakeDatasetCommandInput,
|
|
24
|
+
DeleteDataLakeDatasetCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteDataLakeDatasetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteDataLakeDatasetCommandInput,
|
|
33
|
+
DeleteDataLakeDatasetCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteDataLakeDatasetCommand extends DeleteDataLakeDatasetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteDataLakeDatasetRequest;
|
|
44
|
+
output: DeleteDataLakeDatasetResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteDataLakeDatasetCommandInput;
|
|
48
|
+
output: DeleteDataLakeDatasetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetDataIntegrationFlowRequest,
|
|
5
|
+
GetDataIntegrationFlowResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupplyChainClientResolvedConfig,
|
|
11
|
+
} from "../SupplyChainClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDataIntegrationFlowCommandInput
|
|
15
|
+
extends GetDataIntegrationFlowRequest {}
|
|
16
|
+
export interface GetDataIntegrationFlowCommandOutput
|
|
17
|
+
extends GetDataIntegrationFlowResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDataIntegrationFlowCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDataIntegrationFlowCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDataIntegrationFlowCommandInput,
|
|
24
|
+
GetDataIntegrationFlowCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetDataIntegrationFlowCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDataIntegrationFlowCommandInput,
|
|
33
|
+
GetDataIntegrationFlowCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDataIntegrationFlowCommand extends GetDataIntegrationFlowCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDataIntegrationFlowRequest;
|
|
44
|
+
output: GetDataIntegrationFlowResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDataIntegrationFlowCommandInput;
|
|
48
|
+
output: GetDataIntegrationFlowCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetDataLakeDatasetRequest,
|
|
5
|
+
GetDataLakeDatasetResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupplyChainClientResolvedConfig,
|
|
11
|
+
} from "../SupplyChainClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDataLakeDatasetCommandInput
|
|
15
|
+
extends GetDataLakeDatasetRequest {}
|
|
16
|
+
export interface GetDataLakeDatasetCommandOutput
|
|
17
|
+
extends GetDataLakeDatasetResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDataLakeDatasetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDataLakeDatasetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDataLakeDatasetCommandInput,
|
|
24
|
+
GetDataLakeDatasetCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetDataLakeDatasetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDataLakeDatasetCommandInput,
|
|
33
|
+
GetDataLakeDatasetCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDataLakeDatasetCommand extends GetDataLakeDatasetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetDataLakeDatasetRequest;
|
|
44
|
+
output: GetDataLakeDatasetResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDataLakeDatasetCommandInput;
|
|
48
|
+
output: GetDataLakeDatasetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListDataIntegrationFlowsRequest,
|
|
5
|
+
ListDataIntegrationFlowsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupplyChainClientResolvedConfig,
|
|
11
|
+
} from "../SupplyChainClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDataIntegrationFlowsCommandInput
|
|
15
|
+
extends ListDataIntegrationFlowsRequest {}
|
|
16
|
+
export interface ListDataIntegrationFlowsCommandOutput
|
|
17
|
+
extends ListDataIntegrationFlowsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDataIntegrationFlowsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDataIntegrationFlowsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDataIntegrationFlowsCommandInput,
|
|
24
|
+
ListDataIntegrationFlowsCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListDataIntegrationFlowsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDataIntegrationFlowsCommandInput,
|
|
33
|
+
ListDataIntegrationFlowsCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDataIntegrationFlowsCommand extends ListDataIntegrationFlowsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDataIntegrationFlowsRequest;
|
|
44
|
+
output: ListDataIntegrationFlowsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDataIntegrationFlowsCommandInput;
|
|
48
|
+
output: ListDataIntegrationFlowsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListDataLakeDatasetsRequest,
|
|
5
|
+
ListDataLakeDatasetsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupplyChainClientResolvedConfig,
|
|
11
|
+
} from "../SupplyChainClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDataLakeDatasetsCommandInput
|
|
15
|
+
extends ListDataLakeDatasetsRequest {}
|
|
16
|
+
export interface ListDataLakeDatasetsCommandOutput
|
|
17
|
+
extends ListDataLakeDatasetsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDataLakeDatasetsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDataLakeDatasetsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDataLakeDatasetsCommandInput,
|
|
24
|
+
ListDataLakeDatasetsCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListDataLakeDatasetsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDataLakeDatasetsCommandInput,
|
|
33
|
+
ListDataLakeDatasetsCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDataLakeDatasetsCommand extends ListDataLakeDatasetsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDataLakeDatasetsRequest;
|
|
44
|
+
output: ListDataLakeDatasetsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDataLakeDatasetsCommandInput;
|
|
48
|
+
output: ListDataLakeDatasetsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListTagsForResourceRequest,
|
|
5
|
+
ListTagsForResourceResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupplyChainClientResolvedConfig,
|
|
11
|
+
} from "../SupplyChainClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListTagsForResourceCommandInput
|
|
15
|
+
extends ListTagsForResourceRequest {}
|
|
16
|
+
export interface ListTagsForResourceCommandOutput
|
|
17
|
+
extends ListTagsForResourceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListTagsForResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListTagsForResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListTagsForResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListTagsForResourceCommandInput,
|
|
33
|
+
ListTagsForResourceCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListTagsForResourceRequest;
|
|
44
|
+
output: ListTagsForResourceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListTagsForResourceCommandInput;
|
|
48
|
+
output: ListTagsForResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SupplyChainClientResolvedConfig,
|
|
8
|
+
} from "../SupplyChainClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
12
|
+
export interface TagResourceCommandOutput
|
|
13
|
+
extends TagResourceResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const TagResourceCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: TagResourceCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
SupplyChainClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: TagResourceCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
TagResourceCommandInput,
|
|
29
|
+
TagResourceCommandOutput,
|
|
30
|
+
SupplyChainClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: TagResourceRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: TagResourceCommandInput;
|
|
44
|
+
output: TagResourceCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UntagResourceRequest,
|
|
5
|
+
UntagResourceResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupplyChainClientResolvedConfig,
|
|
11
|
+
} from "../SupplyChainClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
15
|
+
export interface UntagResourceCommandOutput
|
|
16
|
+
extends UntagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UntagResourceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UntagResourceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
SupplyChainClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UntagResourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UntagResourceCommandInput,
|
|
32
|
+
UntagResourceCommandOutput,
|
|
33
|
+
SupplyChainClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UntagResourceRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UntagResourceCommandInput;
|
|
47
|
+
output: UntagResourceCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateDataIntegrationFlowRequest,
|
|
5
|
+
UpdateDataIntegrationFlowResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupplyChainClientResolvedConfig,
|
|
11
|
+
} from "../SupplyChainClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateDataIntegrationFlowCommandInput
|
|
15
|
+
extends UpdateDataIntegrationFlowRequest {}
|
|
16
|
+
export interface UpdateDataIntegrationFlowCommandOutput
|
|
17
|
+
extends UpdateDataIntegrationFlowResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateDataIntegrationFlowCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateDataIntegrationFlowCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateDataIntegrationFlowCommandInput,
|
|
24
|
+
UpdateDataIntegrationFlowCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateDataIntegrationFlowCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateDataIntegrationFlowCommandInput,
|
|
33
|
+
UpdateDataIntegrationFlowCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateDataIntegrationFlowCommand extends UpdateDataIntegrationFlowCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateDataIntegrationFlowRequest;
|
|
44
|
+
output: UpdateDataIntegrationFlowResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateDataIntegrationFlowCommandInput;
|
|
48
|
+
output: UpdateDataIntegrationFlowCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateDataLakeDatasetRequest,
|
|
5
|
+
UpdateDataLakeDatasetResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SupplyChainClientResolvedConfig,
|
|
11
|
+
} from "../SupplyChainClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateDataLakeDatasetCommandInput
|
|
15
|
+
extends UpdateDataLakeDatasetRequest {}
|
|
16
|
+
export interface UpdateDataLakeDatasetCommandOutput
|
|
17
|
+
extends UpdateDataLakeDatasetResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateDataLakeDatasetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateDataLakeDatasetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateDataLakeDatasetCommandInput,
|
|
24
|
+
UpdateDataLakeDatasetCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateDataLakeDatasetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateDataLakeDatasetCommandInput,
|
|
33
|
+
UpdateDataLakeDatasetCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateDataLakeDatasetCommand extends UpdateDataLakeDatasetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateDataLakeDatasetRequest;
|
|
44
|
+
output: UpdateDataLakeDatasetResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateDataLakeDatasetCommandInput;
|
|
48
|
+
output: UpdateDataLakeDatasetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,3 +1,16 @@
|
|
|
1
1
|
export * from "./CreateBillOfMaterialsImportJobCommand";
|
|
2
|
+
export * from "./CreateDataIntegrationFlowCommand";
|
|
3
|
+
export * from "./CreateDataLakeDatasetCommand";
|
|
4
|
+
export * from "./DeleteDataIntegrationFlowCommand";
|
|
5
|
+
export * from "./DeleteDataLakeDatasetCommand";
|
|
2
6
|
export * from "./GetBillOfMaterialsImportJobCommand";
|
|
7
|
+
export * from "./GetDataIntegrationFlowCommand";
|
|
8
|
+
export * from "./GetDataLakeDatasetCommand";
|
|
9
|
+
export * from "./ListDataIntegrationFlowsCommand";
|
|
10
|
+
export * from "./ListDataLakeDatasetsCommand";
|
|
11
|
+
export * from "./ListTagsForResourceCommand";
|
|
3
12
|
export * from "./SendDataIntegrationEventCommand";
|
|
13
|
+
export * from "./TagResourceCommand";
|
|
14
|
+
export * from "./UntagResourceCommand";
|
|
15
|
+
export * from "./UpdateDataIntegrationFlowCommand";
|
|
16
|
+
export * from "./UpdateDataLakeDatasetCommand";
|
|
@@ -4,5 +4,6 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { SupplyChainExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
7
8
|
export * from "./models";
|
|
8
9
|
export { SupplyChainServiceException } from "./models/SupplyChainServiceException";
|