@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
|
@@ -3,10 +3,12 @@ import { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput
|
|
|
3
3
|
import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "./commands/CreateComponentTypeCommand";
|
|
4
4
|
import { CreateEntityCommandInput, CreateEntityCommandOutput } from "./commands/CreateEntityCommand";
|
|
5
5
|
import { CreateSceneCommandInput, CreateSceneCommandOutput } from "./commands/CreateSceneCommand";
|
|
6
|
+
import { CreateSyncJobCommandInput, CreateSyncJobCommandOutput } from "./commands/CreateSyncJobCommand";
|
|
6
7
|
import { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "./commands/CreateWorkspaceCommand";
|
|
7
8
|
import { DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput } from "./commands/DeleteComponentTypeCommand";
|
|
8
9
|
import { DeleteEntityCommandInput, DeleteEntityCommandOutput } from "./commands/DeleteEntityCommand";
|
|
9
10
|
import { DeleteSceneCommandInput, DeleteSceneCommandOutput } from "./commands/DeleteSceneCommand";
|
|
11
|
+
import { DeleteSyncJobCommandInput, DeleteSyncJobCommandOutput } from "./commands/DeleteSyncJobCommand";
|
|
10
12
|
import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "./commands/DeleteWorkspaceCommand";
|
|
11
13
|
import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "./commands/ExecuteQueryCommand";
|
|
12
14
|
import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "./commands/GetComponentTypeCommand";
|
|
@@ -15,10 +17,13 @@ import { GetPricingPlanCommandInput, GetPricingPlanCommandOutput } from "./comma
|
|
|
15
17
|
import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "./commands/GetPropertyValueCommand";
|
|
16
18
|
import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "./commands/GetPropertyValueHistoryCommand";
|
|
17
19
|
import { GetSceneCommandInput, GetSceneCommandOutput } from "./commands/GetSceneCommand";
|
|
20
|
+
import { GetSyncJobCommandInput, GetSyncJobCommandOutput } from "./commands/GetSyncJobCommand";
|
|
18
21
|
import { GetWorkspaceCommandInput, GetWorkspaceCommandOutput } from "./commands/GetWorkspaceCommand";
|
|
19
22
|
import { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "./commands/ListComponentTypesCommand";
|
|
20
23
|
import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "./commands/ListEntitiesCommand";
|
|
21
24
|
import { ListScenesCommandInput, ListScenesCommandOutput } from "./commands/ListScenesCommand";
|
|
25
|
+
import { ListSyncJobsCommandInput, ListSyncJobsCommandOutput } from "./commands/ListSyncJobsCommand";
|
|
26
|
+
import { ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput } from "./commands/ListSyncResourcesCommand";
|
|
22
27
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
23
28
|
import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "./commands/ListWorkspacesCommand";
|
|
24
29
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
@@ -61,6 +66,12 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
61
66
|
createScene(args: CreateSceneCommandInput, options?: __HttpHandlerOptions): Promise<CreateSceneCommandOutput>;
|
|
62
67
|
createScene(args: CreateSceneCommandInput, cb: (err: any, data?: CreateSceneCommandOutput) => void): void;
|
|
63
68
|
createScene(args: CreateSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSceneCommandOutput) => void): void;
|
|
69
|
+
/**
|
|
70
|
+
* <p>This action creates a SyncJob.</p>
|
|
71
|
+
*/
|
|
72
|
+
createSyncJob(args: CreateSyncJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateSyncJobCommandOutput>;
|
|
73
|
+
createSyncJob(args: CreateSyncJobCommandInput, cb: (err: any, data?: CreateSyncJobCommandOutput) => void): void;
|
|
74
|
+
createSyncJob(args: CreateSyncJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSyncJobCommandOutput) => void): void;
|
|
64
75
|
/**
|
|
65
76
|
* <p>Creates a workplace.</p>
|
|
66
77
|
*/
|
|
@@ -85,6 +96,12 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
85
96
|
deleteScene(args: DeleteSceneCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSceneCommandOutput>;
|
|
86
97
|
deleteScene(args: DeleteSceneCommandInput, cb: (err: any, data?: DeleteSceneCommandOutput) => void): void;
|
|
87
98
|
deleteScene(args: DeleteSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSceneCommandOutput) => void): void;
|
|
99
|
+
/**
|
|
100
|
+
* <p>Delete the SyncJob.</p>
|
|
101
|
+
*/
|
|
102
|
+
deleteSyncJob(args: DeleteSyncJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSyncJobCommandOutput>;
|
|
103
|
+
deleteSyncJob(args: DeleteSyncJobCommandInput, cb: (err: any, data?: DeleteSyncJobCommandOutput) => void): void;
|
|
104
|
+
deleteSyncJob(args: DeleteSyncJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSyncJobCommandOutput) => void): void;
|
|
88
105
|
/**
|
|
89
106
|
* <p>Deletes a workspace.</p>
|
|
90
107
|
*/
|
|
@@ -136,6 +153,12 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
136
153
|
getScene(args: GetSceneCommandInput, options?: __HttpHandlerOptions): Promise<GetSceneCommandOutput>;
|
|
137
154
|
getScene(args: GetSceneCommandInput, cb: (err: any, data?: GetSceneCommandOutput) => void): void;
|
|
138
155
|
getScene(args: GetSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSceneCommandOutput) => void): void;
|
|
156
|
+
/**
|
|
157
|
+
* <p>Gets the SyncJob.</p>
|
|
158
|
+
*/
|
|
159
|
+
getSyncJob(args: GetSyncJobCommandInput, options?: __HttpHandlerOptions): Promise<GetSyncJobCommandOutput>;
|
|
160
|
+
getSyncJob(args: GetSyncJobCommandInput, cb: (err: any, data?: GetSyncJobCommandOutput) => void): void;
|
|
161
|
+
getSyncJob(args: GetSyncJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSyncJobCommandOutput) => void): void;
|
|
139
162
|
/**
|
|
140
163
|
* <p>Retrieves information about a workspace.</p>
|
|
141
164
|
*/
|
|
@@ -160,6 +183,18 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
160
183
|
listScenes(args: ListScenesCommandInput, options?: __HttpHandlerOptions): Promise<ListScenesCommandOutput>;
|
|
161
184
|
listScenes(args: ListScenesCommandInput, cb: (err: any, data?: ListScenesCommandOutput) => void): void;
|
|
162
185
|
listScenes(args: ListScenesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListScenesCommandOutput) => void): void;
|
|
186
|
+
/**
|
|
187
|
+
* <p>List all SyncJobs.</p>
|
|
188
|
+
*/
|
|
189
|
+
listSyncJobs(args: ListSyncJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListSyncJobsCommandOutput>;
|
|
190
|
+
listSyncJobs(args: ListSyncJobsCommandInput, cb: (err: any, data?: ListSyncJobsCommandOutput) => void): void;
|
|
191
|
+
listSyncJobs(args: ListSyncJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSyncJobsCommandOutput) => void): void;
|
|
192
|
+
/**
|
|
193
|
+
* <p>Lists the sync resources.</p>
|
|
194
|
+
*/
|
|
195
|
+
listSyncResources(args: ListSyncResourcesCommandInput, options?: __HttpHandlerOptions): Promise<ListSyncResourcesCommandOutput>;
|
|
196
|
+
listSyncResources(args: ListSyncResourcesCommandInput, cb: (err: any, data?: ListSyncResourcesCommandOutput) => void): void;
|
|
197
|
+
listSyncResources(args: ListSyncResourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSyncResourcesCommandOutput) => void): void;
|
|
163
198
|
/**
|
|
164
199
|
* <p>Lists all tags associated with a resource.</p>
|
|
165
200
|
*/
|
|
@@ -11,10 +11,12 @@ import { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput
|
|
|
11
11
|
import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "./commands/CreateComponentTypeCommand";
|
|
12
12
|
import { CreateEntityCommandInput, CreateEntityCommandOutput } from "./commands/CreateEntityCommand";
|
|
13
13
|
import { CreateSceneCommandInput, CreateSceneCommandOutput } from "./commands/CreateSceneCommand";
|
|
14
|
+
import { CreateSyncJobCommandInput, CreateSyncJobCommandOutput } from "./commands/CreateSyncJobCommand";
|
|
14
15
|
import { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "./commands/CreateWorkspaceCommand";
|
|
15
16
|
import { DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput } from "./commands/DeleteComponentTypeCommand";
|
|
16
17
|
import { DeleteEntityCommandInput, DeleteEntityCommandOutput } from "./commands/DeleteEntityCommand";
|
|
17
18
|
import { DeleteSceneCommandInput, DeleteSceneCommandOutput } from "./commands/DeleteSceneCommand";
|
|
19
|
+
import { DeleteSyncJobCommandInput, DeleteSyncJobCommandOutput } from "./commands/DeleteSyncJobCommand";
|
|
18
20
|
import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "./commands/DeleteWorkspaceCommand";
|
|
19
21
|
import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "./commands/ExecuteQueryCommand";
|
|
20
22
|
import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "./commands/GetComponentTypeCommand";
|
|
@@ -23,10 +25,13 @@ import { GetPricingPlanCommandInput, GetPricingPlanCommandOutput } from "./comma
|
|
|
23
25
|
import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "./commands/GetPropertyValueCommand";
|
|
24
26
|
import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "./commands/GetPropertyValueHistoryCommand";
|
|
25
27
|
import { GetSceneCommandInput, GetSceneCommandOutput } from "./commands/GetSceneCommand";
|
|
28
|
+
import { GetSyncJobCommandInput, GetSyncJobCommandOutput } from "./commands/GetSyncJobCommand";
|
|
26
29
|
import { GetWorkspaceCommandInput, GetWorkspaceCommandOutput } from "./commands/GetWorkspaceCommand";
|
|
27
30
|
import { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "./commands/ListComponentTypesCommand";
|
|
28
31
|
import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "./commands/ListEntitiesCommand";
|
|
29
32
|
import { ListScenesCommandInput, ListScenesCommandOutput } from "./commands/ListScenesCommand";
|
|
33
|
+
import { ListSyncJobsCommandInput, ListSyncJobsCommandOutput } from "./commands/ListSyncJobsCommand";
|
|
34
|
+
import { ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput } from "./commands/ListSyncResourcesCommand";
|
|
30
35
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
31
36
|
import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "./commands/ListWorkspacesCommand";
|
|
32
37
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
@@ -37,8 +42,8 @@ import { UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput } from ".
|
|
|
37
42
|
import { UpdateSceneCommandInput, UpdateSceneCommandOutput } from "./commands/UpdateSceneCommand";
|
|
38
43
|
import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "./commands/UpdateWorkspaceCommand";
|
|
39
44
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
40
|
-
export declare type ServiceInputTypes = BatchPutPropertyValuesCommandInput | CreateComponentTypeCommandInput | CreateEntityCommandInput | CreateSceneCommandInput | CreateWorkspaceCommandInput | DeleteComponentTypeCommandInput | DeleteEntityCommandInput | DeleteSceneCommandInput | DeleteWorkspaceCommandInput | ExecuteQueryCommandInput | GetComponentTypeCommandInput | GetEntityCommandInput | GetPricingPlanCommandInput | GetPropertyValueCommandInput | GetPropertyValueHistoryCommandInput | GetSceneCommandInput | GetWorkspaceCommandInput | ListComponentTypesCommandInput | ListEntitiesCommandInput | ListScenesCommandInput | ListTagsForResourceCommandInput | ListWorkspacesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateComponentTypeCommandInput | UpdateEntityCommandInput | UpdatePricingPlanCommandInput | UpdateSceneCommandInput | UpdateWorkspaceCommandInput;
|
|
41
|
-
export declare type ServiceOutputTypes = BatchPutPropertyValuesCommandOutput | CreateComponentTypeCommandOutput | CreateEntityCommandOutput | CreateSceneCommandOutput | CreateWorkspaceCommandOutput | DeleteComponentTypeCommandOutput | DeleteEntityCommandOutput | DeleteSceneCommandOutput | DeleteWorkspaceCommandOutput | ExecuteQueryCommandOutput | GetComponentTypeCommandOutput | GetEntityCommandOutput | GetPricingPlanCommandOutput | GetPropertyValueCommandOutput | GetPropertyValueHistoryCommandOutput | GetSceneCommandOutput | GetWorkspaceCommandOutput | ListComponentTypesCommandOutput | ListEntitiesCommandOutput | ListScenesCommandOutput | ListTagsForResourceCommandOutput | ListWorkspacesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateComponentTypeCommandOutput | UpdateEntityCommandOutput | UpdatePricingPlanCommandOutput | UpdateSceneCommandOutput | UpdateWorkspaceCommandOutput;
|
|
45
|
+
export declare type ServiceInputTypes = BatchPutPropertyValuesCommandInput | CreateComponentTypeCommandInput | CreateEntityCommandInput | CreateSceneCommandInput | CreateSyncJobCommandInput | CreateWorkspaceCommandInput | DeleteComponentTypeCommandInput | DeleteEntityCommandInput | DeleteSceneCommandInput | DeleteSyncJobCommandInput | DeleteWorkspaceCommandInput | ExecuteQueryCommandInput | GetComponentTypeCommandInput | GetEntityCommandInput | GetPricingPlanCommandInput | GetPropertyValueCommandInput | GetPropertyValueHistoryCommandInput | GetSceneCommandInput | GetSyncJobCommandInput | GetWorkspaceCommandInput | ListComponentTypesCommandInput | ListEntitiesCommandInput | ListScenesCommandInput | ListSyncJobsCommandInput | ListSyncResourcesCommandInput | ListTagsForResourceCommandInput | ListWorkspacesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateComponentTypeCommandInput | UpdateEntityCommandInput | UpdatePricingPlanCommandInput | UpdateSceneCommandInput | UpdateWorkspaceCommandInput;
|
|
46
|
+
export declare type ServiceOutputTypes = BatchPutPropertyValuesCommandOutput | CreateComponentTypeCommandOutput | CreateEntityCommandOutput | CreateSceneCommandOutput | CreateSyncJobCommandOutput | CreateWorkspaceCommandOutput | DeleteComponentTypeCommandOutput | DeleteEntityCommandOutput | DeleteSceneCommandOutput | DeleteSyncJobCommandOutput | DeleteWorkspaceCommandOutput | ExecuteQueryCommandOutput | GetComponentTypeCommandOutput | GetEntityCommandOutput | GetPricingPlanCommandOutput | GetPropertyValueCommandOutput | GetPropertyValueHistoryCommandOutput | GetSceneCommandOutput | GetSyncJobCommandOutput | GetWorkspaceCommandOutput | ListComponentTypesCommandOutput | ListEntitiesCommandOutput | ListScenesCommandOutput | ListSyncJobsCommandOutput | ListSyncResourcesCommandOutput | ListTagsForResourceCommandOutput | ListWorkspacesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateComponentTypeCommandOutput | UpdateEntityCommandOutput | UpdatePricingPlanCommandOutput | UpdateSceneCommandOutput | UpdateWorkspaceCommandOutput;
|
|
42
47
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
43
48
|
/**
|
|
44
49
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
5
|
+
import { CreateSyncJobRequest, CreateSyncJobResponse } from "../models/models_0";
|
|
6
|
+
export interface CreateSyncJobCommandInput extends CreateSyncJobRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface CreateSyncJobCommandOutput extends CreateSyncJobResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>This action creates a SyncJob.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { IoTTwinMakerClient, CreateSyncJobCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
16
|
+
* // const { IoTTwinMakerClient, CreateSyncJobCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
17
|
+
* const client = new IoTTwinMakerClient(config);
|
|
18
|
+
* const command = new CreateSyncJobCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link CreateSyncJobCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link CreateSyncJobCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class CreateSyncJobCommand extends $Command<CreateSyncJobCommandInput, CreateSyncJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
28
|
+
readonly input: CreateSyncJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateSyncJobCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): 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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
5
|
+
import { DeleteSyncJobRequest, DeleteSyncJobResponse } from "../models/models_0";
|
|
6
|
+
export interface DeleteSyncJobCommandInput extends DeleteSyncJobRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface DeleteSyncJobCommandOutput extends DeleteSyncJobResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Delete the SyncJob.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { IoTTwinMakerClient, DeleteSyncJobCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
16
|
+
* // const { IoTTwinMakerClient, DeleteSyncJobCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
17
|
+
* const client = new IoTTwinMakerClient(config);
|
|
18
|
+
* const command = new DeleteSyncJobCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link DeleteSyncJobCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link DeleteSyncJobCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class DeleteSyncJobCommand extends $Command<DeleteSyncJobCommandInput, DeleteSyncJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
28
|
+
readonly input: DeleteSyncJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteSyncJobCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSyncJobCommandInput, DeleteSyncJobCommandOutput>;
|
|
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
5
|
+
import { GetSyncJobRequest, GetSyncJobResponse } from "../models/models_0";
|
|
6
|
+
export interface GetSyncJobCommandInput extends GetSyncJobRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface GetSyncJobCommandOutput extends GetSyncJobResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Gets the SyncJob.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { IoTTwinMakerClient, GetSyncJobCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
16
|
+
* // const { IoTTwinMakerClient, GetSyncJobCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
17
|
+
* const client = new IoTTwinMakerClient(config);
|
|
18
|
+
* const command = new GetSyncJobCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link GetSyncJobCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link GetSyncJobCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class GetSyncJobCommand extends $Command<GetSyncJobCommandInput, GetSyncJobCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
28
|
+
readonly input: GetSyncJobCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetSyncJobCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSyncJobCommandInput, GetSyncJobCommandOutput>;
|
|
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
5
|
+
import { ListSyncJobsRequest, ListSyncJobsResponse } from "../models/models_0";
|
|
6
|
+
export interface ListSyncJobsCommandInput extends ListSyncJobsRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface ListSyncJobsCommandOutput extends ListSyncJobsResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>List all SyncJobs.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { IoTTwinMakerClient, ListSyncJobsCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
16
|
+
* // const { IoTTwinMakerClient, ListSyncJobsCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
17
|
+
* const client = new IoTTwinMakerClient(config);
|
|
18
|
+
* const command = new ListSyncJobsCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link ListSyncJobsCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link ListSyncJobsCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class ListSyncJobsCommand extends $Command<ListSyncJobsCommandInput, ListSyncJobsCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
28
|
+
readonly input: ListSyncJobsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListSyncJobsCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSyncJobsCommandInput, ListSyncJobsCommandOutput>;
|
|
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 { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
5
|
+
import { ListSyncResourcesRequest, ListSyncResourcesResponse } from "../models/models_0";
|
|
6
|
+
export interface ListSyncResourcesCommandInput extends ListSyncResourcesRequest {
|
|
7
|
+
}
|
|
8
|
+
export interface ListSyncResourcesCommandOutput extends ListSyncResourcesResponse, __MetadataBearer {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>Lists the sync resources.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { IoTTwinMakerClient, ListSyncResourcesCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
|
|
16
|
+
* // const { IoTTwinMakerClient, ListSyncResourcesCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
|
|
17
|
+
* const client = new IoTTwinMakerClient(config);
|
|
18
|
+
* const command = new ListSyncResourcesCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link ListSyncResourcesCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link ListSyncResourcesCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class ListSyncResourcesCommand extends $Command<ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
28
|
+
readonly input: ListSyncResourcesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListSyncResourcesCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSyncResourcesCommandInput, ListSyncResourcesCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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";
|
|
@@ -12,7 +12,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
|
|
|
12
12
|
defaultSigningName: string;
|
|
13
13
|
};
|
|
14
14
|
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
-
Region
|
|
15
|
+
Region: string;
|
|
16
16
|
UseDualStack?: boolean;
|
|
17
17
|
UseFIPS?: boolean;
|
|
18
18
|
Endpoint?: string;
|