@aws-sdk/client-ssm-sap 3.721.0 → 3.726.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 +136 -98
- package/dist-es/SsmSapClient.js +1 -0
- package/dist-es/models/models_0.js +15 -10
- 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
|
@@ -180,7 +180,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
180
180
|
}, "resolveRuntimeExtensions");
|
|
181
181
|
|
|
182
182
|
// src/SsmSapClient.ts
|
|
183
|
-
var
|
|
183
|
+
var SsmSapClient = class extends import_smithy_client.Client {
|
|
184
|
+
static {
|
|
185
|
+
__name(this, "SsmSapClient");
|
|
186
|
+
}
|
|
187
|
+
/**
|
|
188
|
+
* The resolved configuration of SsmSapClient class. This is resolved and normalized from the {@link SsmSapClientConfig | constructor configuration interface}.
|
|
189
|
+
*/
|
|
190
|
+
config;
|
|
184
191
|
constructor(...[configuration]) {
|
|
185
192
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
186
193
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -190,7 +197,7 @@ var _SsmSapClient = class _SsmSapClient extends import_smithy_client.Client {
|
|
|
190
197
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
191
198
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
192
199
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
193
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
200
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
194
201
|
super(_config_8);
|
|
195
202
|
this.config = _config_8;
|
|
196
203
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -218,8 +225,6 @@ var _SsmSapClient = class _SsmSapClient extends import_smithy_client.Client {
|
|
|
218
225
|
super.destroy();
|
|
219
226
|
}
|
|
220
227
|
};
|
|
221
|
-
__name(_SsmSapClient, "SsmSapClient");
|
|
222
|
-
var SsmSapClient = _SsmSapClient;
|
|
223
228
|
|
|
224
229
|
// src/SsmSap.ts
|
|
225
230
|
|
|
@@ -239,7 +244,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
239
244
|
|
|
240
245
|
// src/models/SsmSapServiceException.ts
|
|
241
246
|
|
|
242
|
-
var
|
|
247
|
+
var SsmSapServiceException = class _SsmSapServiceException extends import_smithy_client.ServiceException {
|
|
248
|
+
static {
|
|
249
|
+
__name(this, "SsmSapServiceException");
|
|
250
|
+
}
|
|
243
251
|
/**
|
|
244
252
|
* @internal
|
|
245
253
|
*/
|
|
@@ -248,8 +256,6 @@ var _SsmSapServiceException = class _SsmSapServiceException extends import_smith
|
|
|
248
256
|
Object.setPrototypeOf(this, _SsmSapServiceException.prototype);
|
|
249
257
|
}
|
|
250
258
|
};
|
|
251
|
-
__name(_SsmSapServiceException, "SsmSapServiceException");
|
|
252
|
-
var SsmSapServiceException = _SsmSapServiceException;
|
|
253
259
|
|
|
254
260
|
// src/models/models_0.ts
|
|
255
261
|
var AllocationType = {
|
|
@@ -335,7 +341,13 @@ var ComponentStatus = {
|
|
|
335
341
|
STOPPING: "STOPPING",
|
|
336
342
|
UNDEFINED: "UNDEFINED"
|
|
337
343
|
};
|
|
338
|
-
var
|
|
344
|
+
var ConflictException = class _ConflictException extends SsmSapServiceException {
|
|
345
|
+
static {
|
|
346
|
+
__name(this, "ConflictException");
|
|
347
|
+
}
|
|
348
|
+
name = "ConflictException";
|
|
349
|
+
$fault = "client";
|
|
350
|
+
Message;
|
|
339
351
|
/**
|
|
340
352
|
* @internal
|
|
341
353
|
*/
|
|
@@ -345,14 +357,10 @@ var _ConflictException = class _ConflictException extends SsmSapServiceException
|
|
|
345
357
|
$fault: "client",
|
|
346
358
|
...opts
|
|
347
359
|
});
|
|
348
|
-
this.name = "ConflictException";
|
|
349
|
-
this.$fault = "client";
|
|
350
360
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
351
361
|
this.Message = opts.Message;
|
|
352
362
|
}
|
|
353
363
|
};
|
|
354
|
-
__name(_ConflictException, "ConflictException");
|
|
355
|
-
var ConflictException = _ConflictException;
|
|
356
364
|
var ConnectedEntityType = {
|
|
357
365
|
DBMS: "DBMS"
|
|
358
366
|
};
|
|
@@ -371,7 +379,13 @@ var DatabaseStatus = {
|
|
|
371
379
|
var PermissionActionType = {
|
|
372
380
|
RESTORE: "RESTORE"
|
|
373
381
|
};
|
|
374
|
-
var
|
|
382
|
+
var InternalServerException = class _InternalServerException extends SsmSapServiceException {
|
|
383
|
+
static {
|
|
384
|
+
__name(this, "InternalServerException");
|
|
385
|
+
}
|
|
386
|
+
name = "InternalServerException";
|
|
387
|
+
$fault = "server";
|
|
388
|
+
Message;
|
|
375
389
|
/**
|
|
376
390
|
* @internal
|
|
377
391
|
*/
|
|
@@ -381,15 +395,17 @@ var _InternalServerException = class _InternalServerException extends SsmSapServ
|
|
|
381
395
|
$fault: "server",
|
|
382
396
|
...opts
|
|
383
397
|
});
|
|
384
|
-
this.name = "InternalServerException";
|
|
385
|
-
this.$fault = "server";
|
|
386
398
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
387
399
|
this.Message = opts.Message;
|
|
388
400
|
}
|
|
389
401
|
};
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
402
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends SsmSapServiceException {
|
|
403
|
+
static {
|
|
404
|
+
__name(this, "ResourceNotFoundException");
|
|
405
|
+
}
|
|
406
|
+
name = "ResourceNotFoundException";
|
|
407
|
+
$fault = "client";
|
|
408
|
+
Message;
|
|
393
409
|
/**
|
|
394
410
|
* @internal
|
|
395
411
|
*/
|
|
@@ -399,15 +415,17 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends SsmSap
|
|
|
399
415
|
$fault: "client",
|
|
400
416
|
...opts
|
|
401
417
|
});
|
|
402
|
-
this.name = "ResourceNotFoundException";
|
|
403
|
-
this.$fault = "client";
|
|
404
418
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
405
419
|
this.Message = opts.Message;
|
|
406
420
|
}
|
|
407
421
|
};
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
422
|
+
var ValidationException = class _ValidationException extends SsmSapServiceException {
|
|
423
|
+
static {
|
|
424
|
+
__name(this, "ValidationException");
|
|
425
|
+
}
|
|
426
|
+
name = "ValidationException";
|
|
427
|
+
$fault = "client";
|
|
428
|
+
Message;
|
|
411
429
|
/**
|
|
412
430
|
* @internal
|
|
413
431
|
*/
|
|
@@ -417,15 +435,17 @@ var _ValidationException = class _ValidationException extends SsmSapServiceExcep
|
|
|
417
435
|
$fault: "client",
|
|
418
436
|
...opts
|
|
419
437
|
});
|
|
420
|
-
this.name = "ValidationException";
|
|
421
|
-
this.$fault = "client";
|
|
422
438
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
423
439
|
this.Message = opts.Message;
|
|
424
440
|
}
|
|
425
441
|
};
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
442
|
+
var UnauthorizedException = class _UnauthorizedException extends SsmSapServiceException {
|
|
443
|
+
static {
|
|
444
|
+
__name(this, "UnauthorizedException");
|
|
445
|
+
}
|
|
446
|
+
name = "UnauthorizedException";
|
|
447
|
+
$fault = "client";
|
|
448
|
+
Message;
|
|
429
449
|
/**
|
|
430
450
|
* @internal
|
|
431
451
|
*/
|
|
@@ -435,14 +455,10 @@ var _UnauthorizedException = class _UnauthorizedException extends SsmSapServiceE
|
|
|
435
455
|
$fault: "client",
|
|
436
456
|
...opts
|
|
437
457
|
});
|
|
438
|
-
this.name = "UnauthorizedException";
|
|
439
|
-
this.$fault = "client";
|
|
440
458
|
Object.setPrototypeOf(this, _UnauthorizedException.prototype);
|
|
441
459
|
this.Message = opts.Message;
|
|
442
460
|
}
|
|
443
461
|
};
|
|
444
|
-
__name(_UnauthorizedException, "UnauthorizedException");
|
|
445
|
-
var UnauthorizedException = _UnauthorizedException;
|
|
446
462
|
var FilterOperator = {
|
|
447
463
|
EQUALS: "Equals",
|
|
448
464
|
GREATER_THAN_OR_EQUALS: "GreaterThanOrEquals",
|
|
@@ -1328,295 +1344,316 @@ var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
|
1328
1344
|
var _tK = "tagKeys";
|
|
1329
1345
|
|
|
1330
1346
|
// src/commands/DeleteResourcePermissionCommand.ts
|
|
1331
|
-
var
|
|
1347
|
+
var DeleteResourcePermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1332
1348
|
return [
|
|
1333
1349
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1334
1350
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1335
1351
|
];
|
|
1336
1352
|
}).s("SsmSap", "DeleteResourcePermission", {}).n("SsmSapClient", "DeleteResourcePermissionCommand").f(void 0, void 0).ser(se_DeleteResourcePermissionCommand).de(de_DeleteResourcePermissionCommand).build() {
|
|
1353
|
+
static {
|
|
1354
|
+
__name(this, "DeleteResourcePermissionCommand");
|
|
1355
|
+
}
|
|
1337
1356
|
};
|
|
1338
|
-
__name(_DeleteResourcePermissionCommand, "DeleteResourcePermissionCommand");
|
|
1339
|
-
var DeleteResourcePermissionCommand = _DeleteResourcePermissionCommand;
|
|
1340
1357
|
|
|
1341
1358
|
// src/commands/DeregisterApplicationCommand.ts
|
|
1342
1359
|
|
|
1343
1360
|
|
|
1344
1361
|
|
|
1345
|
-
var
|
|
1362
|
+
var DeregisterApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1346
1363
|
return [
|
|
1347
1364
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1348
1365
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1349
1366
|
];
|
|
1350
1367
|
}).s("SsmSap", "DeregisterApplication", {}).n("SsmSapClient", "DeregisterApplicationCommand").f(void 0, void 0).ser(se_DeregisterApplicationCommand).de(de_DeregisterApplicationCommand).build() {
|
|
1368
|
+
static {
|
|
1369
|
+
__name(this, "DeregisterApplicationCommand");
|
|
1370
|
+
}
|
|
1351
1371
|
};
|
|
1352
|
-
__name(_DeregisterApplicationCommand, "DeregisterApplicationCommand");
|
|
1353
|
-
var DeregisterApplicationCommand = _DeregisterApplicationCommand;
|
|
1354
1372
|
|
|
1355
1373
|
// src/commands/GetApplicationCommand.ts
|
|
1356
1374
|
|
|
1357
1375
|
|
|
1358
1376
|
|
|
1359
|
-
var
|
|
1377
|
+
var GetApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1360
1378
|
return [
|
|
1361
1379
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1362
1380
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1363
1381
|
];
|
|
1364
1382
|
}).s("SsmSap", "GetApplication", {}).n("SsmSapClient", "GetApplicationCommand").f(void 0, void 0).ser(se_GetApplicationCommand).de(de_GetApplicationCommand).build() {
|
|
1383
|
+
static {
|
|
1384
|
+
__name(this, "GetApplicationCommand");
|
|
1385
|
+
}
|
|
1365
1386
|
};
|
|
1366
|
-
__name(_GetApplicationCommand, "GetApplicationCommand");
|
|
1367
|
-
var GetApplicationCommand = _GetApplicationCommand;
|
|
1368
1387
|
|
|
1369
1388
|
// src/commands/GetComponentCommand.ts
|
|
1370
1389
|
|
|
1371
1390
|
|
|
1372
1391
|
|
|
1373
|
-
var
|
|
1392
|
+
var GetComponentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1374
1393
|
return [
|
|
1375
1394
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1376
1395
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1377
1396
|
];
|
|
1378
1397
|
}).s("SsmSap", "GetComponent", {}).n("SsmSapClient", "GetComponentCommand").f(void 0, void 0).ser(se_GetComponentCommand).de(de_GetComponentCommand).build() {
|
|
1398
|
+
static {
|
|
1399
|
+
__name(this, "GetComponentCommand");
|
|
1400
|
+
}
|
|
1379
1401
|
};
|
|
1380
|
-
__name(_GetComponentCommand, "GetComponentCommand");
|
|
1381
|
-
var GetComponentCommand = _GetComponentCommand;
|
|
1382
1402
|
|
|
1383
1403
|
// src/commands/GetDatabaseCommand.ts
|
|
1384
1404
|
|
|
1385
1405
|
|
|
1386
1406
|
|
|
1387
|
-
var
|
|
1407
|
+
var GetDatabaseCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1388
1408
|
return [
|
|
1389
1409
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1390
1410
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1391
1411
|
];
|
|
1392
1412
|
}).s("SsmSap", "GetDatabase", {}).n("SsmSapClient", "GetDatabaseCommand").f(void 0, GetDatabaseOutputFilterSensitiveLog).ser(se_GetDatabaseCommand).de(de_GetDatabaseCommand).build() {
|
|
1413
|
+
static {
|
|
1414
|
+
__name(this, "GetDatabaseCommand");
|
|
1415
|
+
}
|
|
1393
1416
|
};
|
|
1394
|
-
__name(_GetDatabaseCommand, "GetDatabaseCommand");
|
|
1395
|
-
var GetDatabaseCommand = _GetDatabaseCommand;
|
|
1396
1417
|
|
|
1397
1418
|
// src/commands/GetOperationCommand.ts
|
|
1398
1419
|
|
|
1399
1420
|
|
|
1400
1421
|
|
|
1401
|
-
var
|
|
1422
|
+
var GetOperationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1402
1423
|
return [
|
|
1403
1424
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1404
1425
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1405
1426
|
];
|
|
1406
1427
|
}).s("SsmSap", "GetOperation", {}).n("SsmSapClient", "GetOperationCommand").f(void 0, void 0).ser(se_GetOperationCommand).de(de_GetOperationCommand).build() {
|
|
1428
|
+
static {
|
|
1429
|
+
__name(this, "GetOperationCommand");
|
|
1430
|
+
}
|
|
1407
1431
|
};
|
|
1408
|
-
__name(_GetOperationCommand, "GetOperationCommand");
|
|
1409
|
-
var GetOperationCommand = _GetOperationCommand;
|
|
1410
1432
|
|
|
1411
1433
|
// src/commands/GetResourcePermissionCommand.ts
|
|
1412
1434
|
|
|
1413
1435
|
|
|
1414
1436
|
|
|
1415
|
-
var
|
|
1437
|
+
var GetResourcePermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1416
1438
|
return [
|
|
1417
1439
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1418
1440
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1419
1441
|
];
|
|
1420
1442
|
}).s("SsmSap", "GetResourcePermission", {}).n("SsmSapClient", "GetResourcePermissionCommand").f(void 0, void 0).ser(se_GetResourcePermissionCommand).de(de_GetResourcePermissionCommand).build() {
|
|
1443
|
+
static {
|
|
1444
|
+
__name(this, "GetResourcePermissionCommand");
|
|
1445
|
+
}
|
|
1421
1446
|
};
|
|
1422
|
-
__name(_GetResourcePermissionCommand, "GetResourcePermissionCommand");
|
|
1423
|
-
var GetResourcePermissionCommand = _GetResourcePermissionCommand;
|
|
1424
1447
|
|
|
1425
1448
|
// src/commands/ListApplicationsCommand.ts
|
|
1426
1449
|
|
|
1427
1450
|
|
|
1428
1451
|
|
|
1429
|
-
var
|
|
1452
|
+
var ListApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1430
1453
|
return [
|
|
1431
1454
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1432
1455
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1433
1456
|
];
|
|
1434
1457
|
}).s("SsmSap", "ListApplications", {}).n("SsmSapClient", "ListApplicationsCommand").f(void 0, void 0).ser(se_ListApplicationsCommand).de(de_ListApplicationsCommand).build() {
|
|
1458
|
+
static {
|
|
1459
|
+
__name(this, "ListApplicationsCommand");
|
|
1460
|
+
}
|
|
1435
1461
|
};
|
|
1436
|
-
__name(_ListApplicationsCommand, "ListApplicationsCommand");
|
|
1437
|
-
var ListApplicationsCommand = _ListApplicationsCommand;
|
|
1438
1462
|
|
|
1439
1463
|
// src/commands/ListComponentsCommand.ts
|
|
1440
1464
|
|
|
1441
1465
|
|
|
1442
1466
|
|
|
1443
|
-
var
|
|
1467
|
+
var ListComponentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1444
1468
|
return [
|
|
1445
1469
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1446
1470
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1447
1471
|
];
|
|
1448
1472
|
}).s("SsmSap", "ListComponents", {}).n("SsmSapClient", "ListComponentsCommand").f(void 0, void 0).ser(se_ListComponentsCommand).de(de_ListComponentsCommand).build() {
|
|
1473
|
+
static {
|
|
1474
|
+
__name(this, "ListComponentsCommand");
|
|
1475
|
+
}
|
|
1449
1476
|
};
|
|
1450
|
-
__name(_ListComponentsCommand, "ListComponentsCommand");
|
|
1451
|
-
var ListComponentsCommand = _ListComponentsCommand;
|
|
1452
1477
|
|
|
1453
1478
|
// src/commands/ListDatabasesCommand.ts
|
|
1454
1479
|
|
|
1455
1480
|
|
|
1456
1481
|
|
|
1457
|
-
var
|
|
1482
|
+
var ListDatabasesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1458
1483
|
return [
|
|
1459
1484
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1460
1485
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1461
1486
|
];
|
|
1462
1487
|
}).s("SsmSap", "ListDatabases", {}).n("SsmSapClient", "ListDatabasesCommand").f(void 0, void 0).ser(se_ListDatabasesCommand).de(de_ListDatabasesCommand).build() {
|
|
1488
|
+
static {
|
|
1489
|
+
__name(this, "ListDatabasesCommand");
|
|
1490
|
+
}
|
|
1463
1491
|
};
|
|
1464
|
-
__name(_ListDatabasesCommand, "ListDatabasesCommand");
|
|
1465
|
-
var ListDatabasesCommand = _ListDatabasesCommand;
|
|
1466
1492
|
|
|
1467
1493
|
// src/commands/ListOperationEventsCommand.ts
|
|
1468
1494
|
|
|
1469
1495
|
|
|
1470
1496
|
|
|
1471
|
-
var
|
|
1497
|
+
var ListOperationEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1472
1498
|
return [
|
|
1473
1499
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1474
1500
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1475
1501
|
];
|
|
1476
1502
|
}).s("SsmSap", "ListOperationEvents", {}).n("SsmSapClient", "ListOperationEventsCommand").f(void 0, void 0).ser(se_ListOperationEventsCommand).de(de_ListOperationEventsCommand).build() {
|
|
1503
|
+
static {
|
|
1504
|
+
__name(this, "ListOperationEventsCommand");
|
|
1505
|
+
}
|
|
1477
1506
|
};
|
|
1478
|
-
__name(_ListOperationEventsCommand, "ListOperationEventsCommand");
|
|
1479
|
-
var ListOperationEventsCommand = _ListOperationEventsCommand;
|
|
1480
1507
|
|
|
1481
1508
|
// src/commands/ListOperationsCommand.ts
|
|
1482
1509
|
|
|
1483
1510
|
|
|
1484
1511
|
|
|
1485
|
-
var
|
|
1512
|
+
var ListOperationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1486
1513
|
return [
|
|
1487
1514
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1488
1515
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1489
1516
|
];
|
|
1490
1517
|
}).s("SsmSap", "ListOperations", {}).n("SsmSapClient", "ListOperationsCommand").f(void 0, void 0).ser(se_ListOperationsCommand).de(de_ListOperationsCommand).build() {
|
|
1518
|
+
static {
|
|
1519
|
+
__name(this, "ListOperationsCommand");
|
|
1520
|
+
}
|
|
1491
1521
|
};
|
|
1492
|
-
__name(_ListOperationsCommand, "ListOperationsCommand");
|
|
1493
|
-
var ListOperationsCommand = _ListOperationsCommand;
|
|
1494
1522
|
|
|
1495
1523
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1496
1524
|
|
|
1497
1525
|
|
|
1498
1526
|
|
|
1499
|
-
var
|
|
1527
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1500
1528
|
return [
|
|
1501
1529
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1502
1530
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1503
1531
|
];
|
|
1504
1532
|
}).s("SsmSap", "ListTagsForResource", {}).n("SsmSapClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1533
|
+
static {
|
|
1534
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1535
|
+
}
|
|
1505
1536
|
};
|
|
1506
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1507
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1508
1537
|
|
|
1509
1538
|
// src/commands/PutResourcePermissionCommand.ts
|
|
1510
1539
|
|
|
1511
1540
|
|
|
1512
1541
|
|
|
1513
|
-
var
|
|
1542
|
+
var PutResourcePermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1514
1543
|
return [
|
|
1515
1544
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1516
1545
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1517
1546
|
];
|
|
1518
1547
|
}).s("SsmSap", "PutResourcePermission", {}).n("SsmSapClient", "PutResourcePermissionCommand").f(void 0, void 0).ser(se_PutResourcePermissionCommand).de(de_PutResourcePermissionCommand).build() {
|
|
1548
|
+
static {
|
|
1549
|
+
__name(this, "PutResourcePermissionCommand");
|
|
1550
|
+
}
|
|
1519
1551
|
};
|
|
1520
|
-
__name(_PutResourcePermissionCommand, "PutResourcePermissionCommand");
|
|
1521
|
-
var PutResourcePermissionCommand = _PutResourcePermissionCommand;
|
|
1522
1552
|
|
|
1523
1553
|
// src/commands/RegisterApplicationCommand.ts
|
|
1524
1554
|
|
|
1525
1555
|
|
|
1526
1556
|
|
|
1527
|
-
var
|
|
1557
|
+
var RegisterApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1528
1558
|
return [
|
|
1529
1559
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1530
1560
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1531
1561
|
];
|
|
1532
1562
|
}).s("SsmSap", "RegisterApplication", {}).n("SsmSapClient", "RegisterApplicationCommand").f(RegisterApplicationInputFilterSensitiveLog, void 0).ser(se_RegisterApplicationCommand).de(de_RegisterApplicationCommand).build() {
|
|
1563
|
+
static {
|
|
1564
|
+
__name(this, "RegisterApplicationCommand");
|
|
1565
|
+
}
|
|
1533
1566
|
};
|
|
1534
|
-
__name(_RegisterApplicationCommand, "RegisterApplicationCommand");
|
|
1535
|
-
var RegisterApplicationCommand = _RegisterApplicationCommand;
|
|
1536
1567
|
|
|
1537
1568
|
// src/commands/StartApplicationCommand.ts
|
|
1538
1569
|
|
|
1539
1570
|
|
|
1540
1571
|
|
|
1541
|
-
var
|
|
1572
|
+
var StartApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1542
1573
|
return [
|
|
1543
1574
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1544
1575
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1545
1576
|
];
|
|
1546
1577
|
}).s("SsmSap", "StartApplication", {}).n("SsmSapClient", "StartApplicationCommand").f(void 0, void 0).ser(se_StartApplicationCommand).de(de_StartApplicationCommand).build() {
|
|
1578
|
+
static {
|
|
1579
|
+
__name(this, "StartApplicationCommand");
|
|
1580
|
+
}
|
|
1547
1581
|
};
|
|
1548
|
-
__name(_StartApplicationCommand, "StartApplicationCommand");
|
|
1549
|
-
var StartApplicationCommand = _StartApplicationCommand;
|
|
1550
1582
|
|
|
1551
1583
|
// src/commands/StartApplicationRefreshCommand.ts
|
|
1552
1584
|
|
|
1553
1585
|
|
|
1554
1586
|
|
|
1555
|
-
var
|
|
1587
|
+
var StartApplicationRefreshCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1556
1588
|
return [
|
|
1557
1589
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1558
1590
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1559
1591
|
];
|
|
1560
1592
|
}).s("SsmSap", "StartApplicationRefresh", {}).n("SsmSapClient", "StartApplicationRefreshCommand").f(void 0, void 0).ser(se_StartApplicationRefreshCommand).de(de_StartApplicationRefreshCommand).build() {
|
|
1593
|
+
static {
|
|
1594
|
+
__name(this, "StartApplicationRefreshCommand");
|
|
1595
|
+
}
|
|
1561
1596
|
};
|
|
1562
|
-
__name(_StartApplicationRefreshCommand, "StartApplicationRefreshCommand");
|
|
1563
|
-
var StartApplicationRefreshCommand = _StartApplicationRefreshCommand;
|
|
1564
1597
|
|
|
1565
1598
|
// src/commands/StopApplicationCommand.ts
|
|
1566
1599
|
|
|
1567
1600
|
|
|
1568
1601
|
|
|
1569
|
-
var
|
|
1602
|
+
var StopApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1570
1603
|
return [
|
|
1571
1604
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1572
1605
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1573
1606
|
];
|
|
1574
1607
|
}).s("SsmSap", "StopApplication", {}).n("SsmSapClient", "StopApplicationCommand").f(void 0, void 0).ser(se_StopApplicationCommand).de(de_StopApplicationCommand).build() {
|
|
1608
|
+
static {
|
|
1609
|
+
__name(this, "StopApplicationCommand");
|
|
1610
|
+
}
|
|
1575
1611
|
};
|
|
1576
|
-
__name(_StopApplicationCommand, "StopApplicationCommand");
|
|
1577
|
-
var StopApplicationCommand = _StopApplicationCommand;
|
|
1578
1612
|
|
|
1579
1613
|
// src/commands/TagResourceCommand.ts
|
|
1580
1614
|
|
|
1581
1615
|
|
|
1582
1616
|
|
|
1583
|
-
var
|
|
1617
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1584
1618
|
return [
|
|
1585
1619
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1586
1620
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1587
1621
|
];
|
|
1588
1622
|
}).s("SsmSap", "TagResource", {}).n("SsmSapClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1623
|
+
static {
|
|
1624
|
+
__name(this, "TagResourceCommand");
|
|
1625
|
+
}
|
|
1589
1626
|
};
|
|
1590
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1591
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1592
1627
|
|
|
1593
1628
|
// src/commands/UntagResourceCommand.ts
|
|
1594
1629
|
|
|
1595
1630
|
|
|
1596
1631
|
|
|
1597
|
-
var
|
|
1632
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1598
1633
|
return [
|
|
1599
1634
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1600
1635
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1601
1636
|
];
|
|
1602
1637
|
}).s("SsmSap", "UntagResource", {}).n("SsmSapClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1638
|
+
static {
|
|
1639
|
+
__name(this, "UntagResourceCommand");
|
|
1640
|
+
}
|
|
1603
1641
|
};
|
|
1604
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1605
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1606
1642
|
|
|
1607
1643
|
// src/commands/UpdateApplicationSettingsCommand.ts
|
|
1608
1644
|
|
|
1609
1645
|
|
|
1610
1646
|
|
|
1611
|
-
var
|
|
1647
|
+
var UpdateApplicationSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1612
1648
|
return [
|
|
1613
1649
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1614
1650
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1615
1651
|
];
|
|
1616
1652
|
}).s("SsmSap", "UpdateApplicationSettings", {}).n("SsmSapClient", "UpdateApplicationSettingsCommand").f(UpdateApplicationSettingsInputFilterSensitiveLog, void 0).ser(se_UpdateApplicationSettingsCommand).de(de_UpdateApplicationSettingsCommand).build() {
|
|
1653
|
+
static {
|
|
1654
|
+
__name(this, "UpdateApplicationSettingsCommand");
|
|
1655
|
+
}
|
|
1617
1656
|
};
|
|
1618
|
-
__name(_UpdateApplicationSettingsCommand, "UpdateApplicationSettingsCommand");
|
|
1619
|
-
var UpdateApplicationSettingsCommand = _UpdateApplicationSettingsCommand;
|
|
1620
1657
|
|
|
1621
1658
|
// src/SsmSap.ts
|
|
1622
1659
|
var commands = {
|
|
@@ -1642,10 +1679,11 @@ var commands = {
|
|
|
1642
1679
|
UntagResourceCommand,
|
|
1643
1680
|
UpdateApplicationSettingsCommand
|
|
1644
1681
|
};
|
|
1645
|
-
var
|
|
1682
|
+
var SsmSap = class extends SsmSapClient {
|
|
1683
|
+
static {
|
|
1684
|
+
__name(this, "SsmSap");
|
|
1685
|
+
}
|
|
1646
1686
|
};
|
|
1647
|
-
__name(_SsmSap, "SsmSap");
|
|
1648
|
-
var SsmSap = _SsmSap;
|
|
1649
1687
|
(0, import_smithy_client.createAggregatedClient)(commands, SsmSap);
|
|
1650
1688
|
|
|
1651
1689
|
// src/pagination/ListApplicationsPaginator.ts
|
package/dist-es/SsmSapClient.js
CHANGED
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class SsmSapClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -84,14 +84,15 @@ export const ComponentStatus = {
|
|
|
84
84
|
UNDEFINED: "UNDEFINED",
|
|
85
85
|
};
|
|
86
86
|
export class ConflictException extends __BaseException {
|
|
87
|
+
name = "ConflictException";
|
|
88
|
+
$fault = "client";
|
|
89
|
+
Message;
|
|
87
90
|
constructor(opts) {
|
|
88
91
|
super({
|
|
89
92
|
name: "ConflictException",
|
|
90
93
|
$fault: "client",
|
|
91
94
|
...opts,
|
|
92
95
|
});
|
|
93
|
-
this.name = "ConflictException";
|
|
94
|
-
this.$fault = "client";
|
|
95
96
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
96
97
|
this.Message = opts.Message;
|
|
97
98
|
}
|
|
@@ -115,53 +116,57 @@ export const PermissionActionType = {
|
|
|
115
116
|
RESTORE: "RESTORE",
|
|
116
117
|
};
|
|
117
118
|
export class InternalServerException extends __BaseException {
|
|
119
|
+
name = "InternalServerException";
|
|
120
|
+
$fault = "server";
|
|
121
|
+
Message;
|
|
118
122
|
constructor(opts) {
|
|
119
123
|
super({
|
|
120
124
|
name: "InternalServerException",
|
|
121
125
|
$fault: "server",
|
|
122
126
|
...opts,
|
|
123
127
|
});
|
|
124
|
-
this.name = "InternalServerException";
|
|
125
|
-
this.$fault = "server";
|
|
126
128
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
127
129
|
this.Message = opts.Message;
|
|
128
130
|
}
|
|
129
131
|
}
|
|
130
132
|
export class ResourceNotFoundException extends __BaseException {
|
|
133
|
+
name = "ResourceNotFoundException";
|
|
134
|
+
$fault = "client";
|
|
135
|
+
Message;
|
|
131
136
|
constructor(opts) {
|
|
132
137
|
super({
|
|
133
138
|
name: "ResourceNotFoundException",
|
|
134
139
|
$fault: "client",
|
|
135
140
|
...opts,
|
|
136
141
|
});
|
|
137
|
-
this.name = "ResourceNotFoundException";
|
|
138
|
-
this.$fault = "client";
|
|
139
142
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
140
143
|
this.Message = opts.Message;
|
|
141
144
|
}
|
|
142
145
|
}
|
|
143
146
|
export class ValidationException extends __BaseException {
|
|
147
|
+
name = "ValidationException";
|
|
148
|
+
$fault = "client";
|
|
149
|
+
Message;
|
|
144
150
|
constructor(opts) {
|
|
145
151
|
super({
|
|
146
152
|
name: "ValidationException",
|
|
147
153
|
$fault: "client",
|
|
148
154
|
...opts,
|
|
149
155
|
});
|
|
150
|
-
this.name = "ValidationException";
|
|
151
|
-
this.$fault = "client";
|
|
152
156
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
153
157
|
this.Message = opts.Message;
|
|
154
158
|
}
|
|
155
159
|
}
|
|
156
160
|
export class UnauthorizedException extends __BaseException {
|
|
161
|
+
name = "UnauthorizedException";
|
|
162
|
+
$fault = "client";
|
|
163
|
+
Message;
|
|
157
164
|
constructor(opts) {
|
|
158
165
|
super({
|
|
159
166
|
name: "UnauthorizedException",
|
|
160
167
|
$fault: "client",
|
|
161
168
|
...opts,
|
|
162
169
|
});
|
|
163
|
-
this.name = "UnauthorizedException";
|
|
164
|
-
this.$fault = "client";
|
|
165
170
|
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
166
171
|
this.Message = opts.Message;
|
|
167
172
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SsmSapClientConfig) => {
|
|
|
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: SsmSapClientConfig) => {
|
|
|
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: SsmSapClientConfig) => {
|
|
|
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: SsmSapClientConfig) => {
|
|
|
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: SsmSapClientConfig) => {
|
|
|
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: SsmSapClientConfig) => {
|
|
|
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: SsmSapClientConfig) => {
|
|
|
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: SsmSapClientConfig) => {
|
|
|
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-ssm-sap",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Sap Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.726.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-ssm-sap",
|
|
@@ -20,56 +20,56 @@
|
|
|
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.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.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.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.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
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|