@aws-sdk/client-simspaceweaver 3.220.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/LICENSE +201 -0
- package/README.md +216 -0
- package/dist-cjs/SimSpaceWeaver.js +232 -0
- package/dist-cjs/SimSpaceWeaverClient.js +40 -0
- package/dist-cjs/commands/DeleteAppCommand.js +46 -0
- package/dist-cjs/commands/DeleteSimulationCommand.js +46 -0
- package/dist-cjs/commands/DescribeAppCommand.js +46 -0
- package/dist-cjs/commands/DescribeSimulationCommand.js +46 -0
- package/dist-cjs/commands/ListAppsCommand.js +46 -0
- package/dist-cjs/commands/ListSimulationsCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/StartAppCommand.js +46 -0
- package/dist-cjs/commands/StartClockCommand.js +46 -0
- package/dist-cjs/commands/StartSimulationCommand.js +46 -0
- package/dist-cjs/commands/StopAppCommand.js +46 -0
- package/dist-cjs/commands/StopClockCommand.js +46 -0
- package/dist-cjs/commands/StopSimulationCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/index.js +18 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/SimSpaceWeaverServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +328 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAppsPaginator.js +36 -0
- package/dist-cjs/pagination/ListSimulationsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1384 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/SimSpaceWeaver.js +228 -0
- package/dist-es/SimSpaceWeaverClient.js +36 -0
- package/dist-es/commands/DeleteAppCommand.js +42 -0
- package/dist-es/commands/DeleteSimulationCommand.js +42 -0
- package/dist-es/commands/DescribeAppCommand.js +42 -0
- package/dist-es/commands/DescribeSimulationCommand.js +42 -0
- package/dist-es/commands/ListAppsCommand.js +42 -0
- package/dist-es/commands/ListSimulationsCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/StartAppCommand.js +42 -0
- package/dist-es/commands/StartClockCommand.js +42 -0
- package/dist-es/commands/StartSimulationCommand.js +42 -0
- package/dist-es/commands/StopAppCommand.js +42 -0
- package/dist-es/commands/StopClockCommand.js +42 -0
- package/dist-es/commands/StopSimulationCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/SimSpaceWeaverServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +275 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAppsPaginator.js +32 -0
- package/dist-es/pagination/ListSimulationsPaginator.js +32 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1351 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/SimSpaceWeaver.d.ts +134 -0
- package/dist-types/SimSpaceWeaverClient.d.ts +167 -0
- package/dist-types/commands/DeleteAppCommand.d.ts +37 -0
- package/dist-types/commands/DeleteSimulationCommand.d.ts +41 -0
- package/dist-types/commands/DescribeAppCommand.d.ts +37 -0
- package/dist-types/commands/DescribeSimulationCommand.d.ts +37 -0
- package/dist-types/commands/ListAppsCommand.d.ts +37 -0
- package/dist-types/commands/ListSimulationsCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/StartAppCommand.d.ts +37 -0
- package/dist-types/commands/StartClockCommand.d.ts +37 -0
- package/dist-types/commands/StartSimulationCommand.d.ts +37 -0
- package/dist-types/commands/StopAppCommand.d.ts +37 -0
- package/dist-types/commands/StopClockCommand.d.ts +37 -0
- package/dist-types/commands/StopSimulationCommand.d.ts +42 -0
- package/dist-types/commands/TagResourceCommand.d.ts +38 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/SimSpaceWeaverServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +911 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListAppsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSimulationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +47 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/SimSpaceWeaver.d.ts +259 -0
- package/dist-types/ts3.4/SimSpaceWeaverClient.d.ts +202 -0
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteSimulationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DescribeAppCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DescribeSimulationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListSimulationsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartAppCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/StartClockCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/StartSimulationCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/StopAppCommand.d.ts +32 -0
- package/dist-types/ts3.4/commands/StopClockCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/StopSimulationCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/SimSpaceWeaverServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +395 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListAppsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSimulationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +185 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
- package/package.json +103 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
import {
|
|
2
|
+
RegionInputConfig,
|
|
3
|
+
RegionResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
9
|
+
import {
|
|
10
|
+
HostHeaderInputConfig,
|
|
11
|
+
HostHeaderResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-host-header";
|
|
13
|
+
import {
|
|
14
|
+
RetryInputConfig,
|
|
15
|
+
RetryResolvedConfig,
|
|
16
|
+
} from "@aws-sdk/middleware-retry";
|
|
17
|
+
import {
|
|
18
|
+
AwsAuthInputConfig,
|
|
19
|
+
AwsAuthResolvedConfig,
|
|
20
|
+
} from "@aws-sdk/middleware-signing";
|
|
21
|
+
import {
|
|
22
|
+
UserAgentInputConfig,
|
|
23
|
+
UserAgentResolvedConfig,
|
|
24
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
25
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
26
|
+
import {
|
|
27
|
+
Client as __Client,
|
|
28
|
+
DefaultsMode,
|
|
29
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
30
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
31
|
+
} from "@aws-sdk/smithy-client";
|
|
32
|
+
import {
|
|
33
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
|
+
Credentials as __Credentials,
|
|
35
|
+
Decoder as __Decoder,
|
|
36
|
+
Encoder as __Encoder,
|
|
37
|
+
HashConstructor as __HashConstructor,
|
|
38
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
39
|
+
Logger as __Logger,
|
|
40
|
+
Provider as __Provider,
|
|
41
|
+
Provider,
|
|
42
|
+
StreamCollector as __StreamCollector,
|
|
43
|
+
UrlParser as __UrlParser,
|
|
44
|
+
UserAgent as __UserAgent,
|
|
45
|
+
} from "@aws-sdk/types";
|
|
46
|
+
import {
|
|
47
|
+
DeleteAppCommandInput,
|
|
48
|
+
DeleteAppCommandOutput,
|
|
49
|
+
} from "./commands/DeleteAppCommand";
|
|
50
|
+
import {
|
|
51
|
+
DeleteSimulationCommandInput,
|
|
52
|
+
DeleteSimulationCommandOutput,
|
|
53
|
+
} from "./commands/DeleteSimulationCommand";
|
|
54
|
+
import {
|
|
55
|
+
DescribeAppCommandInput,
|
|
56
|
+
DescribeAppCommandOutput,
|
|
57
|
+
} from "./commands/DescribeAppCommand";
|
|
58
|
+
import {
|
|
59
|
+
DescribeSimulationCommandInput,
|
|
60
|
+
DescribeSimulationCommandOutput,
|
|
61
|
+
} from "./commands/DescribeSimulationCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListAppsCommandInput,
|
|
64
|
+
ListAppsCommandOutput,
|
|
65
|
+
} from "./commands/ListAppsCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListSimulationsCommandInput,
|
|
68
|
+
ListSimulationsCommandOutput,
|
|
69
|
+
} from "./commands/ListSimulationsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListTagsForResourceCommandInput,
|
|
72
|
+
ListTagsForResourceCommandOutput,
|
|
73
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
StartAppCommandInput,
|
|
76
|
+
StartAppCommandOutput,
|
|
77
|
+
} from "./commands/StartAppCommand";
|
|
78
|
+
import {
|
|
79
|
+
StartClockCommandInput,
|
|
80
|
+
StartClockCommandOutput,
|
|
81
|
+
} from "./commands/StartClockCommand";
|
|
82
|
+
import {
|
|
83
|
+
StartSimulationCommandInput,
|
|
84
|
+
StartSimulationCommandOutput,
|
|
85
|
+
} from "./commands/StartSimulationCommand";
|
|
86
|
+
import {
|
|
87
|
+
StopAppCommandInput,
|
|
88
|
+
StopAppCommandOutput,
|
|
89
|
+
} from "./commands/StopAppCommand";
|
|
90
|
+
import {
|
|
91
|
+
StopClockCommandInput,
|
|
92
|
+
StopClockCommandOutput,
|
|
93
|
+
} from "./commands/StopClockCommand";
|
|
94
|
+
import {
|
|
95
|
+
StopSimulationCommandInput,
|
|
96
|
+
StopSimulationCommandOutput,
|
|
97
|
+
} from "./commands/StopSimulationCommand";
|
|
98
|
+
import {
|
|
99
|
+
TagResourceCommandInput,
|
|
100
|
+
TagResourceCommandOutput,
|
|
101
|
+
} from "./commands/TagResourceCommand";
|
|
102
|
+
import {
|
|
103
|
+
UntagResourceCommandInput,
|
|
104
|
+
UntagResourceCommandOutput,
|
|
105
|
+
} from "./commands/UntagResourceCommand";
|
|
106
|
+
import {
|
|
107
|
+
ClientInputEndpointParameters,
|
|
108
|
+
ClientResolvedEndpointParameters,
|
|
109
|
+
EndpointParameters,
|
|
110
|
+
} from "./endpoint/EndpointParameters";
|
|
111
|
+
export declare type ServiceInputTypes =
|
|
112
|
+
| DeleteAppCommandInput
|
|
113
|
+
| DeleteSimulationCommandInput
|
|
114
|
+
| DescribeAppCommandInput
|
|
115
|
+
| DescribeSimulationCommandInput
|
|
116
|
+
| ListAppsCommandInput
|
|
117
|
+
| ListSimulationsCommandInput
|
|
118
|
+
| ListTagsForResourceCommandInput
|
|
119
|
+
| StartAppCommandInput
|
|
120
|
+
| StartClockCommandInput
|
|
121
|
+
| StartSimulationCommandInput
|
|
122
|
+
| StopAppCommandInput
|
|
123
|
+
| StopClockCommandInput
|
|
124
|
+
| StopSimulationCommandInput
|
|
125
|
+
| TagResourceCommandInput
|
|
126
|
+
| UntagResourceCommandInput;
|
|
127
|
+
export declare type ServiceOutputTypes =
|
|
128
|
+
| DeleteAppCommandOutput
|
|
129
|
+
| DeleteSimulationCommandOutput
|
|
130
|
+
| DescribeAppCommandOutput
|
|
131
|
+
| DescribeSimulationCommandOutput
|
|
132
|
+
| ListAppsCommandOutput
|
|
133
|
+
| ListSimulationsCommandOutput
|
|
134
|
+
| ListTagsForResourceCommandOutput
|
|
135
|
+
| StartAppCommandOutput
|
|
136
|
+
| StartClockCommandOutput
|
|
137
|
+
| StartSimulationCommandOutput
|
|
138
|
+
| StopAppCommandOutput
|
|
139
|
+
| StopClockCommandOutput
|
|
140
|
+
| StopSimulationCommandOutput
|
|
141
|
+
| TagResourceCommandOutput
|
|
142
|
+
| UntagResourceCommandOutput;
|
|
143
|
+
export interface ClientDefaults
|
|
144
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
145
|
+
requestHandler?: __HttpHandler;
|
|
146
|
+
sha256?: __HashConstructor;
|
|
147
|
+
urlParser?: __UrlParser;
|
|
148
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
149
|
+
streamCollector?: __StreamCollector;
|
|
150
|
+
base64Decoder?: __Decoder;
|
|
151
|
+
base64Encoder?: __Encoder;
|
|
152
|
+
utf8Decoder?: __Decoder;
|
|
153
|
+
utf8Encoder?: __Encoder;
|
|
154
|
+
runtime?: string;
|
|
155
|
+
disableHostPrefix?: boolean;
|
|
156
|
+
maxAttempts?: number | __Provider<number>;
|
|
157
|
+
retryMode?: string | __Provider<string>;
|
|
158
|
+
logger?: __Logger;
|
|
159
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
160
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
161
|
+
serviceId?: string;
|
|
162
|
+
region?: string | __Provider<string>;
|
|
163
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
164
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
165
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
166
|
+
}
|
|
167
|
+
declare type SimSpaceWeaverClientConfigType = Partial<
|
|
168
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
169
|
+
> &
|
|
170
|
+
ClientDefaults &
|
|
171
|
+
RegionInputConfig &
|
|
172
|
+
EndpointInputConfig<EndpointParameters> &
|
|
173
|
+
RetryInputConfig &
|
|
174
|
+
HostHeaderInputConfig &
|
|
175
|
+
AwsAuthInputConfig &
|
|
176
|
+
UserAgentInputConfig &
|
|
177
|
+
ClientInputEndpointParameters;
|
|
178
|
+
export interface SimSpaceWeaverClientConfig
|
|
179
|
+
extends SimSpaceWeaverClientConfigType {}
|
|
180
|
+
declare type SimSpaceWeaverClientResolvedConfigType =
|
|
181
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
182
|
+
Required<ClientDefaults> &
|
|
183
|
+
RegionResolvedConfig &
|
|
184
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
185
|
+
RetryResolvedConfig &
|
|
186
|
+
HostHeaderResolvedConfig &
|
|
187
|
+
AwsAuthResolvedConfig &
|
|
188
|
+
UserAgentResolvedConfig &
|
|
189
|
+
ClientResolvedEndpointParameters;
|
|
190
|
+
export interface SimSpaceWeaverClientResolvedConfig
|
|
191
|
+
extends SimSpaceWeaverClientResolvedConfigType {}
|
|
192
|
+
export declare class SimSpaceWeaverClient extends __Client<
|
|
193
|
+
__HttpHandlerOptions,
|
|
194
|
+
ServiceInputTypes,
|
|
195
|
+
ServiceOutputTypes,
|
|
196
|
+
SimSpaceWeaverClientResolvedConfig
|
|
197
|
+
> {
|
|
198
|
+
readonly config: SimSpaceWeaverClientResolvedConfig;
|
|
199
|
+
constructor(configuration: SimSpaceWeaverClientConfig);
|
|
200
|
+
destroy(): void;
|
|
201
|
+
}
|
|
202
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DeleteAppInput, DeleteAppOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
14
|
+
} from "../SimSpaceWeaverClient";
|
|
15
|
+
export interface DeleteAppCommandInput extends DeleteAppInput {}
|
|
16
|
+
export interface DeleteAppCommandOutput
|
|
17
|
+
extends DeleteAppOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DeleteAppCommand extends $Command<
|
|
20
|
+
DeleteAppCommandInput,
|
|
21
|
+
DeleteAppCommandOutput,
|
|
22
|
+
SimSpaceWeaverClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteAppCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteAppCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteAppCommandInput, DeleteAppCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DeleteSimulationInput,
|
|
11
|
+
DeleteSimulationOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
17
|
+
} from "../SimSpaceWeaverClient";
|
|
18
|
+
export interface DeleteSimulationCommandInput extends DeleteSimulationInput {}
|
|
19
|
+
export interface DeleteSimulationCommandOutput
|
|
20
|
+
extends DeleteSimulationOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteSimulationCommand extends $Command<
|
|
23
|
+
DeleteSimulationCommandInput,
|
|
24
|
+
DeleteSimulationCommandOutput,
|
|
25
|
+
SimSpaceWeaverClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteSimulationCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: DeleteSimulationCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteSimulationCommandInput, DeleteSimulationCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { DescribeAppInput, DescribeAppOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
14
|
+
} from "../SimSpaceWeaverClient";
|
|
15
|
+
export interface DescribeAppCommandInput extends DescribeAppInput {}
|
|
16
|
+
export interface DescribeAppCommandOutput
|
|
17
|
+
extends DescribeAppOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DescribeAppCommand extends $Command<
|
|
20
|
+
DescribeAppCommandInput,
|
|
21
|
+
DescribeAppCommandOutput,
|
|
22
|
+
SimSpaceWeaverClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DescribeAppCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DescribeAppCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DescribeAppCommandInput, DescribeAppCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DescribeSimulationInput,
|
|
11
|
+
DescribeSimulationOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
17
|
+
} from "../SimSpaceWeaverClient";
|
|
18
|
+
export interface DescribeSimulationCommandInput
|
|
19
|
+
extends DescribeSimulationInput {}
|
|
20
|
+
export interface DescribeSimulationCommandOutput
|
|
21
|
+
extends DescribeSimulationOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DescribeSimulationCommand extends $Command<
|
|
24
|
+
DescribeSimulationCommandInput,
|
|
25
|
+
DescribeSimulationCommandOutput,
|
|
26
|
+
SimSpaceWeaverClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeSimulationCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DescribeSimulationCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeSimulationCommandInput, DescribeSimulationCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { ListAppsInput, ListAppsOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
14
|
+
} from "../SimSpaceWeaverClient";
|
|
15
|
+
export interface ListAppsCommandInput extends ListAppsInput {}
|
|
16
|
+
export interface ListAppsCommandOutput
|
|
17
|
+
extends ListAppsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ListAppsCommand extends $Command<
|
|
20
|
+
ListAppsCommandInput,
|
|
21
|
+
ListAppsCommandOutput,
|
|
22
|
+
SimSpaceWeaverClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListAppsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: ListAppsCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListAppsCommandInput, ListAppsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListSimulationsInput,
|
|
11
|
+
ListSimulationsOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
17
|
+
} from "../SimSpaceWeaverClient";
|
|
18
|
+
export interface ListSimulationsCommandInput extends ListSimulationsInput {}
|
|
19
|
+
export interface ListSimulationsCommandOutput
|
|
20
|
+
extends ListSimulationsOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListSimulationsCommand extends $Command<
|
|
23
|
+
ListSimulationsCommandInput,
|
|
24
|
+
ListSimulationsCommandOutput,
|
|
25
|
+
SimSpaceWeaverClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListSimulationsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: ListSimulationsCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListSimulationsCommandInput, ListSimulationsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListTagsForResourceInput,
|
|
11
|
+
ListTagsForResourceOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
17
|
+
} from "../SimSpaceWeaverClient";
|
|
18
|
+
export interface ListTagsForResourceCommandInput
|
|
19
|
+
extends ListTagsForResourceInput {}
|
|
20
|
+
export interface ListTagsForResourceCommandOutput
|
|
21
|
+
extends ListTagsForResourceOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
SimSpaceWeaverClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { StartAppInput, StartAppOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
14
|
+
} from "../SimSpaceWeaverClient";
|
|
15
|
+
export interface StartAppCommandInput extends StartAppInput {}
|
|
16
|
+
export interface StartAppCommandOutput
|
|
17
|
+
extends StartAppOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class StartAppCommand extends $Command<
|
|
20
|
+
StartAppCommandInput,
|
|
21
|
+
StartAppCommandOutput,
|
|
22
|
+
SimSpaceWeaverClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StartAppCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: StartAppCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StartAppCommandInput, StartAppCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { StartClockInput, StartClockOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
14
|
+
} from "../SimSpaceWeaverClient";
|
|
15
|
+
export interface StartClockCommandInput extends StartClockInput {}
|
|
16
|
+
export interface StartClockCommandOutput
|
|
17
|
+
extends StartClockOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class StartClockCommand extends $Command<
|
|
20
|
+
StartClockCommandInput,
|
|
21
|
+
StartClockCommandOutput,
|
|
22
|
+
SimSpaceWeaverClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StartClockCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: StartClockCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StartClockCommandInput, StartClockCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
StartSimulationInput,
|
|
11
|
+
StartSimulationOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
17
|
+
} from "../SimSpaceWeaverClient";
|
|
18
|
+
export interface StartSimulationCommandInput extends StartSimulationInput {}
|
|
19
|
+
export interface StartSimulationCommandOutput
|
|
20
|
+
extends StartSimulationOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class StartSimulationCommand extends $Command<
|
|
23
|
+
StartSimulationCommandInput,
|
|
24
|
+
StartSimulationCommandOutput,
|
|
25
|
+
SimSpaceWeaverClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: StartSimulationCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: StartSimulationCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<StartSimulationCommandInput, StartSimulationCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { StopAppInput, StopAppOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
14
|
+
} from "../SimSpaceWeaverClient";
|
|
15
|
+
export interface StopAppCommandInput extends StopAppInput {}
|
|
16
|
+
export interface StopAppCommandOutput extends StopAppOutput, __MetadataBearer {}
|
|
17
|
+
export declare class StopAppCommand extends $Command<
|
|
18
|
+
StopAppCommandInput,
|
|
19
|
+
StopAppCommandOutput,
|
|
20
|
+
SimSpaceWeaverClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: StopAppCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
|
+
constructor(input: StopAppCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<StopAppCommandInput, StopAppCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { StopClockInput, StopClockOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
14
|
+
} from "../SimSpaceWeaverClient";
|
|
15
|
+
export interface StopClockCommandInput extends StopClockInput {}
|
|
16
|
+
export interface StopClockCommandOutput
|
|
17
|
+
extends StopClockOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class StopClockCommand extends $Command<
|
|
20
|
+
StopClockCommandInput,
|
|
21
|
+
StopClockCommandOutput,
|
|
22
|
+
SimSpaceWeaverClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StopClockCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: StopClockCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StopClockCommandInput, StopClockCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import { StopSimulationInput, StopSimulationOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
SimSpaceWeaverClientResolvedConfig,
|
|
14
|
+
} from "../SimSpaceWeaverClient";
|
|
15
|
+
export interface StopSimulationCommandInput extends StopSimulationInput {}
|
|
16
|
+
export interface StopSimulationCommandOutput
|
|
17
|
+
extends StopSimulationOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class StopSimulationCommand extends $Command<
|
|
20
|
+
StopSimulationCommandInput,
|
|
21
|
+
StopSimulationCommandOutput,
|
|
22
|
+
SimSpaceWeaverClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StopSimulationCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: StopSimulationCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: SimSpaceWeaverClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StopSimulationCommandInput, StopSimulationCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|