@aws-sdk/client-supplychain 3.670.0 → 3.672.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.
Files changed (38) hide show
  1. package/README.md +47 -7
  2. package/dist-cjs/index.js +264 -2
  3. package/dist-es/SupplyChain.js +10 -0
  4. package/dist-es/commands/CreateInstanceCommand.js +22 -0
  5. package/dist-es/commands/DeleteInstanceCommand.js +22 -0
  6. package/dist-es/commands/GetInstanceCommand.js +22 -0
  7. package/dist-es/commands/ListInstancesCommand.js +22 -0
  8. package/dist-es/commands/UpdateInstanceCommand.js +22 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/models/models_0.js +8 -0
  11. package/dist-es/pagination/ListInstancesPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/protocols/Aws_restJson1.js +160 -1
  14. package/dist-types/SupplyChain.d.ts +37 -0
  15. package/dist-types/SupplyChainClient.d.ts +7 -2
  16. package/dist-types/commands/CreateInstanceCommand.d.ts +163 -0
  17. package/dist-types/commands/DeleteInstanceCommand.d.ts +129 -0
  18. package/dist-types/commands/GetInstanceCommand.d.ts +129 -0
  19. package/dist-types/commands/ListInstancesCommand.d.ts +239 -0
  20. package/dist-types/commands/UpdateInstanceCommand.d.ts +133 -0
  21. package/dist-types/commands/index.d.ts +5 -0
  22. package/dist-types/models/models_0.d.ts +232 -0
  23. package/dist-types/pagination/ListInstancesPaginator.d.ts +7 -0
  24. package/dist-types/pagination/index.d.ts +1 -0
  25. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  26. package/dist-types/ts3.4/SupplyChain.d.ts +87 -0
  27. package/dist-types/ts3.4/SupplyChainClient.d.ts +32 -2
  28. package/dist-types/ts3.4/commands/CreateInstanceCommand.d.ts +50 -0
  29. package/dist-types/ts3.4/commands/DeleteInstanceCommand.d.ts +50 -0
  30. package/dist-types/ts3.4/commands/GetInstanceCommand.d.ts +47 -0
  31. package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +50 -0
  32. package/dist-types/ts3.4/commands/UpdateInstanceCommand.d.ts +50 -0
  33. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +61 -0
  35. package/dist-types/ts3.4/pagination/ListInstancesPaginator.d.ts +11 -0
  36. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  37. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  38. package/package.json +1 -1
@@ -0,0 +1,133 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateInstanceRequest, UpdateInstanceResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SupplyChainClientResolvedConfig } from "../SupplyChainClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateInstanceCommand}.
14
+ */
15
+ export interface UpdateInstanceCommandInput extends UpdateInstanceRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateInstanceCommand}.
21
+ */
22
+ export interface UpdateInstanceCommandOutput extends UpdateInstanceResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateInstanceCommand_base: {
25
+ new (input: UpdateInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateInstanceCommandInput, UpdateInstanceCommandOutput, SupplyChainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateInstanceCommandInput, UpdateInstanceCommandOutput, SupplyChainClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Update the instance.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SupplyChainClient, UpdateInstanceCommand } from "@aws-sdk/client-supplychain"; // ES Modules import
35
+ * // const { SupplyChainClient, UpdateInstanceCommand } = require("@aws-sdk/client-supplychain"); // CommonJS import
36
+ * const client = new SupplyChainClient(config);
37
+ * const input = { // UpdateInstanceRequest
38
+ * instanceId: "STRING_VALUE", // required
39
+ * instanceName: "STRING_VALUE",
40
+ * instanceDescription: "STRING_VALUE",
41
+ * };
42
+ * const command = new UpdateInstanceCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // UpdateInstanceResponse
45
+ * // instance: { // Instance
46
+ * // instanceId: "STRING_VALUE", // required
47
+ * // awsAccountId: "STRING_VALUE", // required
48
+ * // state: "Initializing" || "Active" || "CreateFailed" || "DeleteFailed" || "Deleting" || "Deleted", // required
49
+ * // webAppDnsDomain: "STRING_VALUE",
50
+ * // createdTime: new Date("TIMESTAMP"),
51
+ * // lastModifiedTime: new Date("TIMESTAMP"),
52
+ * // instanceName: "STRING_VALUE",
53
+ * // instanceDescription: "STRING_VALUE",
54
+ * // kmsKeyArn: "STRING_VALUE",
55
+ * // versionNumber: Number("double"),
56
+ * // },
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param UpdateInstanceCommandInput - {@link UpdateInstanceCommandInput}
62
+ * @returns {@link UpdateInstanceCommandOutput}
63
+ * @see {@link UpdateInstanceCommandInput} for command's `input` shape.
64
+ * @see {@link UpdateInstanceCommandOutput} for command's `response` shape.
65
+ * @see {@link SupplyChainClientResolvedConfig | config} for SupplyChainClient's `config` shape.
66
+ *
67
+ * @throws {@link AccessDeniedException} (client fault)
68
+ * <p>You do not have the required privileges to perform this action.</p>
69
+ *
70
+ * @throws {@link InternalServerException} (server fault)
71
+ * <p>Unexpected error during processing of request.</p>
72
+ *
73
+ * @throws {@link ResourceNotFoundException} (client fault)
74
+ * <p>Request references a resource which does not exist.</p>
75
+ *
76
+ * @throws {@link ThrottlingException} (client fault)
77
+ * <p>Request was denied due to request throttling.</p>
78
+ *
79
+ * @throws {@link ValidationException} (client fault)
80
+ * <p>The input does not satisfy the constraints specified by an AWS service.</p>
81
+ *
82
+ * @throws {@link ConflictException} (client fault)
83
+ * <p>Updating or deleting a resource can cause an inconsistent state.</p>
84
+ *
85
+ * @throws {@link ServiceQuotaExceededException} (client fault)
86
+ * <p>Request would cause a service quota to be exceeded.</p>
87
+ *
88
+ * @throws {@link SupplyChainServiceException}
89
+ * <p>Base exception class for all service exceptions from SupplyChain service.</p>
90
+ *
91
+ * @public
92
+ * @example Successful UpdateInstance request
93
+ * ```javascript
94
+ * //
95
+ * const input = {
96
+ * "instanceDescription": "updated example instance description",
97
+ * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793",
98
+ * "instanceName": "updated example instance name"
99
+ * };
100
+ * const command = new UpdateInstanceCommand(input);
101
+ * const response = await client.send(command);
102
+ * /* response ==
103
+ * {
104
+ * "instance": {
105
+ * "awsAccountId": "123456789012",
106
+ * "createdTime": 172615383136,
107
+ * "instanceDescription": "updated example instance description",
108
+ * "instanceId": "9e193580-7cc5-45f7-9609-c43ba0ada793",
109
+ * "instanceName": "updated example instance name",
110
+ * "kmsKeyArn": "arn:aws:kms:us-west-2:123456789012:key/b14ffc39-b7d4-45ab-991a-6257a7f0d24d",
111
+ * "lastModifiedTime": 172615383136,
112
+ * "state": "Active",
113
+ * "versionNumber": 2
114
+ * }
115
+ * }
116
+ * *\/
117
+ * // example id: example-1
118
+ * ```
119
+ *
120
+ */
121
+ export declare class UpdateInstanceCommand extends UpdateInstanceCommand_base {
122
+ /** @internal type navigation helper, not in runtime. */
123
+ protected static __types: {
124
+ api: {
125
+ input: UpdateInstanceRequest;
126
+ output: UpdateInstanceResponse;
127
+ };
128
+ sdk: {
129
+ input: UpdateInstanceCommandInput;
130
+ output: UpdateInstanceCommandOutput;
131
+ };
132
+ };
133
+ }
@@ -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";
@@ -645,6 +645,120 @@ export interface CreateDataLakeDatasetResponse {
645
645
  */
646
646
  dataset: DataLakeDataset | undefined;
647
647
  }
648
+ /**
649
+ * <p>The request parameters for CreateInstance.</p>
650
+ * @public
651
+ */
652
+ export interface CreateInstanceRequest {
653
+ /**
654
+ * <p>The AWS Supply Chain instance name.</p>
655
+ * @public
656
+ */
657
+ instanceName?: string;
658
+ /**
659
+ * <p>The AWS Supply Chain instance description.</p>
660
+ * @public
661
+ */
662
+ instanceDescription?: string;
663
+ /**
664
+ * <p>The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon Web Services owned KMS key. If you don't provide anything here, AWS Supply Chain uses the Amazon Web Services owned KMS key.</p>
665
+ * @public
666
+ */
667
+ kmsKeyArn?: string;
668
+ /**
669
+ * <p>The Amazon Web Services tags of an instance to be created.</p>
670
+ * @public
671
+ */
672
+ tags?: Record<string, string>;
673
+ /**
674
+ * <p>The client token for idempotency.</p>
675
+ * @public
676
+ */
677
+ clientToken?: string;
678
+ }
679
+ /**
680
+ * @public
681
+ * @enum
682
+ */
683
+ export declare const InstanceState: {
684
+ readonly ACTIVE: "Active";
685
+ readonly CREATE_FAILED: "CreateFailed";
686
+ readonly DELETED: "Deleted";
687
+ readonly DELETE_FAILED: "DeleteFailed";
688
+ readonly DELETING: "Deleting";
689
+ readonly INITIALIZING: "Initializing";
690
+ };
691
+ /**
692
+ * @public
693
+ */
694
+ export type InstanceState = (typeof InstanceState)[keyof typeof InstanceState];
695
+ /**
696
+ * <p>The details of the instance.</p>
697
+ * @public
698
+ */
699
+ export interface Instance {
700
+ /**
701
+ * <p>The Amazon Web Services Supply Chain instance identifier.</p>
702
+ * @public
703
+ */
704
+ instanceId: string | undefined;
705
+ /**
706
+ * <p>The Amazon Web Services account ID that owns the instance.</p>
707
+ * @public
708
+ */
709
+ awsAccountId: string | undefined;
710
+ /**
711
+ * <p>The state of the instance.</p>
712
+ * @public
713
+ */
714
+ state: InstanceState | undefined;
715
+ /**
716
+ * <p>The WebApp DNS domain name of the instance.</p>
717
+ * @public
718
+ */
719
+ webAppDnsDomain?: string;
720
+ /**
721
+ * <p>The instance creation timestamp.</p>
722
+ * @public
723
+ */
724
+ createdTime?: Date;
725
+ /**
726
+ * <p>The instance last modified timestamp.</p>
727
+ * @public
728
+ */
729
+ lastModifiedTime?: Date;
730
+ /**
731
+ * <p>The Amazon Web Services Supply Chain instance name.</p>
732
+ * @public
733
+ */
734
+ instanceName?: string;
735
+ /**
736
+ * <p>The Amazon Web Services Supply Chain instance description.</p>
737
+ * @public
738
+ */
739
+ instanceDescription?: string;
740
+ /**
741
+ * <p>The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you optionally provided for encryption. If you did not provide anything here, AWS Supply Chain uses the Amazon Web Services owned KMS key and nothing is returned.</p>
742
+ * @public
743
+ */
744
+ kmsKeyArn?: string;
745
+ /**
746
+ * <p>The version number of the instance.</p>
747
+ * @public
748
+ */
749
+ versionNumber?: number;
750
+ }
751
+ /**
752
+ * <p>The response parameters for CreateInstance.</p>
753
+ * @public
754
+ */
755
+ export interface CreateInstanceResponse {
756
+ /**
757
+ * <p>The AWS Supply Chain instance resource data details.</p>
758
+ * @public
759
+ */
760
+ instance: Instance | undefined;
761
+ }
648
762
  /**
649
763
  * @public
650
764
  * @enum
@@ -1091,6 +1205,124 @@ export interface UpdateDataLakeDatasetResponse {
1091
1205
  */
1092
1206
  dataset: DataLakeDataset | undefined;
1093
1207
  }
1208
+ /**
1209
+ * <p>The request parameters for DeleteInstance.</p>
1210
+ * @public
1211
+ */
1212
+ export interface DeleteInstanceRequest {
1213
+ /**
1214
+ * <p>The AWS Supply Chain instance identifier.</p>
1215
+ * @public
1216
+ */
1217
+ instanceId: string | undefined;
1218
+ }
1219
+ /**
1220
+ * <p>The response parameters for DeleteInstance.</p>
1221
+ * @public
1222
+ */
1223
+ export interface DeleteInstanceResponse {
1224
+ /**
1225
+ * <p>The AWS Supply Chain instance resource data details.</p>
1226
+ * @public
1227
+ */
1228
+ instance: Instance | undefined;
1229
+ }
1230
+ /**
1231
+ * <p>The request parameters for GetInstance.</p>
1232
+ * @public
1233
+ */
1234
+ export interface GetInstanceRequest {
1235
+ /**
1236
+ * <p>The AWS Supply Chain instance identifier</p>
1237
+ * @public
1238
+ */
1239
+ instanceId: string | undefined;
1240
+ }
1241
+ /**
1242
+ * <p>The response parameters for GetInstance.</p>
1243
+ * @public
1244
+ */
1245
+ export interface GetInstanceResponse {
1246
+ /**
1247
+ * <p>The instance resource data details.</p>
1248
+ * @public
1249
+ */
1250
+ instance: Instance | undefined;
1251
+ }
1252
+ /**
1253
+ * <p>The request parameters for ListInstances.</p>
1254
+ * @public
1255
+ */
1256
+ export interface ListInstancesRequest {
1257
+ /**
1258
+ * <p>The pagination token to fetch the next page of instances.</p>
1259
+ * @public
1260
+ */
1261
+ nextToken?: string;
1262
+ /**
1263
+ * <p>Specify the maximum number of instances to fetch in this paginated request.</p>
1264
+ * @public
1265
+ */
1266
+ maxResults?: number;
1267
+ /**
1268
+ * <p>The filter to ListInstances based on their names.</p>
1269
+ * @public
1270
+ */
1271
+ instanceNameFilter?: string[];
1272
+ /**
1273
+ * <p>The filter to ListInstances based on their state.</p>
1274
+ * @public
1275
+ */
1276
+ instanceStateFilter?: InstanceState[];
1277
+ }
1278
+ /**
1279
+ * <p>The response parameters for ListInstances.</p>
1280
+ * @public
1281
+ */
1282
+ export interface ListInstancesResponse {
1283
+ /**
1284
+ * <p>The list of instances resource data details.</p>
1285
+ * @public
1286
+ */
1287
+ instances: Instance[] | undefined;
1288
+ /**
1289
+ * <p>The pagination token to fetch the next page of instances.</p>
1290
+ * @public
1291
+ */
1292
+ nextToken?: string;
1293
+ }
1294
+ /**
1295
+ * <p>The request parameters for UpdateInstance.</p>
1296
+ * @public
1297
+ */
1298
+ export interface UpdateInstanceRequest {
1299
+ /**
1300
+ * <p>The AWS Supply Chain instance identifier.</p>
1301
+ * @public
1302
+ */
1303
+ instanceId: string | undefined;
1304
+ /**
1305
+ * <p>The AWS Supply Chain instance name.</p>
1306
+ * @public
1307
+ */
1308
+ instanceName?: string;
1309
+ /**
1310
+ * <p>The AWS Supply Chain instance description.</p>
1311
+ * @public
1312
+ */
1313
+ instanceDescription?: string;
1314
+ }
1315
+ /**
1316
+ * <p>The response parameters for UpdateInstance.</p>
1317
+ * @public
1318
+ */
1319
+ export interface UpdateInstanceResponse {
1320
+ /**
1321
+ * <p>The instance resource data details.</p>
1322
+ * @public
1323
+ */
1324
+ instance: Instance | undefined;
1325
+ }
1094
1326
  /**
1095
1327
  * <p>The request parameters of ListTagsForResource.</p>
1096
1328
  * @public
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListInstancesCommandInput, ListInstancesCommandOutput } from "../commands/ListInstancesCommand";
3
+ import { SupplyChainPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListInstances: (config: SupplyChainPaginationConfiguration, input: ListInstancesCommandInput, ...rest: any[]) => Paginator<ListInstancesCommandOutput>;
@@ -1,3 +1,4 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListDataIntegrationFlowsPaginator";
3
3
  export * from "./ListDataLakeDatasetsPaginator";
4
+ export * from "./ListInstancesPaginator";
@@ -3,19 +3,24 @@ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { CreateBillOfMaterialsImportJobCommandInput, CreateBillOfMaterialsImportJobCommandOutput } from "../commands/CreateBillOfMaterialsImportJobCommand";
4
4
  import { CreateDataIntegrationFlowCommandInput, CreateDataIntegrationFlowCommandOutput } from "../commands/CreateDataIntegrationFlowCommand";
5
5
  import { CreateDataLakeDatasetCommandInput, CreateDataLakeDatasetCommandOutput } from "../commands/CreateDataLakeDatasetCommand";
6
+ import { CreateInstanceCommandInput, CreateInstanceCommandOutput } from "../commands/CreateInstanceCommand";
6
7
  import { DeleteDataIntegrationFlowCommandInput, DeleteDataIntegrationFlowCommandOutput } from "../commands/DeleteDataIntegrationFlowCommand";
7
8
  import { DeleteDataLakeDatasetCommandInput, DeleteDataLakeDatasetCommandOutput } from "../commands/DeleteDataLakeDatasetCommand";
9
+ import { DeleteInstanceCommandInput, DeleteInstanceCommandOutput } from "../commands/DeleteInstanceCommand";
8
10
  import { GetBillOfMaterialsImportJobCommandInput, GetBillOfMaterialsImportJobCommandOutput } from "../commands/GetBillOfMaterialsImportJobCommand";
9
11
  import { GetDataIntegrationFlowCommandInput, GetDataIntegrationFlowCommandOutput } from "../commands/GetDataIntegrationFlowCommand";
10
12
  import { GetDataLakeDatasetCommandInput, GetDataLakeDatasetCommandOutput } from "../commands/GetDataLakeDatasetCommand";
13
+ import { GetInstanceCommandInput, GetInstanceCommandOutput } from "../commands/GetInstanceCommand";
11
14
  import { ListDataIntegrationFlowsCommandInput, ListDataIntegrationFlowsCommandOutput } from "../commands/ListDataIntegrationFlowsCommand";
12
15
  import { ListDataLakeDatasetsCommandInput, ListDataLakeDatasetsCommandOutput } from "../commands/ListDataLakeDatasetsCommand";
16
+ import { ListInstancesCommandInput, ListInstancesCommandOutput } from "../commands/ListInstancesCommand";
13
17
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
14
18
  import { SendDataIntegrationEventCommandInput, SendDataIntegrationEventCommandOutput } from "../commands/SendDataIntegrationEventCommand";
15
19
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
16
20
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
17
21
  import { UpdateDataIntegrationFlowCommandInput, UpdateDataIntegrationFlowCommandOutput } from "../commands/UpdateDataIntegrationFlowCommand";
18
22
  import { UpdateDataLakeDatasetCommandInput, UpdateDataLakeDatasetCommandOutput } from "../commands/UpdateDataLakeDatasetCommand";
23
+ import { UpdateInstanceCommandInput, UpdateInstanceCommandOutput } from "../commands/UpdateInstanceCommand";
19
24
  /**
20
25
  * serializeAws_restJson1CreateBillOfMaterialsImportJobCommand
21
26
  */
@@ -28,6 +33,10 @@ export declare const se_CreateDataIntegrationFlowCommand: (input: CreateDataInte
28
33
  * serializeAws_restJson1CreateDataLakeDatasetCommand
29
34
  */
30
35
  export declare const se_CreateDataLakeDatasetCommand: (input: CreateDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ /**
37
+ * serializeAws_restJson1CreateInstanceCommand
38
+ */
39
+ export declare const se_CreateInstanceCommand: (input: CreateInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
40
  /**
32
41
  * serializeAws_restJson1DeleteDataIntegrationFlowCommand
33
42
  */
@@ -36,6 +45,10 @@ export declare const se_DeleteDataIntegrationFlowCommand: (input: DeleteDataInte
36
45
  * serializeAws_restJson1DeleteDataLakeDatasetCommand
37
46
  */
38
47
  export declare const se_DeleteDataLakeDatasetCommand: (input: DeleteDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ /**
49
+ * serializeAws_restJson1DeleteInstanceCommand
50
+ */
51
+ export declare const se_DeleteInstanceCommand: (input: DeleteInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
52
  /**
40
53
  * serializeAws_restJson1GetBillOfMaterialsImportJobCommand
41
54
  */
@@ -48,6 +61,10 @@ export declare const se_GetDataIntegrationFlowCommand: (input: GetDataIntegratio
48
61
  * serializeAws_restJson1GetDataLakeDatasetCommand
49
62
  */
50
63
  export declare const se_GetDataLakeDatasetCommand: (input: GetDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
+ /**
65
+ * serializeAws_restJson1GetInstanceCommand
66
+ */
67
+ export declare const se_GetInstanceCommand: (input: GetInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
68
  /**
52
69
  * serializeAws_restJson1ListDataIntegrationFlowsCommand
53
70
  */
@@ -56,6 +73,10 @@ export declare const se_ListDataIntegrationFlowsCommand: (input: ListDataIntegra
56
73
  * serializeAws_restJson1ListDataLakeDatasetsCommand
57
74
  */
58
75
  export declare const se_ListDataLakeDatasetsCommand: (input: ListDataLakeDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
+ /**
77
+ * serializeAws_restJson1ListInstancesCommand
78
+ */
79
+ export declare const se_ListInstancesCommand: (input: ListInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
80
  /**
60
81
  * serializeAws_restJson1ListTagsForResourceCommand
61
82
  */
@@ -80,6 +101,10 @@ export declare const se_UpdateDataIntegrationFlowCommand: (input: UpdateDataInte
80
101
  * serializeAws_restJson1UpdateDataLakeDatasetCommand
81
102
  */
82
103
  export declare const se_UpdateDataLakeDatasetCommand: (input: UpdateDataLakeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
+ /**
105
+ * serializeAws_restJson1UpdateInstanceCommand
106
+ */
107
+ export declare const se_UpdateInstanceCommand: (input: UpdateInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
108
  /**
84
109
  * deserializeAws_restJson1CreateBillOfMaterialsImportJobCommand
85
110
  */
@@ -92,6 +117,10 @@ export declare const de_CreateDataIntegrationFlowCommand: (output: __HttpRespons
92
117
  * deserializeAws_restJson1CreateDataLakeDatasetCommand
93
118
  */
94
119
  export declare const de_CreateDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataLakeDatasetCommandOutput>;
120
+ /**
121
+ * deserializeAws_restJson1CreateInstanceCommand
122
+ */
123
+ export declare const de_CreateInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInstanceCommandOutput>;
95
124
  /**
96
125
  * deserializeAws_restJson1DeleteDataIntegrationFlowCommand
97
126
  */
@@ -100,6 +129,10 @@ export declare const de_DeleteDataIntegrationFlowCommand: (output: __HttpRespons
100
129
  * deserializeAws_restJson1DeleteDataLakeDatasetCommand
101
130
  */
102
131
  export declare const de_DeleteDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataLakeDatasetCommandOutput>;
132
+ /**
133
+ * deserializeAws_restJson1DeleteInstanceCommand
134
+ */
135
+ export declare const de_DeleteInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteInstanceCommandOutput>;
103
136
  /**
104
137
  * deserializeAws_restJson1GetBillOfMaterialsImportJobCommand
105
138
  */
@@ -112,6 +145,10 @@ export declare const de_GetDataIntegrationFlowCommand: (output: __HttpResponse,
112
145
  * deserializeAws_restJson1GetDataLakeDatasetCommand
113
146
  */
114
147
  export declare const de_GetDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataLakeDatasetCommandOutput>;
148
+ /**
149
+ * deserializeAws_restJson1GetInstanceCommand
150
+ */
151
+ export declare const de_GetInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInstanceCommandOutput>;
115
152
  /**
116
153
  * deserializeAws_restJson1ListDataIntegrationFlowsCommand
117
154
  */
@@ -120,6 +157,10 @@ export declare const de_ListDataIntegrationFlowsCommand: (output: __HttpResponse
120
157
  * deserializeAws_restJson1ListDataLakeDatasetsCommand
121
158
  */
122
159
  export declare const de_ListDataLakeDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataLakeDatasetsCommandOutput>;
160
+ /**
161
+ * deserializeAws_restJson1ListInstancesCommand
162
+ */
163
+ export declare const de_ListInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInstancesCommandOutput>;
123
164
  /**
124
165
  * deserializeAws_restJson1ListTagsForResourceCommand
125
166
  */
@@ -144,3 +185,7 @@ export declare const de_UpdateDataIntegrationFlowCommand: (output: __HttpRespons
144
185
  * deserializeAws_restJson1UpdateDataLakeDatasetCommand
145
186
  */
146
187
  export declare const de_UpdateDataLakeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataLakeDatasetCommandOutput>;
188
+ /**
189
+ * deserializeAws_restJson1UpdateInstanceCommand
190
+ */
191
+ export declare const de_UpdateInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateInstanceCommandOutput>;