@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.
Files changed (48) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/IoTTwinMaker.d.ts +446 -135
  3. package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +261 -99
  4. package/dist-types/ts3.4/commands/BatchPutPropertyValuesCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateComponentTypeCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateEntityCommand.d.ts +32 -17
  7. package/dist-types/ts3.4/commands/CreateSceneCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteComponentTypeCommand.d.ts +36 -17
  10. package/dist-types/ts3.4/commands/DeleteEntityCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DeleteSceneCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +35 -17
  13. package/dist-types/ts3.4/commands/GetComponentTypeCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/GetEntityCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/GetPropertyValueCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/GetPropertyValueHistoryCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/GetSceneCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/GetWorkspaceCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/ListComponentTypesCommand.d.ts +36 -17
  20. package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/ListScenesCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  26. package/dist-types/ts3.4/commands/UpdateComponentTypeCommand.d.ts +36 -17
  27. package/dist-types/ts3.4/commands/UpdateEntityCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UpdateSceneCommand.d.ts +32 -17
  29. package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +35 -17
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -26
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  32. package/dist-types/ts3.4/index.d.ts +6 -6
  33. package/dist-types/ts3.4/models/IoTTwinMakerServiceException.d.ts +7 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +893 -1159
  36. package/dist-types/ts3.4/pagination/GetPropertyValueHistoryPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/ListComponentTypesPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListEntitiesPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListScenesPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  43. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  48. package/package.json +34 -34
@@ -1,17 +1,32 @@
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 { ListScenesRequest, ListScenesResponse } from "../models/models_0";
5
- export interface ListScenesCommandInput extends ListScenesRequest {
6
- }
7
- export interface ListScenesCommandOutput extends ListScenesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListScenesCommand extends $Command<ListScenesCommandInput, ListScenesCommandOutput, IoTTwinMakerClientResolvedConfig> {
11
- readonly input: ListScenesCommandInput;
12
- constructor(input: ListScenesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListScenesCommandInput, ListScenesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IoTTwinMakerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IoTTwinMakerClient";
13
+ import { ListScenesRequest, ListScenesResponse } from "../models/models_0";
14
+ export interface ListScenesCommandInput extends ListScenesRequest {}
15
+ export interface ListScenesCommandOutput
16
+ extends ListScenesResponse,
17
+ __MetadataBearer {}
18
+ export declare class ListScenesCommand extends $Command<
19
+ ListScenesCommandInput,
20
+ ListScenesCommandOutput,
21
+ IoTTwinMakerClientResolvedConfig
22
+ > {
23
+ readonly input: ListScenesCommandInput;
24
+ constructor(input: ListScenesCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: IoTTwinMakerClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListScenesCommandInput, ListScenesCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,36 @@
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTTwinMakerClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IoTTwinMakerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IoTTwinMakerClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ IoTTwinMakerClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: IoTTwinMakerClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
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 { ListWorkspacesRequest, ListWorkspacesResponse } from "../models/models_0";
5
- export interface ListWorkspacesCommandInput extends ListWorkspacesRequest {
6
- }
7
- export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListWorkspacesCommand extends $Command<ListWorkspacesCommandInput, ListWorkspacesCommandOutput, IoTTwinMakerClientResolvedConfig> {
11
- readonly input: ListWorkspacesCommandInput;
12
- constructor(input: ListWorkspacesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkspacesCommandInput, ListWorkspacesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IoTTwinMakerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IoTTwinMakerClient";
13
+ import {
14
+ ListWorkspacesRequest,
15
+ ListWorkspacesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListWorkspacesCommandInput extends ListWorkspacesRequest {}
18
+ export interface ListWorkspacesCommandOutput
19
+ extends ListWorkspacesResponse,
20
+ __MetadataBearer {}
21
+ export declare class ListWorkspacesCommand extends $Command<
22
+ ListWorkspacesCommandInput,
23
+ ListWorkspacesCommandOutput,
24
+ IoTTwinMakerClientResolvedConfig
25
+ > {
26
+ readonly input: ListWorkspacesCommandInput;
27
+ constructor(input: ListWorkspacesCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: IoTTwinMakerClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListWorkspacesCommandInput, ListWorkspacesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTTwinMakerClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IoTTwinMakerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IoTTwinMakerClient";
13
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ IoTTwinMakerClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: IoTTwinMakerClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTTwinMakerClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IoTTwinMakerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IoTTwinMakerClient";
13
+ import {
14
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+ export declare class UntagResourceCommand extends $Command<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ IoTTwinMakerClientResolvedConfig
25
+ > {
26
+ readonly input: UntagResourceCommandInput;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: IoTTwinMakerClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
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 { UpdateComponentTypeRequest, UpdateComponentTypeResponse } from "../models/models_0";
5
- export interface UpdateComponentTypeCommandInput extends UpdateComponentTypeRequest {
6
- }
7
- export interface UpdateComponentTypeCommandOutput extends UpdateComponentTypeResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateComponentTypeCommand extends $Command<UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput, IoTTwinMakerClientResolvedConfig> {
11
- readonly input: UpdateComponentTypeCommandInput;
12
- constructor(input: UpdateComponentTypeCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IoTTwinMakerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IoTTwinMakerClient";
13
+ import {
14
+ UpdateComponentTypeRequest,
15
+ UpdateComponentTypeResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateComponentTypeCommandInput
18
+ extends UpdateComponentTypeRequest {}
19
+ export interface UpdateComponentTypeCommandOutput
20
+ extends UpdateComponentTypeResponse,
21
+ __MetadataBearer {}
22
+ export declare class UpdateComponentTypeCommand extends $Command<
23
+ UpdateComponentTypeCommandInput,
24
+ UpdateComponentTypeCommandOutput,
25
+ IoTTwinMakerClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateComponentTypeCommandInput;
28
+ constructor(input: UpdateComponentTypeCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: IoTTwinMakerClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,32 @@
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 { UpdateEntityRequest, UpdateEntityResponse } from "../models/models_0";
5
- export interface UpdateEntityCommandInput extends UpdateEntityRequest {
6
- }
7
- export interface UpdateEntityCommandOutput extends UpdateEntityResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateEntityCommand extends $Command<UpdateEntityCommandInput, UpdateEntityCommandOutput, IoTTwinMakerClientResolvedConfig> {
11
- readonly input: UpdateEntityCommandInput;
12
- constructor(input: UpdateEntityCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEntityCommandInput, UpdateEntityCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IoTTwinMakerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IoTTwinMakerClient";
13
+ import { UpdateEntityRequest, UpdateEntityResponse } from "../models/models_0";
14
+ export interface UpdateEntityCommandInput extends UpdateEntityRequest {}
15
+ export interface UpdateEntityCommandOutput
16
+ extends UpdateEntityResponse,
17
+ __MetadataBearer {}
18
+ export declare class UpdateEntityCommand extends $Command<
19
+ UpdateEntityCommandInput,
20
+ UpdateEntityCommandOutput,
21
+ IoTTwinMakerClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateEntityCommandInput;
24
+ constructor(input: UpdateEntityCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: IoTTwinMakerClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateEntityCommandInput, UpdateEntityCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
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 { UpdateSceneRequest, UpdateSceneResponse } from "../models/models_0";
5
- export interface UpdateSceneCommandInput extends UpdateSceneRequest {
6
- }
7
- export interface UpdateSceneCommandOutput extends UpdateSceneResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateSceneCommand extends $Command<UpdateSceneCommandInput, UpdateSceneCommandOutput, IoTTwinMakerClientResolvedConfig> {
11
- readonly input: UpdateSceneCommandInput;
12
- constructor(input: UpdateSceneCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSceneCommandInput, UpdateSceneCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IoTTwinMakerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IoTTwinMakerClient";
13
+ import { UpdateSceneRequest, UpdateSceneResponse } from "../models/models_0";
14
+ export interface UpdateSceneCommandInput extends UpdateSceneRequest {}
15
+ export interface UpdateSceneCommandOutput
16
+ extends UpdateSceneResponse,
17
+ __MetadataBearer {}
18
+ export declare class UpdateSceneCommand extends $Command<
19
+ UpdateSceneCommandInput,
20
+ UpdateSceneCommandOutput,
21
+ IoTTwinMakerClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateSceneCommandInput;
24
+ constructor(input: UpdateSceneCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: IoTTwinMakerClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<UpdateSceneCommandInput, UpdateSceneCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { UpdateWorkspaceRequest, UpdateWorkspaceResponse } from "../models/models_0";
5
- export interface UpdateWorkspaceCommandInput extends UpdateWorkspaceRequest {
6
- }
7
- export interface UpdateWorkspaceCommandOutput extends UpdateWorkspaceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateWorkspaceCommand extends $Command<UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput, IoTTwinMakerClientResolvedConfig> {
11
- readonly input: UpdateWorkspaceCommandInput;
12
- constructor(input: UpdateWorkspaceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTTwinMakerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ IoTTwinMakerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../IoTTwinMakerClient";
13
+ import {
14
+ UpdateWorkspaceRequest,
15
+ UpdateWorkspaceResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateWorkspaceCommandInput extends UpdateWorkspaceRequest {}
18
+ export interface UpdateWorkspaceCommandOutput
19
+ extends UpdateWorkspaceResponse,
20
+ __MetadataBearer {}
21
+ export declare class UpdateWorkspaceCommand extends $Command<
22
+ UpdateWorkspaceCommandInput,
23
+ UpdateWorkspaceCommandOutput,
24
+ IoTTwinMakerClientResolvedConfig
25
+ > {
26
+ readonly input: UpdateWorkspaceCommandInput;
27
+ constructor(input: UpdateWorkspaceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: IoTTwinMakerClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,26 +1,26 @@
1
- export * from "./BatchPutPropertyValuesCommand";
2
- export * from "./CreateComponentTypeCommand";
3
- export * from "./CreateEntityCommand";
4
- export * from "./CreateSceneCommand";
5
- export * from "./CreateWorkspaceCommand";
6
- export * from "./DeleteComponentTypeCommand";
7
- export * from "./DeleteEntityCommand";
8
- export * from "./DeleteSceneCommand";
9
- export * from "./DeleteWorkspaceCommand";
10
- export * from "./GetComponentTypeCommand";
11
- export * from "./GetEntityCommand";
12
- export * from "./GetPropertyValueCommand";
13
- export * from "./GetPropertyValueHistoryCommand";
14
- export * from "./GetSceneCommand";
15
- export * from "./GetWorkspaceCommand";
16
- export * from "./ListComponentTypesCommand";
17
- export * from "./ListEntitiesCommand";
18
- export * from "./ListScenesCommand";
19
- export * from "./ListTagsForResourceCommand";
20
- export * from "./ListWorkspacesCommand";
21
- export * from "./TagResourceCommand";
22
- export * from "./UntagResourceCommand";
23
- export * from "./UpdateComponentTypeCommand";
24
- export * from "./UpdateEntityCommand";
25
- export * from "./UpdateSceneCommand";
26
- export * from "./UpdateWorkspaceCommand";
1
+ export * from "./BatchPutPropertyValuesCommand";
2
+ export * from "./CreateComponentTypeCommand";
3
+ export * from "./CreateEntityCommand";
4
+ export * from "./CreateSceneCommand";
5
+ export * from "./CreateWorkspaceCommand";
6
+ export * from "./DeleteComponentTypeCommand";
7
+ export * from "./DeleteEntityCommand";
8
+ export * from "./DeleteSceneCommand";
9
+ export * from "./DeleteWorkspaceCommand";
10
+ export * from "./GetComponentTypeCommand";
11
+ export * from "./GetEntityCommand";
12
+ export * from "./GetPropertyValueCommand";
13
+ export * from "./GetPropertyValueHistoryCommand";
14
+ export * from "./GetSceneCommand";
15
+ export * from "./GetWorkspaceCommand";
16
+ export * from "./ListComponentTypesCommand";
17
+ export * from "./ListEntitiesCommand";
18
+ export * from "./ListScenesCommand";
19
+ export * from "./ListTagsForResourceCommand";
20
+ export * from "./ListWorkspacesCommand";
21
+ export * from "./TagResourceCommand";
22
+ export * from "./UntagResourceCommand";
23
+ export * from "./UpdateComponentTypeCommand";
24
+ export * from "./UpdateEntityCommand";
25
+ export * from "./UpdateSceneCommand";
26
+ export * from "./UpdateWorkspaceCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./IoTTwinMaker";
2
- export * from "./IoTTwinMakerClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { IoTTwinMakerServiceException } from "./models/IoTTwinMakerServiceException";
1
+ export * from "./IoTTwinMaker";
2
+ export * from "./IoTTwinMakerClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { IoTTwinMakerServiceException } from "./models/IoTTwinMakerServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class IoTTwinMakerServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class IoTTwinMakerServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";