@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,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 { 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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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 { 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 {
|
|
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
|
+
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 {
|
|
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
|
+
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 {
|
|
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 { 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 {
|
|
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 { 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 {
|
|
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
|
+
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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";
|