@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/IoTTwinMaker.d.ts +446 -135
- package/dist-types/ts3.4/IoTTwinMakerClient.d.ts +261 -99
- package/dist-types/ts3.4/commands/BatchPutPropertyValuesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateComponentTypeCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateEntityCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateSceneCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteComponentTypeCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteEntityCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteSceneCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetComponentTypeCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetEntityCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetPropertyValueCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetPropertyValueHistoryCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetSceneCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetWorkspaceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListComponentTypesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListEntitiesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListScenesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateComponentTypeCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateEntityCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateSceneCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +35 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +893 -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 +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DeleteComponentTypeRequest,
|
|
15
|
+
DeleteComponentTypeResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteComponentTypeCommandInput
|
|
18
|
+
extends DeleteComponentTypeRequest {}
|
|
19
|
+
export interface DeleteComponentTypeCommandOutput
|
|
20
|
+
extends DeleteComponentTypeResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteComponentTypeCommand extends $Command<
|
|
23
|
+
DeleteComponentTypeCommandInput,
|
|
24
|
+
DeleteComponentTypeCommandOutput,
|
|
25
|
+
IoTTwinMakerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteComponentTypeCommandInput;
|
|
28
|
+
constructor(input: DeleteComponentTypeCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteComponentTypeCommandInput, DeleteComponentTypeCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { DeleteEntityRequest, DeleteEntityResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteEntityCommandInput extends DeleteEntityRequest {}
|
|
15
|
+
export interface DeleteEntityCommandOutput
|
|
16
|
+
extends DeleteEntityResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeleteEntityCommand extends $Command<
|
|
19
|
+
DeleteEntityCommandInput,
|
|
20
|
+
DeleteEntityCommandOutput,
|
|
21
|
+
IoTTwinMakerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteEntityCommandInput;
|
|
24
|
+
constructor(input: DeleteEntityCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteEntityCommandInput, DeleteEntityCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { DeleteSceneRequest, DeleteSceneResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteSceneCommandInput extends DeleteSceneRequest {}
|
|
15
|
+
export interface DeleteSceneCommandOutput
|
|
16
|
+
extends DeleteSceneResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeleteSceneCommand extends $Command<
|
|
19
|
+
DeleteSceneCommandInput,
|
|
20
|
+
DeleteSceneCommandOutput,
|
|
21
|
+
IoTTwinMakerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteSceneCommandInput;
|
|
24
|
+
constructor(input: DeleteSceneCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteSceneCommandInput, DeleteSceneCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
DeleteWorkspaceRequest,
|
|
15
|
+
DeleteWorkspaceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteWorkspaceCommandInput extends DeleteWorkspaceRequest {}
|
|
18
|
+
export interface DeleteWorkspaceCommandOutput
|
|
19
|
+
extends DeleteWorkspaceResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DeleteWorkspaceCommand extends $Command<
|
|
22
|
+
DeleteWorkspaceCommandInput,
|
|
23
|
+
DeleteWorkspaceCommandOutput,
|
|
24
|
+
IoTTwinMakerClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DeleteWorkspaceCommandInput;
|
|
27
|
+
constructor(input: DeleteWorkspaceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetComponentTypeRequest,
|
|
15
|
+
GetComponentTypeResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetComponentTypeCommandInput extends GetComponentTypeRequest {}
|
|
18
|
+
export interface GetComponentTypeCommandOutput
|
|
19
|
+
extends GetComponentTypeResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetComponentTypeCommand extends $Command<
|
|
22
|
+
GetComponentTypeCommandInput,
|
|
23
|
+
GetComponentTypeCommandOutput,
|
|
24
|
+
IoTTwinMakerClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetComponentTypeCommandInput;
|
|
27
|
+
constructor(input: GetComponentTypeCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetComponentTypeCommandInput, GetComponentTypeCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetEntityRequest, GetEntityResponse } from "../models/models_0";
|
|
14
|
+
export interface GetEntityCommandInput extends GetEntityRequest {}
|
|
15
|
+
export interface GetEntityCommandOutput
|
|
16
|
+
extends GetEntityResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetEntityCommand extends $Command<
|
|
19
|
+
GetEntityCommandInput,
|
|
20
|
+
GetEntityCommandOutput,
|
|
21
|
+
IoTTwinMakerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetEntityCommandInput;
|
|
24
|
+
constructor(input: GetEntityCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetEntityCommandInput, GetEntityCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetPropertyValueRequest,
|
|
15
|
+
GetPropertyValueResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetPropertyValueCommandInput extends GetPropertyValueRequest {}
|
|
18
|
+
export interface GetPropertyValueCommandOutput
|
|
19
|
+
extends GetPropertyValueResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class GetPropertyValueCommand extends $Command<
|
|
22
|
+
GetPropertyValueCommandInput,
|
|
23
|
+
GetPropertyValueCommandOutput,
|
|
24
|
+
IoTTwinMakerClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: GetPropertyValueCommandInput;
|
|
27
|
+
constructor(input: GetPropertyValueCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetPropertyValueCommandInput, GetPropertyValueCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
GetPropertyValueHistoryRequest,
|
|
15
|
+
GetPropertyValueHistoryResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetPropertyValueHistoryCommandInput
|
|
18
|
+
extends GetPropertyValueHistoryRequest {}
|
|
19
|
+
export interface GetPropertyValueHistoryCommandOutput
|
|
20
|
+
extends GetPropertyValueHistoryResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetPropertyValueHistoryCommand extends $Command<
|
|
23
|
+
GetPropertyValueHistoryCommandInput,
|
|
24
|
+
GetPropertyValueHistoryCommandOutput,
|
|
25
|
+
IoTTwinMakerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetPropertyValueHistoryCommandInput;
|
|
28
|
+
constructor(input: GetPropertyValueHistoryCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetPropertyValueHistoryCommandInput,
|
|
35
|
+
GetPropertyValueHistoryCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetSceneRequest, GetSceneResponse } from "../models/models_0";
|
|
14
|
+
export interface GetSceneCommandInput extends GetSceneRequest {}
|
|
15
|
+
export interface GetSceneCommandOutput
|
|
16
|
+
extends GetSceneResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetSceneCommand extends $Command<
|
|
19
|
+
GetSceneCommandInput,
|
|
20
|
+
GetSceneCommandOutput,
|
|
21
|
+
IoTTwinMakerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetSceneCommandInput;
|
|
24
|
+
constructor(input: GetSceneCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetSceneCommandInput, GetSceneCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { GetWorkspaceRequest, GetWorkspaceResponse } from "../models/models_0";
|
|
14
|
+
export interface GetWorkspaceCommandInput extends GetWorkspaceRequest {}
|
|
15
|
+
export interface GetWorkspaceCommandOutput
|
|
16
|
+
extends GetWorkspaceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetWorkspaceCommand extends $Command<
|
|
19
|
+
GetWorkspaceCommandInput,
|
|
20
|
+
GetWorkspaceCommandOutput,
|
|
21
|
+
IoTTwinMakerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetWorkspaceCommandInput;
|
|
24
|
+
constructor(input: GetWorkspaceCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetWorkspaceCommandInput, GetWorkspaceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
ListComponentTypesRequest,
|
|
15
|
+
ListComponentTypesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListComponentTypesCommandInput
|
|
18
|
+
extends ListComponentTypesRequest {}
|
|
19
|
+
export interface ListComponentTypesCommandOutput
|
|
20
|
+
extends ListComponentTypesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListComponentTypesCommand extends $Command<
|
|
23
|
+
ListComponentTypesCommandInput,
|
|
24
|
+
ListComponentTypesCommandOutput,
|
|
25
|
+
IoTTwinMakerClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListComponentTypesCommandInput;
|
|
28
|
+
constructor(input: ListComponentTypesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListComponentTypesCommandInput, ListComponentTypesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 { ListEntitiesRequest, ListEntitiesResponse } from "../models/models_0";
|
|
14
|
+
export interface ListEntitiesCommandInput extends ListEntitiesRequest {}
|
|
15
|
+
export interface ListEntitiesCommandOutput
|
|
16
|
+
extends ListEntitiesResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListEntitiesCommand extends $Command<
|
|
19
|
+
ListEntitiesCommandInput,
|
|
20
|
+
ListEntitiesCommandOutput,
|
|
21
|
+
IoTTwinMakerClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListEntitiesCommandInput;
|
|
24
|
+
constructor(input: ListEntitiesCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: IoTTwinMakerClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListEntitiesCommandInput, ListEntitiesCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|