@aws-sdk/client-application-auto-scaling 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 +146 -97
- package/dist-es/ApplicationAutoScalingClient.js +1 -0
- package/dist-es/models/models_0.js +29 -18
- 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
|
@@ -161,7 +161,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
161
161
|
}, "resolveRuntimeExtensions");
|
|
162
162
|
|
|
163
163
|
// src/ApplicationAutoScalingClient.ts
|
|
164
|
-
var
|
|
164
|
+
var ApplicationAutoScalingClient = class extends import_smithy_client.Client {
|
|
165
|
+
static {
|
|
166
|
+
__name(this, "ApplicationAutoScalingClient");
|
|
167
|
+
}
|
|
168
|
+
/**
|
|
169
|
+
* The resolved configuration of ApplicationAutoScalingClient class. This is resolved and normalized from the {@link ApplicationAutoScalingClientConfig | constructor configuration interface}.
|
|
170
|
+
*/
|
|
171
|
+
config;
|
|
165
172
|
constructor(...[configuration]) {
|
|
166
173
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
167
174
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -171,7 +178,7 @@ var _ApplicationAutoScalingClient = class _ApplicationAutoScalingClient extends
|
|
|
171
178
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
172
179
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
173
180
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
174
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
181
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
175
182
|
super(_config_8);
|
|
176
183
|
this.config = _config_8;
|
|
177
184
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -199,8 +206,6 @@ var _ApplicationAutoScalingClient = class _ApplicationAutoScalingClient extends
|
|
|
199
206
|
super.destroy();
|
|
200
207
|
}
|
|
201
208
|
};
|
|
202
|
-
__name(_ApplicationAutoScalingClient, "ApplicationAutoScalingClient");
|
|
203
|
-
var ApplicationAutoScalingClient = _ApplicationAutoScalingClient;
|
|
204
209
|
|
|
205
210
|
// src/ApplicationAutoScaling.ts
|
|
206
211
|
|
|
@@ -217,7 +222,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
217
222
|
|
|
218
223
|
// src/models/ApplicationAutoScalingServiceException.ts
|
|
219
224
|
|
|
220
|
-
var
|
|
225
|
+
var ApplicationAutoScalingServiceException = class _ApplicationAutoScalingServiceException extends import_smithy_client.ServiceException {
|
|
226
|
+
static {
|
|
227
|
+
__name(this, "ApplicationAutoScalingServiceException");
|
|
228
|
+
}
|
|
221
229
|
/**
|
|
222
230
|
* @internal
|
|
223
231
|
*/
|
|
@@ -226,8 +234,6 @@ var _ApplicationAutoScalingServiceException = class _ApplicationAutoScalingServi
|
|
|
226
234
|
Object.setPrototypeOf(this, _ApplicationAutoScalingServiceException.prototype);
|
|
227
235
|
}
|
|
228
236
|
};
|
|
229
|
-
__name(_ApplicationAutoScalingServiceException, "ApplicationAutoScalingServiceException");
|
|
230
|
-
var ApplicationAutoScalingServiceException = _ApplicationAutoScalingServiceException;
|
|
231
237
|
|
|
232
238
|
// src/models/models_0.ts
|
|
233
239
|
var AdjustmentType = {
|
|
@@ -235,7 +241,13 @@ var AdjustmentType = {
|
|
|
235
241
|
ExactCapacity: "ExactCapacity",
|
|
236
242
|
PercentChangeInCapacity: "PercentChangeInCapacity"
|
|
237
243
|
};
|
|
238
|
-
var
|
|
244
|
+
var ConcurrentUpdateException = class _ConcurrentUpdateException extends ApplicationAutoScalingServiceException {
|
|
245
|
+
static {
|
|
246
|
+
__name(this, "ConcurrentUpdateException");
|
|
247
|
+
}
|
|
248
|
+
name = "ConcurrentUpdateException";
|
|
249
|
+
$fault = "server";
|
|
250
|
+
Message;
|
|
239
251
|
/**
|
|
240
252
|
* @internal
|
|
241
253
|
*/
|
|
@@ -245,14 +257,10 @@ var _ConcurrentUpdateException = class _ConcurrentUpdateException extends Applic
|
|
|
245
257
|
$fault: "server",
|
|
246
258
|
...opts
|
|
247
259
|
});
|
|
248
|
-
this.name = "ConcurrentUpdateException";
|
|
249
|
-
this.$fault = "server";
|
|
250
260
|
Object.setPrototypeOf(this, _ConcurrentUpdateException.prototype);
|
|
251
261
|
this.Message = opts.Message;
|
|
252
262
|
}
|
|
253
263
|
};
|
|
254
|
-
__name(_ConcurrentUpdateException, "ConcurrentUpdateException");
|
|
255
|
-
var ConcurrentUpdateException = _ConcurrentUpdateException;
|
|
256
264
|
var ScalableDimension = {
|
|
257
265
|
AppstreamFleetDesiredCapacity: "appstream:fleet:DesiredCapacity",
|
|
258
266
|
CassandraTableReadCapacityUnits: "cassandra:table:ReadCapacityUnits",
|
|
@@ -295,7 +303,13 @@ var ServiceNamespace = {
|
|
|
295
303
|
SAGEMAKER: "sagemaker",
|
|
296
304
|
WORKSPACES: "workspaces"
|
|
297
305
|
};
|
|
298
|
-
var
|
|
306
|
+
var InternalServiceException = class _InternalServiceException extends ApplicationAutoScalingServiceException {
|
|
307
|
+
static {
|
|
308
|
+
__name(this, "InternalServiceException");
|
|
309
|
+
}
|
|
310
|
+
name = "InternalServiceException";
|
|
311
|
+
$fault = "server";
|
|
312
|
+
Message;
|
|
299
313
|
/**
|
|
300
314
|
* @internal
|
|
301
315
|
*/
|
|
@@ -305,15 +319,17 @@ var _InternalServiceException = class _InternalServiceException extends Applicat
|
|
|
305
319
|
$fault: "server",
|
|
306
320
|
...opts
|
|
307
321
|
});
|
|
308
|
-
this.name = "InternalServiceException";
|
|
309
|
-
this.$fault = "server";
|
|
310
322
|
Object.setPrototypeOf(this, _InternalServiceException.prototype);
|
|
311
323
|
this.Message = opts.Message;
|
|
312
324
|
}
|
|
313
325
|
};
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
326
|
+
var ObjectNotFoundException = class _ObjectNotFoundException extends ApplicationAutoScalingServiceException {
|
|
327
|
+
static {
|
|
328
|
+
__name(this, "ObjectNotFoundException");
|
|
329
|
+
}
|
|
330
|
+
name = "ObjectNotFoundException";
|
|
331
|
+
$fault = "client";
|
|
332
|
+
Message;
|
|
317
333
|
/**
|
|
318
334
|
* @internal
|
|
319
335
|
*/
|
|
@@ -323,15 +339,17 @@ var _ObjectNotFoundException = class _ObjectNotFoundException extends Applicatio
|
|
|
323
339
|
$fault: "client",
|
|
324
340
|
...opts
|
|
325
341
|
});
|
|
326
|
-
this.name = "ObjectNotFoundException";
|
|
327
|
-
this.$fault = "client";
|
|
328
342
|
Object.setPrototypeOf(this, _ObjectNotFoundException.prototype);
|
|
329
343
|
this.Message = opts.Message;
|
|
330
344
|
}
|
|
331
345
|
};
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
346
|
+
var ValidationException = class _ValidationException extends ApplicationAutoScalingServiceException {
|
|
347
|
+
static {
|
|
348
|
+
__name(this, "ValidationException");
|
|
349
|
+
}
|
|
350
|
+
name = "ValidationException";
|
|
351
|
+
$fault = "client";
|
|
352
|
+
Message;
|
|
335
353
|
/**
|
|
336
354
|
* @internal
|
|
337
355
|
*/
|
|
@@ -341,15 +359,17 @@ var _ValidationException = class _ValidationException extends ApplicationAutoSca
|
|
|
341
359
|
$fault: "client",
|
|
342
360
|
...opts
|
|
343
361
|
});
|
|
344
|
-
this.name = "ValidationException";
|
|
345
|
-
this.$fault = "client";
|
|
346
362
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
347
363
|
this.Message = opts.Message;
|
|
348
364
|
}
|
|
349
365
|
};
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
366
|
+
var InvalidNextTokenException = class _InvalidNextTokenException extends ApplicationAutoScalingServiceException {
|
|
367
|
+
static {
|
|
368
|
+
__name(this, "InvalidNextTokenException");
|
|
369
|
+
}
|
|
370
|
+
name = "InvalidNextTokenException";
|
|
371
|
+
$fault = "client";
|
|
372
|
+
Message;
|
|
353
373
|
/**
|
|
354
374
|
* @internal
|
|
355
375
|
*/
|
|
@@ -359,14 +379,10 @@ var _InvalidNextTokenException = class _InvalidNextTokenException extends Applic
|
|
|
359
379
|
$fault: "client",
|
|
360
380
|
...opts
|
|
361
381
|
});
|
|
362
|
-
this.name = "InvalidNextTokenException";
|
|
363
|
-
this.$fault = "client";
|
|
364
382
|
Object.setPrototypeOf(this, _InvalidNextTokenException.prototype);
|
|
365
383
|
this.Message = opts.Message;
|
|
366
384
|
}
|
|
367
385
|
};
|
|
368
|
-
__name(_InvalidNextTokenException, "InvalidNextTokenException");
|
|
369
|
-
var InvalidNextTokenException = _InvalidNextTokenException;
|
|
370
386
|
var ScalingActivityStatusCode = {
|
|
371
387
|
Failed: "Failed",
|
|
372
388
|
InProgress: "InProgress",
|
|
@@ -429,7 +445,13 @@ var MetricType = {
|
|
|
429
445
|
SageMakerVariantProvisionedConcurrencyUtilization: "SageMakerVariantProvisionedConcurrencyUtilization",
|
|
430
446
|
WorkSpacesAverageUserSessionsCapacityUtilization: "WorkSpacesAverageUserSessionsCapacityUtilization"
|
|
431
447
|
};
|
|
432
|
-
var
|
|
448
|
+
var FailedResourceAccessException = class _FailedResourceAccessException extends ApplicationAutoScalingServiceException {
|
|
449
|
+
static {
|
|
450
|
+
__name(this, "FailedResourceAccessException");
|
|
451
|
+
}
|
|
452
|
+
name = "FailedResourceAccessException";
|
|
453
|
+
$fault = "client";
|
|
454
|
+
Message;
|
|
433
455
|
/**
|
|
434
456
|
* @internal
|
|
435
457
|
*/
|
|
@@ -439,15 +461,22 @@ var _FailedResourceAccessException = class _FailedResourceAccessException extend
|
|
|
439
461
|
$fault: "client",
|
|
440
462
|
...opts
|
|
441
463
|
});
|
|
442
|
-
this.name = "FailedResourceAccessException";
|
|
443
|
-
this.$fault = "client";
|
|
444
464
|
Object.setPrototypeOf(this, _FailedResourceAccessException.prototype);
|
|
445
465
|
this.Message = opts.Message;
|
|
446
466
|
}
|
|
447
467
|
};
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
468
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends ApplicationAutoScalingServiceException {
|
|
469
|
+
static {
|
|
470
|
+
__name(this, "ResourceNotFoundException");
|
|
471
|
+
}
|
|
472
|
+
name = "ResourceNotFoundException";
|
|
473
|
+
$fault = "client";
|
|
474
|
+
Message;
|
|
475
|
+
/**
|
|
476
|
+
* <p>The name of the Application Auto Scaling resource. This value is an Amazon Resource Name (ARN).</p>
|
|
477
|
+
* @public
|
|
478
|
+
*/
|
|
479
|
+
ResourceName;
|
|
451
480
|
/**
|
|
452
481
|
* @internal
|
|
453
482
|
*/
|
|
@@ -457,16 +486,18 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Applic
|
|
|
457
486
|
$fault: "client",
|
|
458
487
|
...opts
|
|
459
488
|
});
|
|
460
|
-
this.name = "ResourceNotFoundException";
|
|
461
|
-
this.$fault = "client";
|
|
462
489
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
463
490
|
this.Message = opts.Message;
|
|
464
491
|
this.ResourceName = opts.ResourceName;
|
|
465
492
|
}
|
|
466
493
|
};
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
494
|
+
var LimitExceededException = class _LimitExceededException extends ApplicationAutoScalingServiceException {
|
|
495
|
+
static {
|
|
496
|
+
__name(this, "LimitExceededException");
|
|
497
|
+
}
|
|
498
|
+
name = "LimitExceededException";
|
|
499
|
+
$fault = "client";
|
|
500
|
+
Message;
|
|
470
501
|
/**
|
|
471
502
|
* @internal
|
|
472
503
|
*/
|
|
@@ -476,15 +507,22 @@ var _LimitExceededException = class _LimitExceededException extends ApplicationA
|
|
|
476
507
|
$fault: "client",
|
|
477
508
|
...opts
|
|
478
509
|
});
|
|
479
|
-
this.name = "LimitExceededException";
|
|
480
|
-
this.$fault = "client";
|
|
481
510
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
482
511
|
this.Message = opts.Message;
|
|
483
512
|
}
|
|
484
513
|
};
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
514
|
+
var TooManyTagsException = class _TooManyTagsException extends ApplicationAutoScalingServiceException {
|
|
515
|
+
static {
|
|
516
|
+
__name(this, "TooManyTagsException");
|
|
517
|
+
}
|
|
518
|
+
name = "TooManyTagsException";
|
|
519
|
+
$fault = "client";
|
|
520
|
+
Message;
|
|
521
|
+
/**
|
|
522
|
+
* <p>The name of the Application Auto Scaling resource. This value is an Amazon Resource Name (ARN).</p>
|
|
523
|
+
* @public
|
|
524
|
+
*/
|
|
525
|
+
ResourceName;
|
|
488
526
|
/**
|
|
489
527
|
* @internal
|
|
490
528
|
*/
|
|
@@ -494,15 +532,11 @@ var _TooManyTagsException = class _TooManyTagsException extends ApplicationAutoS
|
|
|
494
532
|
$fault: "client",
|
|
495
533
|
...opts
|
|
496
534
|
});
|
|
497
|
-
this.name = "TooManyTagsException";
|
|
498
|
-
this.$fault = "client";
|
|
499
535
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
500
536
|
this.Message = opts.Message;
|
|
501
537
|
this.ResourceName = opts.ResourceName;
|
|
502
538
|
}
|
|
503
539
|
};
|
|
504
|
-
__name(_TooManyTagsException, "TooManyTagsException");
|
|
505
|
-
var TooManyTagsException = _TooManyTagsException;
|
|
506
540
|
|
|
507
541
|
// src/protocols/Aws_json1_1.ts
|
|
508
542
|
var se_DeleteScalingPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -1224,197 +1258,211 @@ function sharedHeaders(operation) {
|
|
|
1224
1258
|
__name(sharedHeaders, "sharedHeaders");
|
|
1225
1259
|
|
|
1226
1260
|
// src/commands/DeleteScalingPolicyCommand.ts
|
|
1227
|
-
var
|
|
1261
|
+
var DeleteScalingPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1228
1262
|
return [
|
|
1229
1263
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1230
1264
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1231
1265
|
];
|
|
1232
1266
|
}).s("AnyScaleFrontendService", "DeleteScalingPolicy", {}).n("ApplicationAutoScalingClient", "DeleteScalingPolicyCommand").f(void 0, void 0).ser(se_DeleteScalingPolicyCommand).de(de_DeleteScalingPolicyCommand).build() {
|
|
1267
|
+
static {
|
|
1268
|
+
__name(this, "DeleteScalingPolicyCommand");
|
|
1269
|
+
}
|
|
1233
1270
|
};
|
|
1234
|
-
__name(_DeleteScalingPolicyCommand, "DeleteScalingPolicyCommand");
|
|
1235
|
-
var DeleteScalingPolicyCommand = _DeleteScalingPolicyCommand;
|
|
1236
1271
|
|
|
1237
1272
|
// src/commands/DeleteScheduledActionCommand.ts
|
|
1238
1273
|
|
|
1239
1274
|
|
|
1240
1275
|
|
|
1241
|
-
var
|
|
1276
|
+
var DeleteScheduledActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1242
1277
|
return [
|
|
1243
1278
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1244
1279
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1245
1280
|
];
|
|
1246
1281
|
}).s("AnyScaleFrontendService", "DeleteScheduledAction", {}).n("ApplicationAutoScalingClient", "DeleteScheduledActionCommand").f(void 0, void 0).ser(se_DeleteScheduledActionCommand).de(de_DeleteScheduledActionCommand).build() {
|
|
1282
|
+
static {
|
|
1283
|
+
__name(this, "DeleteScheduledActionCommand");
|
|
1284
|
+
}
|
|
1247
1285
|
};
|
|
1248
|
-
__name(_DeleteScheduledActionCommand, "DeleteScheduledActionCommand");
|
|
1249
|
-
var DeleteScheduledActionCommand = _DeleteScheduledActionCommand;
|
|
1250
1286
|
|
|
1251
1287
|
// src/commands/DeregisterScalableTargetCommand.ts
|
|
1252
1288
|
|
|
1253
1289
|
|
|
1254
1290
|
|
|
1255
|
-
var
|
|
1291
|
+
var DeregisterScalableTargetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1256
1292
|
return [
|
|
1257
1293
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1258
1294
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1259
1295
|
];
|
|
1260
1296
|
}).s("AnyScaleFrontendService", "DeregisterScalableTarget", {}).n("ApplicationAutoScalingClient", "DeregisterScalableTargetCommand").f(void 0, void 0).ser(se_DeregisterScalableTargetCommand).de(de_DeregisterScalableTargetCommand).build() {
|
|
1297
|
+
static {
|
|
1298
|
+
__name(this, "DeregisterScalableTargetCommand");
|
|
1299
|
+
}
|
|
1261
1300
|
};
|
|
1262
|
-
__name(_DeregisterScalableTargetCommand, "DeregisterScalableTargetCommand");
|
|
1263
|
-
var DeregisterScalableTargetCommand = _DeregisterScalableTargetCommand;
|
|
1264
1301
|
|
|
1265
1302
|
// src/commands/DescribeScalableTargetsCommand.ts
|
|
1266
1303
|
|
|
1267
1304
|
|
|
1268
1305
|
|
|
1269
|
-
var
|
|
1306
|
+
var DescribeScalableTargetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1270
1307
|
return [
|
|
1271
1308
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1272
1309
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1273
1310
|
];
|
|
1274
1311
|
}).s("AnyScaleFrontendService", "DescribeScalableTargets", {}).n("ApplicationAutoScalingClient", "DescribeScalableTargetsCommand").f(void 0, void 0).ser(se_DescribeScalableTargetsCommand).de(de_DescribeScalableTargetsCommand).build() {
|
|
1312
|
+
static {
|
|
1313
|
+
__name(this, "DescribeScalableTargetsCommand");
|
|
1314
|
+
}
|
|
1275
1315
|
};
|
|
1276
|
-
__name(_DescribeScalableTargetsCommand, "DescribeScalableTargetsCommand");
|
|
1277
|
-
var DescribeScalableTargetsCommand = _DescribeScalableTargetsCommand;
|
|
1278
1316
|
|
|
1279
1317
|
// src/commands/DescribeScalingActivitiesCommand.ts
|
|
1280
1318
|
|
|
1281
1319
|
|
|
1282
1320
|
|
|
1283
|
-
var
|
|
1321
|
+
var DescribeScalingActivitiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1284
1322
|
return [
|
|
1285
1323
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1286
1324
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1287
1325
|
];
|
|
1288
1326
|
}).s("AnyScaleFrontendService", "DescribeScalingActivities", {}).n("ApplicationAutoScalingClient", "DescribeScalingActivitiesCommand").f(void 0, void 0).ser(se_DescribeScalingActivitiesCommand).de(de_DescribeScalingActivitiesCommand).build() {
|
|
1327
|
+
static {
|
|
1328
|
+
__name(this, "DescribeScalingActivitiesCommand");
|
|
1329
|
+
}
|
|
1289
1330
|
};
|
|
1290
|
-
__name(_DescribeScalingActivitiesCommand, "DescribeScalingActivitiesCommand");
|
|
1291
|
-
var DescribeScalingActivitiesCommand = _DescribeScalingActivitiesCommand;
|
|
1292
1331
|
|
|
1293
1332
|
// src/commands/DescribeScalingPoliciesCommand.ts
|
|
1294
1333
|
|
|
1295
1334
|
|
|
1296
1335
|
|
|
1297
|
-
var
|
|
1336
|
+
var DescribeScalingPoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1298
1337
|
return [
|
|
1299
1338
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1300
1339
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1301
1340
|
];
|
|
1302
1341
|
}).s("AnyScaleFrontendService", "DescribeScalingPolicies", {}).n("ApplicationAutoScalingClient", "DescribeScalingPoliciesCommand").f(void 0, void 0).ser(se_DescribeScalingPoliciesCommand).de(de_DescribeScalingPoliciesCommand).build() {
|
|
1342
|
+
static {
|
|
1343
|
+
__name(this, "DescribeScalingPoliciesCommand");
|
|
1344
|
+
}
|
|
1303
1345
|
};
|
|
1304
|
-
__name(_DescribeScalingPoliciesCommand, "DescribeScalingPoliciesCommand");
|
|
1305
|
-
var DescribeScalingPoliciesCommand = _DescribeScalingPoliciesCommand;
|
|
1306
1346
|
|
|
1307
1347
|
// src/commands/DescribeScheduledActionsCommand.ts
|
|
1308
1348
|
|
|
1309
1349
|
|
|
1310
1350
|
|
|
1311
|
-
var
|
|
1351
|
+
var DescribeScheduledActionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1312
1352
|
return [
|
|
1313
1353
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1314
1354
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1315
1355
|
];
|
|
1316
1356
|
}).s("AnyScaleFrontendService", "DescribeScheduledActions", {}).n("ApplicationAutoScalingClient", "DescribeScheduledActionsCommand").f(void 0, void 0).ser(se_DescribeScheduledActionsCommand).de(de_DescribeScheduledActionsCommand).build() {
|
|
1357
|
+
static {
|
|
1358
|
+
__name(this, "DescribeScheduledActionsCommand");
|
|
1359
|
+
}
|
|
1317
1360
|
};
|
|
1318
|
-
__name(_DescribeScheduledActionsCommand, "DescribeScheduledActionsCommand");
|
|
1319
|
-
var DescribeScheduledActionsCommand = _DescribeScheduledActionsCommand;
|
|
1320
1361
|
|
|
1321
1362
|
// src/commands/GetPredictiveScalingForecastCommand.ts
|
|
1322
1363
|
|
|
1323
1364
|
|
|
1324
1365
|
|
|
1325
|
-
var
|
|
1366
|
+
var GetPredictiveScalingForecastCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1326
1367
|
return [
|
|
1327
1368
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1328
1369
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1329
1370
|
];
|
|
1330
1371
|
}).s("AnyScaleFrontendService", "GetPredictiveScalingForecast", {}).n("ApplicationAutoScalingClient", "GetPredictiveScalingForecastCommand").f(void 0, void 0).ser(se_GetPredictiveScalingForecastCommand).de(de_GetPredictiveScalingForecastCommand).build() {
|
|
1372
|
+
static {
|
|
1373
|
+
__name(this, "GetPredictiveScalingForecastCommand");
|
|
1374
|
+
}
|
|
1331
1375
|
};
|
|
1332
|
-
__name(_GetPredictiveScalingForecastCommand, "GetPredictiveScalingForecastCommand");
|
|
1333
|
-
var GetPredictiveScalingForecastCommand = _GetPredictiveScalingForecastCommand;
|
|
1334
1376
|
|
|
1335
1377
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1336
1378
|
|
|
1337
1379
|
|
|
1338
1380
|
|
|
1339
|
-
var
|
|
1381
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1340
1382
|
return [
|
|
1341
1383
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1342
1384
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1343
1385
|
];
|
|
1344
1386
|
}).s("AnyScaleFrontendService", "ListTagsForResource", {}).n("ApplicationAutoScalingClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1387
|
+
static {
|
|
1388
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1389
|
+
}
|
|
1345
1390
|
};
|
|
1346
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1347
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1348
1391
|
|
|
1349
1392
|
// src/commands/PutScalingPolicyCommand.ts
|
|
1350
1393
|
|
|
1351
1394
|
|
|
1352
1395
|
|
|
1353
|
-
var
|
|
1396
|
+
var PutScalingPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1354
1397
|
return [
|
|
1355
1398
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1356
1399
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1357
1400
|
];
|
|
1358
1401
|
}).s("AnyScaleFrontendService", "PutScalingPolicy", {}).n("ApplicationAutoScalingClient", "PutScalingPolicyCommand").f(void 0, void 0).ser(se_PutScalingPolicyCommand).de(de_PutScalingPolicyCommand).build() {
|
|
1402
|
+
static {
|
|
1403
|
+
__name(this, "PutScalingPolicyCommand");
|
|
1404
|
+
}
|
|
1359
1405
|
};
|
|
1360
|
-
__name(_PutScalingPolicyCommand, "PutScalingPolicyCommand");
|
|
1361
|
-
var PutScalingPolicyCommand = _PutScalingPolicyCommand;
|
|
1362
1406
|
|
|
1363
1407
|
// src/commands/PutScheduledActionCommand.ts
|
|
1364
1408
|
|
|
1365
1409
|
|
|
1366
1410
|
|
|
1367
|
-
var
|
|
1411
|
+
var PutScheduledActionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1368
1412
|
return [
|
|
1369
1413
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1370
1414
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1371
1415
|
];
|
|
1372
1416
|
}).s("AnyScaleFrontendService", "PutScheduledAction", {}).n("ApplicationAutoScalingClient", "PutScheduledActionCommand").f(void 0, void 0).ser(se_PutScheduledActionCommand).de(de_PutScheduledActionCommand).build() {
|
|
1417
|
+
static {
|
|
1418
|
+
__name(this, "PutScheduledActionCommand");
|
|
1419
|
+
}
|
|
1373
1420
|
};
|
|
1374
|
-
__name(_PutScheduledActionCommand, "PutScheduledActionCommand");
|
|
1375
|
-
var PutScheduledActionCommand = _PutScheduledActionCommand;
|
|
1376
1421
|
|
|
1377
1422
|
// src/commands/RegisterScalableTargetCommand.ts
|
|
1378
1423
|
|
|
1379
1424
|
|
|
1380
1425
|
|
|
1381
|
-
var
|
|
1426
|
+
var RegisterScalableTargetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1382
1427
|
return [
|
|
1383
1428
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1384
1429
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1385
1430
|
];
|
|
1386
1431
|
}).s("AnyScaleFrontendService", "RegisterScalableTarget", {}).n("ApplicationAutoScalingClient", "RegisterScalableTargetCommand").f(void 0, void 0).ser(se_RegisterScalableTargetCommand).de(de_RegisterScalableTargetCommand).build() {
|
|
1432
|
+
static {
|
|
1433
|
+
__name(this, "RegisterScalableTargetCommand");
|
|
1434
|
+
}
|
|
1387
1435
|
};
|
|
1388
|
-
__name(_RegisterScalableTargetCommand, "RegisterScalableTargetCommand");
|
|
1389
|
-
var RegisterScalableTargetCommand = _RegisterScalableTargetCommand;
|
|
1390
1436
|
|
|
1391
1437
|
// src/commands/TagResourceCommand.ts
|
|
1392
1438
|
|
|
1393
1439
|
|
|
1394
1440
|
|
|
1395
|
-
var
|
|
1441
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1396
1442
|
return [
|
|
1397
1443
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1398
1444
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1399
1445
|
];
|
|
1400
1446
|
}).s("AnyScaleFrontendService", "TagResource", {}).n("ApplicationAutoScalingClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1447
|
+
static {
|
|
1448
|
+
__name(this, "TagResourceCommand");
|
|
1449
|
+
}
|
|
1401
1450
|
};
|
|
1402
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1403
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1404
1451
|
|
|
1405
1452
|
// src/commands/UntagResourceCommand.ts
|
|
1406
1453
|
|
|
1407
1454
|
|
|
1408
1455
|
|
|
1409
|
-
var
|
|
1456
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1410
1457
|
return [
|
|
1411
1458
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1412
1459
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1413
1460
|
];
|
|
1414
1461
|
}).s("AnyScaleFrontendService", "UntagResource", {}).n("ApplicationAutoScalingClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1462
|
+
static {
|
|
1463
|
+
__name(this, "UntagResourceCommand");
|
|
1464
|
+
}
|
|
1415
1465
|
};
|
|
1416
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1417
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1418
1466
|
|
|
1419
1467
|
// src/ApplicationAutoScaling.ts
|
|
1420
1468
|
var commands = {
|
|
@@ -1433,10 +1481,11 @@ var commands = {
|
|
|
1433
1481
|
TagResourceCommand,
|
|
1434
1482
|
UntagResourceCommand
|
|
1435
1483
|
};
|
|
1436
|
-
var
|
|
1484
|
+
var ApplicationAutoScaling = class extends ApplicationAutoScalingClient {
|
|
1485
|
+
static {
|
|
1486
|
+
__name(this, "ApplicationAutoScaling");
|
|
1487
|
+
}
|
|
1437
1488
|
};
|
|
1438
|
-
__name(_ApplicationAutoScaling, "ApplicationAutoScaling");
|
|
1439
|
-
var ApplicationAutoScaling = _ApplicationAutoScaling;
|
|
1440
1489
|
(0, import_smithy_client.createAggregatedClient)(commands, ApplicationAutoScaling);
|
|
1441
1490
|
|
|
1442
1491
|
// src/pagination/DescribeScalableTargetsPaginator.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 ApplicationAutoScalingClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -5,14 +5,15 @@ export const AdjustmentType = {
|
|
|
5
5
|
PercentChangeInCapacity: "PercentChangeInCapacity",
|
|
6
6
|
};
|
|
7
7
|
export class ConcurrentUpdateException extends __BaseException {
|
|
8
|
+
name = "ConcurrentUpdateException";
|
|
9
|
+
$fault = "server";
|
|
10
|
+
Message;
|
|
8
11
|
constructor(opts) {
|
|
9
12
|
super({
|
|
10
13
|
name: "ConcurrentUpdateException",
|
|
11
14
|
$fault: "server",
|
|
12
15
|
...opts,
|
|
13
16
|
});
|
|
14
|
-
this.name = "ConcurrentUpdateException";
|
|
15
|
-
this.$fault = "server";
|
|
16
17
|
Object.setPrototypeOf(this, ConcurrentUpdateException.prototype);
|
|
17
18
|
this.Message = opts.Message;
|
|
18
19
|
}
|
|
@@ -60,53 +61,57 @@ export const ServiceNamespace = {
|
|
|
60
61
|
WORKSPACES: "workspaces",
|
|
61
62
|
};
|
|
62
63
|
export class InternalServiceException extends __BaseException {
|
|
64
|
+
name = "InternalServiceException";
|
|
65
|
+
$fault = "server";
|
|
66
|
+
Message;
|
|
63
67
|
constructor(opts) {
|
|
64
68
|
super({
|
|
65
69
|
name: "InternalServiceException",
|
|
66
70
|
$fault: "server",
|
|
67
71
|
...opts,
|
|
68
72
|
});
|
|
69
|
-
this.name = "InternalServiceException";
|
|
70
|
-
this.$fault = "server";
|
|
71
73
|
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
72
74
|
this.Message = opts.Message;
|
|
73
75
|
}
|
|
74
76
|
}
|
|
75
77
|
export class ObjectNotFoundException extends __BaseException {
|
|
78
|
+
name = "ObjectNotFoundException";
|
|
79
|
+
$fault = "client";
|
|
80
|
+
Message;
|
|
76
81
|
constructor(opts) {
|
|
77
82
|
super({
|
|
78
83
|
name: "ObjectNotFoundException",
|
|
79
84
|
$fault: "client",
|
|
80
85
|
...opts,
|
|
81
86
|
});
|
|
82
|
-
this.name = "ObjectNotFoundException";
|
|
83
|
-
this.$fault = "client";
|
|
84
87
|
Object.setPrototypeOf(this, ObjectNotFoundException.prototype);
|
|
85
88
|
this.Message = opts.Message;
|
|
86
89
|
}
|
|
87
90
|
}
|
|
88
91
|
export class ValidationException extends __BaseException {
|
|
92
|
+
name = "ValidationException";
|
|
93
|
+
$fault = "client";
|
|
94
|
+
Message;
|
|
89
95
|
constructor(opts) {
|
|
90
96
|
super({
|
|
91
97
|
name: "ValidationException",
|
|
92
98
|
$fault: "client",
|
|
93
99
|
...opts,
|
|
94
100
|
});
|
|
95
|
-
this.name = "ValidationException";
|
|
96
|
-
this.$fault = "client";
|
|
97
101
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
98
102
|
this.Message = opts.Message;
|
|
99
103
|
}
|
|
100
104
|
}
|
|
101
105
|
export class InvalidNextTokenException extends __BaseException {
|
|
106
|
+
name = "InvalidNextTokenException";
|
|
107
|
+
$fault = "client";
|
|
108
|
+
Message;
|
|
102
109
|
constructor(opts) {
|
|
103
110
|
super({
|
|
104
111
|
name: "InvalidNextTokenException",
|
|
105
112
|
$fault: "client",
|
|
106
113
|
...opts,
|
|
107
114
|
});
|
|
108
|
-
this.name = "InvalidNextTokenException";
|
|
109
|
-
this.$fault = "client";
|
|
110
115
|
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
111
116
|
this.Message = opts.Message;
|
|
112
117
|
}
|
|
@@ -174,54 +179,60 @@ export const MetricType = {
|
|
|
174
179
|
WorkSpacesAverageUserSessionsCapacityUtilization: "WorkSpacesAverageUserSessionsCapacityUtilization",
|
|
175
180
|
};
|
|
176
181
|
export class FailedResourceAccessException extends __BaseException {
|
|
182
|
+
name = "FailedResourceAccessException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
177
185
|
constructor(opts) {
|
|
178
186
|
super({
|
|
179
187
|
name: "FailedResourceAccessException",
|
|
180
188
|
$fault: "client",
|
|
181
189
|
...opts,
|
|
182
190
|
});
|
|
183
|
-
this.name = "FailedResourceAccessException";
|
|
184
|
-
this.$fault = "client";
|
|
185
191
|
Object.setPrototypeOf(this, FailedResourceAccessException.prototype);
|
|
186
192
|
this.Message = opts.Message;
|
|
187
193
|
}
|
|
188
194
|
}
|
|
189
195
|
export class ResourceNotFoundException extends __BaseException {
|
|
196
|
+
name = "ResourceNotFoundException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
ResourceName;
|
|
190
200
|
constructor(opts) {
|
|
191
201
|
super({
|
|
192
202
|
name: "ResourceNotFoundException",
|
|
193
203
|
$fault: "client",
|
|
194
204
|
...opts,
|
|
195
205
|
});
|
|
196
|
-
this.name = "ResourceNotFoundException";
|
|
197
|
-
this.$fault = "client";
|
|
198
206
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
199
207
|
this.Message = opts.Message;
|
|
200
208
|
this.ResourceName = opts.ResourceName;
|
|
201
209
|
}
|
|
202
210
|
}
|
|
203
211
|
export class LimitExceededException extends __BaseException {
|
|
212
|
+
name = "LimitExceededException";
|
|
213
|
+
$fault = "client";
|
|
214
|
+
Message;
|
|
204
215
|
constructor(opts) {
|
|
205
216
|
super({
|
|
206
217
|
name: "LimitExceededException",
|
|
207
218
|
$fault: "client",
|
|
208
219
|
...opts,
|
|
209
220
|
});
|
|
210
|
-
this.name = "LimitExceededException";
|
|
211
|
-
this.$fault = "client";
|
|
212
221
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
213
222
|
this.Message = opts.Message;
|
|
214
223
|
}
|
|
215
224
|
}
|
|
216
225
|
export class TooManyTagsException extends __BaseException {
|
|
226
|
+
name = "TooManyTagsException";
|
|
227
|
+
$fault = "client";
|
|
228
|
+
Message;
|
|
229
|
+
ResourceName;
|
|
217
230
|
constructor(opts) {
|
|
218
231
|
super({
|
|
219
232
|
name: "TooManyTagsException",
|
|
220
233
|
$fault: "client",
|
|
221
234
|
...opts,
|
|
222
235
|
});
|
|
223
|
-
this.name = "TooManyTagsException";
|
|
224
|
-
this.$fault = "client";
|
|
225
236
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
226
237
|
this.Message = opts.Message;
|
|
227
238
|
this.ResourceName = opts.ResourceName;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ApplicationAutoScalingClientConf
|
|
|
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: ApplicationAutoScalingClientConf
|
|
|
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: ApplicationAutoScalingClientConf
|
|
|
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: ApplicationAutoScalingClientConf
|
|
|
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;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-auto-scaling",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Auto Scaling 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-application-auto-scaling",
|
|
@@ -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": {
|