@aws-sdk/client-supplychain 3.669.0 → 3.671.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 +47 -7
- package/dist-cjs/index.js +264 -2
- package/dist-cjs/runtimeConfig.browser.js +1 -1
- package/dist-cjs/runtimeConfig.js +1 -1
- package/dist-es/SupplyChain.js +10 -0
- package/dist-es/commands/CreateInstanceCommand.js +22 -0
- package/dist-es/commands/DeleteInstanceCommand.js +22 -0
- package/dist-es/commands/GetInstanceCommand.js +22 -0
- package/dist-es/commands/ListInstancesCommand.js +22 -0
- package/dist-es/commands/UpdateInstanceCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/pagination/ListInstancesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +160 -1
- package/dist-es/runtimeConfig.browser.js +2 -2
- package/dist-es/runtimeConfig.js +2 -2
- package/dist-types/SupplyChain.d.ts +37 -0
- package/dist-types/SupplyChainClient.d.ts +7 -2
- package/dist-types/commands/CreateInstanceCommand.d.ts +109 -0
- package/dist-types/commands/DeleteInstanceCommand.d.ts +103 -0
- package/dist-types/commands/GetInstanceCommand.d.ts +103 -0
- package/dist-types/commands/ListInstancesCommand.d.ts +113 -0
- package/dist-types/commands/UpdateInstanceCommand.d.ts +105 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +232 -0
- package/dist-types/pagination/ListInstancesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
- package/dist-types/ts3.4/SupplyChain.d.ts +87 -0
- package/dist-types/ts3.4/SupplyChainClient.d.ts +32 -2
- package/dist-types/ts3.4/commands/CreateInstanceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteInstanceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetInstanceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateInstanceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +61 -0
- package/dist-types/ts3.4/pagination/ListInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +5 -5
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteInstanceRequest,
|
|
5
|
+
DeleteInstanceResponse,
|
|
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 DeleteInstanceCommandInput extends DeleteInstanceRequest {}
|
|
15
|
+
export interface DeleteInstanceCommandOutput
|
|
16
|
+
extends DeleteInstanceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteInstanceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteInstanceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteInstanceCommandInput,
|
|
23
|
+
DeleteInstanceCommandOutput,
|
|
24
|
+
SupplyChainClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteInstanceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteInstanceCommandInput,
|
|
32
|
+
DeleteInstanceCommandOutput,
|
|
33
|
+
SupplyChainClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteInstanceCommand extends DeleteInstanceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteInstanceRequest;
|
|
43
|
+
output: DeleteInstanceResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteInstanceCommandInput;
|
|
47
|
+
output: DeleteInstanceCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetInstanceRequest, GetInstanceResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SupplyChainClientResolvedConfig,
|
|
8
|
+
} from "../SupplyChainClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetInstanceCommandInput extends GetInstanceRequest {}
|
|
12
|
+
export interface GetInstanceCommandOutput
|
|
13
|
+
extends GetInstanceResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetInstanceCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetInstanceCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetInstanceCommandInput,
|
|
20
|
+
GetInstanceCommandOutput,
|
|
21
|
+
SupplyChainClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: GetInstanceCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetInstanceCommandInput,
|
|
29
|
+
GetInstanceCommandOutput,
|
|
30
|
+
SupplyChainClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetInstanceCommand extends GetInstanceCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetInstanceRequest;
|
|
40
|
+
output: GetInstanceResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetInstanceCommandInput;
|
|
44
|
+
output: GetInstanceCommandOutput;
|
|
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
|
+
ListInstancesRequest,
|
|
5
|
+
ListInstancesResponse,
|
|
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 ListInstancesCommandInput extends ListInstancesRequest {}
|
|
15
|
+
export interface ListInstancesCommandOutput
|
|
16
|
+
extends ListInstancesResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListInstancesCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListInstancesCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListInstancesCommandInput,
|
|
23
|
+
ListInstancesCommandOutput,
|
|
24
|
+
SupplyChainClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListInstancesCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListInstancesCommandInput,
|
|
32
|
+
ListInstancesCommandOutput,
|
|
33
|
+
SupplyChainClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListInstancesCommand extends ListInstancesCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListInstancesRequest;
|
|
43
|
+
output: ListInstancesResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListInstancesCommandInput;
|
|
47
|
+
output: ListInstancesCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateInstanceRequest,
|
|
5
|
+
UpdateInstanceResponse,
|
|
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 UpdateInstanceCommandInput extends UpdateInstanceRequest {}
|
|
15
|
+
export interface UpdateInstanceCommandOutput
|
|
16
|
+
extends UpdateInstanceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateInstanceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateInstanceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateInstanceCommandInput,
|
|
23
|
+
UpdateInstanceCommandOutput,
|
|
24
|
+
SupplyChainClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateInstanceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateInstanceCommandInput,
|
|
32
|
+
UpdateInstanceCommandOutput,
|
|
33
|
+
SupplyChainClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UpdateInstanceCommand extends UpdateInstanceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateInstanceRequest;
|
|
43
|
+
output: UpdateInstanceResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateInstanceCommandInput;
|
|
47
|
+
output: UpdateInstanceCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
export * from "./CreateBillOfMaterialsImportJobCommand";
|
|
2
2
|
export * from "./CreateDataIntegrationFlowCommand";
|
|
3
3
|
export * from "./CreateDataLakeDatasetCommand";
|
|
4
|
+
export * from "./CreateInstanceCommand";
|
|
4
5
|
export * from "./DeleteDataIntegrationFlowCommand";
|
|
5
6
|
export * from "./DeleteDataLakeDatasetCommand";
|
|
7
|
+
export * from "./DeleteInstanceCommand";
|
|
6
8
|
export * from "./GetBillOfMaterialsImportJobCommand";
|
|
7
9
|
export * from "./GetDataIntegrationFlowCommand";
|
|
8
10
|
export * from "./GetDataLakeDatasetCommand";
|
|
11
|
+
export * from "./GetInstanceCommand";
|
|
9
12
|
export * from "./ListDataIntegrationFlowsCommand";
|
|
10
13
|
export * from "./ListDataLakeDatasetsCommand";
|
|
14
|
+
export * from "./ListInstancesCommand";
|
|
11
15
|
export * from "./ListTagsForResourceCommand";
|
|
12
16
|
export * from "./SendDataIntegrationEventCommand";
|
|
13
17
|
export * from "./TagResourceCommand";
|
|
14
18
|
export * from "./UntagResourceCommand";
|
|
15
19
|
export * from "./UpdateDataIntegrationFlowCommand";
|
|
16
20
|
export * from "./UpdateDataLakeDatasetCommand";
|
|
21
|
+
export * from "./UpdateInstanceCommand";
|
|
@@ -206,6 +206,37 @@ export interface DataLakeDataset {
|
|
|
206
206
|
export interface CreateDataLakeDatasetResponse {
|
|
207
207
|
dataset: DataLakeDataset | undefined;
|
|
208
208
|
}
|
|
209
|
+
export interface CreateInstanceRequest {
|
|
210
|
+
instanceName?: string;
|
|
211
|
+
instanceDescription?: string;
|
|
212
|
+
kmsKeyArn?: string;
|
|
213
|
+
tags?: Record<string, string>;
|
|
214
|
+
clientToken?: string;
|
|
215
|
+
}
|
|
216
|
+
export declare const InstanceState: {
|
|
217
|
+
readonly ACTIVE: "Active";
|
|
218
|
+
readonly CREATE_FAILED: "CreateFailed";
|
|
219
|
+
readonly DELETED: "Deleted";
|
|
220
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
221
|
+
readonly DELETING: "Deleting";
|
|
222
|
+
readonly INITIALIZING: "Initializing";
|
|
223
|
+
};
|
|
224
|
+
export type InstanceState = (typeof InstanceState)[keyof typeof InstanceState];
|
|
225
|
+
export interface Instance {
|
|
226
|
+
instanceId: string | undefined;
|
|
227
|
+
awsAccountId: string | undefined;
|
|
228
|
+
state: InstanceState | undefined;
|
|
229
|
+
webAppDnsDomain?: string;
|
|
230
|
+
createdTime?: Date;
|
|
231
|
+
lastModifiedTime?: Date;
|
|
232
|
+
instanceName?: string;
|
|
233
|
+
instanceDescription?: string;
|
|
234
|
+
kmsKeyArn?: string;
|
|
235
|
+
versionNumber?: number;
|
|
236
|
+
}
|
|
237
|
+
export interface CreateInstanceResponse {
|
|
238
|
+
instance: Instance | undefined;
|
|
239
|
+
}
|
|
209
240
|
export declare const DataIntegrationEventType: {
|
|
210
241
|
readonly FORECAST: "scn.data.forecast";
|
|
211
242
|
readonly INBOUND_ORDER: "scn.data.inboundorder";
|
|
@@ -316,6 +347,36 @@ export interface UpdateDataLakeDatasetRequest {
|
|
|
316
347
|
export interface UpdateDataLakeDatasetResponse {
|
|
317
348
|
dataset: DataLakeDataset | undefined;
|
|
318
349
|
}
|
|
350
|
+
export interface DeleteInstanceRequest {
|
|
351
|
+
instanceId: string | undefined;
|
|
352
|
+
}
|
|
353
|
+
export interface DeleteInstanceResponse {
|
|
354
|
+
instance: Instance | undefined;
|
|
355
|
+
}
|
|
356
|
+
export interface GetInstanceRequest {
|
|
357
|
+
instanceId: string | undefined;
|
|
358
|
+
}
|
|
359
|
+
export interface GetInstanceResponse {
|
|
360
|
+
instance: Instance | undefined;
|
|
361
|
+
}
|
|
362
|
+
export interface ListInstancesRequest {
|
|
363
|
+
nextToken?: string;
|
|
364
|
+
maxResults?: number;
|
|
365
|
+
instanceNameFilter?: string[];
|
|
366
|
+
instanceStateFilter?: InstanceState[];
|
|
367
|
+
}
|
|
368
|
+
export interface ListInstancesResponse {
|
|
369
|
+
instances: Instance[] | undefined;
|
|
370
|
+
nextToken?: string;
|
|
371
|
+
}
|
|
372
|
+
export interface UpdateInstanceRequest {
|
|
373
|
+
instanceId: string | undefined;
|
|
374
|
+
instanceName?: string;
|
|
375
|
+
instanceDescription?: string;
|
|
376
|
+
}
|
|
377
|
+
export interface UpdateInstanceResponse {
|
|
378
|
+
instance: Instance | undefined;
|
|
379
|
+
}
|
|
319
380
|
export interface ListTagsForResourceRequest {
|
|
320
381
|
resourceArn: string | undefined;
|
|
321
382
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListInstancesCommandInput,
|
|
4
|
+
ListInstancesCommandOutput,
|
|
5
|
+
} from "../commands/ListInstancesCommand";
|
|
6
|
+
import { SupplyChainPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListInstances: (
|
|
8
|
+
config: SupplyChainPaginationConfiguration,
|
|
9
|
+
input: ListInstancesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListInstancesCommandOutput>;
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
CreateDataLakeDatasetCommandInput,
|
|
16
16
|
CreateDataLakeDatasetCommandOutput,
|
|
17
17
|
} from "../commands/CreateDataLakeDatasetCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateInstanceCommandInput,
|
|
20
|
+
CreateInstanceCommandOutput,
|
|
21
|
+
} from "../commands/CreateInstanceCommand";
|
|
18
22
|
import {
|
|
19
23
|
DeleteDataIntegrationFlowCommandInput,
|
|
20
24
|
DeleteDataIntegrationFlowCommandOutput,
|
|
@@ -23,6 +27,10 @@ import {
|
|
|
23
27
|
DeleteDataLakeDatasetCommandInput,
|
|
24
28
|
DeleteDataLakeDatasetCommandOutput,
|
|
25
29
|
} from "../commands/DeleteDataLakeDatasetCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteInstanceCommandInput,
|
|
32
|
+
DeleteInstanceCommandOutput,
|
|
33
|
+
} from "../commands/DeleteInstanceCommand";
|
|
26
34
|
import {
|
|
27
35
|
GetBillOfMaterialsImportJobCommandInput,
|
|
28
36
|
GetBillOfMaterialsImportJobCommandOutput,
|
|
@@ -35,6 +43,10 @@ import {
|
|
|
35
43
|
GetDataLakeDatasetCommandInput,
|
|
36
44
|
GetDataLakeDatasetCommandOutput,
|
|
37
45
|
} from "../commands/GetDataLakeDatasetCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetInstanceCommandInput,
|
|
48
|
+
GetInstanceCommandOutput,
|
|
49
|
+
} from "../commands/GetInstanceCommand";
|
|
38
50
|
import {
|
|
39
51
|
ListDataIntegrationFlowsCommandInput,
|
|
40
52
|
ListDataIntegrationFlowsCommandOutput,
|
|
@@ -43,6 +55,10 @@ import {
|
|
|
43
55
|
ListDataLakeDatasetsCommandInput,
|
|
44
56
|
ListDataLakeDatasetsCommandOutput,
|
|
45
57
|
} from "../commands/ListDataLakeDatasetsCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListInstancesCommandInput,
|
|
60
|
+
ListInstancesCommandOutput,
|
|
61
|
+
} from "../commands/ListInstancesCommand";
|
|
46
62
|
import {
|
|
47
63
|
ListTagsForResourceCommandInput,
|
|
48
64
|
ListTagsForResourceCommandOutput,
|
|
@@ -67,6 +83,10 @@ import {
|
|
|
67
83
|
UpdateDataLakeDatasetCommandInput,
|
|
68
84
|
UpdateDataLakeDatasetCommandOutput,
|
|
69
85
|
} from "../commands/UpdateDataLakeDatasetCommand";
|
|
86
|
+
import {
|
|
87
|
+
UpdateInstanceCommandInput,
|
|
88
|
+
UpdateInstanceCommandOutput,
|
|
89
|
+
} from "../commands/UpdateInstanceCommand";
|
|
70
90
|
export declare const se_CreateBillOfMaterialsImportJobCommand: (
|
|
71
91
|
input: CreateBillOfMaterialsImportJobCommandInput,
|
|
72
92
|
context: __SerdeContext
|
|
@@ -79,6 +99,10 @@ export declare const se_CreateDataLakeDatasetCommand: (
|
|
|
79
99
|
input: CreateDataLakeDatasetCommandInput,
|
|
80
100
|
context: __SerdeContext
|
|
81
101
|
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const se_CreateInstanceCommand: (
|
|
103
|
+
input: CreateInstanceCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
82
106
|
export declare const se_DeleteDataIntegrationFlowCommand: (
|
|
83
107
|
input: DeleteDataIntegrationFlowCommandInput,
|
|
84
108
|
context: __SerdeContext
|
|
@@ -87,6 +111,10 @@ export declare const se_DeleteDataLakeDatasetCommand: (
|
|
|
87
111
|
input: DeleteDataLakeDatasetCommandInput,
|
|
88
112
|
context: __SerdeContext
|
|
89
113
|
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_DeleteInstanceCommand: (
|
|
115
|
+
input: DeleteInstanceCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
90
118
|
export declare const se_GetBillOfMaterialsImportJobCommand: (
|
|
91
119
|
input: GetBillOfMaterialsImportJobCommandInput,
|
|
92
120
|
context: __SerdeContext
|
|
@@ -99,6 +127,10 @@ export declare const se_GetDataLakeDatasetCommand: (
|
|
|
99
127
|
input: GetDataLakeDatasetCommandInput,
|
|
100
128
|
context: __SerdeContext
|
|
101
129
|
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_GetInstanceCommand: (
|
|
131
|
+
input: GetInstanceCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
102
134
|
export declare const se_ListDataIntegrationFlowsCommand: (
|
|
103
135
|
input: ListDataIntegrationFlowsCommandInput,
|
|
104
136
|
context: __SerdeContext
|
|
@@ -107,6 +139,10 @@ export declare const se_ListDataLakeDatasetsCommand: (
|
|
|
107
139
|
input: ListDataLakeDatasetsCommandInput,
|
|
108
140
|
context: __SerdeContext
|
|
109
141
|
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const se_ListInstancesCommand: (
|
|
143
|
+
input: ListInstancesCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
110
146
|
export declare const se_ListTagsForResourceCommand: (
|
|
111
147
|
input: ListTagsForResourceCommandInput,
|
|
112
148
|
context: __SerdeContext
|
|
@@ -131,6 +167,10 @@ export declare const se_UpdateDataLakeDatasetCommand: (
|
|
|
131
167
|
input: UpdateDataLakeDatasetCommandInput,
|
|
132
168
|
context: __SerdeContext
|
|
133
169
|
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_UpdateInstanceCommand: (
|
|
171
|
+
input: UpdateInstanceCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
134
174
|
export declare const de_CreateBillOfMaterialsImportJobCommand: (
|
|
135
175
|
output: __HttpResponse,
|
|
136
176
|
context: __SerdeContext
|
|
@@ -143,6 +183,10 @@ export declare const de_CreateDataLakeDatasetCommand: (
|
|
|
143
183
|
output: __HttpResponse,
|
|
144
184
|
context: __SerdeContext
|
|
145
185
|
) => Promise<CreateDataLakeDatasetCommandOutput>;
|
|
186
|
+
export declare const de_CreateInstanceCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<CreateInstanceCommandOutput>;
|
|
146
190
|
export declare const de_DeleteDataIntegrationFlowCommand: (
|
|
147
191
|
output: __HttpResponse,
|
|
148
192
|
context: __SerdeContext
|
|
@@ -151,6 +195,10 @@ export declare const de_DeleteDataLakeDatasetCommand: (
|
|
|
151
195
|
output: __HttpResponse,
|
|
152
196
|
context: __SerdeContext
|
|
153
197
|
) => Promise<DeleteDataLakeDatasetCommandOutput>;
|
|
198
|
+
export declare const de_DeleteInstanceCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<DeleteInstanceCommandOutput>;
|
|
154
202
|
export declare const de_GetBillOfMaterialsImportJobCommand: (
|
|
155
203
|
output: __HttpResponse,
|
|
156
204
|
context: __SerdeContext
|
|
@@ -163,6 +211,10 @@ export declare const de_GetDataLakeDatasetCommand: (
|
|
|
163
211
|
output: __HttpResponse,
|
|
164
212
|
context: __SerdeContext
|
|
165
213
|
) => Promise<GetDataLakeDatasetCommandOutput>;
|
|
214
|
+
export declare const de_GetInstanceCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<GetInstanceCommandOutput>;
|
|
166
218
|
export declare const de_ListDataIntegrationFlowsCommand: (
|
|
167
219
|
output: __HttpResponse,
|
|
168
220
|
context: __SerdeContext
|
|
@@ -171,6 +223,10 @@ export declare const de_ListDataLakeDatasetsCommand: (
|
|
|
171
223
|
output: __HttpResponse,
|
|
172
224
|
context: __SerdeContext
|
|
173
225
|
) => Promise<ListDataLakeDatasetsCommandOutput>;
|
|
226
|
+
export declare const de_ListInstancesCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<ListInstancesCommandOutput>;
|
|
174
230
|
export declare const de_ListTagsForResourceCommand: (
|
|
175
231
|
output: __HttpResponse,
|
|
176
232
|
context: __SerdeContext
|
|
@@ -195,3 +251,7 @@ export declare const de_UpdateDataLakeDatasetCommand: (
|
|
|
195
251
|
output: __HttpResponse,
|
|
196
252
|
context: __SerdeContext
|
|
197
253
|
) => Promise<UpdateDataLakeDatasetCommandOutput>;
|
|
254
|
+
export declare const de_UpdateInstanceCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<UpdateInstanceCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-supplychain",
|
|
3
3
|
"description": "AWS SDK for JavaScript Supplychain Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.671.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-supplychain",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.670.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.670.0",
|
|
25
25
|
"@aws-sdk/core": "3.667.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.670.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.667.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.667.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.667.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.667.0",
|
|
32
32
|
"@aws-sdk/types": "3.667.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.667.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.670.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.669.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
37
|
"@smithy/core": "^2.4.8",
|