@aws-sdk/client-simspaceweaver 3.987.0 → 3.989.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 +35 -663
- package/dist-cjs/models/SimSpaceWeaverServiceException.js +12 -0
- package/dist-cjs/models/errors.js +109 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +479 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +53 -47
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +13 -13
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SimSpaceWeaverServiceException = exports.__ServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
+
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
+
class SimSpaceWeaverServiceException extends smithy_client_1.ServiceException {
|
|
7
|
+
constructor(options) {
|
|
8
|
+
super(options);
|
|
9
|
+
Object.setPrototypeOf(this, SimSpaceWeaverServiceException.prototype);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
exports.SimSpaceWeaverServiceException = SimSpaceWeaverServiceException;
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TooManyTagsException = exports.ServiceQuotaExceededException = exports.ValidationException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;
|
|
4
|
+
const SimSpaceWeaverServiceException_1 = require("./SimSpaceWeaverServiceException");
|
|
5
|
+
class AccessDeniedException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
6
|
+
name = "AccessDeniedException";
|
|
7
|
+
$fault = "client";
|
|
8
|
+
Message;
|
|
9
|
+
constructor(opts) {
|
|
10
|
+
super({
|
|
11
|
+
name: "AccessDeniedException",
|
|
12
|
+
$fault: "client",
|
|
13
|
+
...opts,
|
|
14
|
+
});
|
|
15
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
16
|
+
this.Message = opts.Message;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
20
|
+
class ConflictException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
21
|
+
name = "ConflictException";
|
|
22
|
+
$fault = "client";
|
|
23
|
+
Message;
|
|
24
|
+
constructor(opts) {
|
|
25
|
+
super({
|
|
26
|
+
name: "ConflictException",
|
|
27
|
+
$fault: "client",
|
|
28
|
+
...opts,
|
|
29
|
+
});
|
|
30
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
31
|
+
this.Message = opts.Message;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
exports.ConflictException = ConflictException;
|
|
35
|
+
class InternalServerException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
36
|
+
name = "InternalServerException";
|
|
37
|
+
$fault = "server";
|
|
38
|
+
Message;
|
|
39
|
+
constructor(opts) {
|
|
40
|
+
super({
|
|
41
|
+
name: "InternalServerException",
|
|
42
|
+
$fault: "server",
|
|
43
|
+
...opts,
|
|
44
|
+
});
|
|
45
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
46
|
+
this.Message = opts.Message;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
exports.InternalServerException = InternalServerException;
|
|
50
|
+
class ResourceNotFoundException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
51
|
+
name = "ResourceNotFoundException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
Message;
|
|
54
|
+
constructor(opts) {
|
|
55
|
+
super({
|
|
56
|
+
name: "ResourceNotFoundException",
|
|
57
|
+
$fault: "client",
|
|
58
|
+
...opts,
|
|
59
|
+
});
|
|
60
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
61
|
+
this.Message = opts.Message;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
65
|
+
class ValidationException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
66
|
+
name = "ValidationException";
|
|
67
|
+
$fault = "client";
|
|
68
|
+
Message;
|
|
69
|
+
constructor(opts) {
|
|
70
|
+
super({
|
|
71
|
+
name: "ValidationException",
|
|
72
|
+
$fault: "client",
|
|
73
|
+
...opts,
|
|
74
|
+
});
|
|
75
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
76
|
+
this.Message = opts.Message;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
exports.ValidationException = ValidationException;
|
|
80
|
+
class ServiceQuotaExceededException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
81
|
+
name = "ServiceQuotaExceededException";
|
|
82
|
+
$fault = "client";
|
|
83
|
+
Message;
|
|
84
|
+
constructor(opts) {
|
|
85
|
+
super({
|
|
86
|
+
name: "ServiceQuotaExceededException",
|
|
87
|
+
$fault: "client",
|
|
88
|
+
...opts,
|
|
89
|
+
});
|
|
90
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
91
|
+
this.Message = opts.Message;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
95
|
+
class TooManyTagsException extends SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException {
|
|
96
|
+
name = "TooManyTagsException";
|
|
97
|
+
$fault = "client";
|
|
98
|
+
Message;
|
|
99
|
+
constructor(opts) {
|
|
100
|
+
super({
|
|
101
|
+
name: "TooManyTagsException",
|
|
102
|
+
$fault: "client",
|
|
103
|
+
...opts,
|
|
104
|
+
});
|
|
105
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
106
|
+
this.Message = opts.Message;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
@@ -9,6 +9,7 @@ const util_base64_1 = require("@smithy/util-base64");
|
|
|
9
9
|
const util_utf8_1 = require("@smithy/util-utf8");
|
|
10
10
|
const httpAuthSchemeProvider_1 = require("./auth/httpAuthSchemeProvider");
|
|
11
11
|
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
12
|
+
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
13
|
const getRuntimeConfig = (config) => {
|
|
13
14
|
return {
|
|
14
15
|
apiVersion: "2022-10-28",
|
|
@@ -29,6 +30,7 @@ const getRuntimeConfig = (config) => {
|
|
|
29
30
|
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
31
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
32
|
defaultNamespace: "com.amazonaws.simspaceweaver",
|
|
33
|
+
errorTypeRegistries: schemas_0_1.errorTypeRegistries,
|
|
32
34
|
version: "2022-10-28",
|
|
33
35
|
serviceTarget: "SimSpaceWeaver",
|
|
34
36
|
},
|
|
@@ -0,0 +1,479 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StopSimulationOutput$ = exports.StopSimulationInput$ = exports.StopClockOutput$ = exports.StopClockInput$ = exports.StopAppOutput$ = exports.StopAppInput$ = exports.StartSimulationOutput$ = exports.StartSimulationInput$ = exports.StartClockOutput$ = exports.StartClockInput$ = exports.StartAppOutput$ = exports.StartAppInput$ = exports.SimulationMetadata$ = exports.SimulationClock$ = exports.SimulationAppPortMapping$ = exports.SimulationAppMetadata$ = exports.SimulationAppEndpointInfo$ = exports.S3Location$ = exports.S3Destination$ = exports.LoggingConfiguration$ = exports.LogDestination$ = exports.LiveSimulationState$ = exports.ListTagsForResourceOutput$ = exports.ListTagsForResourceInput$ = exports.ListSimulationsOutput$ = exports.ListSimulationsInput$ = exports.ListAppsOutput$ = exports.ListAppsInput$ = exports.LaunchOverrides$ = exports.Domain$ = exports.DescribeSimulationOutput$ = exports.DescribeSimulationInput$ = exports.DescribeAppOutput$ = exports.DescribeAppInput$ = exports.DeleteSimulationOutput$ = exports.DeleteSimulationInput$ = exports.DeleteAppOutput$ = exports.DeleteAppInput$ = exports.CreateSnapshotOutput$ = exports.CreateSnapshotInput$ = exports.CloudWatchLogsLogGroup$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.TooManyTagsException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.SimSpaceWeaverServiceException$ = void 0;
|
|
4
|
+
exports.UntagResource$ = exports.TagResource$ = exports.StopSimulation$ = exports.StopClock$ = exports.StopApp$ = exports.StartSimulation$ = exports.StartClock$ = exports.StartApp$ = exports.ListTagsForResource$ = exports.ListSimulations$ = exports.ListApps$ = exports.DescribeSimulation$ = exports.DescribeApp$ = exports.DeleteSimulation$ = exports.DeleteApp$ = exports.CreateSnapshot$ = exports.UntagResourceOutput$ = exports.UntagResourceInput$ = exports.TagResourceOutput$ = exports.TagResourceInput$ = void 0;
|
|
5
|
+
const _A = "App";
|
|
6
|
+
const _ADE = "AccessDeniedException";
|
|
7
|
+
const _APM = "AppPortMappings";
|
|
8
|
+
const _Ac = "Actual";
|
|
9
|
+
const _Ad = "Address";
|
|
10
|
+
const _Ap = "Apps";
|
|
11
|
+
const _Ar = "Arn";
|
|
12
|
+
const _BN = "BucketName";
|
|
13
|
+
const _C = "Clocks";
|
|
14
|
+
const _CE = "ConflictException";
|
|
15
|
+
const _CS = "CreateSnapshot";
|
|
16
|
+
const _CSI = "CreateSnapshotInput";
|
|
17
|
+
const _CSO = "CreateSnapshotOutput";
|
|
18
|
+
const _CT = "ClientToken";
|
|
19
|
+
const _CTr = "CreationTime";
|
|
20
|
+
const _CWLLG = "CloudWatchLogsLogGroup";
|
|
21
|
+
const _D = "Destination";
|
|
22
|
+
const _DA = "DeleteApp";
|
|
23
|
+
const _DAI = "DeleteAppInput";
|
|
24
|
+
const _DAIe = "DescribeAppInput";
|
|
25
|
+
const _DAO = "DeleteAppOutput";
|
|
26
|
+
const _DAOe = "DescribeAppOutput";
|
|
27
|
+
const _DAe = "DescribeApp";
|
|
28
|
+
const _DL = "DomainList";
|
|
29
|
+
const _DS = "DeleteSimulation";
|
|
30
|
+
const _DSI = "DeleteSimulationInput";
|
|
31
|
+
const _DSIe = "DescribeSimulationInput";
|
|
32
|
+
const _DSO = "DeleteSimulationOutput";
|
|
33
|
+
const _DSOe = "DescribeSimulationOutput";
|
|
34
|
+
const _DSe = "DescribeSimulation";
|
|
35
|
+
const _De = "Description";
|
|
36
|
+
const _Dec = "Declared";
|
|
37
|
+
const _Des = "Destinations";
|
|
38
|
+
const _Do = "Domain";
|
|
39
|
+
const _Dom = "Domains";
|
|
40
|
+
const _EI = "EndpointInfo";
|
|
41
|
+
const _EIx = "ExecutionId";
|
|
42
|
+
const _IPM = "IngressPortMappings";
|
|
43
|
+
const _ISE = "InternalServerException";
|
|
44
|
+
const _L = "Lifecycle";
|
|
45
|
+
const _LA = "ListApps";
|
|
46
|
+
const _LAI = "ListAppsInput";
|
|
47
|
+
const _LAO = "ListAppsOutput";
|
|
48
|
+
const _LC = "LoggingConfiguration";
|
|
49
|
+
const _LCa = "LaunchCommands";
|
|
50
|
+
const _LD = "LogDestination";
|
|
51
|
+
const _LDo = "LogDestinations";
|
|
52
|
+
const _LGA = "LogGroupArn";
|
|
53
|
+
const _LO = "LaunchOverrides";
|
|
54
|
+
const _LS = "ListSimulations";
|
|
55
|
+
const _LSI = "ListSimulationsInput";
|
|
56
|
+
const _LSO = "ListSimulationsOutput";
|
|
57
|
+
const _LSS = "LiveSimulationState";
|
|
58
|
+
const _LTFR = "ListTagsForResource";
|
|
59
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
60
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
61
|
+
const _M = "Message";
|
|
62
|
+
const _MD = "MaximumDuration";
|
|
63
|
+
const _MR = "MaxResults";
|
|
64
|
+
const _N = "Name";
|
|
65
|
+
const _NT = "NextToken";
|
|
66
|
+
const _OK = "ObjectKey";
|
|
67
|
+
const _OKP = "ObjectKeyPrefix";
|
|
68
|
+
const _RA = "RoleArn";
|
|
69
|
+
const _RAe = "ResourceArn";
|
|
70
|
+
const _RNFE = "ResourceNotFoundException";
|
|
71
|
+
const _S = "Simulation";
|
|
72
|
+
const _SA = "StartApp";
|
|
73
|
+
const _SAEI = "SimulationAppEndpointInfo";
|
|
74
|
+
const _SAI = "StartAppInput";
|
|
75
|
+
const _SAIt = "StopAppInput";
|
|
76
|
+
const _SAL = "SimulationAppList";
|
|
77
|
+
const _SAM = "SimulationAppMetadata";
|
|
78
|
+
const _SAO = "StartAppOutput";
|
|
79
|
+
const _SAOt = "StopAppOutput";
|
|
80
|
+
const _SAPM = "SimulationAppPortMapping";
|
|
81
|
+
const _SAt = "StopApp";
|
|
82
|
+
const _SC = "SimulationClock";
|
|
83
|
+
const _SCI = "StartClockInput";
|
|
84
|
+
const _SCIt = "StopClockInput";
|
|
85
|
+
const _SCL = "SimulationClockList";
|
|
86
|
+
const _SCO = "StartClockOutput";
|
|
87
|
+
const _SCOt = "StopClockOutput";
|
|
88
|
+
const _SCt = "StartClock";
|
|
89
|
+
const _SCto = "StopClock";
|
|
90
|
+
const _SD = "S3Destination";
|
|
91
|
+
const _SE = "SchemaError";
|
|
92
|
+
const _SEt = "StartError";
|
|
93
|
+
const _SL = "S3Location";
|
|
94
|
+
const _SLi = "SimulationList";
|
|
95
|
+
const _SM = "SimulationMetadata";
|
|
96
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
97
|
+
const _SS = "StartSimulation";
|
|
98
|
+
const _SSI = "StartSimulationInput";
|
|
99
|
+
const _SSIt = "StopSimulationInput";
|
|
100
|
+
const _SSL = "SchemaS3Location";
|
|
101
|
+
const _SSLn = "SnapshotS3Location";
|
|
102
|
+
const _SSO = "StartSimulationOutput";
|
|
103
|
+
const _SSOt = "StopSimulationOutput";
|
|
104
|
+
const _SSt = "StopSimulation";
|
|
105
|
+
const _Si = "Simulations";
|
|
106
|
+
const _St = "Status";
|
|
107
|
+
const _T = "Tags";
|
|
108
|
+
const _TK = "TagKeys";
|
|
109
|
+
const _TMTE = "TooManyTagsException";
|
|
110
|
+
const _TR = "TagResource";
|
|
111
|
+
const _TRI = "TagResourceInput";
|
|
112
|
+
const _TRO = "TagResourceOutput";
|
|
113
|
+
const _TS = "TargetStatus";
|
|
114
|
+
const _UR = "UntagResource";
|
|
115
|
+
const _URI = "UntagResourceInput";
|
|
116
|
+
const _URO = "UntagResourceOutput";
|
|
117
|
+
const _VE = "ValidationException";
|
|
118
|
+
const _a = "app";
|
|
119
|
+
const _c = "client";
|
|
120
|
+
const _d = "domain";
|
|
121
|
+
const _e = "error";
|
|
122
|
+
const _h = "http";
|
|
123
|
+
const _hE = "httpError";
|
|
124
|
+
const _hQ = "httpQuery";
|
|
125
|
+
const _mR = "maxResults";
|
|
126
|
+
const _nT = "nextToken";
|
|
127
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.simspaceweaver";
|
|
128
|
+
const _se = "server";
|
|
129
|
+
const _si = "simulation";
|
|
130
|
+
const _tK = "tagKeys";
|
|
131
|
+
const n0 = "com.amazonaws.simspaceweaver";
|
|
132
|
+
const schema_1 = require("@smithy/core/schema");
|
|
133
|
+
const errors_1 = require("../models/errors");
|
|
134
|
+
const SimSpaceWeaverServiceException_1 = require("../models/SimSpaceWeaverServiceException");
|
|
135
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
136
|
+
exports.SimSpaceWeaverServiceException$ = [-3, _s, "SimSpaceWeaverServiceException", 0, [], []];
|
|
137
|
+
_s_registry.registerError(exports.SimSpaceWeaverServiceException$, SimSpaceWeaverServiceException_1.SimSpaceWeaverServiceException);
|
|
138
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
139
|
+
exports.AccessDeniedException$ = [-3, n0, _ADE,
|
|
140
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
141
|
+
[_M],
|
|
142
|
+
[0]
|
|
143
|
+
];
|
|
144
|
+
n0_registry.registerError(exports.AccessDeniedException$, errors_1.AccessDeniedException);
|
|
145
|
+
exports.ConflictException$ = [-3, n0, _CE,
|
|
146
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
147
|
+
[_M],
|
|
148
|
+
[0]
|
|
149
|
+
];
|
|
150
|
+
n0_registry.registerError(exports.ConflictException$, errors_1.ConflictException);
|
|
151
|
+
exports.InternalServerException$ = [-3, n0, _ISE,
|
|
152
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
153
|
+
[_M],
|
|
154
|
+
[0]
|
|
155
|
+
];
|
|
156
|
+
n0_registry.registerError(exports.InternalServerException$, errors_1.InternalServerException);
|
|
157
|
+
exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
158
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
159
|
+
[_M],
|
|
160
|
+
[0]
|
|
161
|
+
];
|
|
162
|
+
n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
|
|
163
|
+
exports.ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
164
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
165
|
+
[_M],
|
|
166
|
+
[0]
|
|
167
|
+
];
|
|
168
|
+
n0_registry.registerError(exports.ServiceQuotaExceededException$, errors_1.ServiceQuotaExceededException);
|
|
169
|
+
exports.TooManyTagsException$ = [-3, n0, _TMTE,
|
|
170
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
171
|
+
[_M],
|
|
172
|
+
[0]
|
|
173
|
+
];
|
|
174
|
+
n0_registry.registerError(exports.TooManyTagsException$, errors_1.TooManyTagsException);
|
|
175
|
+
exports.ValidationException$ = [-3, n0, _VE,
|
|
176
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
177
|
+
[_M],
|
|
178
|
+
[0]
|
|
179
|
+
];
|
|
180
|
+
n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
|
|
181
|
+
exports.errorTypeRegistries = [
|
|
182
|
+
_s_registry,
|
|
183
|
+
n0_registry,
|
|
184
|
+
];
|
|
185
|
+
var ClientToken = [0, n0, _CT, 8, 0];
|
|
186
|
+
exports.CloudWatchLogsLogGroup$ = [3, n0, _CWLLG,
|
|
187
|
+
0,
|
|
188
|
+
[_LGA],
|
|
189
|
+
[0]
|
|
190
|
+
];
|
|
191
|
+
exports.CreateSnapshotInput$ = [3, n0, _CSI,
|
|
192
|
+
0,
|
|
193
|
+
[_S, _D],
|
|
194
|
+
[0, () => exports.S3Destination$], 2
|
|
195
|
+
];
|
|
196
|
+
exports.CreateSnapshotOutput$ = [3, n0, _CSO,
|
|
197
|
+
0,
|
|
198
|
+
[],
|
|
199
|
+
[]
|
|
200
|
+
];
|
|
201
|
+
exports.DeleteAppInput$ = [3, n0, _DAI,
|
|
202
|
+
0,
|
|
203
|
+
[_S, _Do, _A],
|
|
204
|
+
[[0, { [_hQ]: _si }], [0, { [_hQ]: _d }], [0, { [_hQ]: _a }]], 3
|
|
205
|
+
];
|
|
206
|
+
exports.DeleteAppOutput$ = [3, n0, _DAO,
|
|
207
|
+
0,
|
|
208
|
+
[],
|
|
209
|
+
[]
|
|
210
|
+
];
|
|
211
|
+
exports.DeleteSimulationInput$ = [3, n0, _DSI,
|
|
212
|
+
0,
|
|
213
|
+
[_S],
|
|
214
|
+
[[0, { [_hQ]: _si }]], 1
|
|
215
|
+
];
|
|
216
|
+
exports.DeleteSimulationOutput$ = [3, n0, _DSO,
|
|
217
|
+
0,
|
|
218
|
+
[],
|
|
219
|
+
[]
|
|
220
|
+
];
|
|
221
|
+
exports.DescribeAppInput$ = [3, n0, _DAIe,
|
|
222
|
+
0,
|
|
223
|
+
[_S, _Do, _A],
|
|
224
|
+
[[0, { [_hQ]: _si }], [0, { [_hQ]: _d }], [0, { [_hQ]: _a }]], 3
|
|
225
|
+
];
|
|
226
|
+
exports.DescribeAppOutput$ = [3, n0, _DAOe,
|
|
227
|
+
0,
|
|
228
|
+
[_N, _S, _Do, _St, _TS, _LO, _De, _EI],
|
|
229
|
+
[0, 0, 0, 0, 0, () => exports.LaunchOverrides$, 0, () => exports.SimulationAppEndpointInfo$]
|
|
230
|
+
];
|
|
231
|
+
exports.DescribeSimulationInput$ = [3, n0, _DSIe,
|
|
232
|
+
0,
|
|
233
|
+
[_S],
|
|
234
|
+
[[0, { [_hQ]: _si }]], 1
|
|
235
|
+
];
|
|
236
|
+
exports.DescribeSimulationOutput$ = [3, n0, _DSOe,
|
|
237
|
+
0,
|
|
238
|
+
[_N, _EIx, _Ar, _De, _RA, _CTr, _St, _TS, _SSL, _SE, _LC, _LSS, _MD, _SSLn, _SEt],
|
|
239
|
+
[0, 0, 0, 0, 0, 4, 0, 0, () => exports.S3Location$, 0, () => exports.LoggingConfiguration$, () => exports.LiveSimulationState$, 0, () => exports.S3Location$, 0]
|
|
240
|
+
];
|
|
241
|
+
exports.Domain$ = [3, n0, _Do,
|
|
242
|
+
0,
|
|
243
|
+
[_N, _L],
|
|
244
|
+
[0, 0]
|
|
245
|
+
];
|
|
246
|
+
exports.LaunchOverrides$ = [3, n0, _LO,
|
|
247
|
+
0,
|
|
248
|
+
[_LCa],
|
|
249
|
+
[64 | 0]
|
|
250
|
+
];
|
|
251
|
+
exports.ListAppsInput$ = [3, n0, _LAI,
|
|
252
|
+
0,
|
|
253
|
+
[_S, _Do, _MR, _NT],
|
|
254
|
+
[[0, { [_hQ]: _si }], [0, { [_hQ]: _d }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
255
|
+
];
|
|
256
|
+
exports.ListAppsOutput$ = [3, n0, _LAO,
|
|
257
|
+
0,
|
|
258
|
+
[_Ap, _NT],
|
|
259
|
+
[() => SimulationAppList, 0]
|
|
260
|
+
];
|
|
261
|
+
exports.ListSimulationsInput$ = [3, n0, _LSI,
|
|
262
|
+
0,
|
|
263
|
+
[_MR, _NT],
|
|
264
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
265
|
+
];
|
|
266
|
+
exports.ListSimulationsOutput$ = [3, n0, _LSO,
|
|
267
|
+
0,
|
|
268
|
+
[_Si, _NT],
|
|
269
|
+
[() => SimulationList, 0]
|
|
270
|
+
];
|
|
271
|
+
exports.ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
272
|
+
0,
|
|
273
|
+
[_RAe],
|
|
274
|
+
[[0, 1]], 1
|
|
275
|
+
];
|
|
276
|
+
exports.ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
277
|
+
0,
|
|
278
|
+
[_T],
|
|
279
|
+
[128 | 0]
|
|
280
|
+
];
|
|
281
|
+
exports.LiveSimulationState$ = [3, n0, _LSS,
|
|
282
|
+
0,
|
|
283
|
+
[_Dom, _C],
|
|
284
|
+
[() => DomainList, () => SimulationClockList]
|
|
285
|
+
];
|
|
286
|
+
exports.LogDestination$ = [3, n0, _LD,
|
|
287
|
+
0,
|
|
288
|
+
[_CWLLG],
|
|
289
|
+
[() => exports.CloudWatchLogsLogGroup$]
|
|
290
|
+
];
|
|
291
|
+
exports.LoggingConfiguration$ = [3, n0, _LC,
|
|
292
|
+
0,
|
|
293
|
+
[_Des],
|
|
294
|
+
[() => LogDestinations]
|
|
295
|
+
];
|
|
296
|
+
exports.S3Destination$ = [3, n0, _SD,
|
|
297
|
+
0,
|
|
298
|
+
[_BN, _OKP],
|
|
299
|
+
[0, 0], 1
|
|
300
|
+
];
|
|
301
|
+
exports.S3Location$ = [3, n0, _SL,
|
|
302
|
+
0,
|
|
303
|
+
[_BN, _OK],
|
|
304
|
+
[0, 0], 2
|
|
305
|
+
];
|
|
306
|
+
exports.SimulationAppEndpointInfo$ = [3, n0, _SAEI,
|
|
307
|
+
0,
|
|
308
|
+
[_Ad, _IPM],
|
|
309
|
+
[0, () => AppPortMappings]
|
|
310
|
+
];
|
|
311
|
+
exports.SimulationAppMetadata$ = [3, n0, _SAM,
|
|
312
|
+
0,
|
|
313
|
+
[_N, _S, _Do, _St, _TS],
|
|
314
|
+
[0, 0, 0, 0, 0]
|
|
315
|
+
];
|
|
316
|
+
exports.SimulationAppPortMapping$ = [3, n0, _SAPM,
|
|
317
|
+
0,
|
|
318
|
+
[_Dec, _Ac],
|
|
319
|
+
[1, 1]
|
|
320
|
+
];
|
|
321
|
+
exports.SimulationClock$ = [3, n0, _SC,
|
|
322
|
+
0,
|
|
323
|
+
[_St, _TS],
|
|
324
|
+
[0, 0]
|
|
325
|
+
];
|
|
326
|
+
exports.SimulationMetadata$ = [3, n0, _SM,
|
|
327
|
+
0,
|
|
328
|
+
[_N, _Ar, _CTr, _St, _TS],
|
|
329
|
+
[0, 0, 4, 0, 0]
|
|
330
|
+
];
|
|
331
|
+
exports.StartAppInput$ = [3, n0, _SAI,
|
|
332
|
+
0,
|
|
333
|
+
[_S, _Do, _N, _CT, _De, _LO],
|
|
334
|
+
[0, 0, 0, [() => ClientToken, 4], 0, () => exports.LaunchOverrides$], 3
|
|
335
|
+
];
|
|
336
|
+
exports.StartAppOutput$ = [3, n0, _SAO,
|
|
337
|
+
0,
|
|
338
|
+
[_N, _Do, _S],
|
|
339
|
+
[0, 0, 0]
|
|
340
|
+
];
|
|
341
|
+
exports.StartClockInput$ = [3, n0, _SCI,
|
|
342
|
+
0,
|
|
343
|
+
[_S],
|
|
344
|
+
[0], 1
|
|
345
|
+
];
|
|
346
|
+
exports.StartClockOutput$ = [3, n0, _SCO,
|
|
347
|
+
0,
|
|
348
|
+
[],
|
|
349
|
+
[]
|
|
350
|
+
];
|
|
351
|
+
exports.StartSimulationInput$ = [3, n0, _SSI,
|
|
352
|
+
0,
|
|
353
|
+
[_N, _RA, _CT, _De, _SSL, _MD, _T, _SSLn],
|
|
354
|
+
[0, 0, [() => ClientToken, 4], 0, () => exports.S3Location$, 0, 128 | 0, () => exports.S3Location$], 2
|
|
355
|
+
];
|
|
356
|
+
exports.StartSimulationOutput$ = [3, n0, _SSO,
|
|
357
|
+
0,
|
|
358
|
+
[_Ar, _EIx, _CTr],
|
|
359
|
+
[0, 0, 4]
|
|
360
|
+
];
|
|
361
|
+
exports.StopAppInput$ = [3, n0, _SAIt,
|
|
362
|
+
0,
|
|
363
|
+
[_S, _Do, _A],
|
|
364
|
+
[0, 0, 0], 3
|
|
365
|
+
];
|
|
366
|
+
exports.StopAppOutput$ = [3, n0, _SAOt,
|
|
367
|
+
0,
|
|
368
|
+
[],
|
|
369
|
+
[]
|
|
370
|
+
];
|
|
371
|
+
exports.StopClockInput$ = [3, n0, _SCIt,
|
|
372
|
+
0,
|
|
373
|
+
[_S],
|
|
374
|
+
[0], 1
|
|
375
|
+
];
|
|
376
|
+
exports.StopClockOutput$ = [3, n0, _SCOt,
|
|
377
|
+
0,
|
|
378
|
+
[],
|
|
379
|
+
[]
|
|
380
|
+
];
|
|
381
|
+
exports.StopSimulationInput$ = [3, n0, _SSIt,
|
|
382
|
+
0,
|
|
383
|
+
[_S],
|
|
384
|
+
[0], 1
|
|
385
|
+
];
|
|
386
|
+
exports.StopSimulationOutput$ = [3, n0, _SSOt,
|
|
387
|
+
0,
|
|
388
|
+
[],
|
|
389
|
+
[]
|
|
390
|
+
];
|
|
391
|
+
exports.TagResourceInput$ = [3, n0, _TRI,
|
|
392
|
+
0,
|
|
393
|
+
[_RAe, _T],
|
|
394
|
+
[[0, 1], 128 | 0], 2
|
|
395
|
+
];
|
|
396
|
+
exports.TagResourceOutput$ = [3, n0, _TRO,
|
|
397
|
+
0,
|
|
398
|
+
[],
|
|
399
|
+
[]
|
|
400
|
+
];
|
|
401
|
+
exports.UntagResourceInput$ = [3, n0, _URI,
|
|
402
|
+
0,
|
|
403
|
+
[_RAe, _TK],
|
|
404
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
405
|
+
];
|
|
406
|
+
exports.UntagResourceOutput$ = [3, n0, _URO,
|
|
407
|
+
0,
|
|
408
|
+
[],
|
|
409
|
+
[]
|
|
410
|
+
];
|
|
411
|
+
var AppPortMappings = [1, n0, _APM,
|
|
412
|
+
0, () => exports.SimulationAppPortMapping$
|
|
413
|
+
];
|
|
414
|
+
var DomainList = [1, n0, _DL,
|
|
415
|
+
0, () => exports.Domain$
|
|
416
|
+
];
|
|
417
|
+
var LaunchCommandList = 64 | 0;
|
|
418
|
+
var LogDestinations = [1, n0, _LDo,
|
|
419
|
+
0, () => exports.LogDestination$
|
|
420
|
+
];
|
|
421
|
+
var SimulationAppList = [1, n0, _SAL,
|
|
422
|
+
0, () => exports.SimulationAppMetadata$
|
|
423
|
+
];
|
|
424
|
+
var SimulationClockList = [1, n0, _SCL,
|
|
425
|
+
0, () => exports.SimulationClock$
|
|
426
|
+
];
|
|
427
|
+
var SimulationList = [1, n0, _SLi,
|
|
428
|
+
0, () => exports.SimulationMetadata$
|
|
429
|
+
];
|
|
430
|
+
var TagKeyList = 64 | 0;
|
|
431
|
+
var TagMap = 128 | 0;
|
|
432
|
+
exports.CreateSnapshot$ = [9, n0, _CS,
|
|
433
|
+
{ [_h]: ["POST", "/createsnapshot", 200] }, () => exports.CreateSnapshotInput$, () => exports.CreateSnapshotOutput$
|
|
434
|
+
];
|
|
435
|
+
exports.DeleteApp$ = [9, n0, _DA,
|
|
436
|
+
{ [_h]: ["DELETE", "/deleteapp", 200] }, () => exports.DeleteAppInput$, () => exports.DeleteAppOutput$
|
|
437
|
+
];
|
|
438
|
+
exports.DeleteSimulation$ = [9, n0, _DS,
|
|
439
|
+
{ [_h]: ["DELETE", "/deletesimulation", 200] }, () => exports.DeleteSimulationInput$, () => exports.DeleteSimulationOutput$
|
|
440
|
+
];
|
|
441
|
+
exports.DescribeApp$ = [9, n0, _DAe,
|
|
442
|
+
{ [_h]: ["GET", "/describeapp", 200] }, () => exports.DescribeAppInput$, () => exports.DescribeAppOutput$
|
|
443
|
+
];
|
|
444
|
+
exports.DescribeSimulation$ = [9, n0, _DSe,
|
|
445
|
+
{ [_h]: ["GET", "/describesimulation", 200] }, () => exports.DescribeSimulationInput$, () => exports.DescribeSimulationOutput$
|
|
446
|
+
];
|
|
447
|
+
exports.ListApps$ = [9, n0, _LA,
|
|
448
|
+
{ [_h]: ["GET", "/listapps", 200] }, () => exports.ListAppsInput$, () => exports.ListAppsOutput$
|
|
449
|
+
];
|
|
450
|
+
exports.ListSimulations$ = [9, n0, _LS,
|
|
451
|
+
{ [_h]: ["GET", "/listsimulations", 200] }, () => exports.ListSimulationsInput$, () => exports.ListSimulationsOutput$
|
|
452
|
+
];
|
|
453
|
+
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
454
|
+
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => exports.ListTagsForResourceInput$, () => exports.ListTagsForResourceOutput$
|
|
455
|
+
];
|
|
456
|
+
exports.StartApp$ = [9, n0, _SA,
|
|
457
|
+
{ [_h]: ["POST", "/startapp", 200] }, () => exports.StartAppInput$, () => exports.StartAppOutput$
|
|
458
|
+
];
|
|
459
|
+
exports.StartClock$ = [9, n0, _SCt,
|
|
460
|
+
{ [_h]: ["POST", "/startclock", 200] }, () => exports.StartClockInput$, () => exports.StartClockOutput$
|
|
461
|
+
];
|
|
462
|
+
exports.StartSimulation$ = [9, n0, _SS,
|
|
463
|
+
{ [_h]: ["POST", "/startsimulation", 200] }, () => exports.StartSimulationInput$, () => exports.StartSimulationOutput$
|
|
464
|
+
];
|
|
465
|
+
exports.StopApp$ = [9, n0, _SAt,
|
|
466
|
+
{ [_h]: ["POST", "/stopapp", 200] }, () => exports.StopAppInput$, () => exports.StopAppOutput$
|
|
467
|
+
];
|
|
468
|
+
exports.StopClock$ = [9, n0, _SCto,
|
|
469
|
+
{ [_h]: ["POST", "/stopclock", 200] }, () => exports.StopClockInput$, () => exports.StopClockOutput$
|
|
470
|
+
];
|
|
471
|
+
exports.StopSimulation$ = [9, n0, _SSt,
|
|
472
|
+
{ [_h]: ["POST", "/stopsimulation", 200] }, () => exports.StopSimulationInput$, () => exports.StopSimulationOutput$
|
|
473
|
+
];
|
|
474
|
+
exports.TagResource$ = [9, n0, _TR,
|
|
475
|
+
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => exports.TagResourceInput$, () => exports.TagResourceOutput$
|
|
476
|
+
];
|
|
477
|
+
exports.UntagResource$ = [9, n0, _UR,
|
|
478
|
+
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => exports.UntagResourceInput$, () => exports.UntagResourceOutput$
|
|
479
|
+
];
|
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultSimSpaceWeaverHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2022-10-28",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.simspaceweaver",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2022-10-28",
|
|
30
32
|
serviceTarget: "SimSpaceWeaver",
|
|
31
33
|
},
|