@aws-sdk/client-simspaceweaver 3.928.0 → 3.930.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/index.js +677 -732
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SimSpaceWeaverClient.js +2 -0
- package/dist-es/commands/CreateSnapshotCommand.js +3 -9
- package/dist-es/commands/DeleteAppCommand.js +3 -9
- package/dist-es/commands/DeleteSimulationCommand.js +3 -9
- package/dist-es/commands/DescribeAppCommand.js +3 -9
- package/dist-es/commands/DescribeSimulationCommand.js +3 -9
- package/dist-es/commands/ListAppsCommand.js +3 -9
- package/dist-es/commands/ListSimulationsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/StartAppCommand.js +3 -10
- package/dist-es/commands/StartClockCommand.js +3 -9
- package/dist-es/commands/StartSimulationCommand.js +3 -10
- package/dist-es/commands/StopAppCommand.js +3 -9
- package/dist-es/commands/StopClockCommand.js +3 -9
- package/dist-es/commands/StopSimulationCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +636 -0
- package/dist-types/SimSpaceWeaverClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -8
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +80 -0
- package/dist-types/ts3.4/SimSpaceWeaverClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -6
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +86 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -601
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -146
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -197
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateSnapshotCommandInput, CreateSnapshotCommandOutput } from "../commands/CreateSnapshotCommand";
|
|
4
|
-
import { DeleteAppCommandInput, DeleteAppCommandOutput } from "../commands/DeleteAppCommand";
|
|
5
|
-
import { DeleteSimulationCommandInput, DeleteSimulationCommandOutput } from "../commands/DeleteSimulationCommand";
|
|
6
|
-
import { DescribeAppCommandInput, DescribeAppCommandOutput } from "../commands/DescribeAppCommand";
|
|
7
|
-
import { DescribeSimulationCommandInput, DescribeSimulationCommandOutput } from "../commands/DescribeSimulationCommand";
|
|
8
|
-
import { ListAppsCommandInput, ListAppsCommandOutput } from "../commands/ListAppsCommand";
|
|
9
|
-
import { ListSimulationsCommandInput, ListSimulationsCommandOutput } from "../commands/ListSimulationsCommand";
|
|
10
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
11
|
-
import { StartAppCommandInput, StartAppCommandOutput } from "../commands/StartAppCommand";
|
|
12
|
-
import { StartClockCommandInput, StartClockCommandOutput } from "../commands/StartClockCommand";
|
|
13
|
-
import { StartSimulationCommandInput, StartSimulationCommandOutput } from "../commands/StartSimulationCommand";
|
|
14
|
-
import { StopAppCommandInput, StopAppCommandOutput } from "../commands/StopAppCommand";
|
|
15
|
-
import { StopClockCommandInput, StopClockCommandOutput } from "../commands/StopClockCommand";
|
|
16
|
-
import { StopSimulationCommandInput, StopSimulationCommandOutput } from "../commands/StopSimulationCommand";
|
|
17
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
18
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
19
|
-
/**
|
|
20
|
-
* serializeAws_restJson1CreateSnapshotCommand
|
|
21
|
-
*/
|
|
22
|
-
export declare const se_CreateSnapshotCommand: (input: CreateSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
-
/**
|
|
24
|
-
* serializeAws_restJson1DeleteAppCommand
|
|
25
|
-
*/
|
|
26
|
-
export declare const se_DeleteAppCommand: (input: DeleteAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
-
/**
|
|
28
|
-
* serializeAws_restJson1DeleteSimulationCommand
|
|
29
|
-
*/
|
|
30
|
-
export declare const se_DeleteSimulationCommand: (input: DeleteSimulationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
-
/**
|
|
32
|
-
* serializeAws_restJson1DescribeAppCommand
|
|
33
|
-
*/
|
|
34
|
-
export declare const se_DescribeAppCommand: (input: DescribeAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
-
/**
|
|
36
|
-
* serializeAws_restJson1DescribeSimulationCommand
|
|
37
|
-
*/
|
|
38
|
-
export declare const se_DescribeSimulationCommand: (input: DescribeSimulationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
-
/**
|
|
40
|
-
* serializeAws_restJson1ListAppsCommand
|
|
41
|
-
*/
|
|
42
|
-
export declare const se_ListAppsCommand: (input: ListAppsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
-
/**
|
|
44
|
-
* serializeAws_restJson1ListSimulationsCommand
|
|
45
|
-
*/
|
|
46
|
-
export declare const se_ListSimulationsCommand: (input: ListSimulationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
-
/**
|
|
48
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
49
|
-
*/
|
|
50
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
-
/**
|
|
52
|
-
* serializeAws_restJson1StartAppCommand
|
|
53
|
-
*/
|
|
54
|
-
export declare const se_StartAppCommand: (input: StartAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
-
/**
|
|
56
|
-
* serializeAws_restJson1StartClockCommand
|
|
57
|
-
*/
|
|
58
|
-
export declare const se_StartClockCommand: (input: StartClockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
-
/**
|
|
60
|
-
* serializeAws_restJson1StartSimulationCommand
|
|
61
|
-
*/
|
|
62
|
-
export declare const se_StartSimulationCommand: (input: StartSimulationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
-
/**
|
|
64
|
-
* serializeAws_restJson1StopAppCommand
|
|
65
|
-
*/
|
|
66
|
-
export declare const se_StopAppCommand: (input: StopAppCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
67
|
-
/**
|
|
68
|
-
* serializeAws_restJson1StopClockCommand
|
|
69
|
-
*/
|
|
70
|
-
export declare const se_StopClockCommand: (input: StopClockCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
|
-
/**
|
|
72
|
-
* serializeAws_restJson1StopSimulationCommand
|
|
73
|
-
*/
|
|
74
|
-
export declare const se_StopSimulationCommand: (input: StopSimulationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
75
|
-
/**
|
|
76
|
-
* serializeAws_restJson1TagResourceCommand
|
|
77
|
-
*/
|
|
78
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
|
-
/**
|
|
80
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
81
|
-
*/
|
|
82
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
-
/**
|
|
84
|
-
* deserializeAws_restJson1CreateSnapshotCommand
|
|
85
|
-
*/
|
|
86
|
-
export declare const de_CreateSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSnapshotCommandOutput>;
|
|
87
|
-
/**
|
|
88
|
-
* deserializeAws_restJson1DeleteAppCommand
|
|
89
|
-
*/
|
|
90
|
-
export declare const de_DeleteAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppCommandOutput>;
|
|
91
|
-
/**
|
|
92
|
-
* deserializeAws_restJson1DeleteSimulationCommand
|
|
93
|
-
*/
|
|
94
|
-
export declare const de_DeleteSimulationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSimulationCommandOutput>;
|
|
95
|
-
/**
|
|
96
|
-
* deserializeAws_restJson1DescribeAppCommand
|
|
97
|
-
*/
|
|
98
|
-
export declare const de_DescribeAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAppCommandOutput>;
|
|
99
|
-
/**
|
|
100
|
-
* deserializeAws_restJson1DescribeSimulationCommand
|
|
101
|
-
*/
|
|
102
|
-
export declare const de_DescribeSimulationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSimulationCommandOutput>;
|
|
103
|
-
/**
|
|
104
|
-
* deserializeAws_restJson1ListAppsCommand
|
|
105
|
-
*/
|
|
106
|
-
export declare const de_ListAppsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppsCommandOutput>;
|
|
107
|
-
/**
|
|
108
|
-
* deserializeAws_restJson1ListSimulationsCommand
|
|
109
|
-
*/
|
|
110
|
-
export declare const de_ListSimulationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSimulationsCommandOutput>;
|
|
111
|
-
/**
|
|
112
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
113
|
-
*/
|
|
114
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
115
|
-
/**
|
|
116
|
-
* deserializeAws_restJson1StartAppCommand
|
|
117
|
-
*/
|
|
118
|
-
export declare const de_StartAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartAppCommandOutput>;
|
|
119
|
-
/**
|
|
120
|
-
* deserializeAws_restJson1StartClockCommand
|
|
121
|
-
*/
|
|
122
|
-
export declare const de_StartClockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartClockCommandOutput>;
|
|
123
|
-
/**
|
|
124
|
-
* deserializeAws_restJson1StartSimulationCommand
|
|
125
|
-
*/
|
|
126
|
-
export declare const de_StartSimulationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartSimulationCommandOutput>;
|
|
127
|
-
/**
|
|
128
|
-
* deserializeAws_restJson1StopAppCommand
|
|
129
|
-
*/
|
|
130
|
-
export declare const de_StopAppCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopAppCommandOutput>;
|
|
131
|
-
/**
|
|
132
|
-
* deserializeAws_restJson1StopClockCommand
|
|
133
|
-
*/
|
|
134
|
-
export declare const de_StopClockCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopClockCommandOutput>;
|
|
135
|
-
/**
|
|
136
|
-
* deserializeAws_restJson1StopSimulationCommand
|
|
137
|
-
*/
|
|
138
|
-
export declare const de_StopSimulationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopSimulationCommandOutput>;
|
|
139
|
-
/**
|
|
140
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
141
|
-
*/
|
|
142
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
143
|
-
/**
|
|
144
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
145
|
-
*/
|
|
146
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
@@ -1,197 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateSnapshotCommandInput,
|
|
8
|
-
CreateSnapshotCommandOutput,
|
|
9
|
-
} from "../commands/CreateSnapshotCommand";
|
|
10
|
-
import {
|
|
11
|
-
DeleteAppCommandInput,
|
|
12
|
-
DeleteAppCommandOutput,
|
|
13
|
-
} from "../commands/DeleteAppCommand";
|
|
14
|
-
import {
|
|
15
|
-
DeleteSimulationCommandInput,
|
|
16
|
-
DeleteSimulationCommandOutput,
|
|
17
|
-
} from "../commands/DeleteSimulationCommand";
|
|
18
|
-
import {
|
|
19
|
-
DescribeAppCommandInput,
|
|
20
|
-
DescribeAppCommandOutput,
|
|
21
|
-
} from "../commands/DescribeAppCommand";
|
|
22
|
-
import {
|
|
23
|
-
DescribeSimulationCommandInput,
|
|
24
|
-
DescribeSimulationCommandOutput,
|
|
25
|
-
} from "../commands/DescribeSimulationCommand";
|
|
26
|
-
import {
|
|
27
|
-
ListAppsCommandInput,
|
|
28
|
-
ListAppsCommandOutput,
|
|
29
|
-
} from "../commands/ListAppsCommand";
|
|
30
|
-
import {
|
|
31
|
-
ListSimulationsCommandInput,
|
|
32
|
-
ListSimulationsCommandOutput,
|
|
33
|
-
} from "../commands/ListSimulationsCommand";
|
|
34
|
-
import {
|
|
35
|
-
ListTagsForResourceCommandInput,
|
|
36
|
-
ListTagsForResourceCommandOutput,
|
|
37
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
38
|
-
import {
|
|
39
|
-
StartAppCommandInput,
|
|
40
|
-
StartAppCommandOutput,
|
|
41
|
-
} from "../commands/StartAppCommand";
|
|
42
|
-
import {
|
|
43
|
-
StartClockCommandInput,
|
|
44
|
-
StartClockCommandOutput,
|
|
45
|
-
} from "../commands/StartClockCommand";
|
|
46
|
-
import {
|
|
47
|
-
StartSimulationCommandInput,
|
|
48
|
-
StartSimulationCommandOutput,
|
|
49
|
-
} from "../commands/StartSimulationCommand";
|
|
50
|
-
import {
|
|
51
|
-
StopAppCommandInput,
|
|
52
|
-
StopAppCommandOutput,
|
|
53
|
-
} from "../commands/StopAppCommand";
|
|
54
|
-
import {
|
|
55
|
-
StopClockCommandInput,
|
|
56
|
-
StopClockCommandOutput,
|
|
57
|
-
} from "../commands/StopClockCommand";
|
|
58
|
-
import {
|
|
59
|
-
StopSimulationCommandInput,
|
|
60
|
-
StopSimulationCommandOutput,
|
|
61
|
-
} from "../commands/StopSimulationCommand";
|
|
62
|
-
import {
|
|
63
|
-
TagResourceCommandInput,
|
|
64
|
-
TagResourceCommandOutput,
|
|
65
|
-
} from "../commands/TagResourceCommand";
|
|
66
|
-
import {
|
|
67
|
-
UntagResourceCommandInput,
|
|
68
|
-
UntagResourceCommandOutput,
|
|
69
|
-
} from "../commands/UntagResourceCommand";
|
|
70
|
-
export declare const se_CreateSnapshotCommand: (
|
|
71
|
-
input: CreateSnapshotCommandInput,
|
|
72
|
-
context: __SerdeContext
|
|
73
|
-
) => Promise<__HttpRequest>;
|
|
74
|
-
export declare const se_DeleteAppCommand: (
|
|
75
|
-
input: DeleteAppCommandInput,
|
|
76
|
-
context: __SerdeContext
|
|
77
|
-
) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const se_DeleteSimulationCommand: (
|
|
79
|
-
input: DeleteSimulationCommandInput,
|
|
80
|
-
context: __SerdeContext
|
|
81
|
-
) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const se_DescribeAppCommand: (
|
|
83
|
-
input: DescribeAppCommandInput,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const se_DescribeSimulationCommand: (
|
|
87
|
-
input: DescribeSimulationCommandInput,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const se_ListAppsCommand: (
|
|
91
|
-
input: ListAppsCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_ListSimulationsCommand: (
|
|
95
|
-
input: ListSimulationsCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
99
|
-
input: ListTagsForResourceCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_StartAppCommand: (
|
|
103
|
-
input: StartAppCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_StartClockCommand: (
|
|
107
|
-
input: StartClockCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_StartSimulationCommand: (
|
|
111
|
-
input: StartSimulationCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_StopAppCommand: (
|
|
115
|
-
input: StopAppCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_StopClockCommand: (
|
|
119
|
-
input: StopClockCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_StopSimulationCommand: (
|
|
123
|
-
input: StopSimulationCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_TagResourceCommand: (
|
|
127
|
-
input: TagResourceCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_UntagResourceCommand: (
|
|
131
|
-
input: UntagResourceCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const de_CreateSnapshotCommand: (
|
|
135
|
-
output: __HttpResponse,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<CreateSnapshotCommandOutput>;
|
|
138
|
-
export declare const de_DeleteAppCommand: (
|
|
139
|
-
output: __HttpResponse,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<DeleteAppCommandOutput>;
|
|
142
|
-
export declare const de_DeleteSimulationCommand: (
|
|
143
|
-
output: __HttpResponse,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<DeleteSimulationCommandOutput>;
|
|
146
|
-
export declare const de_DescribeAppCommand: (
|
|
147
|
-
output: __HttpResponse,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<DescribeAppCommandOutput>;
|
|
150
|
-
export declare const de_DescribeSimulationCommand: (
|
|
151
|
-
output: __HttpResponse,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<DescribeSimulationCommandOutput>;
|
|
154
|
-
export declare const de_ListAppsCommand: (
|
|
155
|
-
output: __HttpResponse,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<ListAppsCommandOutput>;
|
|
158
|
-
export declare const de_ListSimulationsCommand: (
|
|
159
|
-
output: __HttpResponse,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<ListSimulationsCommandOutput>;
|
|
162
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
163
|
-
output: __HttpResponse,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
166
|
-
export declare const de_StartAppCommand: (
|
|
167
|
-
output: __HttpResponse,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<StartAppCommandOutput>;
|
|
170
|
-
export declare const de_StartClockCommand: (
|
|
171
|
-
output: __HttpResponse,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<StartClockCommandOutput>;
|
|
174
|
-
export declare const de_StartSimulationCommand: (
|
|
175
|
-
output: __HttpResponse,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<StartSimulationCommandOutput>;
|
|
178
|
-
export declare const de_StopAppCommand: (
|
|
179
|
-
output: __HttpResponse,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<StopAppCommandOutput>;
|
|
182
|
-
export declare const de_StopClockCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<StopClockCommandOutput>;
|
|
186
|
-
export declare const de_StopSimulationCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<StopSimulationCommandOutput>;
|
|
190
|
-
export declare const de_TagResourceCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<TagResourceCommandOutput>;
|
|
194
|
-
export declare const de_UntagResourceCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<UntagResourceCommandOutput>;
|