@aws-sdk/client-iottwinmaker 3.210.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.
Files changed (43) hide show
  1. package/dist-cjs/IoTTwinMaker.js +45 -0
  2. package/dist-cjs/commands/ExecuteQueryCommand.js +46 -0
  3. package/dist-cjs/commands/GetPricingPlanCommand.js +46 -0
  4. package/dist-cjs/commands/UpdatePricingPlanCommand.js +46 -0
  5. package/dist-cjs/commands/index.js +3 -0
  6. package/dist-cjs/models/models_0.js +129 -9
  7. package/dist-cjs/pagination/ExecuteQueryPaginator.js +36 -0
  8. package/dist-cjs/pagination/GetPropertyValuePaginator.js +36 -0
  9. package/dist-cjs/pagination/index.js +2 -0
  10. package/dist-cjs/protocols/Aws_restJson1.js +540 -74
  11. package/dist-es/IoTTwinMaker.js +45 -0
  12. package/dist-es/commands/ExecuteQueryCommand.js +42 -0
  13. package/dist-es/commands/GetPricingPlanCommand.js +42 -0
  14. package/dist-es/commands/UpdatePricingPlanCommand.js +42 -0
  15. package/dist-es/commands/index.js +3 -0
  16. package/dist-es/models/models_0.js +107 -4
  17. package/dist-es/pagination/ExecuteQueryPaginator.js +32 -0
  18. package/dist-es/pagination/GetPropertyValuePaginator.js +32 -0
  19. package/dist-es/pagination/index.js +2 -0
  20. package/dist-es/protocols/Aws_restJson1.js +533 -73
  21. package/dist-types/IoTTwinMaker.d.ts +21 -0
  22. package/dist-types/IoTTwinMakerClient.d.ts +5 -2
  23. package/dist-types/commands/ExecuteQueryCommand.d.ts +37 -0
  24. package/dist-types/commands/GetPricingPlanCommand.d.ts +37 -0
  25. package/dist-types/commands/UpdatePricingPlanCommand.d.ts +37 -0
  26. package/dist-types/commands/index.d.ts +3 -0
  27. package/dist-types/models/models_0.d.ts +424 -35
  28. package/dist-types/pagination/ExecuteQueryPaginator.d.ts +4 -0
  29. package/dist-types/pagination/GetPropertyValuePaginator.d.ts +4 -0
  30. package/dist-types/pagination/index.d.ts +2 -0
  31. package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
  32. package/dist-types/ts3.4/IoTTwinMaker.d.ts +51 -0
  33. package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +18 -0
  34. package/dist-types/ts3.4/commands/ExecuteQueryCommand.d.ts +34 -0
  35. package/dist-types/ts3.4/commands/GetPricingPlanCommand.d.ts +37 -0
  36. package/dist-types/ts3.4/commands/UpdatePricingPlanCommand.d.ts +38 -0
  37. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +182 -14
  39. package/dist-types/ts3.4/pagination/ExecuteQueryPaginator.d.ts +11 -0
  40. package/dist-types/ts3.4/pagination/GetPropertyValuePaginator.d.ts +11 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
  43. package/package.json +28 -28
@@ -8,8 +8,10 @@ import { DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput } fro
8
8
  import { DeleteEntityCommandInput, DeleteEntityCommandOutput } from "./commands/DeleteEntityCommand";
9
9
  import { DeleteSceneCommandInput, DeleteSceneCommandOutput } from "./commands/DeleteSceneCommand";
10
10
  import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "./commands/DeleteWorkspaceCommand";
11
+ import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "./commands/ExecuteQueryCommand";
11
12
  import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "./commands/GetComponentTypeCommand";
12
13
  import { GetEntityCommandInput, GetEntityCommandOutput } from "./commands/GetEntityCommand";
14
+ import { GetPricingPlanCommandInput, GetPricingPlanCommandOutput } from "./commands/GetPricingPlanCommand";
13
15
  import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "./commands/GetPropertyValueCommand";
14
16
  import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "./commands/GetPropertyValueHistoryCommand";
15
17
  import { GetSceneCommandInput, GetSceneCommandOutput } from "./commands/GetSceneCommand";
@@ -23,6 +25,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
23
25
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
24
26
  import { UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput } from "./commands/UpdateComponentTypeCommand";
25
27
  import { UpdateEntityCommandInput, UpdateEntityCommandOutput } from "./commands/UpdateEntityCommand";
28
+ import { UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput } from "./commands/UpdatePricingPlanCommand";
26
29
  import { UpdateSceneCommandInput, UpdateSceneCommandOutput } from "./commands/UpdateSceneCommand";
27
30
  import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "./commands/UpdateWorkspaceCommand";
28
31
  import { IoTTwinMakerClient } from "./IoTTwinMakerClient";
@@ -88,6 +91,12 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
88
91
  deleteWorkspace(args: DeleteWorkspaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkspaceCommandOutput>;
89
92
  deleteWorkspace(args: DeleteWorkspaceCommandInput, cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void): void;
90
93
  deleteWorkspace(args: DeleteWorkspaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void): void;
94
+ /**
95
+ * <p>Run queries to access information from your knowledge graph of entities within individual workspaces.</p>
96
+ */
97
+ executeQuery(args: ExecuteQueryCommandInput, options?: __HttpHandlerOptions): Promise<ExecuteQueryCommandOutput>;
98
+ executeQuery(args: ExecuteQueryCommandInput, cb: (err: any, data?: ExecuteQueryCommandOutput) => void): void;
99
+ executeQuery(args: ExecuteQueryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExecuteQueryCommandOutput) => void): void;
91
100
  /**
92
101
  * <p>Retrieves information about a component type.</p>
93
102
  */
@@ -100,6 +109,12 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
100
109
  getEntity(args: GetEntityCommandInput, options?: __HttpHandlerOptions): Promise<GetEntityCommandOutput>;
101
110
  getEntity(args: GetEntityCommandInput, cb: (err: any, data?: GetEntityCommandOutput) => void): void;
102
111
  getEntity(args: GetEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEntityCommandOutput) => void): void;
112
+ /**
113
+ * <p>Gets the pricing plan.</p>
114
+ */
115
+ getPricingPlan(args: GetPricingPlanCommandInput, options?: __HttpHandlerOptions): Promise<GetPricingPlanCommandOutput>;
116
+ getPricingPlan(args: GetPricingPlanCommandInput, cb: (err: any, data?: GetPricingPlanCommandOutput) => void): void;
117
+ getPricingPlan(args: GetPricingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPricingPlanCommandOutput) => void): void;
103
118
  /**
104
119
  * <p>Gets the property values for a component, component type, entity, or workspace.</p>
105
120
  * <p>You must specify a value for either <code>componentName</code>, <code>componentTypeId</code>, <code>entityId</code>, or <code>workspaceId</code>.</p>
@@ -181,6 +196,12 @@ export declare class IoTTwinMaker extends IoTTwinMakerClient {
181
196
  updateEntity(args: UpdateEntityCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEntityCommandOutput>;
182
197
  updateEntity(args: UpdateEntityCommandInput, cb: (err: any, data?: UpdateEntityCommandOutput) => void): void;
183
198
  updateEntity(args: UpdateEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEntityCommandOutput) => void): void;
199
+ /**
200
+ * <p>Update the pricing plan.</p>
201
+ */
202
+ updatePricingPlan(args: UpdatePricingPlanCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePricingPlanCommandOutput>;
203
+ updatePricingPlan(args: UpdatePricingPlanCommandInput, cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void): void;
204
+ updatePricingPlan(args: UpdatePricingPlanCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePricingPlanCommandOutput) => void): void;
184
205
  /**
185
206
  * <p>Updates a scene.</p>
186
207
  */
@@ -16,8 +16,10 @@ import { DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput } fro
16
16
  import { DeleteEntityCommandInput, DeleteEntityCommandOutput } from "./commands/DeleteEntityCommand";
17
17
  import { DeleteSceneCommandInput, DeleteSceneCommandOutput } from "./commands/DeleteSceneCommand";
18
18
  import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "./commands/DeleteWorkspaceCommand";
19
+ import { ExecuteQueryCommandInput, ExecuteQueryCommandOutput } from "./commands/ExecuteQueryCommand";
19
20
  import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "./commands/GetComponentTypeCommand";
20
21
  import { GetEntityCommandInput, GetEntityCommandOutput } from "./commands/GetEntityCommand";
22
+ import { GetPricingPlanCommandInput, GetPricingPlanCommandOutput } from "./commands/GetPricingPlanCommand";
21
23
  import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "./commands/GetPropertyValueCommand";
22
24
  import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "./commands/GetPropertyValueHistoryCommand";
23
25
  import { GetSceneCommandInput, GetSceneCommandOutput } from "./commands/GetSceneCommand";
@@ -31,11 +33,12 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
31
33
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
32
34
  import { UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput } from "./commands/UpdateComponentTypeCommand";
33
35
  import { UpdateEntityCommandInput, UpdateEntityCommandOutput } from "./commands/UpdateEntityCommand";
36
+ import { UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput } from "./commands/UpdatePricingPlanCommand";
34
37
  import { UpdateSceneCommandInput, UpdateSceneCommandOutput } from "./commands/UpdateSceneCommand";
35
38
  import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "./commands/UpdateWorkspaceCommand";
36
39
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
37
- 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;
38
- 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;
40
+ export declare type ServiceInputTypes = BatchPutPropertyValuesCommandInput | CreateComponentTypeCommandInput | CreateEntityCommandInput | CreateSceneCommandInput | CreateWorkspaceCommandInput | DeleteComponentTypeCommandInput | DeleteEntityCommandInput | DeleteSceneCommandInput | DeleteWorkspaceCommandInput | ExecuteQueryCommandInput | GetComponentTypeCommandInput | GetEntityCommandInput | GetPricingPlanCommandInput | GetPropertyValueCommandInput | GetPropertyValueHistoryCommandInput | GetSceneCommandInput | GetWorkspaceCommandInput | ListComponentTypesCommandInput | ListEntitiesCommandInput | ListScenesCommandInput | ListTagsForResourceCommandInput | ListWorkspacesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateComponentTypeCommandInput | UpdateEntityCommandInput | UpdatePricingPlanCommandInput | UpdateSceneCommandInput | UpdateWorkspaceCommandInput;
41
+ export declare type ServiceOutputTypes = BatchPutPropertyValuesCommandOutput | CreateComponentTypeCommandOutput | CreateEntityCommandOutput | CreateSceneCommandOutput | CreateWorkspaceCommandOutput | DeleteComponentTypeCommandOutput | DeleteEntityCommandOutput | DeleteSceneCommandOutput | DeleteWorkspaceCommandOutput | ExecuteQueryCommandOutput | GetComponentTypeCommandOutput | GetEntityCommandOutput | GetPricingPlanCommandOutput | GetPropertyValueCommandOutput | GetPropertyValueHistoryCommandOutput | GetSceneCommandOutput | GetWorkspaceCommandOutput | ListComponentTypesCommandOutput | ListEntitiesCommandOutput | ListScenesCommandOutput | ListTagsForResourceCommandOutput | ListWorkspacesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateComponentTypeCommandOutput | UpdateEntityCommandOutput | UpdatePricingPlanCommandOutput | UpdateSceneCommandOutput | UpdateWorkspaceCommandOutput;
39
42
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
40
43
  /**
41
44
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
+ import { ExecuteQueryRequest, ExecuteQueryResponse } from "../models/models_0";
6
+ export interface ExecuteQueryCommandInput extends ExecuteQueryRequest {
7
+ }
8
+ export interface ExecuteQueryCommandOutput extends ExecuteQueryResponse, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Run queries to access information from your knowledge graph of entities within individual workspaces.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { IoTTwinMakerClient, ExecuteQueryCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
16
+ * // const { IoTTwinMakerClient, ExecuteQueryCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
17
+ * const client = new IoTTwinMakerClient(config);
18
+ * const command = new ExecuteQueryCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ExecuteQueryCommandInput} for command's `input` shape.
23
+ * @see {@link ExecuteQueryCommandOutput} for command's `response` shape.
24
+ * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
25
+ *
26
+ */
27
+ export declare class ExecuteQueryCommand extends $Command<ExecuteQueryCommandInput, ExecuteQueryCommandOutput, IoTTwinMakerClientResolvedConfig> {
28
+ readonly input: ExecuteQueryCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ExecuteQueryCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExecuteQueryCommandInput, ExecuteQueryCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
+ import { GetPricingPlanRequest, GetPricingPlanResponse } from "../models/models_0";
6
+ export interface GetPricingPlanCommandInput extends GetPricingPlanRequest {
7
+ }
8
+ export interface GetPricingPlanCommandOutput extends GetPricingPlanResponse, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Gets the pricing plan.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { IoTTwinMakerClient, GetPricingPlanCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
16
+ * // const { IoTTwinMakerClient, GetPricingPlanCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
17
+ * const client = new IoTTwinMakerClient(config);
18
+ * const command = new GetPricingPlanCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link GetPricingPlanCommandInput} for command's `input` shape.
23
+ * @see {@link GetPricingPlanCommandOutput} for command's `response` shape.
24
+ * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
25
+ *
26
+ */
27
+ export declare class GetPricingPlanCommand extends $Command<GetPricingPlanCommandInput, GetPricingPlanCommandOutput, IoTTwinMakerClientResolvedConfig> {
28
+ readonly input: GetPricingPlanCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: GetPricingPlanCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPricingPlanCommandInput, GetPricingPlanCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { IoTTwinMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTTwinMakerClient";
5
+ import { UpdatePricingPlanRequest, UpdatePricingPlanResponse } from "../models/models_0";
6
+ export interface UpdatePricingPlanCommandInput extends UpdatePricingPlanRequest {
7
+ }
8
+ export interface UpdatePricingPlanCommandOutput extends UpdatePricingPlanResponse, __MetadataBearer {
9
+ }
10
+ /**
11
+ * <p>Update the pricing plan.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { IoTTwinMakerClient, UpdatePricingPlanCommand } from "@aws-sdk/client-iottwinmaker"; // ES Modules import
16
+ * // const { IoTTwinMakerClient, UpdatePricingPlanCommand } = require("@aws-sdk/client-iottwinmaker"); // CommonJS import
17
+ * const client = new IoTTwinMakerClient(config);
18
+ * const command = new UpdatePricingPlanCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link UpdatePricingPlanCommandInput} for command's `input` shape.
23
+ * @see {@link UpdatePricingPlanCommandOutput} for command's `response` shape.
24
+ * @see {@link IoTTwinMakerClientResolvedConfig | config} for IoTTwinMakerClient's `config` shape.
25
+ *
26
+ */
27
+ export declare class UpdatePricingPlanCommand extends $Command<UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput, IoTTwinMakerClientResolvedConfig> {
28
+ readonly input: UpdatePricingPlanCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: UpdatePricingPlanCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePricingPlanCommandInput, UpdatePricingPlanCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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";