@aws-sdk/client-iottwinmaker 3.211.0 → 3.212.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 +45 -0
- package/dist-cjs/commands/ExecuteQueryCommand.js +46 -0
- package/dist-cjs/commands/GetPricingPlanCommand.js +46 -0
- package/dist-cjs/commands/UpdatePricingPlanCommand.js +46 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +129 -9
- package/dist-cjs/pagination/ExecuteQueryPaginator.js +36 -0
- package/dist-cjs/pagination/GetPropertyValuePaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +540 -74
- package/dist-es/IoTTwinMaker.js +45 -0
- package/dist-es/commands/ExecuteQueryCommand.js +42 -0
- package/dist-es/commands/GetPricingPlanCommand.js +42 -0
- package/dist-es/commands/UpdatePricingPlanCommand.js +42 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +107 -4
- package/dist-es/pagination/ExecuteQueryPaginator.js +32 -0
- package/dist-es/pagination/GetPropertyValuePaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +533 -73
- package/dist-types/IoTTwinMaker.d.ts +21 -0
- package/dist-types/IoTTwinMakerClient.d.ts +5 -2
- package/dist-types/commands/ExecuteQueryCommand.d.ts +37 -0
- package/dist-types/commands/GetPricingPlanCommand.d.ts +37 -0
- package/dist-types/commands/UpdatePricingPlanCommand.d.ts +37 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +424 -35
- package/dist-types/pagination/ExecuteQueryPaginator.d.ts +4 -0
- package/dist-types/pagination/GetPropertyValuePaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +51 -0
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetPricingPlanCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdatePricingPlanCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +182 -14
- package/dist-types/ts3.4/pagination/ExecuteQueryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/GetPropertyValuePaginator.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 +36 -0
- package/package.json +28 -28
|
@@ -9,8 +9,10 @@ import { DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput } fro
|
|
|
9
9
|
import { DeleteEntityCommandInput, DeleteEntityCommandOutput } from "../commands/DeleteEntityCommand";
|
|
10
10
|
import { DeleteSceneCommandInput, DeleteSceneCommandOutput } from "../commands/DeleteSceneCommand";
|
|
11
11
|
import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "../commands/DeleteWorkspaceCommand";
|
|
12
|
+
import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "../commands/ExecuteQueryCommand";
|
|
12
13
|
import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "../commands/GetComponentTypeCommand";
|
|
13
14
|
import { GetEntityCommandInput, GetEntityCommandOutput } from "../commands/GetEntityCommand";
|
|
15
|
+
import { GetPricingPlanCommandInput, GetPricingPlanCommandOutput } from "../commands/GetPricingPlanCommand";
|
|
14
16
|
import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "../commands/GetPropertyValueCommand";
|
|
15
17
|
import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "../commands/GetPropertyValueHistoryCommand";
|
|
16
18
|
import { GetSceneCommandInput, GetSceneCommandOutput } from "../commands/GetSceneCommand";
|
|
@@ -24,6 +26,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/T
|
|
|
24
26
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
25
27
|
import { UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput } from "../commands/UpdateComponentTypeCommand";
|
|
26
28
|
import { UpdateEntityCommandInput, UpdateEntityCommandOutput } from "../commands/UpdateEntityCommand";
|
|
29
|
+
import { UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput } from "../commands/UpdatePricingPlanCommand";
|
|
27
30
|
import { UpdateSceneCommandInput, UpdateSceneCommandOutput } from "../commands/UpdateSceneCommand";
|
|
28
31
|
import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "../commands/UpdateWorkspaceCommand";
|
|
29
32
|
export declare const serializeAws_restJson1BatchPutPropertyValuesCommand: (input: BatchPutPropertyValuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -35,8 +38,10 @@ export declare const serializeAws_restJson1DeleteComponentTypeCommand: (input: D
|
|
|
35
38
|
export declare const serializeAws_restJson1DeleteEntityCommand: (input: DeleteEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
39
|
export declare const serializeAws_restJson1DeleteSceneCommand: (input: DeleteSceneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
40
|
export declare const serializeAws_restJson1DeleteWorkspaceCommand: (input: DeleteWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const serializeAws_restJson1ExecuteQueryCommand: (input: ExecuteQueryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
42
|
export declare const serializeAws_restJson1GetComponentTypeCommand: (input: GetComponentTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
43
|
export declare const serializeAws_restJson1GetEntityCommand: (input: GetEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
+
export declare const serializeAws_restJson1GetPricingPlanCommand: (input: GetPricingPlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
45
|
export declare const serializeAws_restJson1GetPropertyValueCommand: (input: GetPropertyValueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
46
|
export declare const serializeAws_restJson1GetPropertyValueHistoryCommand: (input: GetPropertyValueHistoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
47
|
export declare const serializeAws_restJson1GetSceneCommand: (input: GetSceneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -50,6 +55,7 @@ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResour
|
|
|
50
55
|
export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
56
|
export declare const serializeAws_restJson1UpdateComponentTypeCommand: (input: UpdateComponentTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
57
|
export declare const serializeAws_restJson1UpdateEntityCommand: (input: UpdateEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const serializeAws_restJson1UpdatePricingPlanCommand: (input: UpdatePricingPlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
59
|
export declare const serializeAws_restJson1UpdateSceneCommand: (input: UpdateSceneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
60
|
export declare const serializeAws_restJson1UpdateWorkspaceCommand: (input: UpdateWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
61
|
export declare const deserializeAws_restJson1BatchPutPropertyValuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchPutPropertyValuesCommandOutput>;
|
|
@@ -61,8 +67,10 @@ export declare const deserializeAws_restJson1DeleteComponentTypeCommand: (output
|
|
|
61
67
|
export declare const deserializeAws_restJson1DeleteEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEntityCommandOutput>;
|
|
62
68
|
export declare const deserializeAws_restJson1DeleteSceneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSceneCommandOutput>;
|
|
63
69
|
export declare const deserializeAws_restJson1DeleteWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkspaceCommandOutput>;
|
|
70
|
+
export declare const deserializeAws_restJson1ExecuteQueryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExecuteQueryCommandOutput>;
|
|
64
71
|
export declare const deserializeAws_restJson1GetComponentTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentTypeCommandOutput>;
|
|
65
72
|
export declare const deserializeAws_restJson1GetEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEntityCommandOutput>;
|
|
73
|
+
export declare const deserializeAws_restJson1GetPricingPlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPricingPlanCommandOutput>;
|
|
66
74
|
export declare const deserializeAws_restJson1GetPropertyValueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPropertyValueCommandOutput>;
|
|
67
75
|
export declare const deserializeAws_restJson1GetPropertyValueHistoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPropertyValueHistoryCommandOutput>;
|
|
68
76
|
export declare const deserializeAws_restJson1GetSceneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSceneCommandOutput>;
|
|
@@ -76,5 +84,6 @@ export declare const deserializeAws_restJson1TagResourceCommand: (output: __Http
|
|
|
76
84
|
export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
77
85
|
export declare const deserializeAws_restJson1UpdateComponentTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateComponentTypeCommandOutput>;
|
|
78
86
|
export declare const deserializeAws_restJson1UpdateEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEntityCommandOutput>;
|
|
87
|
+
export declare const deserializeAws_restJson1UpdatePricingPlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdatePricingPlanCommandOutput>;
|
|
79
88
|
export declare const deserializeAws_restJson1UpdateSceneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSceneCommandOutput>;
|
|
80
89
|
export declare const deserializeAws_restJson1UpdateWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWorkspaceCommandOutput>;
|
|
@@ -35,6 +35,10 @@ import {
|
|
|
35
35
|
DeleteWorkspaceCommandInput,
|
|
36
36
|
DeleteWorkspaceCommandOutput,
|
|
37
37
|
} from "./commands/DeleteWorkspaceCommand";
|
|
38
|
+
import {
|
|
39
|
+
ExecuteQueryCommandInput,
|
|
40
|
+
ExecuteQueryCommandOutput,
|
|
41
|
+
} from "./commands/ExecuteQueryCommand";
|
|
38
42
|
import {
|
|
39
43
|
GetComponentTypeCommandInput,
|
|
40
44
|
GetComponentTypeCommandOutput,
|
|
@@ -43,6 +47,10 @@ import {
|
|
|
43
47
|
GetEntityCommandInput,
|
|
44
48
|
GetEntityCommandOutput,
|
|
45
49
|
} from "./commands/GetEntityCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetPricingPlanCommandInput,
|
|
52
|
+
GetPricingPlanCommandOutput,
|
|
53
|
+
} from "./commands/GetPricingPlanCommand";
|
|
46
54
|
import {
|
|
47
55
|
GetPropertyValueCommandInput,
|
|
48
56
|
GetPropertyValueCommandOutput,
|
|
@@ -95,6 +103,10 @@ import {
|
|
|
95
103
|
UpdateEntityCommandInput,
|
|
96
104
|
UpdateEntityCommandOutput,
|
|
97
105
|
} from "./commands/UpdateEntityCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdatePricingPlanCommandInput,
|
|
108
|
+
UpdatePricingPlanCommandOutput,
|
|
109
|
+
} from "./commands/UpdatePricingPlanCommand";
|
|
98
110
|
import {
|
|
99
111
|
UpdateSceneCommandInput,
|
|
100
112
|
UpdateSceneCommandOutput,
|
|
@@ -222,6 +234,19 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
222
234
|
options: __HttpHandlerOptions,
|
|
223
235
|
cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void
|
|
224
236
|
): void;
|
|
237
|
+
executeQuery(
|
|
238
|
+
args: ExecuteQueryCommandInput,
|
|
239
|
+
options?: __HttpHandlerOptions
|
|
240
|
+
): Promise<ExecuteQueryCommandOutput>;
|
|
241
|
+
executeQuery(
|
|
242
|
+
args: ExecuteQueryCommandInput,
|
|
243
|
+
cb: (err: any, data?: ExecuteQueryCommandOutput) => void
|
|
244
|
+
): void;
|
|
245
|
+
executeQuery(
|
|
246
|
+
args: ExecuteQueryCommandInput,
|
|
247
|
+
options: __HttpHandlerOptions,
|
|
248
|
+
cb: (err: any, data?: ExecuteQueryCommandOutput) => void
|
|
249
|
+
): void;
|
|
225
250
|
getComponentType(
|
|
226
251
|
args: GetComponentTypeCommandInput,
|
|
227
252
|
options?: __HttpHandlerOptions
|
|
@@ -248,6 +273,19 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
248
273
|
options: __HttpHandlerOptions,
|
|
249
274
|
cb: (err: any, data?: GetEntityCommandOutput) => void
|
|
250
275
|
): void;
|
|
276
|
+
getPricingPlan(
|
|
277
|
+
args: GetPricingPlanCommandInput,
|
|
278
|
+
options?: __HttpHandlerOptions
|
|
279
|
+
): Promise<GetPricingPlanCommandOutput>;
|
|
280
|
+
getPricingPlan(
|
|
281
|
+
args: GetPricingPlanCommandInput,
|
|
282
|
+
cb: (err: any, data?: GetPricingPlanCommandOutput) => void
|
|
283
|
+
): void;
|
|
284
|
+
getPricingPlan(
|
|
285
|
+
args: GetPricingPlanCommandInput,
|
|
286
|
+
options: __HttpHandlerOptions,
|
|
287
|
+
cb: (err: any, data?: GetPricingPlanCommandOutput) => void
|
|
288
|
+
): void;
|
|
251
289
|
getPropertyValue(
|
|
252
290
|
args: GetPropertyValueCommandInput,
|
|
253
291
|
options?: __HttpHandlerOptions
|
|
@@ -417,6 +455,19 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
|
|
|
417
455
|
options: __HttpHandlerOptions,
|
|
418
456
|
cb: (err: any, data?: UpdateEntityCommandOutput) => void
|
|
419
457
|
): void;
|
|
458
|
+
updatePricingPlan(
|
|
459
|
+
args: UpdatePricingPlanCommandInput,
|
|
460
|
+
options?: __HttpHandlerOptions
|
|
461
|
+
): Promise<UpdatePricingPlanCommandOutput>;
|
|
462
|
+
updatePricingPlan(
|
|
463
|
+
args: UpdatePricingPlanCommandInput,
|
|
464
|
+
cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void
|
|
465
|
+
): void;
|
|
466
|
+
updatePricingPlan(
|
|
467
|
+
args: UpdatePricingPlanCommandInput,
|
|
468
|
+
options: __HttpHandlerOptions,
|
|
469
|
+
cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void
|
|
470
|
+
): void;
|
|
420
471
|
updateScene(
|
|
421
472
|
args: UpdateSceneCommandInput,
|
|
422
473
|
options?: __HttpHandlerOptions
|
|
@@ -79,6 +79,10 @@ import {
|
|
|
79
79
|
DeleteWorkspaceCommandInput,
|
|
80
80
|
DeleteWorkspaceCommandOutput,
|
|
81
81
|
} from "./commands/DeleteWorkspaceCommand";
|
|
82
|
+
import {
|
|
83
|
+
ExecuteQueryCommandInput,
|
|
84
|
+
ExecuteQueryCommandOutput,
|
|
85
|
+
} from "./commands/ExecuteQueryCommand";
|
|
82
86
|
import {
|
|
83
87
|
GetComponentTypeCommandInput,
|
|
84
88
|
GetComponentTypeCommandOutput,
|
|
@@ -87,6 +91,10 @@ import {
|
|
|
87
91
|
GetEntityCommandInput,
|
|
88
92
|
GetEntityCommandOutput,
|
|
89
93
|
} from "./commands/GetEntityCommand";
|
|
94
|
+
import {
|
|
95
|
+
GetPricingPlanCommandInput,
|
|
96
|
+
GetPricingPlanCommandOutput,
|
|
97
|
+
} from "./commands/GetPricingPlanCommand";
|
|
90
98
|
import {
|
|
91
99
|
GetPropertyValueCommandInput,
|
|
92
100
|
GetPropertyValueCommandOutput,
|
|
@@ -139,6 +147,10 @@ import {
|
|
|
139
147
|
UpdateEntityCommandInput,
|
|
140
148
|
UpdateEntityCommandOutput,
|
|
141
149
|
} from "./commands/UpdateEntityCommand";
|
|
150
|
+
import {
|
|
151
|
+
UpdatePricingPlanCommandInput,
|
|
152
|
+
UpdatePricingPlanCommandOutput,
|
|
153
|
+
} from "./commands/UpdatePricingPlanCommand";
|
|
142
154
|
import {
|
|
143
155
|
UpdateSceneCommandInput,
|
|
144
156
|
UpdateSceneCommandOutput,
|
|
@@ -162,8 +174,10 @@ export declare type ServiceInputTypes =
|
|
|
162
174
|
| DeleteEntityCommandInput
|
|
163
175
|
| DeleteSceneCommandInput
|
|
164
176
|
| DeleteWorkspaceCommandInput
|
|
177
|
+
| ExecuteQueryCommandInput
|
|
165
178
|
| GetComponentTypeCommandInput
|
|
166
179
|
| GetEntityCommandInput
|
|
180
|
+
| GetPricingPlanCommandInput
|
|
167
181
|
| GetPropertyValueCommandInput
|
|
168
182
|
| GetPropertyValueHistoryCommandInput
|
|
169
183
|
| GetSceneCommandInput
|
|
@@ -177,6 +191,7 @@ export declare type ServiceInputTypes =
|
|
|
177
191
|
| UntagResourceCommandInput
|
|
178
192
|
| UpdateComponentTypeCommandInput
|
|
179
193
|
| UpdateEntityCommandInput
|
|
194
|
+
| UpdatePricingPlanCommandInput
|
|
180
195
|
| UpdateSceneCommandInput
|
|
181
196
|
| UpdateWorkspaceCommandInput;
|
|
182
197
|
export declare type ServiceOutputTypes =
|
|
@@ -189,8 +204,10 @@ export declare type ServiceOutputTypes =
|
|
|
189
204
|
| DeleteEntityCommandOutput
|
|
190
205
|
| DeleteSceneCommandOutput
|
|
191
206
|
| DeleteWorkspaceCommandOutput
|
|
207
|
+
| ExecuteQueryCommandOutput
|
|
192
208
|
| GetComponentTypeCommandOutput
|
|
193
209
|
| GetEntityCommandOutput
|
|
210
|
+
| GetPricingPlanCommandOutput
|
|
194
211
|
| GetPropertyValueCommandOutput
|
|
195
212
|
| GetPropertyValueHistoryCommandOutput
|
|
196
213
|
| GetSceneCommandOutput
|
|
@@ -204,6 +221,7 @@ export declare type ServiceOutputTypes =
|
|
|
204
221
|
| UntagResourceCommandOutput
|
|
205
222
|
| UpdateComponentTypeCommandOutput
|
|
206
223
|
| UpdateEntityCommandOutput
|
|
224
|
+
| UpdatePricingPlanCommandOutput
|
|
207
225
|
| UpdateSceneCommandOutput
|
|
208
226
|
| UpdateWorkspaceCommandOutput;
|
|
209
227
|
export interface ClientDefaults
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import { ExecuteQueryRequest, ExecuteQueryResponse } from "../models/models_0";
|
|
15
|
+
export interface ExecuteQueryCommandInput extends ExecuteQueryRequest {}
|
|
16
|
+
export interface ExecuteQueryCommandOutput
|
|
17
|
+
extends ExecuteQueryResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ExecuteQueryCommand extends $Command<
|
|
20
|
+
ExecuteQueryCommandInput,
|
|
21
|
+
ExecuteQueryCommandOutput,
|
|
22
|
+
IoTTwinMakerClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ExecuteQueryCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: ExecuteQueryCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ExecuteQueryCommandInput, ExecuteQueryCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import {
|
|
15
|
+
GetPricingPlanRequest,
|
|
16
|
+
GetPricingPlanResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface GetPricingPlanCommandInput extends GetPricingPlanRequest {}
|
|
19
|
+
export interface GetPricingPlanCommandOutput
|
|
20
|
+
extends GetPricingPlanResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetPricingPlanCommand extends $Command<
|
|
23
|
+
GetPricingPlanCommandInput,
|
|
24
|
+
GetPricingPlanCommandOutput,
|
|
25
|
+
IoTTwinMakerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetPricingPlanCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: GetPricingPlanCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetPricingPlanCommandInput, GetPricingPlanCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
IoTTwinMakerClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../IoTTwinMakerClient";
|
|
14
|
+
import {
|
|
15
|
+
UpdatePricingPlanRequest,
|
|
16
|
+
UpdatePricingPlanResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface UpdatePricingPlanCommandInput
|
|
19
|
+
extends UpdatePricingPlanRequest {}
|
|
20
|
+
export interface UpdatePricingPlanCommandOutput
|
|
21
|
+
extends UpdatePricingPlanResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UpdatePricingPlanCommand extends $Command<
|
|
24
|
+
UpdatePricingPlanCommandInput,
|
|
25
|
+
UpdatePricingPlanCommandOutput,
|
|
26
|
+
IoTTwinMakerClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdatePricingPlanCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UpdatePricingPlanCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -7,8 +7,10 @@ export * from "./DeleteComponentTypeCommand";
|
|
|
7
7
|
export * from "./DeleteEntityCommand";
|
|
8
8
|
export * from "./DeleteSceneCommand";
|
|
9
9
|
export * from "./DeleteWorkspaceCommand";
|
|
10
|
+
export * from "./ExecuteQueryCommand";
|
|
10
11
|
export * from "./GetComponentTypeCommand";
|
|
11
12
|
export * from "./GetEntityCommand";
|
|
13
|
+
export * from "./GetPricingPlanCommand";
|
|
12
14
|
export * from "./GetPropertyValueCommand";
|
|
13
15
|
export * from "./GetPropertyValueHistoryCommand";
|
|
14
16
|
export * from "./GetSceneCommand";
|
|
@@ -22,5 +24,6 @@ export * from "./TagResourceCommand";
|
|
|
22
24
|
export * from "./UntagResourceCommand";
|
|
23
25
|
export * from "./UpdateComponentTypeCommand";
|
|
24
26
|
export * from "./UpdateEntityCommand";
|
|
27
|
+
export * from "./UpdatePricingPlanCommand";
|
|
25
28
|
export * from "./UpdateSceneCommand";
|
|
26
29
|
export * from "./UpdateWorkspaceCommand";
|