@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +472 -135
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +286 -99
- package/dist-types/ts3.4/commands/BatchPutPropertyValuesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateComponentTypeCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateEntityCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateSceneCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteComponentTypeCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteEntityCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteSceneCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetComponentTypeCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetEntityCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetPropertyValueCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetPropertyValueHistoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetSceneCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetWorkspaceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListComponentTypesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListScenesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateComponentTypeCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateEntityCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateSceneCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +26 -26
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/IoTTwinMakerServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1252 -1159
- package/dist-types/ts3.4/pagination/GetPropertyValueHistoryPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListComponentTypesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEntitiesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListScenesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -80
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -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,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class IoTTwinMakerServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|