@aws-sdk/client-iottwinmaker 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/IoTTwinMakerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +134 -2
- package/dist-cjs/protocols/Aws_restJson1.js +320 -1120
- package/dist-es/index.js +1 -0
- package/dist-es/models/IoTTwinMakerServiceException.js +12 -0
- package/dist-es/models/models_0.js +122 -1
- package/dist-es/protocols/Aws_restJson1.js +638 -1236
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IoTTwinMakerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +72 -41
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +135 -0
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +99 -0
- package/dist-types/ts3.4/commands/BatchPutPropertyValuesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateComponentTypeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEntityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateSceneCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteComponentTypeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEntityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteSceneCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetComponentTypeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEntityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPropertyValueCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPropertyValueHistoryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSceneCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetWorkspaceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListComponentTypesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListScenesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateComponentTypeCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEntityCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateSceneCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/IoTTwinMakerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1353 -0
- package/dist-types/ts3.4/pagination/GetPropertyValueHistoryPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListComponentTypesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListEntitiesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListScenesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +80 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from IoTTwinMaker service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class IoTTwinMakerServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Access is denied.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
8
|
-
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
13
|
}
|
|
10
14
|
/**
|
|
11
15
|
* <p>An object that uniquely identifies an entity property.</p>
|
|
@@ -58,42 +62,57 @@ export declare namespace RelationshipValue {
|
|
|
58
62
|
/**
|
|
59
63
|
* <p>An unexpected error has occurred.</p>
|
|
60
64
|
*/
|
|
61
|
-
export
|
|
62
|
-
name: "InternalServerException";
|
|
63
|
-
$fault: "server";
|
|
64
|
-
|
|
65
|
+
export declare class InternalServerException extends __BaseException {
|
|
66
|
+
readonly name: "InternalServerException";
|
|
67
|
+
readonly $fault: "server";
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
71
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
65
72
|
}
|
|
66
73
|
/**
|
|
67
74
|
* <p>The resource wasn't found.</p>
|
|
68
75
|
*/
|
|
69
|
-
export
|
|
70
|
-
name: "ResourceNotFoundException";
|
|
71
|
-
$fault: "client";
|
|
72
|
-
|
|
76
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
77
|
+
readonly name: "ResourceNotFoundException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
82
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
73
83
|
}
|
|
74
84
|
/**
|
|
75
85
|
* <p>The rate exceeds the limit.</p>
|
|
76
86
|
*/
|
|
77
|
-
export
|
|
78
|
-
name: "ThrottlingException";
|
|
79
|
-
$fault: "client";
|
|
80
|
-
|
|
87
|
+
export declare class ThrottlingException extends __BaseException {
|
|
88
|
+
readonly name: "ThrottlingException";
|
|
89
|
+
readonly $fault: "client";
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
81
94
|
}
|
|
82
95
|
/**
|
|
83
96
|
* <p>Failed</p>
|
|
84
97
|
*/
|
|
85
|
-
export
|
|
86
|
-
name: "ValidationException";
|
|
87
|
-
$fault: "client";
|
|
88
|
-
|
|
98
|
+
export declare class ValidationException extends __BaseException {
|
|
99
|
+
readonly name: "ValidationException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
104
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
89
105
|
}
|
|
90
106
|
/**
|
|
91
107
|
* <p>A conflict occurred.</p>
|
|
92
108
|
*/
|
|
93
|
-
export
|
|
94
|
-
name: "ConflictException";
|
|
95
|
-
$fault: "client";
|
|
96
|
-
|
|
109
|
+
export declare class ConflictException extends __BaseException {
|
|
110
|
+
readonly name: "ConflictException";
|
|
111
|
+
readonly $fault: "client";
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
97
116
|
}
|
|
98
117
|
/**
|
|
99
118
|
* <p>The Lambda function.</p>
|
|
@@ -215,10 +234,13 @@ export declare namespace CreateComponentTypeResponse {
|
|
|
215
234
|
/**
|
|
216
235
|
* <p>The service quota was exceeded.</p>
|
|
217
236
|
*/
|
|
218
|
-
export
|
|
219
|
-
name: "ServiceQuotaExceededException";
|
|
220
|
-
$fault: "client";
|
|
221
|
-
|
|
237
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
238
|
+
readonly name: "ServiceQuotaExceededException";
|
|
239
|
+
readonly $fault: "client";
|
|
240
|
+
/**
|
|
241
|
+
* @internal
|
|
242
|
+
*/
|
|
243
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
222
244
|
}
|
|
223
245
|
export declare enum PropertyUpdateType {
|
|
224
246
|
DELETE = "DELETE",
|
|
@@ -552,18 +574,24 @@ export declare namespace GetEntityRequest {
|
|
|
552
574
|
/**
|
|
553
575
|
* <p>The connector failed.</p>
|
|
554
576
|
*/
|
|
555
|
-
export
|
|
556
|
-
name: "ConnectorFailureException";
|
|
557
|
-
$fault: "client";
|
|
558
|
-
|
|
577
|
+
export declare class ConnectorFailureException extends __BaseException {
|
|
578
|
+
readonly name: "ConnectorFailureException";
|
|
579
|
+
readonly $fault: "client";
|
|
580
|
+
/**
|
|
581
|
+
* @internal
|
|
582
|
+
*/
|
|
583
|
+
constructor(opts: __ExceptionOptionType<ConnectorFailureException, __BaseException>);
|
|
559
584
|
}
|
|
560
585
|
/**
|
|
561
586
|
* <p>The connector timed out.</p>
|
|
562
587
|
*/
|
|
563
|
-
export
|
|
564
|
-
name: "ConnectorTimeoutException";
|
|
565
|
-
$fault: "client";
|
|
566
|
-
|
|
588
|
+
export declare class ConnectorTimeoutException extends __BaseException {
|
|
589
|
+
readonly name: "ConnectorTimeoutException";
|
|
590
|
+
readonly $fault: "client";
|
|
591
|
+
/**
|
|
592
|
+
* @internal
|
|
593
|
+
*/
|
|
594
|
+
constructor(opts: __ExceptionOptionType<ConnectorTimeoutException, __BaseException>);
|
|
567
595
|
}
|
|
568
596
|
export interface GetPropertyValueRequest {
|
|
569
597
|
/**
|
|
@@ -1181,10 +1209,13 @@ export declare namespace TagResourceResponse {
|
|
|
1181
1209
|
/**
|
|
1182
1210
|
* <p>The number of tags exceeds the limit.</p>
|
|
1183
1211
|
*/
|
|
1184
|
-
export
|
|
1185
|
-
name: "TooManyTagsException";
|
|
1186
|
-
$fault: "client";
|
|
1187
|
-
|
|
1212
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
1213
|
+
readonly name: "TooManyTagsException";
|
|
1214
|
+
readonly $fault: "client";
|
|
1215
|
+
/**
|
|
1216
|
+
* @internal
|
|
1217
|
+
*/
|
|
1218
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1188
1219
|
}
|
|
1189
1220
|
export interface UntagResourceRequest {
|
|
1190
1221
|
/**
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput } from "./commands/BatchPutPropertyValuesCommand";
|
|
3
|
+
import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "./commands/CreateComponentTypeCommand";
|
|
4
|
+
import { CreateEntityCommandInput, CreateEntityCommandOutput } from "./commands/CreateEntityCommand";
|
|
5
|
+
import { CreateSceneCommandInput, CreateSceneCommandOutput } from "./commands/CreateSceneCommand";
|
|
6
|
+
import { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "./commands/CreateWorkspaceCommand";
|
|
7
|
+
import { DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput } from "./commands/DeleteComponentTypeCommand";
|
|
8
|
+
import { DeleteEntityCommandInput, DeleteEntityCommandOutput } from "./commands/DeleteEntityCommand";
|
|
9
|
+
import { DeleteSceneCommandInput, DeleteSceneCommandOutput } from "./commands/DeleteSceneCommand";
|
|
10
|
+
import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "./commands/DeleteWorkspaceCommand";
|
|
11
|
+
import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "./commands/GetComponentTypeCommand";
|
|
12
|
+
import { GetEntityCommandInput, GetEntityCommandOutput } from "./commands/GetEntityCommand";
|
|
13
|
+
import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "./commands/GetPropertyValueCommand";
|
|
14
|
+
import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "./commands/GetPropertyValueHistoryCommand";
|
|
15
|
+
import { GetSceneCommandInput, GetSceneCommandOutput } from "./commands/GetSceneCommand";
|
|
16
|
+
import { GetWorkspaceCommandInput, GetWorkspaceCommandOutput } from "./commands/GetWorkspaceCommand";
|
|
17
|
+
import { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "./commands/ListComponentTypesCommand";
|
|
18
|
+
import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "./commands/ListEntitiesCommand";
|
|
19
|
+
import { ListScenesCommandInput, ListScenesCommandOutput } from "./commands/ListScenesCommand";
|
|
20
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
21
|
+
import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "./commands/ListWorkspacesCommand";
|
|
22
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
23
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
24
|
+
import { UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput } from "./commands/UpdateComponentTypeCommand";
|
|
25
|
+
import { UpdateEntityCommandInput, UpdateEntityCommandOutput } from "./commands/UpdateEntityCommand";
|
|
26
|
+
import { UpdateSceneCommandInput, UpdateSceneCommandOutput } from "./commands/UpdateSceneCommand";
|
|
27
|
+
import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "./commands/UpdateWorkspaceCommand";
|
|
28
|
+
import { IoTTwinMakerClient } from "./IoTTwinMakerClient";
|
|
29
|
+
|
|
30
|
+
export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
31
|
+
|
|
32
|
+
batchPutPropertyValues(args: BatchPutPropertyValuesCommandInput, options?: __HttpHandlerOptions): Promise<BatchPutPropertyValuesCommandOutput>;
|
|
33
|
+
batchPutPropertyValues(args: BatchPutPropertyValuesCommandInput, cb: (err: any, data?: BatchPutPropertyValuesCommandOutput) => void): void;
|
|
34
|
+
batchPutPropertyValues(args: BatchPutPropertyValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchPutPropertyValuesCommandOutput) => void): void;
|
|
35
|
+
|
|
36
|
+
createComponentType(args: CreateComponentTypeCommandInput, options?: __HttpHandlerOptions): Promise<CreateComponentTypeCommandOutput>;
|
|
37
|
+
createComponentType(args: CreateComponentTypeCommandInput, cb: (err: any, data?: CreateComponentTypeCommandOutput) => void): void;
|
|
38
|
+
createComponentType(args: CreateComponentTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateComponentTypeCommandOutput) => void): void;
|
|
39
|
+
|
|
40
|
+
createEntity(args: CreateEntityCommandInput, options?: __HttpHandlerOptions): Promise<CreateEntityCommandOutput>;
|
|
41
|
+
createEntity(args: CreateEntityCommandInput, cb: (err: any, data?: CreateEntityCommandOutput) => void): void;
|
|
42
|
+
createEntity(args: CreateEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEntityCommandOutput) => void): void;
|
|
43
|
+
|
|
44
|
+
createScene(args: CreateSceneCommandInput, options?: __HttpHandlerOptions): Promise<CreateSceneCommandOutput>;
|
|
45
|
+
createScene(args: CreateSceneCommandInput, cb: (err: any, data?: CreateSceneCommandOutput) => void): void;
|
|
46
|
+
createScene(args: CreateSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSceneCommandOutput) => void): void;
|
|
47
|
+
|
|
48
|
+
createWorkspace(args: CreateWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkspaceCommandOutput>;
|
|
49
|
+
createWorkspace(args: CreateWorkspaceCommandInput, cb: (err: any, data?: CreateWorkspaceCommandOutput) => void): void;
|
|
50
|
+
createWorkspace(args: CreateWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkspaceCommandOutput) => void): void;
|
|
51
|
+
|
|
52
|
+
deleteComponentType(args: DeleteComponentTypeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteComponentTypeCommandOutput>;
|
|
53
|
+
deleteComponentType(args: DeleteComponentTypeCommandInput, cb: (err: any, data?: DeleteComponentTypeCommandOutput) => void): void;
|
|
54
|
+
deleteComponentType(args: DeleteComponentTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteComponentTypeCommandOutput) => void): void;
|
|
55
|
+
|
|
56
|
+
deleteEntity(args: DeleteEntityCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEntityCommandOutput>;
|
|
57
|
+
deleteEntity(args: DeleteEntityCommandInput, cb: (err: any, data?: DeleteEntityCommandOutput) => void): void;
|
|
58
|
+
deleteEntity(args: DeleteEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEntityCommandOutput) => void): void;
|
|
59
|
+
|
|
60
|
+
deleteScene(args: DeleteSceneCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSceneCommandOutput>;
|
|
61
|
+
deleteScene(args: DeleteSceneCommandInput, cb: (err: any, data?: DeleteSceneCommandOutput) => void): void;
|
|
62
|
+
deleteScene(args: DeleteSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSceneCommandOutput) => void): void;
|
|
63
|
+
|
|
64
|
+
deleteWorkspace(args: DeleteWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkspaceCommandOutput>;
|
|
65
|
+
deleteWorkspace(args: DeleteWorkspaceCommandInput, cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void): void;
|
|
66
|
+
deleteWorkspace(args: DeleteWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void): void;
|
|
67
|
+
|
|
68
|
+
getComponentType(args: GetComponentTypeCommandInput, options?: __HttpHandlerOptions): Promise<GetComponentTypeCommandOutput>;
|
|
69
|
+
getComponentType(args: GetComponentTypeCommandInput, cb: (err: any, data?: GetComponentTypeCommandOutput) => void): void;
|
|
70
|
+
getComponentType(args: GetComponentTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentTypeCommandOutput) => void): void;
|
|
71
|
+
|
|
72
|
+
getEntity(args: GetEntityCommandInput, options?: __HttpHandlerOptions): Promise<GetEntityCommandOutput>;
|
|
73
|
+
getEntity(args: GetEntityCommandInput, cb: (err: any, data?: GetEntityCommandOutput) => void): void;
|
|
74
|
+
getEntity(args: GetEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEntityCommandOutput) => void): void;
|
|
75
|
+
|
|
76
|
+
getPropertyValue(args: GetPropertyValueCommandInput, options?: __HttpHandlerOptions): Promise<GetPropertyValueCommandOutput>;
|
|
77
|
+
getPropertyValue(args: GetPropertyValueCommandInput, cb: (err: any, data?: GetPropertyValueCommandOutput) => void): void;
|
|
78
|
+
getPropertyValue(args: GetPropertyValueCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPropertyValueCommandOutput) => void): void;
|
|
79
|
+
|
|
80
|
+
getPropertyValueHistory(args: GetPropertyValueHistoryCommandInput, options?: __HttpHandlerOptions): Promise<GetPropertyValueHistoryCommandOutput>;
|
|
81
|
+
getPropertyValueHistory(args: GetPropertyValueHistoryCommandInput, cb: (err: any, data?: GetPropertyValueHistoryCommandOutput) => void): void;
|
|
82
|
+
getPropertyValueHistory(args: GetPropertyValueHistoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPropertyValueHistoryCommandOutput) => void): void;
|
|
83
|
+
|
|
84
|
+
getScene(args: GetSceneCommandInput, options?: __HttpHandlerOptions): Promise<GetSceneCommandOutput>;
|
|
85
|
+
getScene(args: GetSceneCommandInput, cb: (err: any, data?: GetSceneCommandOutput) => void): void;
|
|
86
|
+
getScene(args: GetSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSceneCommandOutput) => void): void;
|
|
87
|
+
|
|
88
|
+
getWorkspace(args: GetWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkspaceCommandOutput>;
|
|
89
|
+
getWorkspace(args: GetWorkspaceCommandInput, cb: (err: any, data?: GetWorkspaceCommandOutput) => void): void;
|
|
90
|
+
getWorkspace(args: GetWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkspaceCommandOutput) => void): void;
|
|
91
|
+
|
|
92
|
+
listComponentTypes(args: ListComponentTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentTypesCommandOutput>;
|
|
93
|
+
listComponentTypes(args: ListComponentTypesCommandInput, cb: (err: any, data?: ListComponentTypesCommandOutput) => void): void;
|
|
94
|
+
listComponentTypes(args: ListComponentTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentTypesCommandOutput) => void): void;
|
|
95
|
+
|
|
96
|
+
listEntities(args: ListEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListEntitiesCommandOutput>;
|
|
97
|
+
listEntities(args: ListEntitiesCommandInput, cb: (err: any, data?: ListEntitiesCommandOutput) => void): void;
|
|
98
|
+
listEntities(args: ListEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEntitiesCommandOutput) => void): void;
|
|
99
|
+
|
|
100
|
+
listScenes(args: ListScenesCommandInput, options?: __HttpHandlerOptions): Promise<ListScenesCommandOutput>;
|
|
101
|
+
listScenes(args: ListScenesCommandInput, cb: (err: any, data?: ListScenesCommandOutput) => void): void;
|
|
102
|
+
listScenes(args: ListScenesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListScenesCommandOutput) => void): void;
|
|
103
|
+
|
|
104
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
105
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
106
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
107
|
+
|
|
108
|
+
listWorkspaces(args: ListWorkspacesCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkspacesCommandOutput>;
|
|
109
|
+
listWorkspaces(args: ListWorkspacesCommandInput, cb: (err: any, data?: ListWorkspacesCommandOutput) => void): void;
|
|
110
|
+
listWorkspaces(args: ListWorkspacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkspacesCommandOutput) => void): void;
|
|
111
|
+
|
|
112
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
113
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
114
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
115
|
+
|
|
116
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
117
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
118
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
119
|
+
|
|
120
|
+
updateComponentType(args: UpdateComponentTypeCommandInput, options?: __HttpHandlerOptions): Promise<UpdateComponentTypeCommandOutput>;
|
|
121
|
+
updateComponentType(args: UpdateComponentTypeCommandInput, cb: (err: any, data?: UpdateComponentTypeCommandOutput) => void): void;
|
|
122
|
+
updateComponentType(args: UpdateComponentTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateComponentTypeCommandOutput) => void): void;
|
|
123
|
+
|
|
124
|
+
updateEntity(args: UpdateEntityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEntityCommandOutput>;
|
|
125
|
+
updateEntity(args: UpdateEntityCommandInput, cb: (err: any, data?: UpdateEntityCommandOutput) => void): void;
|
|
126
|
+
updateEntity(args: UpdateEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEntityCommandOutput) => void): void;
|
|
127
|
+
|
|
128
|
+
updateScene(args: UpdateSceneCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSceneCommandOutput>;
|
|
129
|
+
updateScene(args: UpdateSceneCommandInput, cb: (err: any, data?: UpdateSceneCommandOutput) => void): void;
|
|
130
|
+
updateScene(args: UpdateSceneCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSceneCommandOutput) => void): void;
|
|
131
|
+
|
|
132
|
+
updateWorkspace(args: UpdateWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkspaceCommandOutput>;
|
|
133
|
+
updateWorkspace(args: UpdateWorkspaceCommandInput, cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void): void;
|
|
134
|
+
updateWorkspace(args: UpdateWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void): void;
|
|
135
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput } from "./commands/BatchPutPropertyValuesCommand";
|
|
10
|
+
import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "./commands/CreateComponentTypeCommand";
|
|
11
|
+
import { CreateEntityCommandInput, CreateEntityCommandOutput } from "./commands/CreateEntityCommand";
|
|
12
|
+
import { CreateSceneCommandInput, CreateSceneCommandOutput } from "./commands/CreateSceneCommand";
|
|
13
|
+
import { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "./commands/CreateWorkspaceCommand";
|
|
14
|
+
import { DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput } from "./commands/DeleteComponentTypeCommand";
|
|
15
|
+
import { DeleteEntityCommandInput, DeleteEntityCommandOutput } from "./commands/DeleteEntityCommand";
|
|
16
|
+
import { DeleteSceneCommandInput, DeleteSceneCommandOutput } from "./commands/DeleteSceneCommand";
|
|
17
|
+
import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "./commands/DeleteWorkspaceCommand";
|
|
18
|
+
import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "./commands/GetComponentTypeCommand";
|
|
19
|
+
import { GetEntityCommandInput, GetEntityCommandOutput } from "./commands/GetEntityCommand";
|
|
20
|
+
import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "./commands/GetPropertyValueCommand";
|
|
21
|
+
import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "./commands/GetPropertyValueHistoryCommand";
|
|
22
|
+
import { GetSceneCommandInput, GetSceneCommandOutput } from "./commands/GetSceneCommand";
|
|
23
|
+
import { GetWorkspaceCommandInput, GetWorkspaceCommandOutput } from "./commands/GetWorkspaceCommand";
|
|
24
|
+
import { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "./commands/ListComponentTypesCommand";
|
|
25
|
+
import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "./commands/ListEntitiesCommand";
|
|
26
|
+
import { ListScenesCommandInput, ListScenesCommandOutput } from "./commands/ListScenesCommand";
|
|
27
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
28
|
+
import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "./commands/ListWorkspacesCommand";
|
|
29
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
30
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
31
|
+
import { UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput } from "./commands/UpdateComponentTypeCommand";
|
|
32
|
+
import { UpdateEntityCommandInput, UpdateEntityCommandOutput } from "./commands/UpdateEntityCommand";
|
|
33
|
+
import { UpdateSceneCommandInput, UpdateSceneCommandOutput } from "./commands/UpdateSceneCommand";
|
|
34
|
+
import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "./commands/UpdateWorkspaceCommand";
|
|
35
|
+
export declare type ServiceInputTypes = BatchPutPropertyValuesCommandInput | CreateComponentTypeCommandInput | CreateEntityCommandInput | CreateSceneCommandInput | CreateWorkspaceCommandInput | DeleteComponentTypeCommandInput | DeleteEntityCommandInput | DeleteSceneCommandInput | DeleteWorkspaceCommandInput | GetComponentTypeCommandInput | GetEntityCommandInput | GetPropertyValueCommandInput | GetPropertyValueHistoryCommandInput | GetSceneCommandInput | GetWorkspaceCommandInput | ListComponentTypesCommandInput | ListEntitiesCommandInput | ListScenesCommandInput | ListTagsForResourceCommandInput | ListWorkspacesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateComponentTypeCommandInput | UpdateEntityCommandInput | UpdateSceneCommandInput | UpdateWorkspaceCommandInput;
|
|
36
|
+
export declare type ServiceOutputTypes = BatchPutPropertyValuesCommandOutput | CreateComponentTypeCommandOutput | CreateEntityCommandOutput | CreateSceneCommandOutput | CreateWorkspaceCommandOutput | DeleteComponentTypeCommandOutput | DeleteEntityCommandOutput | DeleteSceneCommandOutput | DeleteWorkspaceCommandOutput | GetComponentTypeCommandOutput | GetEntityCommandOutput | GetPropertyValueCommandOutput | GetPropertyValueHistoryCommandOutput | GetSceneCommandOutput | GetWorkspaceCommandOutput | ListComponentTypesCommandOutput | ListEntitiesCommandOutput | ListScenesCommandOutput | ListTagsForResourceCommandOutput | ListWorkspacesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateComponentTypeCommandOutput | UpdateEntityCommandOutput | UpdateSceneCommandOutput | UpdateWorkspaceCommandOutput;
|
|
37
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
38
|
+
|
|
39
|
+
requestHandler?: __HttpHandler;
|
|
40
|
+
|
|
41
|
+
sha256?: __HashConstructor;
|
|
42
|
+
|
|
43
|
+
urlParser?: __UrlParser;
|
|
44
|
+
|
|
45
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
46
|
+
|
|
47
|
+
streamCollector?: __StreamCollector;
|
|
48
|
+
|
|
49
|
+
base64Decoder?: __Decoder;
|
|
50
|
+
|
|
51
|
+
base64Encoder?: __Encoder;
|
|
52
|
+
|
|
53
|
+
utf8Decoder?: __Decoder;
|
|
54
|
+
|
|
55
|
+
utf8Encoder?: __Encoder;
|
|
56
|
+
|
|
57
|
+
runtime?: string;
|
|
58
|
+
|
|
59
|
+
disableHostPrefix?: boolean;
|
|
60
|
+
|
|
61
|
+
maxAttempts?: number | __Provider<number>;
|
|
62
|
+
|
|
63
|
+
retryMode?: string | __Provider<string>;
|
|
64
|
+
|
|
65
|
+
logger?: __Logger;
|
|
66
|
+
|
|
67
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
68
|
+
|
|
69
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
70
|
+
|
|
71
|
+
serviceId?: string;
|
|
72
|
+
|
|
73
|
+
region?: string | __Provider<string>;
|
|
74
|
+
|
|
75
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
76
|
+
|
|
77
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
78
|
+
|
|
79
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
80
|
+
|
|
81
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
82
|
+
}
|
|
83
|
+
declare type IoTTwinMakerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
84
|
+
|
|
85
|
+
export interface IoTTwinMakerClientConfig extends IoTTwinMakerClientConfigType {
|
|
86
|
+
}
|
|
87
|
+
declare type IoTTwinMakerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
88
|
+
|
|
89
|
+
export interface IoTTwinMakerClientResolvedConfig extends IoTTwinMakerClientResolvedConfigType {
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export declare class IoTTwinMakerClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, IoTTwinMakerClientResolvedConfig> {
|
|
93
|
+
|
|
94
|
+
readonly config: IoTTwinMakerClientResolvedConfig;
|
|
95
|
+
constructor(configuration: IoTTwinMakerClientConfig);
|
|
96
|
+
|
|
97
|
+
destroy(): void;
|
|
98
|
+
}
|
|
99
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { BatchPutPropertyValuesRequest, BatchPutPropertyValuesResponse } from "../models/models_0";
|
|
5
|
+
export interface BatchPutPropertyValuesCommandInput extends BatchPutPropertyValuesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface BatchPutPropertyValuesCommandOutput extends BatchPutPropertyValuesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class BatchPutPropertyValuesCommand extends $Command<BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: BatchPutPropertyValuesCommandInput;
|
|
12
|
+
constructor(input: BatchPutPropertyValuesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { CreateComponentTypeRequest, CreateComponentTypeResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateComponentTypeCommandInput extends CreateComponentTypeRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateComponentTypeCommandOutput extends CreateComponentTypeResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateComponentTypeCommand extends $Command<CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateComponentTypeCommandInput;
|
|
12
|
+
constructor(input: CreateComponentTypeCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { CreateEntityRequest, CreateEntityResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateEntityCommandInput extends CreateEntityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateEntityCommandOutput extends CreateEntityResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateEntityCommand extends $Command<CreateEntityCommandInput, CreateEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateEntityCommandInput;
|
|
12
|
+
constructor(input: CreateEntityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateEntityCommandInput, CreateEntityCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { CreateSceneRequest, CreateSceneResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateSceneCommandInput extends CreateSceneRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateSceneCommandOutput extends CreateSceneResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateSceneCommand extends $Command<CreateSceneCommandInput, CreateSceneCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateSceneCommandInput;
|
|
12
|
+
constructor(input: CreateSceneCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSceneCommandInput, CreateSceneCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { CreateWorkspaceRequest, CreateWorkspaceResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateWorkspaceCommandInput extends CreateWorkspaceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateWorkspaceCommand extends $Command<CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateWorkspaceCommandInput;
|
|
12
|
+
constructor(input: CreateWorkspaceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { DeleteComponentTypeRequest, DeleteComponentTypeResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteComponentTypeCommandInput extends DeleteComponentTypeRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteComponentTypeCommandOutput extends DeleteComponentTypeResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteComponentTypeCommand extends $Command<DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteComponentTypeCommandInput;
|
|
12
|
+
constructor(input: DeleteComponentTypeCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { DeleteEntityRequest, DeleteEntityResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteEntityCommandInput extends DeleteEntityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteEntityCommandOutput extends DeleteEntityResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteEntityCommand extends $Command<DeleteEntityCommandInput, DeleteEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteEntityCommandInput;
|
|
12
|
+
constructor(input: DeleteEntityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEntityCommandInput, DeleteEntityCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { DeleteSceneRequest, DeleteSceneResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteSceneCommandInput extends DeleteSceneRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteSceneCommandOutput extends DeleteSceneResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteSceneCommand extends $Command<DeleteSceneCommandInput, DeleteSceneCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteSceneCommandInput;
|
|
12
|
+
constructor(input: DeleteSceneCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSceneCommandInput, DeleteSceneCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { DeleteWorkspaceRequest, DeleteWorkspaceResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteWorkspaceCommandInput extends DeleteWorkspaceRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteWorkspaceCommandOutput extends DeleteWorkspaceResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteWorkspaceCommand extends $Command<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteWorkspaceCommandInput;
|
|
12
|
+
constructor(input: DeleteWorkspaceCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { GetComponentTypeRequest, GetComponentTypeResponse } from "../models/models_0";
|
|
5
|
+
export interface GetComponentTypeCommandInput extends GetComponentTypeRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetComponentTypeCommandOutput extends GetComponentTypeResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetComponentTypeCommand extends $Command<GetComponentTypeCommandInput, GetComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: GetComponentTypeCommandInput;
|
|
12
|
+
constructor(input: GetComponentTypeCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetComponentTypeCommandInput, GetComponentTypeCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
|
|
4
|
+
import { GetEntityRequest, GetEntityResponse } from "../models/models_0";
|
|
5
|
+
export interface GetEntityCommandInput extends GetEntityRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetEntityCommandOutput extends GetEntityResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetEntityCommand extends $Command<GetEntityCommandInput, GetEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
|
|
11
|
+
readonly input: GetEntityCommandInput;
|
|
12
|
+
constructor(input: GetEntityCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEntityCommandInput, GetEntityCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|