@aws-sdk/client-supplychain 3.658.0 → 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 -6
- 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 +12 -12
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDataIntegrationFlowsCommandInput, ListDataIntegrationFlowsCommandOutput } from "../commands/ListDataIntegrationFlowsCommand";
|
|
3
|
+
import { SupplyChainPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDataIntegrationFlows: (config: SupplyChainPaginationConfiguration, input: ListDataIntegrationFlowsCommandInput, ...rest: any[]) => Paginator<ListDataIntegrationFlowsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDataLakeDatasetsCommandInput, ListDataLakeDatasetsCommandOutput } from "../commands/ListDataLakeDatasetsCommand";
|
|
3
|
+
import { SupplyChainPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDataLakeDatasets: (config: SupplyChainPaginationConfiguration, input: ListDataLakeDatasetsCommandInput, ...rest: any[]) => Paginator<ListDataLakeDatasetsCommandOutput>;
|
|
@@ -1,29 +1,146 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
3
|
import { CreateBillOfMaterialsImportJobCommandInput, CreateBillOfMaterialsImportJobCommandOutput } from "../commands/CreateBillOfMaterialsImportJobCommand";
|
|
4
|
+
import { CreateDataIntegrationFlowCommandInput, CreateDataIntegrationFlowCommandOutput } from "../commands/CreateDataIntegrationFlowCommand";
|
|
5
|
+
import { CreateDataLakeDatasetCommandInput, CreateDataLakeDatasetCommandOutput } from "../commands/CreateDataLakeDatasetCommand";
|
|
6
|
+
import { DeleteDataIntegrationFlowCommandInput, DeleteDataIntegrationFlowCommandOutput } from "../commands/DeleteDataIntegrationFlowCommand";
|
|
7
|
+
import { DeleteDataLakeDatasetCommandInput, DeleteDataLakeDatasetCommandOutput } from "../commands/DeleteDataLakeDatasetCommand";
|
|
4
8
|
import { GetBillOfMaterialsImportJobCommandInput, GetBillOfMaterialsImportJobCommandOutput } from "../commands/GetBillOfMaterialsImportJobCommand";
|
|
9
|
+
import { GetDataIntegrationFlowCommandInput, GetDataIntegrationFlowCommandOutput } from "../commands/GetDataIntegrationFlowCommand";
|
|
10
|
+
import { GetDataLakeDatasetCommandInput, GetDataLakeDatasetCommandOutput } from "../commands/GetDataLakeDatasetCommand";
|
|
11
|
+
import { ListDataIntegrationFlowsCommandInput, ListDataIntegrationFlowsCommandOutput } from "../commands/ListDataIntegrationFlowsCommand";
|
|
12
|
+
import { ListDataLakeDatasetsCommandInput, ListDataLakeDatasetsCommandOutput } from "../commands/ListDataLakeDatasetsCommand";
|
|
13
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
5
14
|
import { SendDataIntegrationEventCommandInput, SendDataIntegrationEventCommandOutput } from "../commands/SendDataIntegrationEventCommand";
|
|
15
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
16
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
17
|
+
import { UpdateDataIntegrationFlowCommandInput, UpdateDataIntegrationFlowCommandOutput } from "../commands/UpdateDataIntegrationFlowCommand";
|
|
18
|
+
import { UpdateDataLakeDatasetCommandInput, UpdateDataLakeDatasetCommandOutput } from "../commands/UpdateDataLakeDatasetCommand";
|
|
6
19
|
/**
|
|
7
20
|
* serializeAws_restJson1CreateBillOfMaterialsImportJobCommand
|
|
8
21
|
*/
|
|
9
22
|
export declare const se_CreateBillOfMaterialsImportJobCommand: (input: CreateBillOfMaterialsImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
/**
|
|
24
|
+
* serializeAws_restJson1CreateDataIntegrationFlowCommand
|
|
25
|
+
*/
|
|
26
|
+
export declare const se_CreateDataIntegrationFlowCommand: (input: CreateDataIntegrationFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
/**
|
|
28
|
+
* serializeAws_restJson1CreateDataLakeDatasetCommand
|
|
29
|
+
*/
|
|
30
|
+
export declare const se_CreateDataLakeDatasetCommand: (input: CreateDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
/**
|
|
32
|
+
* serializeAws_restJson1DeleteDataIntegrationFlowCommand
|
|
33
|
+
*/
|
|
34
|
+
export declare const se_DeleteDataIntegrationFlowCommand: (input: DeleteDataIntegrationFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
/**
|
|
36
|
+
* serializeAws_restJson1DeleteDataLakeDatasetCommand
|
|
37
|
+
*/
|
|
38
|
+
export declare const se_DeleteDataLakeDatasetCommand: (input: DeleteDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
10
39
|
/**
|
|
11
40
|
* serializeAws_restJson1GetBillOfMaterialsImportJobCommand
|
|
12
41
|
*/
|
|
13
42
|
export declare const se_GetBillOfMaterialsImportJobCommand: (input: GetBillOfMaterialsImportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
/**
|
|
44
|
+
* serializeAws_restJson1GetDataIntegrationFlowCommand
|
|
45
|
+
*/
|
|
46
|
+
export declare const se_GetDataIntegrationFlowCommand: (input: GetDataIntegrationFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
/**
|
|
48
|
+
* serializeAws_restJson1GetDataLakeDatasetCommand
|
|
49
|
+
*/
|
|
50
|
+
export declare const se_GetDataLakeDatasetCommand: (input: GetDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
+
/**
|
|
52
|
+
* serializeAws_restJson1ListDataIntegrationFlowsCommand
|
|
53
|
+
*/
|
|
54
|
+
export declare const se_ListDataIntegrationFlowsCommand: (input: ListDataIntegrationFlowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
+
/**
|
|
56
|
+
* serializeAws_restJson1ListDataLakeDatasetsCommand
|
|
57
|
+
*/
|
|
58
|
+
export declare const se_ListDataLakeDatasetsCommand: (input: ListDataLakeDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
/**
|
|
60
|
+
* serializeAws_restJson1ListTagsForResourceCommand
|
|
61
|
+
*/
|
|
62
|
+
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
14
63
|
/**
|
|
15
64
|
* serializeAws_restJson1SendDataIntegrationEventCommand
|
|
16
65
|
*/
|
|
17
66
|
export declare const se_SendDataIntegrationEventCommand: (input: SendDataIntegrationEventCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
+
/**
|
|
68
|
+
* serializeAws_restJson1TagResourceCommand
|
|
69
|
+
*/
|
|
70
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
+
/**
|
|
72
|
+
* serializeAws_restJson1UntagResourceCommand
|
|
73
|
+
*/
|
|
74
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
+
/**
|
|
76
|
+
* serializeAws_restJson1UpdateDataIntegrationFlowCommand
|
|
77
|
+
*/
|
|
78
|
+
export declare const se_UpdateDataIntegrationFlowCommand: (input: UpdateDataIntegrationFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
+
/**
|
|
80
|
+
* serializeAws_restJson1UpdateDataLakeDatasetCommand
|
|
81
|
+
*/
|
|
82
|
+
export declare const se_UpdateDataLakeDatasetCommand: (input: UpdateDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
83
|
/**
|
|
19
84
|
* deserializeAws_restJson1CreateBillOfMaterialsImportJobCommand
|
|
20
85
|
*/
|
|
21
86
|
export declare const de_CreateBillOfMaterialsImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBillOfMaterialsImportJobCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* deserializeAws_restJson1CreateDataIntegrationFlowCommand
|
|
89
|
+
*/
|
|
90
|
+
export declare const de_CreateDataIntegrationFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataIntegrationFlowCommandOutput>;
|
|
91
|
+
/**
|
|
92
|
+
* deserializeAws_restJson1CreateDataLakeDatasetCommand
|
|
93
|
+
*/
|
|
94
|
+
export declare const de_CreateDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataLakeDatasetCommandOutput>;
|
|
95
|
+
/**
|
|
96
|
+
* deserializeAws_restJson1DeleteDataIntegrationFlowCommand
|
|
97
|
+
*/
|
|
98
|
+
export declare const de_DeleteDataIntegrationFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataIntegrationFlowCommandOutput>;
|
|
99
|
+
/**
|
|
100
|
+
* deserializeAws_restJson1DeleteDataLakeDatasetCommand
|
|
101
|
+
*/
|
|
102
|
+
export declare const de_DeleteDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataLakeDatasetCommandOutput>;
|
|
22
103
|
/**
|
|
23
104
|
* deserializeAws_restJson1GetBillOfMaterialsImportJobCommand
|
|
24
105
|
*/
|
|
25
106
|
export declare const de_GetBillOfMaterialsImportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetBillOfMaterialsImportJobCommandOutput>;
|
|
107
|
+
/**
|
|
108
|
+
* deserializeAws_restJson1GetDataIntegrationFlowCommand
|
|
109
|
+
*/
|
|
110
|
+
export declare const de_GetDataIntegrationFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataIntegrationFlowCommandOutput>;
|
|
111
|
+
/**
|
|
112
|
+
* deserializeAws_restJson1GetDataLakeDatasetCommand
|
|
113
|
+
*/
|
|
114
|
+
export declare const de_GetDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataLakeDatasetCommandOutput>;
|
|
115
|
+
/**
|
|
116
|
+
* deserializeAws_restJson1ListDataIntegrationFlowsCommand
|
|
117
|
+
*/
|
|
118
|
+
export declare const de_ListDataIntegrationFlowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataIntegrationFlowsCommandOutput>;
|
|
119
|
+
/**
|
|
120
|
+
* deserializeAws_restJson1ListDataLakeDatasetsCommand
|
|
121
|
+
*/
|
|
122
|
+
export declare const de_ListDataLakeDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataLakeDatasetsCommandOutput>;
|
|
123
|
+
/**
|
|
124
|
+
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
125
|
+
*/
|
|
126
|
+
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
26
127
|
/**
|
|
27
128
|
* deserializeAws_restJson1SendDataIntegrationEventCommand
|
|
28
129
|
*/
|
|
29
130
|
export declare const de_SendDataIntegrationEventCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendDataIntegrationEventCommandOutput>;
|
|
131
|
+
/**
|
|
132
|
+
* deserializeAws_restJson1TagResourceCommand
|
|
133
|
+
*/
|
|
134
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
135
|
+
/**
|
|
136
|
+
* deserializeAws_restJson1UntagResourceCommand
|
|
137
|
+
*/
|
|
138
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
139
|
+
/**
|
|
140
|
+
* deserializeAws_restJson1UpdateDataIntegrationFlowCommand
|
|
141
|
+
*/
|
|
142
|
+
export declare const de_UpdateDataIntegrationFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataIntegrationFlowCommandOutput>;
|
|
143
|
+
/**
|
|
144
|
+
* deserializeAws_restJson1UpdateDataLakeDatasetCommand
|
|
145
|
+
*/
|
|
146
|
+
export declare const de_UpdateDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataLakeDatasetCommandOutput>;
|
|
@@ -3,14 +3,66 @@ import {
|
|
|
3
3
|
CreateBillOfMaterialsImportJobCommandInput,
|
|
4
4
|
CreateBillOfMaterialsImportJobCommandOutput,
|
|
5
5
|
} from "./commands/CreateBillOfMaterialsImportJobCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateDataIntegrationFlowCommandInput,
|
|
8
|
+
CreateDataIntegrationFlowCommandOutput,
|
|
9
|
+
} from "./commands/CreateDataIntegrationFlowCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateDataLakeDatasetCommandInput,
|
|
12
|
+
CreateDataLakeDatasetCommandOutput,
|
|
13
|
+
} from "./commands/CreateDataLakeDatasetCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteDataIntegrationFlowCommandInput,
|
|
16
|
+
DeleteDataIntegrationFlowCommandOutput,
|
|
17
|
+
} from "./commands/DeleteDataIntegrationFlowCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteDataLakeDatasetCommandInput,
|
|
20
|
+
DeleteDataLakeDatasetCommandOutput,
|
|
21
|
+
} from "./commands/DeleteDataLakeDatasetCommand";
|
|
6
22
|
import {
|
|
7
23
|
GetBillOfMaterialsImportJobCommandInput,
|
|
8
24
|
GetBillOfMaterialsImportJobCommandOutput,
|
|
9
25
|
} from "./commands/GetBillOfMaterialsImportJobCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetDataIntegrationFlowCommandInput,
|
|
28
|
+
GetDataIntegrationFlowCommandOutput,
|
|
29
|
+
} from "./commands/GetDataIntegrationFlowCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetDataLakeDatasetCommandInput,
|
|
32
|
+
GetDataLakeDatasetCommandOutput,
|
|
33
|
+
} from "./commands/GetDataLakeDatasetCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListDataIntegrationFlowsCommandInput,
|
|
36
|
+
ListDataIntegrationFlowsCommandOutput,
|
|
37
|
+
} from "./commands/ListDataIntegrationFlowsCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListDataLakeDatasetsCommandInput,
|
|
40
|
+
ListDataLakeDatasetsCommandOutput,
|
|
41
|
+
} from "./commands/ListDataLakeDatasetsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListTagsForResourceCommandInput,
|
|
44
|
+
ListTagsForResourceCommandOutput,
|
|
45
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
10
46
|
import {
|
|
11
47
|
SendDataIntegrationEventCommandInput,
|
|
12
48
|
SendDataIntegrationEventCommandOutput,
|
|
13
49
|
} from "./commands/SendDataIntegrationEventCommand";
|
|
50
|
+
import {
|
|
51
|
+
TagResourceCommandInput,
|
|
52
|
+
TagResourceCommandOutput,
|
|
53
|
+
} from "./commands/TagResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
UntagResourceCommandInput,
|
|
56
|
+
UntagResourceCommandOutput,
|
|
57
|
+
} from "./commands/UntagResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
UpdateDataIntegrationFlowCommandInput,
|
|
60
|
+
UpdateDataIntegrationFlowCommandOutput,
|
|
61
|
+
} from "./commands/UpdateDataIntegrationFlowCommand";
|
|
62
|
+
import {
|
|
63
|
+
UpdateDataLakeDatasetCommandInput,
|
|
64
|
+
UpdateDataLakeDatasetCommandOutput,
|
|
65
|
+
} from "./commands/UpdateDataLakeDatasetCommand";
|
|
14
66
|
import { SupplyChainClient } from "./SupplyChainClient";
|
|
15
67
|
export interface SupplyChain {
|
|
16
68
|
createBillOfMaterialsImportJob(
|
|
@@ -26,6 +78,58 @@ export interface SupplyChain {
|
|
|
26
78
|
options: __HttpHandlerOptions,
|
|
27
79
|
cb: (err: any, data?: CreateBillOfMaterialsImportJobCommandOutput) => void
|
|
28
80
|
): void;
|
|
81
|
+
createDataIntegrationFlow(
|
|
82
|
+
args: CreateDataIntegrationFlowCommandInput,
|
|
83
|
+
options?: __HttpHandlerOptions
|
|
84
|
+
): Promise<CreateDataIntegrationFlowCommandOutput>;
|
|
85
|
+
createDataIntegrationFlow(
|
|
86
|
+
args: CreateDataIntegrationFlowCommandInput,
|
|
87
|
+
cb: (err: any, data?: CreateDataIntegrationFlowCommandOutput) => void
|
|
88
|
+
): void;
|
|
89
|
+
createDataIntegrationFlow(
|
|
90
|
+
args: CreateDataIntegrationFlowCommandInput,
|
|
91
|
+
options: __HttpHandlerOptions,
|
|
92
|
+
cb: (err: any, data?: CreateDataIntegrationFlowCommandOutput) => void
|
|
93
|
+
): void;
|
|
94
|
+
createDataLakeDataset(
|
|
95
|
+
args: CreateDataLakeDatasetCommandInput,
|
|
96
|
+
options?: __HttpHandlerOptions
|
|
97
|
+
): Promise<CreateDataLakeDatasetCommandOutput>;
|
|
98
|
+
createDataLakeDataset(
|
|
99
|
+
args: CreateDataLakeDatasetCommandInput,
|
|
100
|
+
cb: (err: any, data?: CreateDataLakeDatasetCommandOutput) => void
|
|
101
|
+
): void;
|
|
102
|
+
createDataLakeDataset(
|
|
103
|
+
args: CreateDataLakeDatasetCommandInput,
|
|
104
|
+
options: __HttpHandlerOptions,
|
|
105
|
+
cb: (err: any, data?: CreateDataLakeDatasetCommandOutput) => void
|
|
106
|
+
): void;
|
|
107
|
+
deleteDataIntegrationFlow(
|
|
108
|
+
args: DeleteDataIntegrationFlowCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<DeleteDataIntegrationFlowCommandOutput>;
|
|
111
|
+
deleteDataIntegrationFlow(
|
|
112
|
+
args: DeleteDataIntegrationFlowCommandInput,
|
|
113
|
+
cb: (err: any, data?: DeleteDataIntegrationFlowCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
deleteDataIntegrationFlow(
|
|
116
|
+
args: DeleteDataIntegrationFlowCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: DeleteDataIntegrationFlowCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
deleteDataLakeDataset(
|
|
121
|
+
args: DeleteDataLakeDatasetCommandInput,
|
|
122
|
+
options?: __HttpHandlerOptions
|
|
123
|
+
): Promise<DeleteDataLakeDatasetCommandOutput>;
|
|
124
|
+
deleteDataLakeDataset(
|
|
125
|
+
args: DeleteDataLakeDatasetCommandInput,
|
|
126
|
+
cb: (err: any, data?: DeleteDataLakeDatasetCommandOutput) => void
|
|
127
|
+
): void;
|
|
128
|
+
deleteDataLakeDataset(
|
|
129
|
+
args: DeleteDataLakeDatasetCommandInput,
|
|
130
|
+
options: __HttpHandlerOptions,
|
|
131
|
+
cb: (err: any, data?: DeleteDataLakeDatasetCommandOutput) => void
|
|
132
|
+
): void;
|
|
29
133
|
getBillOfMaterialsImportJob(
|
|
30
134
|
args: GetBillOfMaterialsImportJobCommandInput,
|
|
31
135
|
options?: __HttpHandlerOptions
|
|
@@ -39,6 +143,71 @@ export interface SupplyChain {
|
|
|
39
143
|
options: __HttpHandlerOptions,
|
|
40
144
|
cb: (err: any, data?: GetBillOfMaterialsImportJobCommandOutput) => void
|
|
41
145
|
): void;
|
|
146
|
+
getDataIntegrationFlow(
|
|
147
|
+
args: GetDataIntegrationFlowCommandInput,
|
|
148
|
+
options?: __HttpHandlerOptions
|
|
149
|
+
): Promise<GetDataIntegrationFlowCommandOutput>;
|
|
150
|
+
getDataIntegrationFlow(
|
|
151
|
+
args: GetDataIntegrationFlowCommandInput,
|
|
152
|
+
cb: (err: any, data?: GetDataIntegrationFlowCommandOutput) => void
|
|
153
|
+
): void;
|
|
154
|
+
getDataIntegrationFlow(
|
|
155
|
+
args: GetDataIntegrationFlowCommandInput,
|
|
156
|
+
options: __HttpHandlerOptions,
|
|
157
|
+
cb: (err: any, data?: GetDataIntegrationFlowCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
getDataLakeDataset(
|
|
160
|
+
args: GetDataLakeDatasetCommandInput,
|
|
161
|
+
options?: __HttpHandlerOptions
|
|
162
|
+
): Promise<GetDataLakeDatasetCommandOutput>;
|
|
163
|
+
getDataLakeDataset(
|
|
164
|
+
args: GetDataLakeDatasetCommandInput,
|
|
165
|
+
cb: (err: any, data?: GetDataLakeDatasetCommandOutput) => void
|
|
166
|
+
): void;
|
|
167
|
+
getDataLakeDataset(
|
|
168
|
+
args: GetDataLakeDatasetCommandInput,
|
|
169
|
+
options: __HttpHandlerOptions,
|
|
170
|
+
cb: (err: any, data?: GetDataLakeDatasetCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
listDataIntegrationFlows(
|
|
173
|
+
args: ListDataIntegrationFlowsCommandInput,
|
|
174
|
+
options?: __HttpHandlerOptions
|
|
175
|
+
): Promise<ListDataIntegrationFlowsCommandOutput>;
|
|
176
|
+
listDataIntegrationFlows(
|
|
177
|
+
args: ListDataIntegrationFlowsCommandInput,
|
|
178
|
+
cb: (err: any, data?: ListDataIntegrationFlowsCommandOutput) => void
|
|
179
|
+
): void;
|
|
180
|
+
listDataIntegrationFlows(
|
|
181
|
+
args: ListDataIntegrationFlowsCommandInput,
|
|
182
|
+
options: __HttpHandlerOptions,
|
|
183
|
+
cb: (err: any, data?: ListDataIntegrationFlowsCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
listDataLakeDatasets(
|
|
186
|
+
args: ListDataLakeDatasetsCommandInput,
|
|
187
|
+
options?: __HttpHandlerOptions
|
|
188
|
+
): Promise<ListDataLakeDatasetsCommandOutput>;
|
|
189
|
+
listDataLakeDatasets(
|
|
190
|
+
args: ListDataLakeDatasetsCommandInput,
|
|
191
|
+
cb: (err: any, data?: ListDataLakeDatasetsCommandOutput) => void
|
|
192
|
+
): void;
|
|
193
|
+
listDataLakeDatasets(
|
|
194
|
+
args: ListDataLakeDatasetsCommandInput,
|
|
195
|
+
options: __HttpHandlerOptions,
|
|
196
|
+
cb: (err: any, data?: ListDataLakeDatasetsCommandOutput) => void
|
|
197
|
+
): void;
|
|
198
|
+
listTagsForResource(
|
|
199
|
+
args: ListTagsForResourceCommandInput,
|
|
200
|
+
options?: __HttpHandlerOptions
|
|
201
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
202
|
+
listTagsForResource(
|
|
203
|
+
args: ListTagsForResourceCommandInput,
|
|
204
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
205
|
+
): void;
|
|
206
|
+
listTagsForResource(
|
|
207
|
+
args: ListTagsForResourceCommandInput,
|
|
208
|
+
options: __HttpHandlerOptions,
|
|
209
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
210
|
+
): void;
|
|
42
211
|
sendDataIntegrationEvent(
|
|
43
212
|
args: SendDataIntegrationEventCommandInput,
|
|
44
213
|
options?: __HttpHandlerOptions
|
|
@@ -52,6 +221,58 @@ export interface SupplyChain {
|
|
|
52
221
|
options: __HttpHandlerOptions,
|
|
53
222
|
cb: (err: any, data?: SendDataIntegrationEventCommandOutput) => void
|
|
54
223
|
): void;
|
|
224
|
+
tagResource(
|
|
225
|
+
args: TagResourceCommandInput,
|
|
226
|
+
options?: __HttpHandlerOptions
|
|
227
|
+
): Promise<TagResourceCommandOutput>;
|
|
228
|
+
tagResource(
|
|
229
|
+
args: TagResourceCommandInput,
|
|
230
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
tagResource(
|
|
233
|
+
args: TagResourceCommandInput,
|
|
234
|
+
options: __HttpHandlerOptions,
|
|
235
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
untagResource(
|
|
238
|
+
args: UntagResourceCommandInput,
|
|
239
|
+
options?: __HttpHandlerOptions
|
|
240
|
+
): Promise<UntagResourceCommandOutput>;
|
|
241
|
+
untagResource(
|
|
242
|
+
args: UntagResourceCommandInput,
|
|
243
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
244
|
+
): void;
|
|
245
|
+
untagResource(
|
|
246
|
+
args: UntagResourceCommandInput,
|
|
247
|
+
options: __HttpHandlerOptions,
|
|
248
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
249
|
+
): void;
|
|
250
|
+
updateDataIntegrationFlow(
|
|
251
|
+
args: UpdateDataIntegrationFlowCommandInput,
|
|
252
|
+
options?: __HttpHandlerOptions
|
|
253
|
+
): Promise<UpdateDataIntegrationFlowCommandOutput>;
|
|
254
|
+
updateDataIntegrationFlow(
|
|
255
|
+
args: UpdateDataIntegrationFlowCommandInput,
|
|
256
|
+
cb: (err: any, data?: UpdateDataIntegrationFlowCommandOutput) => void
|
|
257
|
+
): void;
|
|
258
|
+
updateDataIntegrationFlow(
|
|
259
|
+
args: UpdateDataIntegrationFlowCommandInput,
|
|
260
|
+
options: __HttpHandlerOptions,
|
|
261
|
+
cb: (err: any, data?: UpdateDataIntegrationFlowCommandOutput) => void
|
|
262
|
+
): void;
|
|
263
|
+
updateDataLakeDataset(
|
|
264
|
+
args: UpdateDataLakeDatasetCommandInput,
|
|
265
|
+
options?: __HttpHandlerOptions
|
|
266
|
+
): Promise<UpdateDataLakeDatasetCommandOutput>;
|
|
267
|
+
updateDataLakeDataset(
|
|
268
|
+
args: UpdateDataLakeDatasetCommandInput,
|
|
269
|
+
cb: (err: any, data?: UpdateDataLakeDatasetCommandOutput) => void
|
|
270
|
+
): void;
|
|
271
|
+
updateDataLakeDataset(
|
|
272
|
+
args: UpdateDataLakeDatasetCommandInput,
|
|
273
|
+
options: __HttpHandlerOptions,
|
|
274
|
+
cb: (err: any, data?: UpdateDataLakeDatasetCommandOutput) => void
|
|
275
|
+
): void;
|
|
55
276
|
}
|
|
56
277
|
export declare class SupplyChain
|
|
57
278
|
extends SupplyChainClient
|
|
@@ -49,14 +49,66 @@ import {
|
|
|
49
49
|
CreateBillOfMaterialsImportJobCommandInput,
|
|
50
50
|
CreateBillOfMaterialsImportJobCommandOutput,
|
|
51
51
|
} from "./commands/CreateBillOfMaterialsImportJobCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreateDataIntegrationFlowCommandInput,
|
|
54
|
+
CreateDataIntegrationFlowCommandOutput,
|
|
55
|
+
} from "./commands/CreateDataIntegrationFlowCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateDataLakeDatasetCommandInput,
|
|
58
|
+
CreateDataLakeDatasetCommandOutput,
|
|
59
|
+
} from "./commands/CreateDataLakeDatasetCommand";
|
|
60
|
+
import {
|
|
61
|
+
DeleteDataIntegrationFlowCommandInput,
|
|
62
|
+
DeleteDataIntegrationFlowCommandOutput,
|
|
63
|
+
} from "./commands/DeleteDataIntegrationFlowCommand";
|
|
64
|
+
import {
|
|
65
|
+
DeleteDataLakeDatasetCommandInput,
|
|
66
|
+
DeleteDataLakeDatasetCommandOutput,
|
|
67
|
+
} from "./commands/DeleteDataLakeDatasetCommand";
|
|
52
68
|
import {
|
|
53
69
|
GetBillOfMaterialsImportJobCommandInput,
|
|
54
70
|
GetBillOfMaterialsImportJobCommandOutput,
|
|
55
71
|
} from "./commands/GetBillOfMaterialsImportJobCommand";
|
|
72
|
+
import {
|
|
73
|
+
GetDataIntegrationFlowCommandInput,
|
|
74
|
+
GetDataIntegrationFlowCommandOutput,
|
|
75
|
+
} from "./commands/GetDataIntegrationFlowCommand";
|
|
76
|
+
import {
|
|
77
|
+
GetDataLakeDatasetCommandInput,
|
|
78
|
+
GetDataLakeDatasetCommandOutput,
|
|
79
|
+
} from "./commands/GetDataLakeDatasetCommand";
|
|
80
|
+
import {
|
|
81
|
+
ListDataIntegrationFlowsCommandInput,
|
|
82
|
+
ListDataIntegrationFlowsCommandOutput,
|
|
83
|
+
} from "./commands/ListDataIntegrationFlowsCommand";
|
|
84
|
+
import {
|
|
85
|
+
ListDataLakeDatasetsCommandInput,
|
|
86
|
+
ListDataLakeDatasetsCommandOutput,
|
|
87
|
+
} from "./commands/ListDataLakeDatasetsCommand";
|
|
88
|
+
import {
|
|
89
|
+
ListTagsForResourceCommandInput,
|
|
90
|
+
ListTagsForResourceCommandOutput,
|
|
91
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
56
92
|
import {
|
|
57
93
|
SendDataIntegrationEventCommandInput,
|
|
58
94
|
SendDataIntegrationEventCommandOutput,
|
|
59
95
|
} from "./commands/SendDataIntegrationEventCommand";
|
|
96
|
+
import {
|
|
97
|
+
TagResourceCommandInput,
|
|
98
|
+
TagResourceCommandOutput,
|
|
99
|
+
} from "./commands/TagResourceCommand";
|
|
100
|
+
import {
|
|
101
|
+
UntagResourceCommandInput,
|
|
102
|
+
UntagResourceCommandOutput,
|
|
103
|
+
} from "./commands/UntagResourceCommand";
|
|
104
|
+
import {
|
|
105
|
+
UpdateDataIntegrationFlowCommandInput,
|
|
106
|
+
UpdateDataIntegrationFlowCommandOutput,
|
|
107
|
+
} from "./commands/UpdateDataIntegrationFlowCommand";
|
|
108
|
+
import {
|
|
109
|
+
UpdateDataLakeDatasetCommandInput,
|
|
110
|
+
UpdateDataLakeDatasetCommandOutput,
|
|
111
|
+
} from "./commands/UpdateDataLakeDatasetCommand";
|
|
60
112
|
import {
|
|
61
113
|
ClientInputEndpointParameters,
|
|
62
114
|
ClientResolvedEndpointParameters,
|
|
@@ -66,12 +118,38 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
66
118
|
export { __Client };
|
|
67
119
|
export type ServiceInputTypes =
|
|
68
120
|
| CreateBillOfMaterialsImportJobCommandInput
|
|
121
|
+
| CreateDataIntegrationFlowCommandInput
|
|
122
|
+
| CreateDataLakeDatasetCommandInput
|
|
123
|
+
| DeleteDataIntegrationFlowCommandInput
|
|
124
|
+
| DeleteDataLakeDatasetCommandInput
|
|
69
125
|
| GetBillOfMaterialsImportJobCommandInput
|
|
70
|
-
|
|
|
126
|
+
| GetDataIntegrationFlowCommandInput
|
|
127
|
+
| GetDataLakeDatasetCommandInput
|
|
128
|
+
| ListDataIntegrationFlowsCommandInput
|
|
129
|
+
| ListDataLakeDatasetsCommandInput
|
|
130
|
+
| ListTagsForResourceCommandInput
|
|
131
|
+
| SendDataIntegrationEventCommandInput
|
|
132
|
+
| TagResourceCommandInput
|
|
133
|
+
| UntagResourceCommandInput
|
|
134
|
+
| UpdateDataIntegrationFlowCommandInput
|
|
135
|
+
| UpdateDataLakeDatasetCommandInput;
|
|
71
136
|
export type ServiceOutputTypes =
|
|
72
137
|
| CreateBillOfMaterialsImportJobCommandOutput
|
|
138
|
+
| CreateDataIntegrationFlowCommandOutput
|
|
139
|
+
| CreateDataLakeDatasetCommandOutput
|
|
140
|
+
| DeleteDataIntegrationFlowCommandOutput
|
|
141
|
+
| DeleteDataLakeDatasetCommandOutput
|
|
73
142
|
| GetBillOfMaterialsImportJobCommandOutput
|
|
74
|
-
|
|
|
143
|
+
| GetDataIntegrationFlowCommandOutput
|
|
144
|
+
| GetDataLakeDatasetCommandOutput
|
|
145
|
+
| ListDataIntegrationFlowsCommandOutput
|
|
146
|
+
| ListDataLakeDatasetsCommandOutput
|
|
147
|
+
| ListTagsForResourceCommandOutput
|
|
148
|
+
| SendDataIntegrationEventCommandOutput
|
|
149
|
+
| TagResourceCommandOutput
|
|
150
|
+
| UntagResourceCommandOutput
|
|
151
|
+
| UpdateDataIntegrationFlowCommandOutput
|
|
152
|
+
| UpdateDataLakeDatasetCommandOutput;
|
|
75
153
|
export interface ClientDefaults
|
|
76
154
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
77
155
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateDataIntegrationFlowRequest,
|
|
5
|
+
CreateDataIntegrationFlowResponse,
|
|
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 CreateDataIntegrationFlowCommandInput
|
|
15
|
+
extends CreateDataIntegrationFlowRequest {}
|
|
16
|
+
export interface CreateDataIntegrationFlowCommandOutput
|
|
17
|
+
extends CreateDataIntegrationFlowResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateDataIntegrationFlowCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateDataIntegrationFlowCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateDataIntegrationFlowCommandInput,
|
|
24
|
+
CreateDataIntegrationFlowCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateDataIntegrationFlowCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateDataIntegrationFlowCommandInput,
|
|
33
|
+
CreateDataIntegrationFlowCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateDataIntegrationFlowCommand extends CreateDataIntegrationFlowCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateDataIntegrationFlowRequest;
|
|
44
|
+
output: CreateDataIntegrationFlowResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateDataIntegrationFlowCommandInput;
|
|
48
|
+
output: CreateDataIntegrationFlowCommandOutput;
|
|
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
|
+
CreateDataLakeDatasetRequest,
|
|
5
|
+
CreateDataLakeDatasetResponse,
|
|
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 CreateDataLakeDatasetCommandInput
|
|
15
|
+
extends CreateDataLakeDatasetRequest {}
|
|
16
|
+
export interface CreateDataLakeDatasetCommandOutput
|
|
17
|
+
extends CreateDataLakeDatasetResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateDataLakeDatasetCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateDataLakeDatasetCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateDataLakeDatasetCommandInput,
|
|
24
|
+
CreateDataLakeDatasetCommandOutput,
|
|
25
|
+
SupplyChainClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateDataLakeDatasetCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateDataLakeDatasetCommandInput,
|
|
33
|
+
CreateDataLakeDatasetCommandOutput,
|
|
34
|
+
SupplyChainClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateDataLakeDatasetCommand extends CreateDataLakeDatasetCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateDataLakeDatasetRequest;
|
|
44
|
+
output: CreateDataLakeDatasetResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateDataLakeDatasetCommandInput;
|
|
48
|
+
output: CreateDataLakeDatasetCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|