@aws-sdk/client-simspaceweaver 3.716.0 → 3.723.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 +130 -93
- package/dist-es/SimSpaceWeaverClient.js +1 -0
- package/dist-es/models/models_0.js +21 -14
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -158,7 +158,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
158
158
|
}, "resolveRuntimeExtensions");
|
|
159
159
|
|
|
160
160
|
// src/SimSpaceWeaverClient.ts
|
|
161
|
-
var
|
|
161
|
+
var SimSpaceWeaverClient = class extends import_smithy_client.Client {
|
|
162
|
+
static {
|
|
163
|
+
__name(this, "SimSpaceWeaverClient");
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* The resolved configuration of SimSpaceWeaverClient class. This is resolved and normalized from the {@link SimSpaceWeaverClientConfig | constructor configuration interface}.
|
|
167
|
+
*/
|
|
168
|
+
config;
|
|
162
169
|
constructor(...[configuration]) {
|
|
163
170
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
164
171
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -168,7 +175,7 @@ var _SimSpaceWeaverClient = class _SimSpaceWeaverClient extends import_smithy_cl
|
|
|
168
175
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
169
176
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
170
177
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
171
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
178
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
172
179
|
super(_config_8);
|
|
173
180
|
this.config = _config_8;
|
|
174
181
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -196,8 +203,6 @@ var _SimSpaceWeaverClient = class _SimSpaceWeaverClient extends import_smithy_cl
|
|
|
196
203
|
super.destroy();
|
|
197
204
|
}
|
|
198
205
|
};
|
|
199
|
-
__name(_SimSpaceWeaverClient, "SimSpaceWeaverClient");
|
|
200
|
-
var SimSpaceWeaverClient = _SimSpaceWeaverClient;
|
|
201
206
|
|
|
202
207
|
// src/SimSpaceWeaver.ts
|
|
203
208
|
|
|
@@ -218,7 +223,10 @@ var import_uuid = require("uuid");
|
|
|
218
223
|
|
|
219
224
|
// src/models/SimSpaceWeaverServiceException.ts
|
|
220
225
|
|
|
221
|
-
var
|
|
226
|
+
var SimSpaceWeaverServiceException = class _SimSpaceWeaverServiceException extends import_smithy_client.ServiceException {
|
|
227
|
+
static {
|
|
228
|
+
__name(this, "SimSpaceWeaverServiceException");
|
|
229
|
+
}
|
|
222
230
|
/**
|
|
223
231
|
* @internal
|
|
224
232
|
*/
|
|
@@ -227,11 +235,15 @@ var _SimSpaceWeaverServiceException = class _SimSpaceWeaverServiceException exte
|
|
|
227
235
|
Object.setPrototypeOf(this, _SimSpaceWeaverServiceException.prototype);
|
|
228
236
|
}
|
|
229
237
|
};
|
|
230
|
-
__name(_SimSpaceWeaverServiceException, "SimSpaceWeaverServiceException");
|
|
231
|
-
var SimSpaceWeaverServiceException = _SimSpaceWeaverServiceException;
|
|
232
238
|
|
|
233
239
|
// src/models/models_0.ts
|
|
234
|
-
var
|
|
240
|
+
var AccessDeniedException = class _AccessDeniedException extends SimSpaceWeaverServiceException {
|
|
241
|
+
static {
|
|
242
|
+
__name(this, "AccessDeniedException");
|
|
243
|
+
}
|
|
244
|
+
name = "AccessDeniedException";
|
|
245
|
+
$fault = "client";
|
|
246
|
+
Message;
|
|
235
247
|
/**
|
|
236
248
|
* @internal
|
|
237
249
|
*/
|
|
@@ -241,14 +253,10 @@ var _AccessDeniedException = class _AccessDeniedException extends SimSpaceWeaver
|
|
|
241
253
|
$fault: "client",
|
|
242
254
|
...opts
|
|
243
255
|
});
|
|
244
|
-
this.name = "AccessDeniedException";
|
|
245
|
-
this.$fault = "client";
|
|
246
256
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
247
257
|
this.Message = opts.Message;
|
|
248
258
|
}
|
|
249
259
|
};
|
|
250
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
251
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
252
260
|
var ClockStatus = {
|
|
253
261
|
STARTED: "STARTED",
|
|
254
262
|
STARTING: "STARTING",
|
|
@@ -261,7 +269,13 @@ var ClockTargetStatus = {
|
|
|
261
269
|
STOPPED: "STOPPED",
|
|
262
270
|
UNKNOWN: "UNKNOWN"
|
|
263
271
|
};
|
|
264
|
-
var
|
|
272
|
+
var ConflictException = class _ConflictException extends SimSpaceWeaverServiceException {
|
|
273
|
+
static {
|
|
274
|
+
__name(this, "ConflictException");
|
|
275
|
+
}
|
|
276
|
+
name = "ConflictException";
|
|
277
|
+
$fault = "client";
|
|
278
|
+
Message;
|
|
265
279
|
/**
|
|
266
280
|
* @internal
|
|
267
281
|
*/
|
|
@@ -271,15 +285,17 @@ var _ConflictException = class _ConflictException extends SimSpaceWeaverServiceE
|
|
|
271
285
|
$fault: "client",
|
|
272
286
|
...opts
|
|
273
287
|
});
|
|
274
|
-
this.name = "ConflictException";
|
|
275
|
-
this.$fault = "client";
|
|
276
288
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
277
289
|
this.Message = opts.Message;
|
|
278
290
|
}
|
|
279
291
|
};
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
292
|
+
var InternalServerException = class _InternalServerException extends SimSpaceWeaverServiceException {
|
|
293
|
+
static {
|
|
294
|
+
__name(this, "InternalServerException");
|
|
295
|
+
}
|
|
296
|
+
name = "InternalServerException";
|
|
297
|
+
$fault = "server";
|
|
298
|
+
Message;
|
|
283
299
|
/**
|
|
284
300
|
* @internal
|
|
285
301
|
*/
|
|
@@ -289,15 +305,17 @@ var _InternalServerException = class _InternalServerException extends SimSpaceWe
|
|
|
289
305
|
$fault: "server",
|
|
290
306
|
...opts
|
|
291
307
|
});
|
|
292
|
-
this.name = "InternalServerException";
|
|
293
|
-
this.$fault = "server";
|
|
294
308
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
295
309
|
this.Message = opts.Message;
|
|
296
310
|
}
|
|
297
311
|
};
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
312
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends SimSpaceWeaverServiceException {
|
|
313
|
+
static {
|
|
314
|
+
__name(this, "ResourceNotFoundException");
|
|
315
|
+
}
|
|
316
|
+
name = "ResourceNotFoundException";
|
|
317
|
+
$fault = "client";
|
|
318
|
+
Message;
|
|
301
319
|
/**
|
|
302
320
|
* @internal
|
|
303
321
|
*/
|
|
@@ -307,15 +325,17 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends SimSpa
|
|
|
307
325
|
$fault: "client",
|
|
308
326
|
...opts
|
|
309
327
|
});
|
|
310
|
-
this.name = "ResourceNotFoundException";
|
|
311
|
-
this.$fault = "client";
|
|
312
328
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
313
329
|
this.Message = opts.Message;
|
|
314
330
|
}
|
|
315
331
|
};
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
332
|
+
var ValidationException = class _ValidationException extends SimSpaceWeaverServiceException {
|
|
333
|
+
static {
|
|
334
|
+
__name(this, "ValidationException");
|
|
335
|
+
}
|
|
336
|
+
name = "ValidationException";
|
|
337
|
+
$fault = "client";
|
|
338
|
+
Message;
|
|
319
339
|
/**
|
|
320
340
|
* @internal
|
|
321
341
|
*/
|
|
@@ -325,14 +345,10 @@ var _ValidationException = class _ValidationException extends SimSpaceWeaverServ
|
|
|
325
345
|
$fault: "client",
|
|
326
346
|
...opts
|
|
327
347
|
});
|
|
328
|
-
this.name = "ValidationException";
|
|
329
|
-
this.$fault = "client";
|
|
330
348
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
331
349
|
this.Message = opts.Message;
|
|
332
350
|
}
|
|
333
351
|
};
|
|
334
|
-
__name(_ValidationException, "ValidationException");
|
|
335
|
-
var ValidationException = _ValidationException;
|
|
336
352
|
var SimulationAppStatus = {
|
|
337
353
|
ERROR: "ERROR",
|
|
338
354
|
STARTED: "STARTED",
|
|
@@ -369,7 +385,13 @@ var SimulationTargetStatus = {
|
|
|
369
385
|
STOPPED: "STOPPED",
|
|
370
386
|
UNKNOWN: "UNKNOWN"
|
|
371
387
|
};
|
|
372
|
-
var
|
|
388
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends SimSpaceWeaverServiceException {
|
|
389
|
+
static {
|
|
390
|
+
__name(this, "ServiceQuotaExceededException");
|
|
391
|
+
}
|
|
392
|
+
name = "ServiceQuotaExceededException";
|
|
393
|
+
$fault = "client";
|
|
394
|
+
Message;
|
|
373
395
|
/**
|
|
374
396
|
* @internal
|
|
375
397
|
*/
|
|
@@ -379,15 +401,17 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
379
401
|
$fault: "client",
|
|
380
402
|
...opts
|
|
381
403
|
});
|
|
382
|
-
this.name = "ServiceQuotaExceededException";
|
|
383
|
-
this.$fault = "client";
|
|
384
404
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
385
405
|
this.Message = opts.Message;
|
|
386
406
|
}
|
|
387
407
|
};
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
408
|
+
var TooManyTagsException = class _TooManyTagsException extends SimSpaceWeaverServiceException {
|
|
409
|
+
static {
|
|
410
|
+
__name(this, "TooManyTagsException");
|
|
411
|
+
}
|
|
412
|
+
name = "TooManyTagsException";
|
|
413
|
+
$fault = "client";
|
|
414
|
+
Message;
|
|
391
415
|
/**
|
|
392
416
|
* @internal
|
|
393
417
|
*/
|
|
@@ -397,14 +421,10 @@ var _TooManyTagsException = class _TooManyTagsException extends SimSpaceWeaverSe
|
|
|
397
421
|
$fault: "client",
|
|
398
422
|
...opts
|
|
399
423
|
});
|
|
400
|
-
this.name = "TooManyTagsException";
|
|
401
|
-
this.$fault = "client";
|
|
402
424
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
403
425
|
this.Message = opts.Message;
|
|
404
426
|
}
|
|
405
427
|
};
|
|
406
|
-
__name(_TooManyTagsException, "TooManyTagsException");
|
|
407
|
-
var TooManyTagsException = _TooManyTagsException;
|
|
408
428
|
var StartAppInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
409
429
|
...obj,
|
|
410
430
|
...obj.ClientToken && { ClientToken: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -1025,225 +1045,241 @@ var _s = "simulation";
|
|
|
1025
1045
|
var _tK = "tagKeys";
|
|
1026
1046
|
|
|
1027
1047
|
// src/commands/CreateSnapshotCommand.ts
|
|
1028
|
-
var
|
|
1048
|
+
var CreateSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1029
1049
|
return [
|
|
1030
1050
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1031
1051
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1032
1052
|
];
|
|
1033
1053
|
}).s("SimSpaceWeaver", "CreateSnapshot", {}).n("SimSpaceWeaverClient", "CreateSnapshotCommand").f(void 0, void 0).ser(se_CreateSnapshotCommand).de(de_CreateSnapshotCommand).build() {
|
|
1054
|
+
static {
|
|
1055
|
+
__name(this, "CreateSnapshotCommand");
|
|
1056
|
+
}
|
|
1034
1057
|
};
|
|
1035
|
-
__name(_CreateSnapshotCommand, "CreateSnapshotCommand");
|
|
1036
|
-
var CreateSnapshotCommand = _CreateSnapshotCommand;
|
|
1037
1058
|
|
|
1038
1059
|
// src/commands/DeleteAppCommand.ts
|
|
1039
1060
|
|
|
1040
1061
|
|
|
1041
1062
|
|
|
1042
|
-
var
|
|
1063
|
+
var DeleteAppCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1043
1064
|
return [
|
|
1044
1065
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1045
1066
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1046
1067
|
];
|
|
1047
1068
|
}).s("SimSpaceWeaver", "DeleteApp", {}).n("SimSpaceWeaverClient", "DeleteAppCommand").f(void 0, void 0).ser(se_DeleteAppCommand).de(de_DeleteAppCommand).build() {
|
|
1069
|
+
static {
|
|
1070
|
+
__name(this, "DeleteAppCommand");
|
|
1071
|
+
}
|
|
1048
1072
|
};
|
|
1049
|
-
__name(_DeleteAppCommand, "DeleteAppCommand");
|
|
1050
|
-
var DeleteAppCommand = _DeleteAppCommand;
|
|
1051
1073
|
|
|
1052
1074
|
// src/commands/DeleteSimulationCommand.ts
|
|
1053
1075
|
|
|
1054
1076
|
|
|
1055
1077
|
|
|
1056
|
-
var
|
|
1078
|
+
var DeleteSimulationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1057
1079
|
return [
|
|
1058
1080
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1059
1081
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1060
1082
|
];
|
|
1061
1083
|
}).s("SimSpaceWeaver", "DeleteSimulation", {}).n("SimSpaceWeaverClient", "DeleteSimulationCommand").f(void 0, void 0).ser(se_DeleteSimulationCommand).de(de_DeleteSimulationCommand).build() {
|
|
1084
|
+
static {
|
|
1085
|
+
__name(this, "DeleteSimulationCommand");
|
|
1086
|
+
}
|
|
1062
1087
|
};
|
|
1063
|
-
__name(_DeleteSimulationCommand, "DeleteSimulationCommand");
|
|
1064
|
-
var DeleteSimulationCommand = _DeleteSimulationCommand;
|
|
1065
1088
|
|
|
1066
1089
|
// src/commands/DescribeAppCommand.ts
|
|
1067
1090
|
|
|
1068
1091
|
|
|
1069
1092
|
|
|
1070
|
-
var
|
|
1093
|
+
var DescribeAppCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1071
1094
|
return [
|
|
1072
1095
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1073
1096
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1074
1097
|
];
|
|
1075
1098
|
}).s("SimSpaceWeaver", "DescribeApp", {}).n("SimSpaceWeaverClient", "DescribeAppCommand").f(void 0, void 0).ser(se_DescribeAppCommand).de(de_DescribeAppCommand).build() {
|
|
1099
|
+
static {
|
|
1100
|
+
__name(this, "DescribeAppCommand");
|
|
1101
|
+
}
|
|
1076
1102
|
};
|
|
1077
|
-
__name(_DescribeAppCommand, "DescribeAppCommand");
|
|
1078
|
-
var DescribeAppCommand = _DescribeAppCommand;
|
|
1079
1103
|
|
|
1080
1104
|
// src/commands/DescribeSimulationCommand.ts
|
|
1081
1105
|
|
|
1082
1106
|
|
|
1083
1107
|
|
|
1084
|
-
var
|
|
1108
|
+
var DescribeSimulationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1085
1109
|
return [
|
|
1086
1110
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1087
1111
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1088
1112
|
];
|
|
1089
1113
|
}).s("SimSpaceWeaver", "DescribeSimulation", {}).n("SimSpaceWeaverClient", "DescribeSimulationCommand").f(void 0, void 0).ser(se_DescribeSimulationCommand).de(de_DescribeSimulationCommand).build() {
|
|
1114
|
+
static {
|
|
1115
|
+
__name(this, "DescribeSimulationCommand");
|
|
1116
|
+
}
|
|
1090
1117
|
};
|
|
1091
|
-
__name(_DescribeSimulationCommand, "DescribeSimulationCommand");
|
|
1092
|
-
var DescribeSimulationCommand = _DescribeSimulationCommand;
|
|
1093
1118
|
|
|
1094
1119
|
// src/commands/ListAppsCommand.ts
|
|
1095
1120
|
|
|
1096
1121
|
|
|
1097
1122
|
|
|
1098
|
-
var
|
|
1123
|
+
var ListAppsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1099
1124
|
return [
|
|
1100
1125
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1101
1126
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1102
1127
|
];
|
|
1103
1128
|
}).s("SimSpaceWeaver", "ListApps", {}).n("SimSpaceWeaverClient", "ListAppsCommand").f(void 0, void 0).ser(se_ListAppsCommand).de(de_ListAppsCommand).build() {
|
|
1129
|
+
static {
|
|
1130
|
+
__name(this, "ListAppsCommand");
|
|
1131
|
+
}
|
|
1104
1132
|
};
|
|
1105
|
-
__name(_ListAppsCommand, "ListAppsCommand");
|
|
1106
|
-
var ListAppsCommand = _ListAppsCommand;
|
|
1107
1133
|
|
|
1108
1134
|
// src/commands/ListSimulationsCommand.ts
|
|
1109
1135
|
|
|
1110
1136
|
|
|
1111
1137
|
|
|
1112
|
-
var
|
|
1138
|
+
var ListSimulationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1113
1139
|
return [
|
|
1114
1140
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1115
1141
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1116
1142
|
];
|
|
1117
1143
|
}).s("SimSpaceWeaver", "ListSimulations", {}).n("SimSpaceWeaverClient", "ListSimulationsCommand").f(void 0, void 0).ser(se_ListSimulationsCommand).de(de_ListSimulationsCommand).build() {
|
|
1144
|
+
static {
|
|
1145
|
+
__name(this, "ListSimulationsCommand");
|
|
1146
|
+
}
|
|
1118
1147
|
};
|
|
1119
|
-
__name(_ListSimulationsCommand, "ListSimulationsCommand");
|
|
1120
|
-
var ListSimulationsCommand = _ListSimulationsCommand;
|
|
1121
1148
|
|
|
1122
1149
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1123
1150
|
|
|
1124
1151
|
|
|
1125
1152
|
|
|
1126
|
-
var
|
|
1153
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1127
1154
|
return [
|
|
1128
1155
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1129
1156
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1130
1157
|
];
|
|
1131
1158
|
}).s("SimSpaceWeaver", "ListTagsForResource", {}).n("SimSpaceWeaverClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1159
|
+
static {
|
|
1160
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1161
|
+
}
|
|
1132
1162
|
};
|
|
1133
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1134
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1135
1163
|
|
|
1136
1164
|
// src/commands/StartAppCommand.ts
|
|
1137
1165
|
|
|
1138
1166
|
|
|
1139
1167
|
|
|
1140
|
-
var
|
|
1168
|
+
var StartAppCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1141
1169
|
return [
|
|
1142
1170
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1143
1171
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1144
1172
|
];
|
|
1145
1173
|
}).s("SimSpaceWeaver", "StartApp", {}).n("SimSpaceWeaverClient", "StartAppCommand").f(StartAppInputFilterSensitiveLog, void 0).ser(se_StartAppCommand).de(de_StartAppCommand).build() {
|
|
1174
|
+
static {
|
|
1175
|
+
__name(this, "StartAppCommand");
|
|
1176
|
+
}
|
|
1146
1177
|
};
|
|
1147
|
-
__name(_StartAppCommand, "StartAppCommand");
|
|
1148
|
-
var StartAppCommand = _StartAppCommand;
|
|
1149
1178
|
|
|
1150
1179
|
// src/commands/StartClockCommand.ts
|
|
1151
1180
|
|
|
1152
1181
|
|
|
1153
1182
|
|
|
1154
|
-
var
|
|
1183
|
+
var StartClockCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1155
1184
|
return [
|
|
1156
1185
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1157
1186
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1158
1187
|
];
|
|
1159
1188
|
}).s("SimSpaceWeaver", "StartClock", {}).n("SimSpaceWeaverClient", "StartClockCommand").f(void 0, void 0).ser(se_StartClockCommand).de(de_StartClockCommand).build() {
|
|
1189
|
+
static {
|
|
1190
|
+
__name(this, "StartClockCommand");
|
|
1191
|
+
}
|
|
1160
1192
|
};
|
|
1161
|
-
__name(_StartClockCommand, "StartClockCommand");
|
|
1162
|
-
var StartClockCommand = _StartClockCommand;
|
|
1163
1193
|
|
|
1164
1194
|
// src/commands/StartSimulationCommand.ts
|
|
1165
1195
|
|
|
1166
1196
|
|
|
1167
1197
|
|
|
1168
|
-
var
|
|
1198
|
+
var StartSimulationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1169
1199
|
return [
|
|
1170
1200
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1171
1201
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1172
1202
|
];
|
|
1173
1203
|
}).s("SimSpaceWeaver", "StartSimulation", {}).n("SimSpaceWeaverClient", "StartSimulationCommand").f(StartSimulationInputFilterSensitiveLog, void 0).ser(se_StartSimulationCommand).de(de_StartSimulationCommand).build() {
|
|
1204
|
+
static {
|
|
1205
|
+
__name(this, "StartSimulationCommand");
|
|
1206
|
+
}
|
|
1174
1207
|
};
|
|
1175
|
-
__name(_StartSimulationCommand, "StartSimulationCommand");
|
|
1176
|
-
var StartSimulationCommand = _StartSimulationCommand;
|
|
1177
1208
|
|
|
1178
1209
|
// src/commands/StopAppCommand.ts
|
|
1179
1210
|
|
|
1180
1211
|
|
|
1181
1212
|
|
|
1182
|
-
var
|
|
1213
|
+
var StopAppCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1183
1214
|
return [
|
|
1184
1215
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1185
1216
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1186
1217
|
];
|
|
1187
1218
|
}).s("SimSpaceWeaver", "StopApp", {}).n("SimSpaceWeaverClient", "StopAppCommand").f(void 0, void 0).ser(se_StopAppCommand).de(de_StopAppCommand).build() {
|
|
1219
|
+
static {
|
|
1220
|
+
__name(this, "StopAppCommand");
|
|
1221
|
+
}
|
|
1188
1222
|
};
|
|
1189
|
-
__name(_StopAppCommand, "StopAppCommand");
|
|
1190
|
-
var StopAppCommand = _StopAppCommand;
|
|
1191
1223
|
|
|
1192
1224
|
// src/commands/StopClockCommand.ts
|
|
1193
1225
|
|
|
1194
1226
|
|
|
1195
1227
|
|
|
1196
|
-
var
|
|
1228
|
+
var StopClockCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1197
1229
|
return [
|
|
1198
1230
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1199
1231
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1200
1232
|
];
|
|
1201
1233
|
}).s("SimSpaceWeaver", "StopClock", {}).n("SimSpaceWeaverClient", "StopClockCommand").f(void 0, void 0).ser(se_StopClockCommand).de(de_StopClockCommand).build() {
|
|
1234
|
+
static {
|
|
1235
|
+
__name(this, "StopClockCommand");
|
|
1236
|
+
}
|
|
1202
1237
|
};
|
|
1203
|
-
__name(_StopClockCommand, "StopClockCommand");
|
|
1204
|
-
var StopClockCommand = _StopClockCommand;
|
|
1205
1238
|
|
|
1206
1239
|
// src/commands/StopSimulationCommand.ts
|
|
1207
1240
|
|
|
1208
1241
|
|
|
1209
1242
|
|
|
1210
|
-
var
|
|
1243
|
+
var StopSimulationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1211
1244
|
return [
|
|
1212
1245
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1213
1246
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1214
1247
|
];
|
|
1215
1248
|
}).s("SimSpaceWeaver", "StopSimulation", {}).n("SimSpaceWeaverClient", "StopSimulationCommand").f(void 0, void 0).ser(se_StopSimulationCommand).de(de_StopSimulationCommand).build() {
|
|
1249
|
+
static {
|
|
1250
|
+
__name(this, "StopSimulationCommand");
|
|
1251
|
+
}
|
|
1216
1252
|
};
|
|
1217
|
-
__name(_StopSimulationCommand, "StopSimulationCommand");
|
|
1218
|
-
var StopSimulationCommand = _StopSimulationCommand;
|
|
1219
1253
|
|
|
1220
1254
|
// src/commands/TagResourceCommand.ts
|
|
1221
1255
|
|
|
1222
1256
|
|
|
1223
1257
|
|
|
1224
|
-
var
|
|
1258
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1225
1259
|
return [
|
|
1226
1260
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1227
1261
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1228
1262
|
];
|
|
1229
1263
|
}).s("SimSpaceWeaver", "TagResource", {}).n("SimSpaceWeaverClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1264
|
+
static {
|
|
1265
|
+
__name(this, "TagResourceCommand");
|
|
1266
|
+
}
|
|
1230
1267
|
};
|
|
1231
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1232
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1233
1268
|
|
|
1234
1269
|
// src/commands/UntagResourceCommand.ts
|
|
1235
1270
|
|
|
1236
1271
|
|
|
1237
1272
|
|
|
1238
|
-
var
|
|
1273
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1239
1274
|
return [
|
|
1240
1275
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1241
1276
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1242
1277
|
];
|
|
1243
1278
|
}).s("SimSpaceWeaver", "UntagResource", {}).n("SimSpaceWeaverClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1279
|
+
static {
|
|
1280
|
+
__name(this, "UntagResourceCommand");
|
|
1281
|
+
}
|
|
1244
1282
|
};
|
|
1245
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1246
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1247
1283
|
|
|
1248
1284
|
// src/SimSpaceWeaver.ts
|
|
1249
1285
|
var commands = {
|
|
@@ -1264,10 +1300,11 @@ var commands = {
|
|
|
1264
1300
|
TagResourceCommand,
|
|
1265
1301
|
UntagResourceCommand
|
|
1266
1302
|
};
|
|
1267
|
-
var
|
|
1303
|
+
var SimSpaceWeaver = class extends SimSpaceWeaverClient {
|
|
1304
|
+
static {
|
|
1305
|
+
__name(this, "SimSpaceWeaver");
|
|
1306
|
+
}
|
|
1268
1307
|
};
|
|
1269
|
-
__name(_SimSpaceWeaver, "SimSpaceWeaver");
|
|
1270
|
-
var SimSpaceWeaver = _SimSpaceWeaver;
|
|
1271
1308
|
(0, import_smithy_client.createAggregatedClient)(commands, SimSpaceWeaver);
|
|
1272
1309
|
|
|
1273
1310
|
// src/pagination/ListAppsPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class SimSpaceWeaverClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { SimSpaceWeaverServiceException as __BaseException } from "./SimSpaceWeaverServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
6
|
+
Message;
|
|
4
7
|
constructor(opts) {
|
|
5
8
|
super({
|
|
6
9
|
name: "AccessDeniedException",
|
|
7
10
|
$fault: "client",
|
|
8
11
|
...opts,
|
|
9
12
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
13
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
14
|
this.Message = opts.Message;
|
|
14
15
|
}
|
|
@@ -26,53 +27,57 @@ export const ClockTargetStatus = {
|
|
|
26
27
|
UNKNOWN: "UNKNOWN",
|
|
27
28
|
};
|
|
28
29
|
export class ConflictException extends __BaseException {
|
|
30
|
+
name = "ConflictException";
|
|
31
|
+
$fault = "client";
|
|
32
|
+
Message;
|
|
29
33
|
constructor(opts) {
|
|
30
34
|
super({
|
|
31
35
|
name: "ConflictException",
|
|
32
36
|
$fault: "client",
|
|
33
37
|
...opts,
|
|
34
38
|
});
|
|
35
|
-
this.name = "ConflictException";
|
|
36
|
-
this.$fault = "client";
|
|
37
39
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
38
40
|
this.Message = opts.Message;
|
|
39
41
|
}
|
|
40
42
|
}
|
|
41
43
|
export class InternalServerException extends __BaseException {
|
|
44
|
+
name = "InternalServerException";
|
|
45
|
+
$fault = "server";
|
|
46
|
+
Message;
|
|
42
47
|
constructor(opts) {
|
|
43
48
|
super({
|
|
44
49
|
name: "InternalServerException",
|
|
45
50
|
$fault: "server",
|
|
46
51
|
...opts,
|
|
47
52
|
});
|
|
48
|
-
this.name = "InternalServerException";
|
|
49
|
-
this.$fault = "server";
|
|
50
53
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
51
54
|
this.Message = opts.Message;
|
|
52
55
|
}
|
|
53
56
|
}
|
|
54
57
|
export class ResourceNotFoundException extends __BaseException {
|
|
58
|
+
name = "ResourceNotFoundException";
|
|
59
|
+
$fault = "client";
|
|
60
|
+
Message;
|
|
55
61
|
constructor(opts) {
|
|
56
62
|
super({
|
|
57
63
|
name: "ResourceNotFoundException",
|
|
58
64
|
$fault: "client",
|
|
59
65
|
...opts,
|
|
60
66
|
});
|
|
61
|
-
this.name = "ResourceNotFoundException";
|
|
62
|
-
this.$fault = "client";
|
|
63
67
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
64
68
|
this.Message = opts.Message;
|
|
65
69
|
}
|
|
66
70
|
}
|
|
67
71
|
export class ValidationException extends __BaseException {
|
|
72
|
+
name = "ValidationException";
|
|
73
|
+
$fault = "client";
|
|
74
|
+
Message;
|
|
68
75
|
constructor(opts) {
|
|
69
76
|
super({
|
|
70
77
|
name: "ValidationException",
|
|
71
78
|
$fault: "client",
|
|
72
79
|
...opts,
|
|
73
80
|
});
|
|
74
|
-
this.name = "ValidationException";
|
|
75
|
-
this.$fault = "client";
|
|
76
81
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
77
82
|
this.Message = opts.Message;
|
|
78
83
|
}
|
|
@@ -114,27 +119,29 @@ export const SimulationTargetStatus = {
|
|
|
114
119
|
UNKNOWN: "UNKNOWN",
|
|
115
120
|
};
|
|
116
121
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
122
|
+
name = "ServiceQuotaExceededException";
|
|
123
|
+
$fault = "client";
|
|
124
|
+
Message;
|
|
117
125
|
constructor(opts) {
|
|
118
126
|
super({
|
|
119
127
|
name: "ServiceQuotaExceededException",
|
|
120
128
|
$fault: "client",
|
|
121
129
|
...opts,
|
|
122
130
|
});
|
|
123
|
-
this.name = "ServiceQuotaExceededException";
|
|
124
|
-
this.$fault = "client";
|
|
125
131
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
126
132
|
this.Message = opts.Message;
|
|
127
133
|
}
|
|
128
134
|
}
|
|
129
135
|
export class TooManyTagsException extends __BaseException {
|
|
136
|
+
name = "TooManyTagsException";
|
|
137
|
+
$fault = "client";
|
|
138
|
+
Message;
|
|
130
139
|
constructor(opts) {
|
|
131
140
|
super({
|
|
132
141
|
name: "TooManyTagsException",
|
|
133
142
|
$fault: "client",
|
|
134
143
|
...opts,
|
|
135
144
|
});
|
|
136
|
-
this.name = "TooManyTagsException";
|
|
137
|
-
this.$fault = "client";
|
|
138
145
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
139
146
|
this.Message = opts.Message;
|
|
140
147
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: SimSpaceWeaverClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
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.723.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",
|
|
@@ -20,58 +20,58 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|