@aws-sdk/client-iottwinmaker 3.224.0 → 3.227.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/dist-cjs/IoTTwinMaker.js +75 -0
- package/dist-cjs/commands/CreateSyncJobCommand.js +46 -0
- package/dist-cjs/commands/DeleteSyncJobCommand.js +46 -0
- package/dist-cjs/commands/GetSyncJobCommand.js +46 -0
- package/dist-cjs/commands/ListSyncJobsCommand.js +46 -0
- package/dist-cjs/commands/ListSyncResourcesCommand.js +46 -0
- package/dist-cjs/commands/index.js +5 -0
- package/dist-cjs/endpoint/ruleset.js +1 -10
- package/dist-cjs/models/models_0.js +111 -3
- package/dist-cjs/pagination/ListSyncJobsPaginator.js +36 -0
- package/dist-cjs/pagination/ListSyncResourcesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +510 -2
- package/dist-es/IoTTwinMaker.js +75 -0
- package/dist-es/commands/CreateSyncJobCommand.js +42 -0
- package/dist-es/commands/DeleteSyncJobCommand.js +42 -0
- package/dist-es/commands/GetSyncJobCommand.js +42 -0
- package/dist-es/commands/ListSyncJobsCommand.js +42 -0
- package/dist-es/commands/ListSyncResourcesCommand.js +42 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/endpoint/ruleset.js +1 -10
- package/dist-es/models/models_0.js +93 -0
- package/dist-es/pagination/ListSyncJobsPaginator.js +32 -0
- package/dist-es/pagination/ListSyncResourcesPaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +499 -1
- package/dist-types/IoTTwinMaker.d.ts +35 -0
- package/dist-types/IoTTwinMakerClient.d.ts +7 -2
- package/dist-types/commands/CreateSyncJobCommand.d.ts +37 -0
- package/dist-types/commands/DeleteSyncJobCommand.d.ts +37 -0
- package/dist-types/commands/GetSyncJobCommand.d.ts +37 -0
- package/dist-types/commands/ListSyncJobsCommand.d.ts +37 -0
- package/dist-types/commands/ListSyncResourcesCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +421 -1
- package/dist-types/pagination/ListSyncJobsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSyncResourcesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +85 -0
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CreateSyncJobCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteSyncJobCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetSyncJobCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListSyncJobsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListSyncResourcesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +200 -0
- package/dist-types/ts3.4/pagination/ListSyncJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSyncResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
- package/package.json +28 -28
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
CreateSceneCommandInput,
|
|
16
16
|
CreateSceneCommandOutput,
|
|
17
17
|
} from "./commands/CreateSceneCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateSyncJobCommandInput,
|
|
20
|
+
CreateSyncJobCommandOutput,
|
|
21
|
+
} from "./commands/CreateSyncJobCommand";
|
|
18
22
|
import {
|
|
19
23
|
CreateWorkspaceCommandInput,
|
|
20
24
|
CreateWorkspaceCommandOutput,
|
|
@@ -31,6 +35,10 @@ import {
|
|
|
31
35
|
DeleteSceneCommandInput,
|
|
32
36
|
DeleteSceneCommandOutput,
|
|
33
37
|
} from "./commands/DeleteSceneCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteSyncJobCommandInput,
|
|
40
|
+
DeleteSyncJobCommandOutput,
|
|
41
|
+
} from "./commands/DeleteSyncJobCommand";
|
|
34
42
|
import {
|
|
35
43
|
DeleteWorkspaceCommandInput,
|
|
36
44
|
DeleteWorkspaceCommandOutput,
|
|
@@ -63,6 +71,10 @@ import {
|
|
|
63
71
|
GetSceneCommandInput,
|
|
64
72
|
GetSceneCommandOutput,
|
|
65
73
|
} from "./commands/GetSceneCommand";
|
|
74
|
+
import {
|
|
75
|
+
GetSyncJobCommandInput,
|
|
76
|
+
GetSyncJobCommandOutput,
|
|
77
|
+
} from "./commands/GetSyncJobCommand";
|
|
66
78
|
import {
|
|
67
79
|
GetWorkspaceCommandInput,
|
|
68
80
|
GetWorkspaceCommandOutput,
|
|
@@ -79,6 +91,14 @@ import {
|
|
|
79
91
|
ListScenesCommandInput,
|
|
80
92
|
ListScenesCommandOutput,
|
|
81
93
|
} from "./commands/ListScenesCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListSyncJobsCommandInput,
|
|
96
|
+
ListSyncJobsCommandOutput,
|
|
97
|
+
} from "./commands/ListSyncJobsCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListSyncResourcesCommandInput,
|
|
100
|
+
ListSyncResourcesCommandOutput,
|
|
101
|
+
} from "./commands/ListSyncResourcesCommand";
|
|
82
102
|
import {
|
|
83
103
|
ListTagsForResourceCommandInput,
|
|
84
104
|
ListTagsForResourceCommandOutput,
|
|
@@ -169,6 +189,19 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
169
189
|
options: __HttpHandlerOptions,
|
|
170
190
|
cb: (err: any, data?: CreateSceneCommandOutput) => void
|
|
171
191
|
): void;
|
|
192
|
+
createSyncJob(
|
|
193
|
+
args: CreateSyncJobCommandInput,
|
|
194
|
+
options?: __HttpHandlerOptions
|
|
195
|
+
): Promise<CreateSyncJobCommandOutput>;
|
|
196
|
+
createSyncJob(
|
|
197
|
+
args: CreateSyncJobCommandInput,
|
|
198
|
+
cb: (err: any, data?: CreateSyncJobCommandOutput) => void
|
|
199
|
+
): void;
|
|
200
|
+
createSyncJob(
|
|
201
|
+
args: CreateSyncJobCommandInput,
|
|
202
|
+
options: __HttpHandlerOptions,
|
|
203
|
+
cb: (err: any, data?: CreateSyncJobCommandOutput) => void
|
|
204
|
+
): void;
|
|
172
205
|
createWorkspace(
|
|
173
206
|
args: CreateWorkspaceCommandInput,
|
|
174
207
|
options?: __HttpHandlerOptions
|
|
@@ -221,6 +254,19 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
221
254
|
options: __HttpHandlerOptions,
|
|
222
255
|
cb: (err: any, data?: DeleteSceneCommandOutput) => void
|
|
223
256
|
): void;
|
|
257
|
+
deleteSyncJob(
|
|
258
|
+
args: DeleteSyncJobCommandInput,
|
|
259
|
+
options?: __HttpHandlerOptions
|
|
260
|
+
): Promise<DeleteSyncJobCommandOutput>;
|
|
261
|
+
deleteSyncJob(
|
|
262
|
+
args: DeleteSyncJobCommandInput,
|
|
263
|
+
cb: (err: any, data?: DeleteSyncJobCommandOutput) => void
|
|
264
|
+
): void;
|
|
265
|
+
deleteSyncJob(
|
|
266
|
+
args: DeleteSyncJobCommandInput,
|
|
267
|
+
options: __HttpHandlerOptions,
|
|
268
|
+
cb: (err: any, data?: DeleteSyncJobCommandOutput) => void
|
|
269
|
+
): void;
|
|
224
270
|
deleteWorkspace(
|
|
225
271
|
args: DeleteWorkspaceCommandInput,
|
|
226
272
|
options?: __HttpHandlerOptions
|
|
@@ -325,6 +371,19 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
325
371
|
options: __HttpHandlerOptions,
|
|
326
372
|
cb: (err: any, data?: GetSceneCommandOutput) => void
|
|
327
373
|
): void;
|
|
374
|
+
getSyncJob(
|
|
375
|
+
args: GetSyncJobCommandInput,
|
|
376
|
+
options?: __HttpHandlerOptions
|
|
377
|
+
): Promise<GetSyncJobCommandOutput>;
|
|
378
|
+
getSyncJob(
|
|
379
|
+
args: GetSyncJobCommandInput,
|
|
380
|
+
cb: (err: any, data?: GetSyncJobCommandOutput) => void
|
|
381
|
+
): void;
|
|
382
|
+
getSyncJob(
|
|
383
|
+
args: GetSyncJobCommandInput,
|
|
384
|
+
options: __HttpHandlerOptions,
|
|
385
|
+
cb: (err: any, data?: GetSyncJobCommandOutput) => void
|
|
386
|
+
): void;
|
|
328
387
|
getWorkspace(
|
|
329
388
|
args: GetWorkspaceCommandInput,
|
|
330
389
|
options?: __HttpHandlerOptions
|
|
@@ -377,6 +436,32 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
377
436
|
options: __HttpHandlerOptions,
|
|
378
437
|
cb: (err: any, data?: ListScenesCommandOutput) => void
|
|
379
438
|
): void;
|
|
439
|
+
listSyncJobs(
|
|
440
|
+
args: ListSyncJobsCommandInput,
|
|
441
|
+
options?: __HttpHandlerOptions
|
|
442
|
+
): Promise<ListSyncJobsCommandOutput>;
|
|
443
|
+
listSyncJobs(
|
|
444
|
+
args: ListSyncJobsCommandInput,
|
|
445
|
+
cb: (err: any, data?: ListSyncJobsCommandOutput) => void
|
|
446
|
+
): void;
|
|
447
|
+
listSyncJobs(
|
|
448
|
+
args: ListSyncJobsCommandInput,
|
|
449
|
+
options: __HttpHandlerOptions,
|
|
450
|
+
cb: (err: any, data?: ListSyncJobsCommandOutput) => void
|
|
451
|
+
): void;
|
|
452
|
+
listSyncResources(
|
|
453
|
+
args: ListSyncResourcesCommandInput,
|
|
454
|
+
options?: __HttpHandlerOptions
|
|
455
|
+
): Promise<ListSyncResourcesCommandOutput>;
|
|
456
|
+
listSyncResources(
|
|
457
|
+
args: ListSyncResourcesCommandInput,
|
|
458
|
+
cb: (err: any, data?: ListSyncResourcesCommandOutput) => void
|
|
459
|
+
): void;
|
|
460
|
+
listSyncResources(
|
|
461
|
+
args: ListSyncResourcesCommandInput,
|
|
462
|
+
options: __HttpHandlerOptions,
|
|
463
|
+
cb: (err: any, data?: ListSyncResourcesCommandOutput) => void
|
|
464
|
+
): void;
|
|
380
465
|
listTagsForResource(
|
|
381
466
|
args: ListTagsForResourceCommandInput,
|
|
382
467
|
options?: __HttpHandlerOptions
|
|
@@ -59,6 +59,10 @@ import {
|
|
|
59
59
|
CreateSceneCommandInput,
|
|
60
60
|
CreateSceneCommandOutput,
|
|
61
61
|
} from "./commands/CreateSceneCommand";
|
|
62
|
+
import {
|
|
63
|
+
CreateSyncJobCommandInput,
|
|
64
|
+
CreateSyncJobCommandOutput,
|
|
65
|
+
} from "./commands/CreateSyncJobCommand";
|
|
62
66
|
import {
|
|
63
67
|
CreateWorkspaceCommandInput,
|
|
64
68
|
CreateWorkspaceCommandOutput,
|
|
@@ -75,6 +79,10 @@ import {
|
|
|
75
79
|
DeleteSceneCommandInput,
|
|
76
80
|
DeleteSceneCommandOutput,
|
|
77
81
|
} from "./commands/DeleteSceneCommand";
|
|
82
|
+
import {
|
|
83
|
+
DeleteSyncJobCommandInput,
|
|
84
|
+
DeleteSyncJobCommandOutput,
|
|
85
|
+
} from "./commands/DeleteSyncJobCommand";
|
|
78
86
|
import {
|
|
79
87
|
DeleteWorkspaceCommandInput,
|
|
80
88
|
DeleteWorkspaceCommandOutput,
|
|
@@ -107,6 +115,10 @@ import {
|
|
|
107
115
|
GetSceneCommandInput,
|
|
108
116
|
GetSceneCommandOutput,
|
|
109
117
|
} from "./commands/GetSceneCommand";
|
|
118
|
+
import {
|
|
119
|
+
GetSyncJobCommandInput,
|
|
120
|
+
GetSyncJobCommandOutput,
|
|
121
|
+
} from "./commands/GetSyncJobCommand";
|
|
110
122
|
import {
|
|
111
123
|
GetWorkspaceCommandInput,
|
|
112
124
|
GetWorkspaceCommandOutput,
|
|
@@ -123,6 +135,14 @@ import {
|
|
|
123
135
|
ListScenesCommandInput,
|
|
124
136
|
ListScenesCommandOutput,
|
|
125
137
|
} from "./commands/ListScenesCommand";
|
|
138
|
+
import {
|
|
139
|
+
ListSyncJobsCommandInput,
|
|
140
|
+
ListSyncJobsCommandOutput,
|
|
141
|
+
} from "./commands/ListSyncJobsCommand";
|
|
142
|
+
import {
|
|
143
|
+
ListSyncResourcesCommandInput,
|
|
144
|
+
ListSyncResourcesCommandOutput,
|
|
145
|
+
} from "./commands/ListSyncResourcesCommand";
|
|
126
146
|
import {
|
|
127
147
|
ListTagsForResourceCommandInput,
|
|
128
148
|
ListTagsForResourceCommandOutput,
|
|
@@ -169,10 +189,12 @@ export declare type ServiceInputTypes =
|
|
|
169
189
|
| CreateComponentTypeCommandInput
|
|
170
190
|
| CreateEntityCommandInput
|
|
171
191
|
| CreateSceneCommandInput
|
|
192
|
+
| CreateSyncJobCommandInput
|
|
172
193
|
| CreateWorkspaceCommandInput
|
|
173
194
|
| DeleteComponentTypeCommandInput
|
|
174
195
|
| DeleteEntityCommandInput
|
|
175
196
|
| DeleteSceneCommandInput
|
|
197
|
+
| DeleteSyncJobCommandInput
|
|
176
198
|
| DeleteWorkspaceCommandInput
|
|
177
199
|
| ExecuteQueryCommandInput
|
|
178
200
|
| GetComponentTypeCommandInput
|
|
@@ -181,10 +203,13 @@ export declare type ServiceInputTypes =
|
|
|
181
203
|
| GetPropertyValueCommandInput
|
|
182
204
|
| GetPropertyValueHistoryCommandInput
|
|
183
205
|
| GetSceneCommandInput
|
|
206
|
+
| GetSyncJobCommandInput
|
|
184
207
|
| GetWorkspaceCommandInput
|
|
185
208
|
| ListComponentTypesCommandInput
|
|
186
209
|
| ListEntitiesCommandInput
|
|
187
210
|
| ListScenesCommandInput
|
|
211
|
+
| ListSyncJobsCommandInput
|
|
212
|
+
| ListSyncResourcesCommandInput
|
|
188
213
|
| ListTagsForResourceCommandInput
|
|
189
214
|
| ListWorkspacesCommandInput
|
|
190
215
|
| TagResourceCommandInput
|
|
@@ -199,10 +224,12 @@ export declare type ServiceOutputTypes =
|
|
|
199
224
|
| CreateComponentTypeCommandOutput
|
|
200
225
|
| CreateEntityCommandOutput
|
|
201
226
|
| CreateSceneCommandOutput
|
|
227
|
+
| CreateSyncJobCommandOutput
|
|
202
228
|
| CreateWorkspaceCommandOutput
|
|
203
229
|
| DeleteComponentTypeCommandOutput
|
|
204
230
|
| DeleteEntityCommandOutput
|
|
205
231
|
| DeleteSceneCommandOutput
|
|
232
|
+
| DeleteSyncJobCommandOutput
|
|
206
233
|
| DeleteWorkspaceCommandOutput
|
|
207
234
|
| ExecuteQueryCommandOutput
|
|
208
235
|
| GetComponentTypeCommandOutput
|
|
@@ -211,10 +238,13 @@ export declare type ServiceOutputTypes =
|
|
|
211
238
|
| GetPropertyValueCommandOutput
|
|
212
239
|
| GetPropertyValueHistoryCommandOutput
|
|
213
240
|
| GetSceneCommandOutput
|
|
241
|
+
| GetSyncJobCommandOutput
|
|
214
242
|
| GetWorkspaceCommandOutput
|
|
215
243
|
| ListComponentTypesCommandOutput
|
|
216
244
|
| ListEntitiesCommandOutput
|
|
217
245
|
| ListScenesCommandOutput
|
|
246
|
+
| ListSyncJobsCommandOutput
|
|
247
|
+
| ListSyncResourcesCommandOutput
|
|
218
248
|
| ListTagsForResourceCommandOutput
|
|
219
249
|
| ListWorkspacesCommandOutput
|
|
220
250
|
| TagResourceCommandOutput
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateSyncJobRequest,
|
|
16
|
+
CreateSyncJobResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface CreateSyncJobCommandInput extends CreateSyncJobRequest {}
|
|
19
|
+
export interface CreateSyncJobCommandOutput
|
|
20
|
+
extends CreateSyncJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class CreateSyncJobCommand extends $Command<
|
|
23
|
+
CreateSyncJobCommandInput,
|
|
24
|
+
CreateSyncJobCommandOutput,
|
|
25
|
+
IoTTwinMakerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateSyncJobCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: CreateSyncJobCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateSyncJobCommandInput, CreateSyncJobCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteSyncJobRequest,
|
|
16
|
+
DeleteSyncJobResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DeleteSyncJobCommandInput extends DeleteSyncJobRequest {}
|
|
19
|
+
export interface DeleteSyncJobCommandOutput
|
|
20
|
+
extends DeleteSyncJobResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteSyncJobCommand extends $Command<
|
|
23
|
+
DeleteSyncJobCommandInput,
|
|
24
|
+
DeleteSyncJobCommandOutput,
|
|
25
|
+
IoTTwinMakerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteSyncJobCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: DeleteSyncJobCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteSyncJobCommandInput, DeleteSyncJobCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import { GetSyncJobRequest, GetSyncJobResponse } from "../models/models_0";
|
|
15
|
+
export interface GetSyncJobCommandInput extends GetSyncJobRequest {}
|
|
16
|
+
export interface GetSyncJobCommandOutput
|
|
17
|
+
extends GetSyncJobResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class GetSyncJobCommand extends $Command<
|
|
20
|
+
GetSyncJobCommandInput,
|
|
21
|
+
GetSyncJobCommandOutput,
|
|
22
|
+
IoTTwinMakerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetSyncJobCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: GetSyncJobCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetSyncJobCommandInput, GetSyncJobCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import { ListSyncJobsRequest, ListSyncJobsResponse } from "../models/models_0";
|
|
15
|
+
export interface ListSyncJobsCommandInput extends ListSyncJobsRequest {}
|
|
16
|
+
export interface ListSyncJobsCommandOutput
|
|
17
|
+
extends ListSyncJobsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ListSyncJobsCommand extends $Command<
|
|
20
|
+
ListSyncJobsCommandInput,
|
|
21
|
+
ListSyncJobsCommandOutput,
|
|
22
|
+
IoTTwinMakerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListSyncJobsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: ListSyncJobsCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListSyncJobsCommandInput, ListSyncJobsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import {
|
|
15
|
+
ListSyncResourcesRequest,
|
|
16
|
+
ListSyncResourcesResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListSyncResourcesCommandInput
|
|
19
|
+
extends ListSyncResourcesRequest {}
|
|
20
|
+
export interface ListSyncResourcesCommandOutput
|
|
21
|
+
extends ListSyncResourcesResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListSyncResourcesCommand extends $Command<
|
|
24
|
+
ListSyncResourcesCommandInput,
|
|
25
|
+
ListSyncResourcesCommandOutput,
|
|
26
|
+
IoTTwinMakerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListSyncResourcesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListSyncResourcesCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -2,10 +2,12 @@ export * from "./BatchPutPropertyValuesCommand";
|
|
|
2
2
|
export * from "./CreateComponentTypeCommand";
|
|
3
3
|
export * from "./CreateEntityCommand";
|
|
4
4
|
export * from "./CreateSceneCommand";
|
|
5
|
+
export * from "./CreateSyncJobCommand";
|
|
5
6
|
export * from "./CreateWorkspaceCommand";
|
|
6
7
|
export * from "./DeleteComponentTypeCommand";
|
|
7
8
|
export * from "./DeleteEntityCommand";
|
|
8
9
|
export * from "./DeleteSceneCommand";
|
|
10
|
+
export * from "./DeleteSyncJobCommand";
|
|
9
11
|
export * from "./DeleteWorkspaceCommand";
|
|
10
12
|
export * from "./ExecuteQueryCommand";
|
|
11
13
|
export * from "./GetComponentTypeCommand";
|
|
@@ -14,10 +16,13 @@ export * from "./GetPricingPlanCommand";
|
|
|
14
16
|
export * from "./GetPropertyValueCommand";
|
|
15
17
|
export * from "./GetPropertyValueHistoryCommand";
|
|
16
18
|
export * from "./GetSceneCommand";
|
|
19
|
+
export * from "./GetSyncJobCommand";
|
|
17
20
|
export * from "./GetWorkspaceCommand";
|
|
18
21
|
export * from "./ListComponentTypesCommand";
|
|
19
22
|
export * from "./ListEntitiesCommand";
|
|
20
23
|
export * from "./ListScenesCommand";
|
|
24
|
+
export * from "./ListSyncJobsCommand";
|
|
25
|
+
export * from "./ListSyncResourcesCommand";
|
|
21
26
|
export * from "./ListTagsForResourceCommand";
|
|
22
27
|
export * from "./ListWorkspacesCommand";
|
|
23
28
|
export * from "./TagResourceCommand";
|
|
@@ -27,7 +27,7 @@ export declare const resolveClientEndpointParameters: <T>(
|
|
|
27
27
|
defaultSigningName: string;
|
|
28
28
|
};
|
|
29
29
|
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
-
Region
|
|
30
|
+
Region: string;
|
|
31
31
|
UseDualStack?: boolean;
|
|
32
32
|
UseFIPS?: boolean;
|
|
33
33
|
Endpoint?: string;
|