@aws-sdk/client-simspaceweaver 3.936.0 → 3.939.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 +56 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +48 -0
- package/dist-es/models/models_0.js +1 -48
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +104 -0
- package/dist-types/models/models_0.d.ts +1 -104
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +61 -0
- package/dist-types/ts3.4/models/models_0.d.ts +9 -61
- package/package.json +2 -2
package/dist-cjs/index.js
CHANGED
|
@@ -1065,6 +1065,55 @@ const paginateListApps = core.createPaginator(SimSpaceWeaverClient, ListAppsComm
|
|
|
1065
1065
|
|
|
1066
1066
|
const paginateListSimulations = core.createPaginator(SimSpaceWeaverClient, ListSimulationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1067
1067
|
|
|
1068
|
+
const ClockStatus = {
|
|
1069
|
+
STARTED: "STARTED",
|
|
1070
|
+
STARTING: "STARTING",
|
|
1071
|
+
STOPPED: "STOPPED",
|
|
1072
|
+
STOPPING: "STOPPING",
|
|
1073
|
+
UNKNOWN: "UNKNOWN",
|
|
1074
|
+
};
|
|
1075
|
+
const ClockTargetStatus = {
|
|
1076
|
+
STARTED: "STARTED",
|
|
1077
|
+
STOPPED: "STOPPED",
|
|
1078
|
+
UNKNOWN: "UNKNOWN",
|
|
1079
|
+
};
|
|
1080
|
+
const SimulationAppStatus = {
|
|
1081
|
+
ERROR: "ERROR",
|
|
1082
|
+
STARTED: "STARTED",
|
|
1083
|
+
STARTING: "STARTING",
|
|
1084
|
+
STOPPED: "STOPPED",
|
|
1085
|
+
STOPPING: "STOPPING",
|
|
1086
|
+
UNKNOWN: "UNKNOWN",
|
|
1087
|
+
};
|
|
1088
|
+
const SimulationAppTargetStatus = {
|
|
1089
|
+
STARTED: "STARTED",
|
|
1090
|
+
STOPPED: "STOPPED",
|
|
1091
|
+
UNKNOWN: "UNKNOWN",
|
|
1092
|
+
};
|
|
1093
|
+
const LifecycleManagementStrategy = {
|
|
1094
|
+
ByRequest: "ByRequest",
|
|
1095
|
+
BySpatialSubdivision: "BySpatialSubdivision",
|
|
1096
|
+
PerWorker: "PerWorker",
|
|
1097
|
+
Unknown: "Unknown",
|
|
1098
|
+
};
|
|
1099
|
+
const SimulationStatus = {
|
|
1100
|
+
DELETED: "DELETED",
|
|
1101
|
+
DELETING: "DELETING",
|
|
1102
|
+
FAILED: "FAILED",
|
|
1103
|
+
SNAPSHOT_IN_PROGRESS: "SNAPSHOT_IN_PROGRESS",
|
|
1104
|
+
STARTED: "STARTED",
|
|
1105
|
+
STARTING: "STARTING",
|
|
1106
|
+
STOPPED: "STOPPED",
|
|
1107
|
+
STOPPING: "STOPPING",
|
|
1108
|
+
UNKNOWN: "UNKNOWN",
|
|
1109
|
+
};
|
|
1110
|
+
const SimulationTargetStatus = {
|
|
1111
|
+
DELETED: "DELETED",
|
|
1112
|
+
STARTED: "STARTED",
|
|
1113
|
+
STOPPED: "STOPPED",
|
|
1114
|
+
UNKNOWN: "UNKNOWN",
|
|
1115
|
+
};
|
|
1116
|
+
|
|
1068
1117
|
Object.defineProperty(exports, "$Command", {
|
|
1069
1118
|
enumerable: true,
|
|
1070
1119
|
get: function () { return smithyClient.Command; }
|
|
@@ -1074,6 +1123,8 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1074
1123
|
get: function () { return smithyClient.Client; }
|
|
1075
1124
|
});
|
|
1076
1125
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1126
|
+
exports.ClockStatus = ClockStatus;
|
|
1127
|
+
exports.ClockTargetStatus = ClockTargetStatus;
|
|
1077
1128
|
exports.ConflictException = ConflictException$1;
|
|
1078
1129
|
exports.CreateSnapshotCommand = CreateSnapshotCommand;
|
|
1079
1130
|
exports.DeleteAppCommand = DeleteAppCommand;
|
|
@@ -1081,6 +1132,7 @@ exports.DeleteSimulationCommand = DeleteSimulationCommand;
|
|
|
1081
1132
|
exports.DescribeAppCommand = DescribeAppCommand;
|
|
1082
1133
|
exports.DescribeSimulationCommand = DescribeSimulationCommand;
|
|
1083
1134
|
exports.InternalServerException = InternalServerException$1;
|
|
1135
|
+
exports.LifecycleManagementStrategy = LifecycleManagementStrategy;
|
|
1084
1136
|
exports.ListAppsCommand = ListAppsCommand;
|
|
1085
1137
|
exports.ListSimulationsCommand = ListSimulationsCommand;
|
|
1086
1138
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
@@ -1089,6 +1141,10 @@ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
|
1089
1141
|
exports.SimSpaceWeaver = SimSpaceWeaver;
|
|
1090
1142
|
exports.SimSpaceWeaverClient = SimSpaceWeaverClient;
|
|
1091
1143
|
exports.SimSpaceWeaverServiceException = SimSpaceWeaverServiceException$1;
|
|
1144
|
+
exports.SimulationAppStatus = SimulationAppStatus;
|
|
1145
|
+
exports.SimulationAppTargetStatus = SimulationAppTargetStatus;
|
|
1146
|
+
exports.SimulationStatus = SimulationStatus;
|
|
1147
|
+
exports.SimulationTargetStatus = SimulationTargetStatus;
|
|
1092
1148
|
exports.StartAppCommand = StartAppCommand;
|
|
1093
1149
|
exports.StartClockCommand = StartClockCommand;
|
|
1094
1150
|
exports.StartSimulationCommand = StartSimulationCommand;
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./SimSpaceWeaverClient";
|
|
|
2
2
|
export * from "./SimSpaceWeaver";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
+
export * from "./models/enums";
|
|
5
6
|
export * from "./models/errors";
|
|
6
7
|
export { SimSpaceWeaverServiceException } from "./models/SimSpaceWeaverServiceException";
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export const ClockStatus = {
|
|
2
|
+
STARTED: "STARTED",
|
|
3
|
+
STARTING: "STARTING",
|
|
4
|
+
STOPPED: "STOPPED",
|
|
5
|
+
STOPPING: "STOPPING",
|
|
6
|
+
UNKNOWN: "UNKNOWN",
|
|
7
|
+
};
|
|
8
|
+
export const ClockTargetStatus = {
|
|
9
|
+
STARTED: "STARTED",
|
|
10
|
+
STOPPED: "STOPPED",
|
|
11
|
+
UNKNOWN: "UNKNOWN",
|
|
12
|
+
};
|
|
13
|
+
export const SimulationAppStatus = {
|
|
14
|
+
ERROR: "ERROR",
|
|
15
|
+
STARTED: "STARTED",
|
|
16
|
+
STARTING: "STARTING",
|
|
17
|
+
STOPPED: "STOPPED",
|
|
18
|
+
STOPPING: "STOPPING",
|
|
19
|
+
UNKNOWN: "UNKNOWN",
|
|
20
|
+
};
|
|
21
|
+
export const SimulationAppTargetStatus = {
|
|
22
|
+
STARTED: "STARTED",
|
|
23
|
+
STOPPED: "STOPPED",
|
|
24
|
+
UNKNOWN: "UNKNOWN",
|
|
25
|
+
};
|
|
26
|
+
export const LifecycleManagementStrategy = {
|
|
27
|
+
ByRequest: "ByRequest",
|
|
28
|
+
BySpatialSubdivision: "BySpatialSubdivision",
|
|
29
|
+
PerWorker: "PerWorker",
|
|
30
|
+
Unknown: "Unknown",
|
|
31
|
+
};
|
|
32
|
+
export const SimulationStatus = {
|
|
33
|
+
DELETED: "DELETED",
|
|
34
|
+
DELETING: "DELETING",
|
|
35
|
+
FAILED: "FAILED",
|
|
36
|
+
SNAPSHOT_IN_PROGRESS: "SNAPSHOT_IN_PROGRESS",
|
|
37
|
+
STARTED: "STARTED",
|
|
38
|
+
STARTING: "STARTING",
|
|
39
|
+
STOPPED: "STOPPED",
|
|
40
|
+
STOPPING: "STOPPING",
|
|
41
|
+
UNKNOWN: "UNKNOWN",
|
|
42
|
+
};
|
|
43
|
+
export const SimulationTargetStatus = {
|
|
44
|
+
DELETED: "DELETED",
|
|
45
|
+
STARTED: "STARTED",
|
|
46
|
+
STOPPED: "STOPPED",
|
|
47
|
+
UNKNOWN: "UNKNOWN",
|
|
48
|
+
};
|
|
@@ -1,48 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
STARTED: "STARTED",
|
|
3
|
-
STARTING: "STARTING",
|
|
4
|
-
STOPPED: "STOPPED",
|
|
5
|
-
STOPPING: "STOPPING",
|
|
6
|
-
UNKNOWN: "UNKNOWN",
|
|
7
|
-
};
|
|
8
|
-
export const ClockTargetStatus = {
|
|
9
|
-
STARTED: "STARTED",
|
|
10
|
-
STOPPED: "STOPPED",
|
|
11
|
-
UNKNOWN: "UNKNOWN",
|
|
12
|
-
};
|
|
13
|
-
export const SimulationAppStatus = {
|
|
14
|
-
ERROR: "ERROR",
|
|
15
|
-
STARTED: "STARTED",
|
|
16
|
-
STARTING: "STARTING",
|
|
17
|
-
STOPPED: "STOPPED",
|
|
18
|
-
STOPPING: "STOPPING",
|
|
19
|
-
UNKNOWN: "UNKNOWN",
|
|
20
|
-
};
|
|
21
|
-
export const SimulationAppTargetStatus = {
|
|
22
|
-
STARTED: "STARTED",
|
|
23
|
-
STOPPED: "STOPPED",
|
|
24
|
-
UNKNOWN: "UNKNOWN",
|
|
25
|
-
};
|
|
26
|
-
export const LifecycleManagementStrategy = {
|
|
27
|
-
ByRequest: "ByRequest",
|
|
28
|
-
BySpatialSubdivision: "BySpatialSubdivision",
|
|
29
|
-
PerWorker: "PerWorker",
|
|
30
|
-
Unknown: "Unknown",
|
|
31
|
-
};
|
|
32
|
-
export const SimulationStatus = {
|
|
33
|
-
DELETED: "DELETED",
|
|
34
|
-
DELETING: "DELETING",
|
|
35
|
-
FAILED: "FAILED",
|
|
36
|
-
SNAPSHOT_IN_PROGRESS: "SNAPSHOT_IN_PROGRESS",
|
|
37
|
-
STARTED: "STARTED",
|
|
38
|
-
STARTING: "STARTING",
|
|
39
|
-
STOPPED: "STOPPED",
|
|
40
|
-
STOPPING: "STOPPING",
|
|
41
|
-
UNKNOWN: "UNKNOWN",
|
|
42
|
-
};
|
|
43
|
-
export const SimulationTargetStatus = {
|
|
44
|
-
DELETED: "DELETED",
|
|
45
|
-
STARTED: "STARTED",
|
|
46
|
-
STOPPED: "STOPPED",
|
|
47
|
-
UNKNOWN: "UNKNOWN",
|
|
48
|
-
};
|
|
1
|
+
export {};
|
package/dist-types/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
20
20
|
export type { SimSpaceWeaverExtensionConfiguration } from "./extensionConfiguration";
|
|
21
21
|
export * from "./commands";
|
|
22
22
|
export * from "./pagination";
|
|
23
|
+
export * from "./models/enums";
|
|
23
24
|
export * from "./models/errors";
|
|
24
25
|
export type * from "./models/models_0";
|
|
25
26
|
export { SimSpaceWeaverServiceException } from "./models/SimSpaceWeaverServiceException";
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ClockStatus: {
|
|
6
|
+
readonly STARTED: "STARTED";
|
|
7
|
+
readonly STARTING: "STARTING";
|
|
8
|
+
readonly STOPPED: "STOPPED";
|
|
9
|
+
readonly STOPPING: "STOPPING";
|
|
10
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export type ClockStatus = (typeof ClockStatus)[keyof typeof ClockStatus];
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
* @enum
|
|
19
|
+
*/
|
|
20
|
+
export declare const ClockTargetStatus: {
|
|
21
|
+
readonly STARTED: "STARTED";
|
|
22
|
+
readonly STOPPED: "STOPPED";
|
|
23
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export type ClockTargetStatus = (typeof ClockTargetStatus)[keyof typeof ClockTargetStatus];
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
* @enum
|
|
32
|
+
*/
|
|
33
|
+
export declare const SimulationAppStatus: {
|
|
34
|
+
readonly ERROR: "ERROR";
|
|
35
|
+
readonly STARTED: "STARTED";
|
|
36
|
+
readonly STARTING: "STARTING";
|
|
37
|
+
readonly STOPPED: "STOPPED";
|
|
38
|
+
readonly STOPPING: "STOPPING";
|
|
39
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export type SimulationAppStatus = (typeof SimulationAppStatus)[keyof typeof SimulationAppStatus];
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* @enum
|
|
48
|
+
*/
|
|
49
|
+
export declare const SimulationAppTargetStatus: {
|
|
50
|
+
readonly STARTED: "STARTED";
|
|
51
|
+
readonly STOPPED: "STOPPED";
|
|
52
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
export type SimulationAppTargetStatus = (typeof SimulationAppTargetStatus)[keyof typeof SimulationAppTargetStatus];
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
* @enum
|
|
61
|
+
*/
|
|
62
|
+
export declare const LifecycleManagementStrategy: {
|
|
63
|
+
readonly ByRequest: "ByRequest";
|
|
64
|
+
readonly BySpatialSubdivision: "BySpatialSubdivision";
|
|
65
|
+
readonly PerWorker: "PerWorker";
|
|
66
|
+
readonly Unknown: "Unknown";
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export type LifecycleManagementStrategy = (typeof LifecycleManagementStrategy)[keyof typeof LifecycleManagementStrategy];
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
* @enum
|
|
75
|
+
*/
|
|
76
|
+
export declare const SimulationStatus: {
|
|
77
|
+
readonly DELETED: "DELETED";
|
|
78
|
+
readonly DELETING: "DELETING";
|
|
79
|
+
readonly FAILED: "FAILED";
|
|
80
|
+
readonly SNAPSHOT_IN_PROGRESS: "SNAPSHOT_IN_PROGRESS";
|
|
81
|
+
readonly STARTED: "STARTED";
|
|
82
|
+
readonly STARTING: "STARTING";
|
|
83
|
+
readonly STOPPED: "STOPPED";
|
|
84
|
+
readonly STOPPING: "STOPPING";
|
|
85
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export type SimulationStatus = (typeof SimulationStatus)[keyof typeof SimulationStatus];
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
* @enum
|
|
94
|
+
*/
|
|
95
|
+
export declare const SimulationTargetStatus: {
|
|
96
|
+
readonly DELETED: "DELETED";
|
|
97
|
+
readonly STARTED: "STARTED";
|
|
98
|
+
readonly STOPPED: "STOPPED";
|
|
99
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export type SimulationTargetStatus = (typeof SimulationTargetStatus)[keyof typeof SimulationTargetStatus];
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ClockStatus, ClockTargetStatus, LifecycleManagementStrategy, SimulationAppStatus, SimulationAppTargetStatus, SimulationStatus, SimulationTargetStatus } from "./enums";
|
|
1
2
|
/**
|
|
2
3
|
* <p>A collection of TCP/UDP ports for a custom or service app.</p>
|
|
3
4
|
* @public
|
|
@@ -19,34 +20,6 @@ export interface SimulationAppPortMapping {
|
|
|
19
20
|
*/
|
|
20
21
|
Actual?: number | undefined;
|
|
21
22
|
}
|
|
22
|
-
/**
|
|
23
|
-
* @public
|
|
24
|
-
* @enum
|
|
25
|
-
*/
|
|
26
|
-
export declare const ClockStatus: {
|
|
27
|
-
readonly STARTED: "STARTED";
|
|
28
|
-
readonly STARTING: "STARTING";
|
|
29
|
-
readonly STOPPED: "STOPPED";
|
|
30
|
-
readonly STOPPING: "STOPPING";
|
|
31
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
32
|
-
};
|
|
33
|
-
/**
|
|
34
|
-
* @public
|
|
35
|
-
*/
|
|
36
|
-
export type ClockStatus = (typeof ClockStatus)[keyof typeof ClockStatus];
|
|
37
|
-
/**
|
|
38
|
-
* @public
|
|
39
|
-
* @enum
|
|
40
|
-
*/
|
|
41
|
-
export declare const ClockTargetStatus: {
|
|
42
|
-
readonly STARTED: "STARTED";
|
|
43
|
-
readonly STOPPED: "STOPPED";
|
|
44
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
45
|
-
};
|
|
46
|
-
/**
|
|
47
|
-
* @public
|
|
48
|
-
*/
|
|
49
|
-
export type ClockTargetStatus = (typeof ClockTargetStatus)[keyof typeof ClockTargetStatus];
|
|
50
23
|
/**
|
|
51
24
|
* <p>The Amazon CloudWatch Logs log group for the simulation. For more information about log groups, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html">Working with log
|
|
52
25
|
* groups and log streams</a> in the <i>Amazon CloudWatch Logs User Guide</i>.</p>
|
|
@@ -195,35 +168,6 @@ export interface LaunchOverrides {
|
|
|
195
168
|
*/
|
|
196
169
|
LaunchCommands?: string[] | undefined;
|
|
197
170
|
}
|
|
198
|
-
/**
|
|
199
|
-
* @public
|
|
200
|
-
* @enum
|
|
201
|
-
*/
|
|
202
|
-
export declare const SimulationAppStatus: {
|
|
203
|
-
readonly ERROR: "ERROR";
|
|
204
|
-
readonly STARTED: "STARTED";
|
|
205
|
-
readonly STARTING: "STARTING";
|
|
206
|
-
readonly STOPPED: "STOPPED";
|
|
207
|
-
readonly STOPPING: "STOPPING";
|
|
208
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
209
|
-
};
|
|
210
|
-
/**
|
|
211
|
-
* @public
|
|
212
|
-
*/
|
|
213
|
-
export type SimulationAppStatus = (typeof SimulationAppStatus)[keyof typeof SimulationAppStatus];
|
|
214
|
-
/**
|
|
215
|
-
* @public
|
|
216
|
-
* @enum
|
|
217
|
-
*/
|
|
218
|
-
export declare const SimulationAppTargetStatus: {
|
|
219
|
-
readonly STARTED: "STARTED";
|
|
220
|
-
readonly STOPPED: "STOPPED";
|
|
221
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
222
|
-
};
|
|
223
|
-
/**
|
|
224
|
-
* @public
|
|
225
|
-
*/
|
|
226
|
-
export type SimulationAppTargetStatus = (typeof SimulationAppTargetStatus)[keyof typeof SimulationAppTargetStatus];
|
|
227
171
|
/**
|
|
228
172
|
* @public
|
|
229
173
|
*/
|
|
@@ -295,20 +239,6 @@ export interface SimulationClock {
|
|
|
295
239
|
*/
|
|
296
240
|
TargetStatus?: ClockTargetStatus | undefined;
|
|
297
241
|
}
|
|
298
|
-
/**
|
|
299
|
-
* @public
|
|
300
|
-
* @enum
|
|
301
|
-
*/
|
|
302
|
-
export declare const LifecycleManagementStrategy: {
|
|
303
|
-
readonly ByRequest: "ByRequest";
|
|
304
|
-
readonly BySpatialSubdivision: "BySpatialSubdivision";
|
|
305
|
-
readonly PerWorker: "PerWorker";
|
|
306
|
-
readonly Unknown: "Unknown";
|
|
307
|
-
};
|
|
308
|
-
/**
|
|
309
|
-
* @public
|
|
310
|
-
*/
|
|
311
|
-
export type LifecycleManagementStrategy = (typeof LifecycleManagementStrategy)[keyof typeof LifecycleManagementStrategy];
|
|
312
242
|
/**
|
|
313
243
|
* <p>A collection of app instances that run the same executable app code and have the same
|
|
314
244
|
* launch options and commands.</p>
|
|
@@ -418,39 +348,6 @@ export interface S3Location {
|
|
|
418
348
|
*/
|
|
419
349
|
ObjectKey: string | undefined;
|
|
420
350
|
}
|
|
421
|
-
/**
|
|
422
|
-
* @public
|
|
423
|
-
* @enum
|
|
424
|
-
*/
|
|
425
|
-
export declare const SimulationStatus: {
|
|
426
|
-
readonly DELETED: "DELETED";
|
|
427
|
-
readonly DELETING: "DELETING";
|
|
428
|
-
readonly FAILED: "FAILED";
|
|
429
|
-
readonly SNAPSHOT_IN_PROGRESS: "SNAPSHOT_IN_PROGRESS";
|
|
430
|
-
readonly STARTED: "STARTED";
|
|
431
|
-
readonly STARTING: "STARTING";
|
|
432
|
-
readonly STOPPED: "STOPPED";
|
|
433
|
-
readonly STOPPING: "STOPPING";
|
|
434
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
435
|
-
};
|
|
436
|
-
/**
|
|
437
|
-
* @public
|
|
438
|
-
*/
|
|
439
|
-
export type SimulationStatus = (typeof SimulationStatus)[keyof typeof SimulationStatus];
|
|
440
|
-
/**
|
|
441
|
-
* @public
|
|
442
|
-
* @enum
|
|
443
|
-
*/
|
|
444
|
-
export declare const SimulationTargetStatus: {
|
|
445
|
-
readonly DELETED: "DELETED";
|
|
446
|
-
readonly STARTED: "STARTED";
|
|
447
|
-
readonly STOPPED: "STOPPED";
|
|
448
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
449
|
-
};
|
|
450
|
-
/**
|
|
451
|
-
* @public
|
|
452
|
-
*/
|
|
453
|
-
export type SimulationTargetStatus = (typeof SimulationTargetStatus)[keyof typeof SimulationTargetStatus];
|
|
454
351
|
/**
|
|
455
352
|
* @public
|
|
456
353
|
*/
|
|
@@ -5,6 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { SimSpaceWeaverExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./models/enums";
|
|
8
9
|
export * from "./models/errors";
|
|
9
10
|
export * from "./models/models_0";
|
|
10
11
|
export { SimSpaceWeaverServiceException } from "./models/SimSpaceWeaverServiceException";
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export declare const ClockStatus: {
|
|
2
|
+
readonly STARTED: "STARTED";
|
|
3
|
+
readonly STARTING: "STARTING";
|
|
4
|
+
readonly STOPPED: "STOPPED";
|
|
5
|
+
readonly STOPPING: "STOPPING";
|
|
6
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
7
|
+
};
|
|
8
|
+
export type ClockStatus = (typeof ClockStatus)[keyof typeof ClockStatus];
|
|
9
|
+
export declare const ClockTargetStatus: {
|
|
10
|
+
readonly STARTED: "STARTED";
|
|
11
|
+
readonly STOPPED: "STOPPED";
|
|
12
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
13
|
+
};
|
|
14
|
+
export type ClockTargetStatus =
|
|
15
|
+
(typeof ClockTargetStatus)[keyof typeof ClockTargetStatus];
|
|
16
|
+
export declare const SimulationAppStatus: {
|
|
17
|
+
readonly ERROR: "ERROR";
|
|
18
|
+
readonly STARTED: "STARTED";
|
|
19
|
+
readonly STARTING: "STARTING";
|
|
20
|
+
readonly STOPPED: "STOPPED";
|
|
21
|
+
readonly STOPPING: "STOPPING";
|
|
22
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
23
|
+
};
|
|
24
|
+
export type SimulationAppStatus =
|
|
25
|
+
(typeof SimulationAppStatus)[keyof typeof SimulationAppStatus];
|
|
26
|
+
export declare const SimulationAppTargetStatus: {
|
|
27
|
+
readonly STARTED: "STARTED";
|
|
28
|
+
readonly STOPPED: "STOPPED";
|
|
29
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
30
|
+
};
|
|
31
|
+
export type SimulationAppTargetStatus =
|
|
32
|
+
(typeof SimulationAppTargetStatus)[keyof typeof SimulationAppTargetStatus];
|
|
33
|
+
export declare const LifecycleManagementStrategy: {
|
|
34
|
+
readonly ByRequest: "ByRequest";
|
|
35
|
+
readonly BySpatialSubdivision: "BySpatialSubdivision";
|
|
36
|
+
readonly PerWorker: "PerWorker";
|
|
37
|
+
readonly Unknown: "Unknown";
|
|
38
|
+
};
|
|
39
|
+
export type LifecycleManagementStrategy =
|
|
40
|
+
(typeof LifecycleManagementStrategy)[keyof typeof LifecycleManagementStrategy];
|
|
41
|
+
export declare const SimulationStatus: {
|
|
42
|
+
readonly DELETED: "DELETED";
|
|
43
|
+
readonly DELETING: "DELETING";
|
|
44
|
+
readonly FAILED: "FAILED";
|
|
45
|
+
readonly SNAPSHOT_IN_PROGRESS: "SNAPSHOT_IN_PROGRESS";
|
|
46
|
+
readonly STARTED: "STARTED";
|
|
47
|
+
readonly STARTING: "STARTING";
|
|
48
|
+
readonly STOPPED: "STOPPED";
|
|
49
|
+
readonly STOPPING: "STOPPING";
|
|
50
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
51
|
+
};
|
|
52
|
+
export type SimulationStatus =
|
|
53
|
+
(typeof SimulationStatus)[keyof typeof SimulationStatus];
|
|
54
|
+
export declare const SimulationTargetStatus: {
|
|
55
|
+
readonly DELETED: "DELETED";
|
|
56
|
+
readonly STARTED: "STARTED";
|
|
57
|
+
readonly STOPPED: "STOPPED";
|
|
58
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
59
|
+
};
|
|
60
|
+
export type SimulationTargetStatus =
|
|
61
|
+
(typeof SimulationTargetStatus)[keyof typeof SimulationTargetStatus];
|
|
@@ -1,22 +1,16 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ClockStatus,
|
|
3
|
+
ClockTargetStatus,
|
|
4
|
+
LifecycleManagementStrategy,
|
|
5
|
+
SimulationAppStatus,
|
|
6
|
+
SimulationAppTargetStatus,
|
|
7
|
+
SimulationStatus,
|
|
8
|
+
SimulationTargetStatus,
|
|
9
|
+
} from "./enums";
|
|
1
10
|
export interface SimulationAppPortMapping {
|
|
2
11
|
Declared?: number | undefined;
|
|
3
12
|
Actual?: number | undefined;
|
|
4
13
|
}
|
|
5
|
-
export declare const ClockStatus: {
|
|
6
|
-
readonly STARTED: "STARTED";
|
|
7
|
-
readonly STARTING: "STARTING";
|
|
8
|
-
readonly STOPPED: "STOPPED";
|
|
9
|
-
readonly STOPPING: "STOPPING";
|
|
10
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
11
|
-
};
|
|
12
|
-
export type ClockStatus = (typeof ClockStatus)[keyof typeof ClockStatus];
|
|
13
|
-
export declare const ClockTargetStatus: {
|
|
14
|
-
readonly STARTED: "STARTED";
|
|
15
|
-
readonly STOPPED: "STOPPED";
|
|
16
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
17
|
-
};
|
|
18
|
-
export type ClockTargetStatus =
|
|
19
|
-
(typeof ClockTargetStatus)[keyof typeof ClockTargetStatus];
|
|
20
14
|
export interface CloudWatchLogsLogGroup {
|
|
21
15
|
LogGroupArn?: string | undefined;
|
|
22
16
|
}
|
|
@@ -51,23 +45,6 @@ export interface SimulationAppEndpointInfo {
|
|
|
51
45
|
export interface LaunchOverrides {
|
|
52
46
|
LaunchCommands?: string[] | undefined;
|
|
53
47
|
}
|
|
54
|
-
export declare const SimulationAppStatus: {
|
|
55
|
-
readonly ERROR: "ERROR";
|
|
56
|
-
readonly STARTED: "STARTED";
|
|
57
|
-
readonly STARTING: "STARTING";
|
|
58
|
-
readonly STOPPED: "STOPPED";
|
|
59
|
-
readonly STOPPING: "STOPPING";
|
|
60
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
61
|
-
};
|
|
62
|
-
export type SimulationAppStatus =
|
|
63
|
-
(typeof SimulationAppStatus)[keyof typeof SimulationAppStatus];
|
|
64
|
-
export declare const SimulationAppTargetStatus: {
|
|
65
|
-
readonly STARTED: "STARTED";
|
|
66
|
-
readonly STOPPED: "STOPPED";
|
|
67
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
68
|
-
};
|
|
69
|
-
export type SimulationAppTargetStatus =
|
|
70
|
-
(typeof SimulationAppTargetStatus)[keyof typeof SimulationAppTargetStatus];
|
|
71
48
|
export interface DescribeAppOutput {
|
|
72
49
|
Name?: string | undefined;
|
|
73
50
|
Simulation?: string | undefined;
|
|
@@ -85,14 +62,6 @@ export interface SimulationClock {
|
|
|
85
62
|
Status?: ClockStatus | undefined;
|
|
86
63
|
TargetStatus?: ClockTargetStatus | undefined;
|
|
87
64
|
}
|
|
88
|
-
export declare const LifecycleManagementStrategy: {
|
|
89
|
-
readonly ByRequest: "ByRequest";
|
|
90
|
-
readonly BySpatialSubdivision: "BySpatialSubdivision";
|
|
91
|
-
readonly PerWorker: "PerWorker";
|
|
92
|
-
readonly Unknown: "Unknown";
|
|
93
|
-
};
|
|
94
|
-
export type LifecycleManagementStrategy =
|
|
95
|
-
(typeof LifecycleManagementStrategy)[keyof typeof LifecycleManagementStrategy];
|
|
96
65
|
export interface Domain {
|
|
97
66
|
Name?: string | undefined;
|
|
98
67
|
Lifecycle?: LifecycleManagementStrategy | undefined;
|
|
@@ -111,27 +80,6 @@ export interface S3Location {
|
|
|
111
80
|
BucketName: string | undefined;
|
|
112
81
|
ObjectKey: string | undefined;
|
|
113
82
|
}
|
|
114
|
-
export declare const SimulationStatus: {
|
|
115
|
-
readonly DELETED: "DELETED";
|
|
116
|
-
readonly DELETING: "DELETING";
|
|
117
|
-
readonly FAILED: "FAILED";
|
|
118
|
-
readonly SNAPSHOT_IN_PROGRESS: "SNAPSHOT_IN_PROGRESS";
|
|
119
|
-
readonly STARTED: "STARTED";
|
|
120
|
-
readonly STARTING: "STARTING";
|
|
121
|
-
readonly STOPPED: "STOPPED";
|
|
122
|
-
readonly STOPPING: "STOPPING";
|
|
123
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
124
|
-
};
|
|
125
|
-
export type SimulationStatus =
|
|
126
|
-
(typeof SimulationStatus)[keyof typeof SimulationStatus];
|
|
127
|
-
export declare const SimulationTargetStatus: {
|
|
128
|
-
readonly DELETED: "DELETED";
|
|
129
|
-
readonly STARTED: "STARTED";
|
|
130
|
-
readonly STOPPED: "STOPPED";
|
|
131
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
132
|
-
};
|
|
133
|
-
export type SimulationTargetStatus =
|
|
134
|
-
(typeof SimulationTargetStatus)[keyof typeof SimulationTargetStatus];
|
|
135
83
|
export interface DescribeSimulationOutput {
|
|
136
84
|
Name?: string | undefined;
|
|
137
85
|
ExecutionId?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-simspaceweaver",
|
|
3
3
|
"description": "AWS SDK for JavaScript Simspaceweaver Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.939.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-simspaceweaver",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.936.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.939.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|