@aws-sdk/client-simspaceweaver 3.478.0 → 3.484.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/dist-cjs/commands/CreateSnapshotCommand.js +18 -41
- package/dist-cjs/commands/DeleteAppCommand.js +18 -41
- package/dist-cjs/commands/DeleteSimulationCommand.js +18 -41
- package/dist-cjs/commands/DescribeAppCommand.js +18 -41
- package/dist-cjs/commands/DescribeSimulationCommand.js +18 -41
- package/dist-cjs/commands/ListAppsCommand.js +18 -41
- package/dist-cjs/commands/ListSimulationsCommand.js +18 -41
- package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-cjs/commands/StartAppCommand.js +18 -41
- package/dist-cjs/commands/StartClockCommand.js +18 -41
- package/dist-cjs/commands/StartSimulationCommand.js +18 -41
- package/dist-cjs/commands/StopAppCommand.js +18 -41
- package/dist-cjs/commands/StopClockCommand.js +18 -41
- package/dist-cjs/commands/StopSimulationCommand.js +18 -41
- package/dist-cjs/commands/TagResourceCommand.js +18 -41
- package/dist-cjs/commands/UntagResourceCommand.js +18 -41
- package/dist-cjs/endpoint/EndpointParameters.js +7 -1
- package/dist-es/commands/CreateSnapshotCommand.js +18 -41
- package/dist-es/commands/DeleteAppCommand.js +18 -41
- package/dist-es/commands/DeleteSimulationCommand.js +18 -41
- package/dist-es/commands/DescribeAppCommand.js +18 -41
- package/dist-es/commands/DescribeSimulationCommand.js +18 -41
- package/dist-es/commands/ListAppsCommand.js +18 -41
- package/dist-es/commands/ListSimulationsCommand.js +18 -41
- package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
- package/dist-es/commands/StartAppCommand.js +18 -41
- package/dist-es/commands/StartClockCommand.js +18 -41
- package/dist-es/commands/StartSimulationCommand.js +18 -41
- package/dist-es/commands/StopAppCommand.js +18 -41
- package/dist-es/commands/StopClockCommand.js +18 -41
- package/dist-es/commands/StopSimulationCommand.js +18 -41
- package/dist-es/commands/TagResourceCommand.js +18 -41
- package/dist-es/commands/UntagResourceCommand.js +18 -41
- package/dist-es/endpoint/EndpointParameters.js +6 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +6 -21
- package/dist-types/commands/DeleteAppCommand.d.ts +6 -21
- package/dist-types/commands/DeleteSimulationCommand.d.ts +6 -21
- package/dist-types/commands/DescribeAppCommand.d.ts +6 -21
- package/dist-types/commands/DescribeSimulationCommand.d.ts +6 -21
- package/dist-types/commands/ListAppsCommand.d.ts +6 -21
- package/dist-types/commands/ListSimulationsCommand.d.ts +6 -21
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
- package/dist-types/commands/StartAppCommand.d.ts +6 -21
- package/dist-types/commands/StartClockCommand.d.ts +6 -21
- package/dist-types/commands/StartSimulationCommand.d.ts +6 -21
- package/dist-types/commands/StopAppCommand.d.ts +6 -21
- package/dist-types/commands/StopClockCommand.d.ts +6 -21
- package/dist-types/commands/StopSimulationCommand.d.ts +6 -21
- package/dist-types/commands/TagResourceCommand.d.ts +6 -21
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
- package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DeleteSimulationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DescribeAppCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/DescribeSimulationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListSimulationsCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StartAppCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StartClockCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StartSimulationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StopAppCommand.d.ts +12 -23
- package/dist-types/ts3.4/commands/StopClockCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/StopSimulationCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
- package/package.json +11 -11
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_StopAppCommand, se_StopAppCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class StopAppCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "SimSpaceWeaverClient";
|
|
26
|
-
const commandName = "StopAppCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "SimSpaceWeaver",
|
|
35
|
-
operation: "StopApp",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_StopAppCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_StopAppCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class StopAppCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("SimSpaceWeaver", "StopApp", {})
|
|
19
|
+
.n("SimSpaceWeaverClient", "StopAppCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_StopAppCommand)
|
|
22
|
+
.de(de_StopAppCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_StopClockCommand, se_StopClockCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class StopClockCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "SimSpaceWeaverClient";
|
|
26
|
-
const commandName = "StopClockCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "SimSpaceWeaver",
|
|
35
|
-
operation: "StopClock",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_StopClockCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_StopClockCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class StopClockCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("SimSpaceWeaver", "StopClock", {})
|
|
19
|
+
.n("SimSpaceWeaverClient", "StopClockCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_StopClockCommand)
|
|
22
|
+
.de(de_StopClockCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_StopSimulationCommand, se_StopSimulationCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class StopSimulationCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "SimSpaceWeaverClient";
|
|
26
|
-
const commandName = "StopSimulationCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "SimSpaceWeaver",
|
|
35
|
-
operation: "StopSimulation",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_StopSimulationCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_StopSimulationCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class StopSimulationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("SimSpaceWeaver", "StopSimulation", {})
|
|
19
|
+
.n("SimSpaceWeaverClient", "StopSimulationCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_StopSimulationCommand)
|
|
22
|
+
.de(de_StopSimulationCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class TagResourceCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "SimSpaceWeaverClient";
|
|
26
|
-
const commandName = "TagResourceCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "SimSpaceWeaver",
|
|
35
|
-
operation: "TagResource",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_TagResourceCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_TagResourceCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class TagResourceCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("SimSpaceWeaver", "TagResource", {})
|
|
19
|
+
.n("SimSpaceWeaverClient", "TagResourceCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_TagResourceCommand)
|
|
22
|
+
.de(de_TagResourceCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -1,47 +1,24 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
5
|
import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
|
|
6
6
|
export { $Command };
|
|
7
|
-
export class UntagResourceCommand extends $Command
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
const { logger } = configuration;
|
|
25
|
-
const clientName = "SimSpaceWeaverClient";
|
|
26
|
-
const commandName = "UntagResourceCommand";
|
|
27
|
-
const handlerExecutionContext = {
|
|
28
|
-
logger,
|
|
29
|
-
clientName,
|
|
30
|
-
commandName,
|
|
31
|
-
inputFilterSensitiveLog: (_) => _,
|
|
32
|
-
outputFilterSensitiveLog: (_) => _,
|
|
33
|
-
[SMITHY_CONTEXT_KEY]: {
|
|
34
|
-
service: "SimSpaceWeaver",
|
|
35
|
-
operation: "UntagResource",
|
|
36
|
-
},
|
|
37
|
-
};
|
|
38
|
-
const { requestHandler } = configuration;
|
|
39
|
-
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
40
|
-
}
|
|
41
|
-
serialize(input, context) {
|
|
42
|
-
return se_UntagResourceCommand(input, context);
|
|
43
|
-
}
|
|
44
|
-
deserialize(output, context) {
|
|
45
|
-
return de_UntagResourceCommand(output, context);
|
|
46
|
-
}
|
|
7
|
+
export class UntagResourceCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep({
|
|
10
|
+
...commonParams,
|
|
11
|
+
})
|
|
12
|
+
.m(function (Command, cs, config, o) {
|
|
13
|
+
return [
|
|
14
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
15
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
16
|
+
];
|
|
17
|
+
})
|
|
18
|
+
.s("SimSpaceWeaver", "UntagResource", {})
|
|
19
|
+
.n("SimSpaceWeaverClient", "UntagResourceCommand")
|
|
20
|
+
.f(void 0, void 0)
|
|
21
|
+
.ser(se_UntagResourceCommand)
|
|
22
|
+
.de(de_UntagResourceCommand)
|
|
23
|
+
.build() {
|
|
47
24
|
}
|
|
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
|
|
|
6
6
|
defaultSigningName: "simspaceweaver",
|
|
7
7
|
};
|
|
8
8
|
};
|
|
9
|
+
export const commonParams = {
|
|
10
|
+
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
11
|
+
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
12
|
+
Region: { type: "builtInParams", name: "region" },
|
|
13
|
+
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
14
|
+
};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { CreateSnapshotInput, CreateSnapshotOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface CreateSnapshotCommandInput extends CreateSnapshotInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface CreateSnapshotCommandOutput extends CreateSnapshotOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const CreateSnapshotCommand_base: {
|
|
24
|
+
new (input: CreateSnapshotCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSnapshotCommandInput, CreateSnapshotCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Creates a snapshot of the specified simulation.
|
|
@@ -123,23 +126,5 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotOutput, __Met
|
|
|
123
126
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
124
127
|
*
|
|
125
128
|
*/
|
|
126
|
-
export declare class CreateSnapshotCommand extends
|
|
127
|
-
readonly input: CreateSnapshotCommandInput;
|
|
128
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
129
|
-
/**
|
|
130
|
-
* @public
|
|
131
|
-
*/
|
|
132
|
-
constructor(input: CreateSnapshotCommandInput);
|
|
133
|
-
/**
|
|
134
|
-
* @internal
|
|
135
|
-
*/
|
|
136
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSnapshotCommandInput, CreateSnapshotCommandOutput>;
|
|
137
|
-
/**
|
|
138
|
-
* @internal
|
|
139
|
-
*/
|
|
140
|
-
private serialize;
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
private deserialize;
|
|
129
|
+
export declare class CreateSnapshotCommand extends CreateSnapshotCommand_base {
|
|
145
130
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DeleteAppInput, DeleteAppOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeleteAppCommandInput extends DeleteAppInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeleteAppCommandOutput extends DeleteAppOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeleteAppCommand_base: {
|
|
24
|
+
new (input: DeleteAppCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAppCommandInput, DeleteAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deletes the instance of the given custom app.</p>
|
|
@@ -66,23 +69,5 @@ export interface DeleteAppCommandOutput extends DeleteAppOutput, __MetadataBeare
|
|
|
66
69
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
67
70
|
*
|
|
68
71
|
*/
|
|
69
|
-
export declare class DeleteAppCommand extends
|
|
70
|
-
readonly input: DeleteAppCommandInput;
|
|
71
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
-
/**
|
|
73
|
-
* @public
|
|
74
|
-
*/
|
|
75
|
-
constructor(input: DeleteAppCommandInput);
|
|
76
|
-
/**
|
|
77
|
-
* @internal
|
|
78
|
-
*/
|
|
79
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAppCommandInput, DeleteAppCommandOutput>;
|
|
80
|
-
/**
|
|
81
|
-
* @internal
|
|
82
|
-
*/
|
|
83
|
-
private serialize;
|
|
84
|
-
/**
|
|
85
|
-
* @internal
|
|
86
|
-
*/
|
|
87
|
-
private deserialize;
|
|
72
|
+
export declare class DeleteAppCommand extends DeleteAppCommand_base {
|
|
88
73
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DeleteSimulationInput, DeleteSimulationOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DeleteSimulationCommandInput extends DeleteSimulationInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DeleteSimulationCommandOutput extends DeleteSimulationOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DeleteSimulationCommand_base: {
|
|
24
|
+
new (input: DeleteSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteSimulationCommandInput, DeleteSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Deletes all SimSpace Weaver resources assigned to the given simulation.</p>
|
|
@@ -68,23 +71,5 @@ export interface DeleteSimulationCommandOutput extends DeleteSimulationOutput, _
|
|
|
68
71
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
69
72
|
*
|
|
70
73
|
*/
|
|
71
|
-
export declare class DeleteSimulationCommand extends
|
|
72
|
-
readonly input: DeleteSimulationCommandInput;
|
|
73
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
-
/**
|
|
75
|
-
* @public
|
|
76
|
-
*/
|
|
77
|
-
constructor(input: DeleteSimulationCommandInput);
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSimulationCommandInput, DeleteSimulationCommandOutput>;
|
|
82
|
-
/**
|
|
83
|
-
* @internal
|
|
84
|
-
*/
|
|
85
|
-
private serialize;
|
|
86
|
-
/**
|
|
87
|
-
* @internal
|
|
88
|
-
*/
|
|
89
|
-
private deserialize;
|
|
74
|
+
export declare class DeleteSimulationCommand extends DeleteSimulationCommand_base {
|
|
90
75
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DescribeAppInput, DescribeAppOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeAppCommandInput extends DescribeAppInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeAppCommandOutput extends DescribeAppOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeAppCommand_base: {
|
|
24
|
+
new (input: DescribeAppCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeAppCommandInput, DescribeAppCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns the state of the given custom app.</p>
|
|
@@ -84,23 +87,5 @@ export interface DescribeAppCommandOutput extends DescribeAppOutput, __MetadataB
|
|
|
84
87
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
85
88
|
*
|
|
86
89
|
*/
|
|
87
|
-
export declare class DescribeAppCommand extends
|
|
88
|
-
readonly input: DescribeAppCommandInput;
|
|
89
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
90
|
-
/**
|
|
91
|
-
* @public
|
|
92
|
-
*/
|
|
93
|
-
constructor(input: DescribeAppCommandInput);
|
|
94
|
-
/**
|
|
95
|
-
* @internal
|
|
96
|
-
*/
|
|
97
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeAppCommandInput, DescribeAppCommandOutput>;
|
|
98
|
-
/**
|
|
99
|
-
* @internal
|
|
100
|
-
*/
|
|
101
|
-
private serialize;
|
|
102
|
-
/**
|
|
103
|
-
* @internal
|
|
104
|
-
*/
|
|
105
|
-
private deserialize;
|
|
90
|
+
export declare class DescribeAppCommand extends DescribeAppCommand_base {
|
|
106
91
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { DescribeSimulationInput, DescribeSimulationOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface DescribeSimulationCommandInput extends DescribeSimulationInput
|
|
|
21
20
|
*/
|
|
22
21
|
export interface DescribeSimulationCommandOutput extends DescribeSimulationOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const DescribeSimulationCommand_base: {
|
|
24
|
+
new (input: DescribeSimulationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSimulationCommandInput, DescribeSimulationCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Returns the current state of the given simulation.</p>
|
|
@@ -104,23 +107,5 @@ export interface DescribeSimulationCommandOutput extends DescribeSimulationOutpu
|
|
|
104
107
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
105
108
|
*
|
|
106
109
|
*/
|
|
107
|
-
export declare class DescribeSimulationCommand extends
|
|
108
|
-
readonly input: DescribeSimulationCommandInput;
|
|
109
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
110
|
-
/**
|
|
111
|
-
* @public
|
|
112
|
-
*/
|
|
113
|
-
constructor(input: DescribeSimulationCommandInput);
|
|
114
|
-
/**
|
|
115
|
-
* @internal
|
|
116
|
-
*/
|
|
117
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSimulationCommandInput, DescribeSimulationCommandOutput>;
|
|
118
|
-
/**
|
|
119
|
-
* @internal
|
|
120
|
-
*/
|
|
121
|
-
private serialize;
|
|
122
|
-
/**
|
|
123
|
-
* @internal
|
|
124
|
-
*/
|
|
125
|
-
private deserialize;
|
|
110
|
+
export declare class DescribeSimulationCommand extends DescribeSimulationCommand_base {
|
|
126
111
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import {
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
4
3
|
import { ListAppsInput, ListAppsOutput } from "../models/models_0";
|
|
5
4
|
import { ServiceInputTypes, ServiceOutputTypes, SimSpaceWeaverClientResolvedConfig } from "../SimSpaceWeaverClient";
|
|
6
5
|
/**
|
|
@@ -21,6 +20,10 @@ export interface ListAppsCommandInput extends ListAppsInput {
|
|
|
21
20
|
*/
|
|
22
21
|
export interface ListAppsCommandOutput extends ListAppsOutput, __MetadataBearer {
|
|
23
22
|
}
|
|
23
|
+
declare const ListAppsCommand_base: {
|
|
24
|
+
new (input: ListAppsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAppsCommandInput, ListAppsCommandOutput, SimSpaceWeaverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
24
27
|
/**
|
|
25
28
|
* @public
|
|
26
29
|
* <p>Lists all custom apps or service apps for the given simulation and domain.</p>
|
|
@@ -75,23 +78,5 @@ export interface ListAppsCommandOutput extends ListAppsOutput, __MetadataBearer
|
|
|
75
78
|
* <p>Base exception class for all service exceptions from SimSpaceWeaver service.</p>
|
|
76
79
|
*
|
|
77
80
|
*/
|
|
78
|
-
export declare class ListAppsCommand extends
|
|
79
|
-
readonly input: ListAppsCommandInput;
|
|
80
|
-
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
-
/**
|
|
82
|
-
* @public
|
|
83
|
-
*/
|
|
84
|
-
constructor(input: ListAppsCommandInput);
|
|
85
|
-
/**
|
|
86
|
-
* @internal
|
|
87
|
-
*/
|
|
88
|
-
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SimSpaceWeaverClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAppsCommandInput, ListAppsCommandOutput>;
|
|
89
|
-
/**
|
|
90
|
-
* @internal
|
|
91
|
-
*/
|
|
92
|
-
private serialize;
|
|
93
|
-
/**
|
|
94
|
-
* @internal
|
|
95
|
-
*/
|
|
96
|
-
private deserialize;
|
|
81
|
+
export declare class ListAppsCommand extends ListAppsCommand_base {
|
|
97
82
|
}
|