@aws-sdk/client-iottwinmaker 3.168.0 → 3.170.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 +472 -135
  3. package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +286 -99
  4. package/dist-types/ts3.4/commands/BatchPutPropertyValuesCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateComponentTypeCommand.d.ts +38 -17
  6. package/dist-types/ts3.4/commands/CreateEntityCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/CreateSceneCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteComponentTypeCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/DeleteEntityCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/DeleteSceneCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +37 -17
  13. package/dist-types/ts3.4/commands/GetComponentTypeCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/GetEntityCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/GetPropertyValueCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/GetPropertyValueHistoryCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/GetSceneCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/GetWorkspaceCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/ListComponentTypesCommand.d.ts +38 -17
  20. package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListScenesCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/UpdateComponentTypeCommand.d.ts +38 -17
  27. package/dist-types/ts3.4/commands/UpdateEntityCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UpdateSceneCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +37 -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 +8 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +1252 -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 +66 -38
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  48. package/package.json +34 -34
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "../commands/GetPropertyValueHistoryCommand";
3
- import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateGetPropertyValueHistory(config: IoTTwinMakerPaginationConfiguration, input: GetPropertyValueHistoryCommandInput, ...additionalArguments: any): Paginator<GetPropertyValueHistoryCommandOutput>;
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 extends PaginationConfiguration {
5
- client: IoTTwinMaker | IoTTwinMakerClient;
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 { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "../commands/ListComponentTypesCommand";
3
- import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListComponentTypes(config: IoTTwinMakerPaginationConfiguration, input: ListComponentTypesCommandInput, ...additionalArguments: any): Paginator<ListComponentTypesCommandOutput>;
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 { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "../commands/ListEntitiesCommand";
3
- import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListEntities(config: IoTTwinMakerPaginationConfiguration, input: ListEntitiesCommandInput, ...additionalArguments: any): Paginator<ListEntitiesCommandOutput>;
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 { ListScenesCommandInput, ListScenesCommandOutput } from "../commands/ListScenesCommand";
3
- import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListScenes(config: IoTTwinMakerPaginationConfiguration, input: ListScenesCommandInput, ...additionalArguments: any): Paginator<ListScenesCommandOutput>;
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 { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "../commands/ListWorkspacesCommand";
3
- import { IoTTwinMakerPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListWorkspaces(config: IoTTwinMakerPaginationConfiguration, input: ListWorkspacesCommandInput, ...additionalArguments: any): Paginator<ListWorkspacesCommandOutput>;
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 { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { BatchPutPropertyValuesCommandInput, BatchPutPropertyValuesCommandOutput } from "../commands/BatchPutPropertyValuesCommand";
4
- import { CreateComponentTypeCommandInput, CreateComponentTypeCommandOutput } from "../commands/CreateComponentTypeCommand";
5
- import { CreateEntityCommandInput, CreateEntityCommandOutput } from "../commands/CreateEntityCommand";
6
- import { CreateSceneCommandInput, CreateSceneCommandOutput } from "../commands/CreateSceneCommand";
7
- import { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "../commands/CreateWorkspaceCommand";
8
- import { DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput } from "../commands/DeleteComponentTypeCommand";
9
- import { DeleteEntityCommandInput, DeleteEntityCommandOutput } from "../commands/DeleteEntityCommand";
10
- import { DeleteSceneCommandInput, DeleteSceneCommandOutput } from "../commands/DeleteSceneCommand";
11
- import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "../commands/DeleteWorkspaceCommand";
12
- import { GetComponentTypeCommandInput, GetComponentTypeCommandOutput } from "../commands/GetComponentTypeCommand";
13
- import { GetEntityCommandInput, GetEntityCommandOutput } from "../commands/GetEntityCommand";
14
- import { GetPropertyValueCommandInput, GetPropertyValueCommandOutput } from "../commands/GetPropertyValueCommand";
15
- import { GetPropertyValueHistoryCommandInput, GetPropertyValueHistoryCommandOutput } from "../commands/GetPropertyValueHistoryCommand";
16
- import { GetSceneCommandInput, GetSceneCommandOutput } from "../commands/GetSceneCommand";
17
- import { GetWorkspaceCommandInput, GetWorkspaceCommandOutput } from "../commands/GetWorkspaceCommand";
18
- import { ListComponentTypesCommandInput, ListComponentTypesCommandOutput } from "../commands/ListComponentTypesCommand";
19
- import { ListEntitiesCommandInput, ListEntitiesCommandOutput } from "../commands/ListEntitiesCommand";
20
- import { ListScenesCommandInput, ListScenesCommandOutput } from "../commands/ListScenesCommand";
21
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
22
- import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "../commands/ListWorkspacesCommand";
23
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
24
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
25
- import { UpdateComponentTypeCommandInput, UpdateComponentTypeCommandOutput } from "../commands/UpdateComponentTypeCommand";
26
- import { UpdateEntityCommandInput, UpdateEntityCommandOutput } from "../commands/UpdateEntityCommand";
27
- import { UpdateSceneCommandInput, UpdateSceneCommandOutput } from "../commands/UpdateSceneCommand";
28
- import { UpdateWorkspaceCommandInput, UpdateWorkspaceCommandOutput } from "../commands/UpdateWorkspaceCommand";
29
- export declare const serializeAws_restJson1BatchPutPropertyValuesCommand: (input: BatchPutPropertyValuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1CreateComponentTypeCommand: (input: CreateComponentTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1CreateEntityCommand: (input: CreateEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1CreateSceneCommand: (input: CreateSceneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1CreateWorkspaceCommand: (input: CreateWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1DeleteComponentTypeCommand: (input: DeleteComponentTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1DeleteEntityCommand: (input: DeleteEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1DeleteSceneCommand: (input: DeleteSceneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1DeleteWorkspaceCommand: (input: DeleteWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1GetComponentTypeCommand: (input: GetComponentTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1GetEntityCommand: (input: GetEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1GetPropertyValueCommand: (input: GetPropertyValueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1GetPropertyValueHistoryCommand: (input: GetPropertyValueHistoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1GetSceneCommand: (input: GetSceneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1GetWorkspaceCommand: (input: GetWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1ListComponentTypesCommand: (input: ListComponentTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1ListEntitiesCommand: (input: ListEntitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1ListScenesCommand: (input: ListScenesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1ListWorkspacesCommand: (input: ListWorkspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1UpdateComponentTypeCommand: (input: UpdateComponentTypeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1UpdateEntityCommand: (input: UpdateEntityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_restJson1UpdateSceneCommand: (input: UpdateSceneCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1UpdateWorkspaceCommand: (input: UpdateWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const deserializeAws_restJson1BatchPutPropertyValuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchPutPropertyValuesCommandOutput>;
56
- export declare const deserializeAws_restJson1CreateComponentTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateComponentTypeCommandOutput>;
57
- export declare const deserializeAws_restJson1CreateEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEntityCommandOutput>;
58
- export declare const deserializeAws_restJson1CreateSceneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSceneCommandOutput>;
59
- export declare const deserializeAws_restJson1CreateWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspaceCommandOutput>;
60
- export declare const deserializeAws_restJson1DeleteComponentTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteComponentTypeCommandOutput>;
61
- export declare const deserializeAws_restJson1DeleteEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEntityCommandOutput>;
62
- export declare const deserializeAws_restJson1DeleteSceneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSceneCommandOutput>;
63
- export declare const deserializeAws_restJson1DeleteWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkspaceCommandOutput>;
64
- export declare const deserializeAws_restJson1GetComponentTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetComponentTypeCommandOutput>;
65
- export declare const deserializeAws_restJson1GetEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEntityCommandOutput>;
66
- export declare const deserializeAws_restJson1GetPropertyValueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPropertyValueCommandOutput>;
67
- export declare const deserializeAws_restJson1GetPropertyValueHistoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPropertyValueHistoryCommandOutput>;
68
- export declare const deserializeAws_restJson1GetSceneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSceneCommandOutput>;
69
- export declare const deserializeAws_restJson1GetWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetWorkspaceCommandOutput>;
70
- export declare const deserializeAws_restJson1ListComponentTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListComponentTypesCommandOutput>;
71
- export declare const deserializeAws_restJson1ListEntitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEntitiesCommandOutput>;
72
- export declare const deserializeAws_restJson1ListScenesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListScenesCommandOutput>;
73
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
74
- export declare const deserializeAws_restJson1ListWorkspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkspacesCommandOutput>;
75
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
76
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
77
- export declare const deserializeAws_restJson1UpdateComponentTypeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateComponentTypeCommandOutput>;
78
- export declare const deserializeAws_restJson1UpdateEntityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEntityCommandOutput>;
79
- export declare const deserializeAws_restJson1UpdateSceneCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSceneCommandOutput>;
80
- export declare const deserializeAws_restJson1UpdateWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWorkspaceCommandOutput>;
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,66 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient";
3
-
4
- export declare const getRuntimeConfig: (config: IoTTwinMakerClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { IoTTwinMakerClientConfig } from "./IoTTwinMakerClient";
3
+
4
+ export declare const getRuntimeConfig: (config: IoTTwinMakerClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<
7
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
8
+ >;
9
+ base64Decoder: import("@aws-sdk/types").Decoder;
10
+ base64Encoder: import("@aws-sdk/types").Encoder;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: (
13
+ input: any
14
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
15
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
16
+ import("@aws-sdk/types").UserAgent
17
+ >;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ region: string | import("@aws-sdk/types").Provider<any>;
20
+ requestHandler:
21
+ | (import("@aws-sdk/types").RequestHandler<
22
+ any,
23
+ any,
24
+ import("@aws-sdk/types").HttpHandlerOptions
25
+ > &
26
+ import("@aws-sdk/protocol-http").HttpHandler)
27
+ | RequestHandler;
28
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ disableHostPrefix: boolean;
38
+ logger: import("@aws-sdk/types").Logger;
39
+ serviceId: string;
40
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
41
+ endpoint?:
42
+ | string
43
+ | import("@aws-sdk/types").Endpoint
44
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
45
+ | undefined;
46
+ tls?: boolean | undefined;
47
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
48
+ credentials?:
49
+ | import("@aws-sdk/types").Credentials
50
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
51
+ | undefined;
52
+ signer?:
53
+ | import("@aws-sdk/types").RequestSigner
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
55
+ | undefined;
56
+ signingEscapePath?: boolean | undefined;
57
+ systemClockOffset?: number | undefined;
58
+ signingRegion?: string | undefined;
59
+ signerConstructor?:
60
+ | (new (
61
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
62
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
63
+ ) => import("@aws-sdk/types").RequestSigner)
64
+ | undefined;
65
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
66
+ };