@aws-sdk/client-iottwinmaker 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +446 -135
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +261 -99
- package/dist-types/ts3.4/commands/BatchPutPropertyValuesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateComponentTypeCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateEntityCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateSceneCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteComponentTypeCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteEntityCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteSceneCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetComponentTypeCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetEntityCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetPropertyValueCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetPropertyValueHistoryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetSceneCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetWorkspaceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListComponentTypesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListScenesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateComponentTypeCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateEntityCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateSceneCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +26 -26
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/IoTTwinMakerServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +893 -1159
- package/dist-types/ts3.4/pagination/GetPropertyValueHistoryPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListComponentTypesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEntitiesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListScenesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
GetPropertyValueHistoryCommandInput,
|
|
4
|
+
GetPropertyValueHistoryCommandOutput,
|
|
5
|
+
} from "../commands/GetPropertyValueHistoryCommand";
|
|
6
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateGetPropertyValueHistory(
|
|
8
|
+
config: IoTTwinMakerPaginationConfiguration,
|
|
9
|
+
input: GetPropertyValueHistoryCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<GetPropertyValueHistoryCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { IoTTwinMaker } from "../IoTTwinMaker";
|
|
3
|
-
import { IoTTwinMakerClient } from "../IoTTwinMakerClient";
|
|
4
|
-
export interface IoTTwinMakerPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { IoTTwinMaker } from "../IoTTwinMaker";
|
|
3
|
+
import { IoTTwinMakerClient } from "../IoTTwinMakerClient";
|
|
4
|
+
export interface IoTTwinMakerPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: IoTTwinMaker | IoTTwinMakerClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListComponentTypesCommandInput,
|
|
4
|
+
ListComponentTypesCommandOutput,
|
|
5
|
+
} from "../commands/ListComponentTypesCommand";
|
|
6
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListComponentTypes(
|
|
8
|
+
config: IoTTwinMakerPaginationConfiguration,
|
|
9
|
+
input: ListComponentTypesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListComponentTypesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEntitiesCommandInput,
|
|
4
|
+
ListEntitiesCommandOutput,
|
|
5
|
+
} from "../commands/ListEntitiesCommand";
|
|
6
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListEntities(
|
|
8
|
+
config: IoTTwinMakerPaginationConfiguration,
|
|
9
|
+
input: ListEntitiesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListEntitiesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListScenesCommandInput,
|
|
4
|
+
ListScenesCommandOutput,
|
|
5
|
+
} from "../commands/ListScenesCommand";
|
|
6
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListScenes(
|
|
8
|
+
config: IoTTwinMakerPaginationConfiguration,
|
|
9
|
+
input: ListScenesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListScenesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListWorkspacesCommandInput,
|
|
4
|
+
ListWorkspacesCommandOutput,
|
|
5
|
+
} from "../commands/ListWorkspacesCommand";
|
|
6
|
+
import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListWorkspaces(
|
|
8
|
+
config: IoTTwinMakerPaginationConfiguration,
|
|
9
|
+
input: ListWorkspacesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListWorkspacesCommandOutput>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./GetPropertyValueHistoryPaginator";
|
|
2
|
-
export * from "./Interfaces";
|
|
3
|
-
export * from "./ListComponentTypesPaginator";
|
|
4
|
-
export * from "./ListEntitiesPaginator";
|
|
5
|
-
export * from "./ListScenesPaginator";
|
|
6
|
-
export * from "./ListWorkspacesPaginator";
|
|
1
|
+
export * from "./GetPropertyValueHistoryPaginator";
|
|
2
|
+
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListComponentTypesPaginator";
|
|
4
|
+
export * from "./ListEntitiesPaginator";
|
|
5
|
+
export * from "./ListScenesPaginator";
|
|
6
|
+
export * from "./ListWorkspacesPaginator";
|
|
@@ -1,80 +1,317 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
BatchPutPropertyValuesCommandInput,
|
|
8
|
+
BatchPutPropertyValuesCommandOutput,
|
|
9
|
+
} from "../commands/BatchPutPropertyValuesCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateComponentTypeCommandInput,
|
|
12
|
+
CreateComponentTypeCommandOutput,
|
|
13
|
+
} from "../commands/CreateComponentTypeCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateEntityCommandInput,
|
|
16
|
+
CreateEntityCommandOutput,
|
|
17
|
+
} from "../commands/CreateEntityCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateSceneCommandInput,
|
|
20
|
+
CreateSceneCommandOutput,
|
|
21
|
+
} from "../commands/CreateSceneCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateWorkspaceCommandInput,
|
|
24
|
+
CreateWorkspaceCommandOutput,
|
|
25
|
+
} from "../commands/CreateWorkspaceCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteComponentTypeCommandInput,
|
|
28
|
+
DeleteComponentTypeCommandOutput,
|
|
29
|
+
} from "../commands/DeleteComponentTypeCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteEntityCommandInput,
|
|
32
|
+
DeleteEntityCommandOutput,
|
|
33
|
+
} from "../commands/DeleteEntityCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteSceneCommandInput,
|
|
36
|
+
DeleteSceneCommandOutput,
|
|
37
|
+
} from "../commands/DeleteSceneCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteWorkspaceCommandInput,
|
|
40
|
+
DeleteWorkspaceCommandOutput,
|
|
41
|
+
} from "../commands/DeleteWorkspaceCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetComponentTypeCommandInput,
|
|
44
|
+
GetComponentTypeCommandOutput,
|
|
45
|
+
} from "../commands/GetComponentTypeCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetEntityCommandInput,
|
|
48
|
+
GetEntityCommandOutput,
|
|
49
|
+
} from "../commands/GetEntityCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetPropertyValueCommandInput,
|
|
52
|
+
GetPropertyValueCommandOutput,
|
|
53
|
+
} from "../commands/GetPropertyValueCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetPropertyValueHistoryCommandInput,
|
|
56
|
+
GetPropertyValueHistoryCommandOutput,
|
|
57
|
+
} from "../commands/GetPropertyValueHistoryCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetSceneCommandInput,
|
|
60
|
+
GetSceneCommandOutput,
|
|
61
|
+
} from "../commands/GetSceneCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetWorkspaceCommandInput,
|
|
64
|
+
GetWorkspaceCommandOutput,
|
|
65
|
+
} from "../commands/GetWorkspaceCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListComponentTypesCommandInput,
|
|
68
|
+
ListComponentTypesCommandOutput,
|
|
69
|
+
} from "../commands/ListComponentTypesCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListEntitiesCommandInput,
|
|
72
|
+
ListEntitiesCommandOutput,
|
|
73
|
+
} from "../commands/ListEntitiesCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListScenesCommandInput,
|
|
76
|
+
ListScenesCommandOutput,
|
|
77
|
+
} from "../commands/ListScenesCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListTagsForResourceCommandInput,
|
|
80
|
+
ListTagsForResourceCommandOutput,
|
|
81
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListWorkspacesCommandInput,
|
|
84
|
+
ListWorkspacesCommandOutput,
|
|
85
|
+
} from "../commands/ListWorkspacesCommand";
|
|
86
|
+
import {
|
|
87
|
+
TagResourceCommandInput,
|
|
88
|
+
TagResourceCommandOutput,
|
|
89
|
+
} from "../commands/TagResourceCommand";
|
|
90
|
+
import {
|
|
91
|
+
UntagResourceCommandInput,
|
|
92
|
+
UntagResourceCommandOutput,
|
|
93
|
+
} from "../commands/UntagResourceCommand";
|
|
94
|
+
import {
|
|
95
|
+
UpdateComponentTypeCommandInput,
|
|
96
|
+
UpdateComponentTypeCommandOutput,
|
|
97
|
+
} from "../commands/UpdateComponentTypeCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateEntityCommandInput,
|
|
100
|
+
UpdateEntityCommandOutput,
|
|
101
|
+
} from "../commands/UpdateEntityCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateSceneCommandInput,
|
|
104
|
+
UpdateSceneCommandOutput,
|
|
105
|
+
} from "../commands/UpdateSceneCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateWorkspaceCommandInput,
|
|
108
|
+
UpdateWorkspaceCommandOutput,
|
|
109
|
+
} from "../commands/UpdateWorkspaceCommand";
|
|
110
|
+
export declare const serializeAws_restJson1BatchPutPropertyValuesCommand: (
|
|
111
|
+
input: BatchPutPropertyValuesCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1CreateComponentTypeCommand: (
|
|
115
|
+
input: CreateComponentTypeCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_restJson1CreateEntityCommand: (
|
|
119
|
+
input: CreateEntityCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_restJson1CreateSceneCommand: (
|
|
123
|
+
input: CreateSceneCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_restJson1CreateWorkspaceCommand: (
|
|
127
|
+
input: CreateWorkspaceCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_restJson1DeleteComponentTypeCommand: (
|
|
131
|
+
input: DeleteComponentTypeCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_restJson1DeleteEntityCommand: (
|
|
135
|
+
input: DeleteEntityCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_restJson1DeleteSceneCommand: (
|
|
139
|
+
input: DeleteSceneCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_restJson1DeleteWorkspaceCommand: (
|
|
143
|
+
input: DeleteWorkspaceCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_restJson1GetComponentTypeCommand: (
|
|
147
|
+
input: GetComponentTypeCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1GetEntityCommand: (
|
|
151
|
+
input: GetEntityCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_restJson1GetPropertyValueCommand: (
|
|
155
|
+
input: GetPropertyValueCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_restJson1GetPropertyValueHistoryCommand: (
|
|
159
|
+
input: GetPropertyValueHistoryCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_restJson1GetSceneCommand: (
|
|
163
|
+
input: GetSceneCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_restJson1GetWorkspaceCommand: (
|
|
167
|
+
input: GetWorkspaceCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_restJson1ListComponentTypesCommand: (
|
|
171
|
+
input: ListComponentTypesCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_restJson1ListEntitiesCommand: (
|
|
175
|
+
input: ListEntitiesCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_restJson1ListScenesCommand: (
|
|
179
|
+
input: ListScenesCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
183
|
+
input: ListTagsForResourceCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_restJson1ListWorkspacesCommand: (
|
|
187
|
+
input: ListWorkspacesCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
191
|
+
input: TagResourceCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
195
|
+
input: UntagResourceCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_restJson1UpdateComponentTypeCommand: (
|
|
199
|
+
input: UpdateComponentTypeCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_restJson1UpdateEntityCommand: (
|
|
203
|
+
input: UpdateEntityCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const serializeAws_restJson1UpdateSceneCommand: (
|
|
207
|
+
input: UpdateSceneCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const serializeAws_restJson1UpdateWorkspaceCommand: (
|
|
211
|
+
input: UpdateWorkspaceCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const deserializeAws_restJson1BatchPutPropertyValuesCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<BatchPutPropertyValuesCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_restJson1CreateComponentTypeCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<CreateComponentTypeCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_restJson1CreateEntityCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<CreateEntityCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_restJson1CreateSceneCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<CreateSceneCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_restJson1CreateWorkspaceCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<CreateWorkspaceCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_restJson1DeleteComponentTypeCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<DeleteComponentTypeCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_restJson1DeleteEntityCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<DeleteEntityCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_restJson1DeleteSceneCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<DeleteSceneCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_restJson1DeleteWorkspaceCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<DeleteWorkspaceCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_restJson1GetComponentTypeCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<GetComponentTypeCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_restJson1GetEntityCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<GetEntityCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_restJson1GetPropertyValueCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<GetPropertyValueCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_restJson1GetPropertyValueHistoryCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<GetPropertyValueHistoryCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_restJson1GetSceneCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<GetSceneCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_restJson1GetWorkspaceCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<GetWorkspaceCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_restJson1ListComponentTypesCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<ListComponentTypesCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_restJson1ListEntitiesCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<ListEntitiesCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_restJson1ListScenesCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<ListScenesCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_restJson1ListWorkspacesCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<ListWorkspacesCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<TagResourceCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_restJson1UpdateComponentTypeCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<UpdateComponentTypeCommandOutput>;
|
|
306
|
+
export declare const deserializeAws_restJson1UpdateEntityCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<UpdateEntityCommandOutput>;
|
|
310
|
+
export declare const deserializeAws_restJson1UpdateSceneCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<UpdateSceneCommandOutput>;
|
|
314
|
+
export declare const deserializeAws_restJson1UpdateWorkspaceCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<UpdateWorkspaceCommandOutput>;
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: IoTTwinMakerClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|