@aws-sdk/client-iottwinmaker 3.454.0 → 3.458.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 +83 -36
- package/dist-cjs/IoTTwinMaker.js +12 -0
- package/dist-cjs/commands/CancelMetadataTransferJobCommand.js +51 -0
- package/dist-cjs/commands/CreateMetadataTransferJobCommand.js +51 -0
- package/dist-cjs/commands/GetMetadataTransferJobCommand.js +51 -0
- package/dist-cjs/commands/ListComponentsCommand.js +51 -0
- package/dist-cjs/commands/ListMetadataTransferJobsCommand.js +51 -0
- package/dist-cjs/commands/ListPropertiesCommand.js +51 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/models/models_0.js +60 -8
- package/dist-cjs/pagination/ListComponentsPaginator.js +29 -0
- package/dist-cjs/pagination/ListMetadataTransferJobsPaginator.js +29 -0
- package/dist-cjs/pagination/ListPropertiesPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +570 -3
- package/dist-es/IoTTwinMaker.js +12 -0
- package/dist-es/commands/CancelMetadataTransferJobCommand.js +47 -0
- package/dist-es/commands/CreateMetadataTransferJobCommand.js +47 -0
- package/dist-es/commands/GetMetadataTransferJobCommand.js +47 -0
- package/dist-es/commands/ListComponentsCommand.js +47 -0
- package/dist-es/commands/ListMetadataTransferJobsCommand.js +47 -0
- package/dist-es/commands/ListPropertiesCommand.js +47 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +59 -7
- package/dist-es/pagination/ListComponentsPaginator.js +25 -0
- package/dist-es/pagination/ListMetadataTransferJobsPaginator.js +25 -0
- package/dist-es/pagination/ListPropertiesPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +556 -1
- package/dist-types/IoTTwinMaker.d.ts +43 -2
- package/dist-types/IoTTwinMakerClient.d.ts +9 -4
- package/dist-types/commands/BatchPutPropertyValuesCommand.d.ts +2 -0
- package/dist-types/commands/CancelMetadataTransferJobCommand.d.ts +107 -0
- package/dist-types/commands/CreateComponentTypeCommand.d.ts +5 -0
- package/dist-types/commands/CreateEntityCommand.d.ts +32 -0
- package/dist-types/commands/CreateMetadataTransferJobCommand.d.ts +153 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +2 -2
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +3 -1
- package/dist-types/commands/ExecuteQueryCommand.d.ts +4 -0
- package/dist-types/commands/GetComponentTypeCommand.d.ts +6 -0
- package/dist-types/commands/GetEntityCommand.d.ts +24 -0
- package/dist-types/commands/GetMetadataTransferJobCommand.d.ts +156 -0
- package/dist-types/commands/GetPropertyValueCommand.d.ts +2 -0
- package/dist-types/commands/GetPropertyValueHistoryCommand.d.ts +2 -0
- package/dist-types/commands/GetWorkspaceCommand.d.ts +5 -2
- package/dist-types/commands/ListComponentsCommand.d.ts +118 -0
- package/dist-types/commands/ListMetadataTransferJobsCommand.d.ts +116 -0
- package/dist-types/commands/ListPropertiesCommand.d.ts +167 -0
- package/dist-types/commands/ListWorkspacesCommand.d.ts +3 -0
- package/dist-types/commands/UpdateComponentTypeCommand.d.ts +5 -0
- package/dist-types/commands/UpdateEntityCommand.d.ts +33 -0
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/index.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +1118 -143
- package/dist-types/pagination/ListComponentsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListMetadataTransferJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPropertiesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +102 -0
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CancelMetadataTransferJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateMetadataTransferJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetMetadataTransferJobCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListMetadataTransferJobsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListPropertiesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +329 -24
- package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListMetadataTransferJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPropertiesPaginator.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 +72 -0
- package/package.json +3 -3
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
3
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListComponents(config: IoTTwinMakerPaginationConfiguration, input: ListComponentsCommandInput, ...additionalArguments: any): Paginator<ListComponentsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListMetadataTransferJobsCommandInput, ListMetadataTransferJobsCommandOutput } from "../commands/ListMetadataTransferJobsCommand";
|
|
3
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListMetadataTransferJobs(config: IoTTwinMakerPaginationConfiguration, input: ListMetadataTransferJobsCommandInput, ...additionalArguments: any): Paginator<ListMetadataTransferJobsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPropertiesCommandInput, ListPropertiesCommandOutput } from "../commands/ListPropertiesCommand";
|
|
3
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListProperties(config: IoTTwinMakerPaginationConfiguration, input: ListPropertiesCommandInput, ...additionalArguments: any): Paginator<ListPropertiesCommandOutput>;
|
|
@@ -3,7 +3,10 @@ export * from "./GetPropertyValueHistoryPaginator";
|
|
|
3
3
|
export * from "./GetPropertyValuePaginator";
|
|
4
4
|
export * from "./Interfaces";
|
|
5
5
|
export * from "./ListComponentTypesPaginator";
|
|
6
|
+
export * from "./ListComponentsPaginator";
|
|
6
7
|
export * from "./ListEntitiesPaginator";
|
|
8
|
+
export * from "./ListMetadataTransferJobsPaginator";
|
|
9
|
+
export * from "./ListPropertiesPaginator";
|
|
7
10
|
export * from "./ListScenesPaginator";
|
|
8
11
|
export * from "./ListSyncJobsPaginator";
|
|
9
12
|
export * from "./ListSyncResourcesPaginator";
|
|
@@ -1,8 +1,10 @@
|
|
|
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 { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput } from "../commands/BatchPutPropertyValuesCommand";
|
|
4
|
+
import { CancelMetadataTransferJobCommandInput, CancelMetadataTransferJobCommandOutput } from "../commands/CancelMetadataTransferJobCommand";
|
|
4
5
|
import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "../commands/CreateComponentTypeCommand";
|
|
5
6
|
import { CreateEntityCommandInput, CreateEntityCommandOutput } from "../commands/CreateEntityCommand";
|
|
7
|
+
import { CreateMetadataTransferJobCommandInput, CreateMetadataTransferJobCommandOutput } from "../commands/CreateMetadataTransferJobCommand";
|
|
6
8
|
import { CreateSceneCommandInput, CreateSceneCommandOutput } from "../commands/CreateSceneCommand";
|
|
7
9
|
import { CreateSyncJobCommandInput, CreateSyncJobCommandOutput } from "../commands/CreateSyncJobCommand";
|
|
8
10
|
import { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "../commands/CreateWorkspaceCommand";
|
|
@@ -14,14 +16,18 @@ import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "../co
|
|
|
14
16
|
import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "../commands/ExecuteQueryCommand";
|
|
15
17
|
import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "../commands/GetComponentTypeCommand";
|
|
16
18
|
import { GetEntityCommandInput, GetEntityCommandOutput } from "../commands/GetEntityCommand";
|
|
19
|
+
import { GetMetadataTransferJobCommandInput, GetMetadataTransferJobCommandOutput } from "../commands/GetMetadataTransferJobCommand";
|
|
17
20
|
import { GetPricingPlanCommandInput, GetPricingPlanCommandOutput } from "../commands/GetPricingPlanCommand";
|
|
18
21
|
import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "../commands/GetPropertyValueCommand";
|
|
19
22
|
import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "../commands/GetPropertyValueHistoryCommand";
|
|
20
23
|
import { GetSceneCommandInput, GetSceneCommandOutput } from "../commands/GetSceneCommand";
|
|
21
24
|
import { GetSyncJobCommandInput, GetSyncJobCommandOutput } from "../commands/GetSyncJobCommand";
|
|
22
25
|
import { GetWorkspaceCommandInput, GetWorkspaceCommandOutput } from "../commands/GetWorkspaceCommand";
|
|
26
|
+
import { ListComponentsCommandInput, ListComponentsCommandOutput } from "../commands/ListComponentsCommand";
|
|
23
27
|
import { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "../commands/ListComponentTypesCommand";
|
|
24
28
|
import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "../commands/ListEntitiesCommand";
|
|
29
|
+
import { ListMetadataTransferJobsCommandInput, ListMetadataTransferJobsCommandOutput } from "../commands/ListMetadataTransferJobsCommand";
|
|
30
|
+
import { ListPropertiesCommandInput, ListPropertiesCommandOutput } from "../commands/ListPropertiesCommand";
|
|
25
31
|
import { ListScenesCommandInput, ListScenesCommandOutput } from "../commands/ListScenesCommand";
|
|
26
32
|
import { ListSyncJobsCommandInput, ListSyncJobsCommandOutput } from "../commands/ListSyncJobsCommand";
|
|
27
33
|
import { ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput } from "../commands/ListSyncResourcesCommand";
|
|
@@ -38,6 +44,10 @@ import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "../co
|
|
|
38
44
|
* serializeAws_restJson1BatchPutPropertyValuesCommand
|
|
39
45
|
*/
|
|
40
46
|
export declare const se_BatchPutPropertyValuesCommand: (input: BatchPutPropertyValuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
+
/**
|
|
48
|
+
* serializeAws_restJson1CancelMetadataTransferJobCommand
|
|
49
|
+
*/
|
|
50
|
+
export declare const se_CancelMetadataTransferJobCommand: (input: CancelMetadataTransferJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
51
|
/**
|
|
42
52
|
* serializeAws_restJson1CreateComponentTypeCommand
|
|
43
53
|
*/
|
|
@@ -46,6 +56,10 @@ export declare const se_CreateComponentTypeCommand: (input: CreateComponentTypeC
|
|
|
46
56
|
* serializeAws_restJson1CreateEntityCommand
|
|
47
57
|
*/
|
|
48
58
|
export declare const se_CreateEntityCommand: (input: CreateEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
+
/**
|
|
60
|
+
* serializeAws_restJson1CreateMetadataTransferJobCommand
|
|
61
|
+
*/
|
|
62
|
+
export declare const se_CreateMetadataTransferJobCommand: (input: CreateMetadataTransferJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
49
63
|
/**
|
|
50
64
|
* serializeAws_restJson1CreateSceneCommand
|
|
51
65
|
*/
|
|
@@ -90,6 +104,10 @@ export declare const se_GetComponentTypeCommand: (input: GetComponentTypeCommand
|
|
|
90
104
|
* serializeAws_restJson1GetEntityCommand
|
|
91
105
|
*/
|
|
92
106
|
export declare const se_GetEntityCommand: (input: GetEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
107
|
+
/**
|
|
108
|
+
* serializeAws_restJson1GetMetadataTransferJobCommand
|
|
109
|
+
*/
|
|
110
|
+
export declare const se_GetMetadataTransferJobCommand: (input: GetMetadataTransferJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
111
|
/**
|
|
94
112
|
* serializeAws_restJson1GetPricingPlanCommand
|
|
95
113
|
*/
|
|
@@ -114,6 +132,10 @@ export declare const se_GetSyncJobCommand: (input: GetSyncJobCommandInput, conte
|
|
|
114
132
|
* serializeAws_restJson1GetWorkspaceCommand
|
|
115
133
|
*/
|
|
116
134
|
export declare const se_GetWorkspaceCommand: (input: GetWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
135
|
+
/**
|
|
136
|
+
* serializeAws_restJson1ListComponentsCommand
|
|
137
|
+
*/
|
|
138
|
+
export declare const se_ListComponentsCommand: (input: ListComponentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
117
139
|
/**
|
|
118
140
|
* serializeAws_restJson1ListComponentTypesCommand
|
|
119
141
|
*/
|
|
@@ -122,6 +144,14 @@ export declare const se_ListComponentTypesCommand: (input: ListComponentTypesCom
|
|
|
122
144
|
* serializeAws_restJson1ListEntitiesCommand
|
|
123
145
|
*/
|
|
124
146
|
export declare const se_ListEntitiesCommand: (input: ListEntitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
147
|
+
/**
|
|
148
|
+
* serializeAws_restJson1ListMetadataTransferJobsCommand
|
|
149
|
+
*/
|
|
150
|
+
export declare const se_ListMetadataTransferJobsCommand: (input: ListMetadataTransferJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
151
|
+
/**
|
|
152
|
+
* serializeAws_restJson1ListPropertiesCommand
|
|
153
|
+
*/
|
|
154
|
+
export declare const se_ListPropertiesCommand: (input: ListPropertiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
155
|
/**
|
|
126
156
|
* serializeAws_restJson1ListScenesCommand
|
|
127
157
|
*/
|
|
@@ -174,6 +204,10 @@ export declare const se_UpdateWorkspaceCommand: (input: UpdateWorkspaceCommandIn
|
|
|
174
204
|
* deserializeAws_restJson1BatchPutPropertyValuesCommand
|
|
175
205
|
*/
|
|
176
206
|
export declare const de_BatchPutPropertyValuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchPutPropertyValuesCommandOutput>;
|
|
207
|
+
/**
|
|
208
|
+
* deserializeAws_restJson1CancelMetadataTransferJobCommand
|
|
209
|
+
*/
|
|
210
|
+
export declare const de_CancelMetadataTransferJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelMetadataTransferJobCommandOutput>;
|
|
177
211
|
/**
|
|
178
212
|
* deserializeAws_restJson1CreateComponentTypeCommand
|
|
179
213
|
*/
|
|
@@ -182,6 +216,10 @@ export declare const de_CreateComponentTypeCommand: (output: __HttpResponse, con
|
|
|
182
216
|
* deserializeAws_restJson1CreateEntityCommand
|
|
183
217
|
*/
|
|
184
218
|
export declare const de_CreateEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEntityCommandOutput>;
|
|
219
|
+
/**
|
|
220
|
+
* deserializeAws_restJson1CreateMetadataTransferJobCommand
|
|
221
|
+
*/
|
|
222
|
+
export declare const de_CreateMetadataTransferJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMetadataTransferJobCommandOutput>;
|
|
185
223
|
/**
|
|
186
224
|
* deserializeAws_restJson1CreateSceneCommand
|
|
187
225
|
*/
|
|
@@ -226,6 +264,10 @@ export declare const de_GetComponentTypeCommand: (output: __HttpResponse, contex
|
|
|
226
264
|
* deserializeAws_restJson1GetEntityCommand
|
|
227
265
|
*/
|
|
228
266
|
export declare const de_GetEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEntityCommandOutput>;
|
|
267
|
+
/**
|
|
268
|
+
* deserializeAws_restJson1GetMetadataTransferJobCommand
|
|
269
|
+
*/
|
|
270
|
+
export declare const de_GetMetadataTransferJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetMetadataTransferJobCommandOutput>;
|
|
229
271
|
/**
|
|
230
272
|
* deserializeAws_restJson1GetPricingPlanCommand
|
|
231
273
|
*/
|
|
@@ -250,6 +292,10 @@ export declare const de_GetSyncJobCommand: (output: __HttpResponse, context: __S
|
|
|
250
292
|
* deserializeAws_restJson1GetWorkspaceCommand
|
|
251
293
|
*/
|
|
252
294
|
export declare const de_GetWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkspaceCommandOutput>;
|
|
295
|
+
/**
|
|
296
|
+
* deserializeAws_restJson1ListComponentsCommand
|
|
297
|
+
*/
|
|
298
|
+
export declare const de_ListComponentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentsCommandOutput>;
|
|
253
299
|
/**
|
|
254
300
|
* deserializeAws_restJson1ListComponentTypesCommand
|
|
255
301
|
*/
|
|
@@ -258,6 +304,14 @@ export declare const de_ListComponentTypesCommand: (output: __HttpResponse, cont
|
|
|
258
304
|
* deserializeAws_restJson1ListEntitiesCommand
|
|
259
305
|
*/
|
|
260
306
|
export declare const de_ListEntitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEntitiesCommandOutput>;
|
|
307
|
+
/**
|
|
308
|
+
* deserializeAws_restJson1ListMetadataTransferJobsCommand
|
|
309
|
+
*/
|
|
310
|
+
export declare const de_ListMetadataTransferJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMetadataTransferJobsCommandOutput>;
|
|
311
|
+
/**
|
|
312
|
+
* deserializeAws_restJson1ListPropertiesCommand
|
|
313
|
+
*/
|
|
314
|
+
export declare const de_ListPropertiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPropertiesCommandOutput>;
|
|
261
315
|
/**
|
|
262
316
|
* deserializeAws_restJson1ListScenesCommand
|
|
263
317
|
*/
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
BatchPutPropertyValuesCommandInput,
|
|
4
4
|
BatchPutPropertyValuesCommandOutput,
|
|
5
5
|
} from "./commands/BatchPutPropertyValuesCommand";
|
|
6
|
+
import {
|
|
7
|
+
CancelMetadataTransferJobCommandInput,
|
|
8
|
+
CancelMetadataTransferJobCommandOutput,
|
|
9
|
+
} from "./commands/CancelMetadataTransferJobCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateComponentTypeCommandInput,
|
|
8
12
|
CreateComponentTypeCommandOutput,
|
|
@@ -11,6 +15,10 @@ import {
|
|
|
11
15
|
CreateEntityCommandInput,
|
|
12
16
|
CreateEntityCommandOutput,
|
|
13
17
|
} from "./commands/CreateEntityCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateMetadataTransferJobCommandInput,
|
|
20
|
+
CreateMetadataTransferJobCommandOutput,
|
|
21
|
+
} from "./commands/CreateMetadataTransferJobCommand";
|
|
14
22
|
import {
|
|
15
23
|
CreateSceneCommandInput,
|
|
16
24
|
CreateSceneCommandOutput,
|
|
@@ -55,6 +63,10 @@ import {
|
|
|
55
63
|
GetEntityCommandInput,
|
|
56
64
|
GetEntityCommandOutput,
|
|
57
65
|
} from "./commands/GetEntityCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetMetadataTransferJobCommandInput,
|
|
68
|
+
GetMetadataTransferJobCommandOutput,
|
|
69
|
+
} from "./commands/GetMetadataTransferJobCommand";
|
|
58
70
|
import {
|
|
59
71
|
GetPricingPlanCommandInput,
|
|
60
72
|
GetPricingPlanCommandOutput,
|
|
@@ -79,6 +91,10 @@ import {
|
|
|
79
91
|
GetWorkspaceCommandInput,
|
|
80
92
|
GetWorkspaceCommandOutput,
|
|
81
93
|
} from "./commands/GetWorkspaceCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListComponentsCommandInput,
|
|
96
|
+
ListComponentsCommandOutput,
|
|
97
|
+
} from "./commands/ListComponentsCommand";
|
|
82
98
|
import {
|
|
83
99
|
ListComponentTypesCommandInput,
|
|
84
100
|
ListComponentTypesCommandOutput,
|
|
@@ -87,6 +103,14 @@ import {
|
|
|
87
103
|
ListEntitiesCommandInput,
|
|
88
104
|
ListEntitiesCommandOutput,
|
|
89
105
|
} from "./commands/ListEntitiesCommand";
|
|
106
|
+
import {
|
|
107
|
+
ListMetadataTransferJobsCommandInput,
|
|
108
|
+
ListMetadataTransferJobsCommandOutput,
|
|
109
|
+
} from "./commands/ListMetadataTransferJobsCommand";
|
|
110
|
+
import {
|
|
111
|
+
ListPropertiesCommandInput,
|
|
112
|
+
ListPropertiesCommandOutput,
|
|
113
|
+
} from "./commands/ListPropertiesCommand";
|
|
90
114
|
import {
|
|
91
115
|
ListScenesCommandInput,
|
|
92
116
|
ListScenesCommandOutput,
|
|
@@ -150,6 +174,19 @@ export interface IoTTwinMaker {
|
|
|
150
174
|
options: __HttpHandlerOptions,
|
|
151
175
|
cb: (err: any, data?: BatchPutPropertyValuesCommandOutput) => void
|
|
152
176
|
): void;
|
|
177
|
+
cancelMetadataTransferJob(
|
|
178
|
+
args: CancelMetadataTransferJobCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<CancelMetadataTransferJobCommandOutput>;
|
|
181
|
+
cancelMetadataTransferJob(
|
|
182
|
+
args: CancelMetadataTransferJobCommandInput,
|
|
183
|
+
cb: (err: any, data?: CancelMetadataTransferJobCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
cancelMetadataTransferJob(
|
|
186
|
+
args: CancelMetadataTransferJobCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: CancelMetadataTransferJobCommandOutput) => void
|
|
189
|
+
): void;
|
|
153
190
|
createComponentType(
|
|
154
191
|
args: CreateComponentTypeCommandInput,
|
|
155
192
|
options?: __HttpHandlerOptions
|
|
@@ -176,6 +213,19 @@ export interface IoTTwinMaker {
|
|
|
176
213
|
options: __HttpHandlerOptions,
|
|
177
214
|
cb: (err: any, data?: CreateEntityCommandOutput) => void
|
|
178
215
|
): void;
|
|
216
|
+
createMetadataTransferJob(
|
|
217
|
+
args: CreateMetadataTransferJobCommandInput,
|
|
218
|
+
options?: __HttpHandlerOptions
|
|
219
|
+
): Promise<CreateMetadataTransferJobCommandOutput>;
|
|
220
|
+
createMetadataTransferJob(
|
|
221
|
+
args: CreateMetadataTransferJobCommandInput,
|
|
222
|
+
cb: (err: any, data?: CreateMetadataTransferJobCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
createMetadataTransferJob(
|
|
225
|
+
args: CreateMetadataTransferJobCommandInput,
|
|
226
|
+
options: __HttpHandlerOptions,
|
|
227
|
+
cb: (err: any, data?: CreateMetadataTransferJobCommandOutput) => void
|
|
228
|
+
): void;
|
|
179
229
|
createScene(
|
|
180
230
|
args: CreateSceneCommandInput,
|
|
181
231
|
options?: __HttpHandlerOptions
|
|
@@ -319,6 +369,19 @@ export interface IoTTwinMaker {
|
|
|
319
369
|
options: __HttpHandlerOptions,
|
|
320
370
|
cb: (err: any, data?: GetEntityCommandOutput) => void
|
|
321
371
|
): void;
|
|
372
|
+
getMetadataTransferJob(
|
|
373
|
+
args: GetMetadataTransferJobCommandInput,
|
|
374
|
+
options?: __HttpHandlerOptions
|
|
375
|
+
): Promise<GetMetadataTransferJobCommandOutput>;
|
|
376
|
+
getMetadataTransferJob(
|
|
377
|
+
args: GetMetadataTransferJobCommandInput,
|
|
378
|
+
cb: (err: any, data?: GetMetadataTransferJobCommandOutput) => void
|
|
379
|
+
): void;
|
|
380
|
+
getMetadataTransferJob(
|
|
381
|
+
args: GetMetadataTransferJobCommandInput,
|
|
382
|
+
options: __HttpHandlerOptions,
|
|
383
|
+
cb: (err: any, data?: GetMetadataTransferJobCommandOutput) => void
|
|
384
|
+
): void;
|
|
322
385
|
getPricingPlan(
|
|
323
386
|
args: GetPricingPlanCommandInput,
|
|
324
387
|
options?: __HttpHandlerOptions
|
|
@@ -397,6 +460,19 @@ export interface IoTTwinMaker {
|
|
|
397
460
|
options: __HttpHandlerOptions,
|
|
398
461
|
cb: (err: any, data?: GetWorkspaceCommandOutput) => void
|
|
399
462
|
): void;
|
|
463
|
+
listComponents(
|
|
464
|
+
args: ListComponentsCommandInput,
|
|
465
|
+
options?: __HttpHandlerOptions
|
|
466
|
+
): Promise<ListComponentsCommandOutput>;
|
|
467
|
+
listComponents(
|
|
468
|
+
args: ListComponentsCommandInput,
|
|
469
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
470
|
+
): void;
|
|
471
|
+
listComponents(
|
|
472
|
+
args: ListComponentsCommandInput,
|
|
473
|
+
options: __HttpHandlerOptions,
|
|
474
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
475
|
+
): void;
|
|
400
476
|
listComponentTypes(
|
|
401
477
|
args: ListComponentTypesCommandInput,
|
|
402
478
|
options?: __HttpHandlerOptions
|
|
@@ -423,6 +499,32 @@ export interface IoTTwinMaker {
|
|
|
423
499
|
options: __HttpHandlerOptions,
|
|
424
500
|
cb: (err: any, data?: ListEntitiesCommandOutput) => void
|
|
425
501
|
): void;
|
|
502
|
+
listMetadataTransferJobs(
|
|
503
|
+
args: ListMetadataTransferJobsCommandInput,
|
|
504
|
+
options?: __HttpHandlerOptions
|
|
505
|
+
): Promise<ListMetadataTransferJobsCommandOutput>;
|
|
506
|
+
listMetadataTransferJobs(
|
|
507
|
+
args: ListMetadataTransferJobsCommandInput,
|
|
508
|
+
cb: (err: any, data?: ListMetadataTransferJobsCommandOutput) => void
|
|
509
|
+
): void;
|
|
510
|
+
listMetadataTransferJobs(
|
|
511
|
+
args: ListMetadataTransferJobsCommandInput,
|
|
512
|
+
options: __HttpHandlerOptions,
|
|
513
|
+
cb: (err: any, data?: ListMetadataTransferJobsCommandOutput) => void
|
|
514
|
+
): void;
|
|
515
|
+
listProperties(
|
|
516
|
+
args: ListPropertiesCommandInput,
|
|
517
|
+
options?: __HttpHandlerOptions
|
|
518
|
+
): Promise<ListPropertiesCommandOutput>;
|
|
519
|
+
listProperties(
|
|
520
|
+
args: ListPropertiesCommandInput,
|
|
521
|
+
cb: (err: any, data?: ListPropertiesCommandOutput) => void
|
|
522
|
+
): void;
|
|
523
|
+
listProperties(
|
|
524
|
+
args: ListPropertiesCommandInput,
|
|
525
|
+
options: __HttpHandlerOptions,
|
|
526
|
+
cb: (err: any, data?: ListPropertiesCommandOutput) => void
|
|
527
|
+
): void;
|
|
426
528
|
listScenes(
|
|
427
529
|
args: ListScenesCommandInput,
|
|
428
530
|
options?: __HttpHandlerOptions
|
|
@@ -49,6 +49,10 @@ import {
|
|
|
49
49
|
BatchPutPropertyValuesCommandInput,
|
|
50
50
|
BatchPutPropertyValuesCommandOutput,
|
|
51
51
|
} from "./commands/BatchPutPropertyValuesCommand";
|
|
52
|
+
import {
|
|
53
|
+
CancelMetadataTransferJobCommandInput,
|
|
54
|
+
CancelMetadataTransferJobCommandOutput,
|
|
55
|
+
} from "./commands/CancelMetadataTransferJobCommand";
|
|
52
56
|
import {
|
|
53
57
|
CreateComponentTypeCommandInput,
|
|
54
58
|
CreateComponentTypeCommandOutput,
|
|
@@ -57,6 +61,10 @@ import {
|
|
|
57
61
|
CreateEntityCommandInput,
|
|
58
62
|
CreateEntityCommandOutput,
|
|
59
63
|
} from "./commands/CreateEntityCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateMetadataTransferJobCommandInput,
|
|
66
|
+
CreateMetadataTransferJobCommandOutput,
|
|
67
|
+
} from "./commands/CreateMetadataTransferJobCommand";
|
|
60
68
|
import {
|
|
61
69
|
CreateSceneCommandInput,
|
|
62
70
|
CreateSceneCommandOutput,
|
|
@@ -101,6 +109,10 @@ import {
|
|
|
101
109
|
GetEntityCommandInput,
|
|
102
110
|
GetEntityCommandOutput,
|
|
103
111
|
} from "./commands/GetEntityCommand";
|
|
112
|
+
import {
|
|
113
|
+
GetMetadataTransferJobCommandInput,
|
|
114
|
+
GetMetadataTransferJobCommandOutput,
|
|
115
|
+
} from "./commands/GetMetadataTransferJobCommand";
|
|
104
116
|
import {
|
|
105
117
|
GetPricingPlanCommandInput,
|
|
106
118
|
GetPricingPlanCommandOutput,
|
|
@@ -125,6 +137,10 @@ import {
|
|
|
125
137
|
GetWorkspaceCommandInput,
|
|
126
138
|
GetWorkspaceCommandOutput,
|
|
127
139
|
} from "./commands/GetWorkspaceCommand";
|
|
140
|
+
import {
|
|
141
|
+
ListComponentsCommandInput,
|
|
142
|
+
ListComponentsCommandOutput,
|
|
143
|
+
} from "./commands/ListComponentsCommand";
|
|
128
144
|
import {
|
|
129
145
|
ListComponentTypesCommandInput,
|
|
130
146
|
ListComponentTypesCommandOutput,
|
|
@@ -133,6 +149,14 @@ import {
|
|
|
133
149
|
ListEntitiesCommandInput,
|
|
134
150
|
ListEntitiesCommandOutput,
|
|
135
151
|
} from "./commands/ListEntitiesCommand";
|
|
152
|
+
import {
|
|
153
|
+
ListMetadataTransferJobsCommandInput,
|
|
154
|
+
ListMetadataTransferJobsCommandOutput,
|
|
155
|
+
} from "./commands/ListMetadataTransferJobsCommand";
|
|
156
|
+
import {
|
|
157
|
+
ListPropertiesCommandInput,
|
|
158
|
+
ListPropertiesCommandOutput,
|
|
159
|
+
} from "./commands/ListPropertiesCommand";
|
|
136
160
|
import {
|
|
137
161
|
ListScenesCommandInput,
|
|
138
162
|
ListScenesCommandOutput,
|
|
@@ -190,8 +214,10 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
190
214
|
export { __Client };
|
|
191
215
|
export type ServiceInputTypes =
|
|
192
216
|
| BatchPutPropertyValuesCommandInput
|
|
217
|
+
| CancelMetadataTransferJobCommandInput
|
|
193
218
|
| CreateComponentTypeCommandInput
|
|
194
219
|
| CreateEntityCommandInput
|
|
220
|
+
| CreateMetadataTransferJobCommandInput
|
|
195
221
|
| CreateSceneCommandInput
|
|
196
222
|
| CreateSyncJobCommandInput
|
|
197
223
|
| CreateWorkspaceCommandInput
|
|
@@ -203,6 +229,7 @@ export type ServiceInputTypes =
|
|
|
203
229
|
| ExecuteQueryCommandInput
|
|
204
230
|
| GetComponentTypeCommandInput
|
|
205
231
|
| GetEntityCommandInput
|
|
232
|
+
| GetMetadataTransferJobCommandInput
|
|
206
233
|
| GetPricingPlanCommandInput
|
|
207
234
|
| GetPropertyValueCommandInput
|
|
208
235
|
| GetPropertyValueHistoryCommandInput
|
|
@@ -210,7 +237,10 @@ export type ServiceInputTypes =
|
|
|
210
237
|
| GetSyncJobCommandInput
|
|
211
238
|
| GetWorkspaceCommandInput
|
|
212
239
|
| ListComponentTypesCommandInput
|
|
240
|
+
| ListComponentsCommandInput
|
|
213
241
|
| ListEntitiesCommandInput
|
|
242
|
+
| ListMetadataTransferJobsCommandInput
|
|
243
|
+
| ListPropertiesCommandInput
|
|
214
244
|
| ListScenesCommandInput
|
|
215
245
|
| ListSyncJobsCommandInput
|
|
216
246
|
| ListSyncResourcesCommandInput
|
|
@@ -225,8 +255,10 @@ export type ServiceInputTypes =
|
|
|
225
255
|
| UpdateWorkspaceCommandInput;
|
|
226
256
|
export type ServiceOutputTypes =
|
|
227
257
|
| BatchPutPropertyValuesCommandOutput
|
|
258
|
+
| CancelMetadataTransferJobCommandOutput
|
|
228
259
|
| CreateComponentTypeCommandOutput
|
|
229
260
|
| CreateEntityCommandOutput
|
|
261
|
+
| CreateMetadataTransferJobCommandOutput
|
|
230
262
|
| CreateSceneCommandOutput
|
|
231
263
|
| CreateSyncJobCommandOutput
|
|
232
264
|
| CreateWorkspaceCommandOutput
|
|
@@ -238,6 +270,7 @@ export type ServiceOutputTypes =
|
|
|
238
270
|
| ExecuteQueryCommandOutput
|
|
239
271
|
| GetComponentTypeCommandOutput
|
|
240
272
|
| GetEntityCommandOutput
|
|
273
|
+
| GetMetadataTransferJobCommandOutput
|
|
241
274
|
| GetPricingPlanCommandOutput
|
|
242
275
|
| GetPropertyValueCommandOutput
|
|
243
276
|
| GetPropertyValueHistoryCommandOutput
|
|
@@ -245,7 +278,10 @@ export type ServiceOutputTypes =
|
|
|
245
278
|
| GetSyncJobCommandOutput
|
|
246
279
|
| GetWorkspaceCommandOutput
|
|
247
280
|
| ListComponentTypesCommandOutput
|
|
281
|
+
| ListComponentsCommandOutput
|
|
248
282
|
| ListEntitiesCommandOutput
|
|
283
|
+
| ListMetadataTransferJobsCommandOutput
|
|
284
|
+
| ListPropertiesCommandOutput
|
|
249
285
|
| ListScenesCommandOutput
|
|
250
286
|
| ListSyncJobsCommandOutput
|
|
251
287
|
| ListSyncResourcesCommandOutput
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import {
|
|
15
|
+
CancelMetadataTransferJobRequest,
|
|
16
|
+
CancelMetadataTransferJobResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CancelMetadataTransferJobCommandInput
|
|
20
|
+
extends CancelMetadataTransferJobRequest {}
|
|
21
|
+
export interface CancelMetadataTransferJobCommandOutput
|
|
22
|
+
extends CancelMetadataTransferJobResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CancelMetadataTransferJobCommand extends $Command<
|
|
25
|
+
CancelMetadataTransferJobCommandInput,
|
|
26
|
+
CancelMetadataTransferJobCommandOutput,
|
|
27
|
+
IoTTwinMakerClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CancelMetadataTransferJobCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CancelMetadataTransferJobCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CancelMetadataTransferJobCommandInput,
|
|
38
|
+
CancelMetadataTransferJobCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateMetadataTransferJobRequest,
|
|
16
|
+
CreateMetadataTransferJobResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateMetadataTransferJobCommandInput
|
|
20
|
+
extends CreateMetadataTransferJobRequest {}
|
|
21
|
+
export interface CreateMetadataTransferJobCommandOutput
|
|
22
|
+
extends CreateMetadataTransferJobResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateMetadataTransferJobCommand extends $Command<
|
|
25
|
+
CreateMetadataTransferJobCommandInput,
|
|
26
|
+
CreateMetadataTransferJobCommandOutput,
|
|
27
|
+
IoTTwinMakerClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateMetadataTransferJobCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateMetadataTransferJobCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreateMetadataTransferJobCommandInput,
|
|
38
|
+
CreateMetadataTransferJobCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import {
|
|
15
|
+
GetMetadataTransferJobRequest,
|
|
16
|
+
GetMetadataTransferJobResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetMetadataTransferJobCommandInput
|
|
20
|
+
extends GetMetadataTransferJobRequest {}
|
|
21
|
+
export interface GetMetadataTransferJobCommandOutput
|
|
22
|
+
extends GetMetadataTransferJobResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetMetadataTransferJobCommand extends $Command<
|
|
25
|
+
GetMetadataTransferJobCommandInput,
|
|
26
|
+
GetMetadataTransferJobCommandOutput,
|
|
27
|
+
IoTTwinMakerClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetMetadataTransferJobCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetMetadataTransferJobCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetMetadataTransferJobCommandInput,
|
|
38
|
+
GetMetadataTransferJobCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import {
|
|
15
|
+
ListComponentsRequest,
|
|
16
|
+
ListComponentsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListComponentsCommandInput extends ListComponentsRequest {}
|
|
20
|
+
export interface ListComponentsCommandOutput
|
|
21
|
+
extends ListComponentsResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListComponentsCommand extends $Command<
|
|
24
|
+
ListComponentsCommandInput,
|
|
25
|
+
ListComponentsCommandOutput,
|
|
26
|
+
IoTTwinMakerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListComponentsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListComponentsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import {
|
|
15
|
+
ListMetadataTransferJobsRequest,
|
|
16
|
+
ListMetadataTransferJobsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListMetadataTransferJobsCommandInput
|
|
20
|
+
extends ListMetadataTransferJobsRequest {}
|
|
21
|
+
export interface ListMetadataTransferJobsCommandOutput
|
|
22
|
+
extends ListMetadataTransferJobsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListMetadataTransferJobsCommand extends $Command<
|
|
25
|
+
ListMetadataTransferJobsCommandInput,
|
|
26
|
+
ListMetadataTransferJobsCommandOutput,
|
|
27
|
+
IoTTwinMakerClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListMetadataTransferJobsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListMetadataTransferJobsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListMetadataTransferJobsCommandInput,
|
|
38
|
+
ListMetadataTransferJobsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|