@aws-sdk/client-compute-optimizer-automation 3.987.0 → 3.988.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 +42 -1103
- package/dist-cjs/models/ComputeOptimizerAutomationServiceException.js +12 -0
- package/dist-cjs/models/errors.js +160 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +825 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +87 -81
- package/dist-types/schemas/schemas_0.d.ts +19 -12
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -12
- package/package.json +13 -13
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultComputeOptimizerAutomationHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2025-09-22",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.computeoptimizerautomation",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2025-09-22",
|
|
30
32
|
serviceTarget: "ComputeOptimizerAutomationService",
|
|
31
33
|
},
|
|
@@ -199,7 +199,7 @@ const _rT = "resourceType";
|
|
|
199
199
|
const _rTe = "resourceTag";
|
|
200
200
|
const _rTes = "resourceTags";
|
|
201
201
|
const _rTu = "ruleType";
|
|
202
|
-
const _s = "
|
|
202
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.computeoptimizerautomation";
|
|
203
203
|
const _sDI = "startDateInclusive";
|
|
204
204
|
const _sE = "scheduleExpression";
|
|
205
205
|
const _sEM = "savingsEstimationMode";
|
|
@@ -213,7 +213,7 @@ const _sTI = "startTimeInclusive";
|
|
|
213
213
|
const _sTt = "startTimestamp";
|
|
214
214
|
const _sc = "schedule";
|
|
215
215
|
const _se = "server";
|
|
216
|
-
const
|
|
216
|
+
const _st = "status";
|
|
217
217
|
const _t = "total";
|
|
218
218
|
const _tK = "tagKeys";
|
|
219
219
|
const _tP = "timePeriod";
|
|
@@ -226,15 +226,89 @@ const n0 = "com.amazonaws.computeoptimizerautomation";
|
|
|
226
226
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
227
227
|
import { ComputeOptimizerAutomationServiceException } from "../models/ComputeOptimizerAutomationServiceException";
|
|
228
228
|
import { AccessDeniedException, ForbiddenException, IdempotencyTokenInUseException, IdempotentParameterMismatchException, InternalServerException, InvalidParameterValueException, NotManagementAccountException, OptInRequiredException, ResourceNotFoundException, ServiceQuotaExceededException, ServiceUnavailableException, ThrottlingException, } from "../models/errors";
|
|
229
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
230
|
+
export var ComputeOptimizerAutomationServiceException$ = [-3, _s, "ComputeOptimizerAutomationServiceException", 0, [], []];
|
|
231
|
+
_s_registry.registerError(ComputeOptimizerAutomationServiceException$, ComputeOptimizerAutomationServiceException);
|
|
232
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
229
233
|
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
230
234
|
{ [_e]: _c, [_hE]: 403 },
|
|
231
235
|
[_m],
|
|
232
236
|
[0]
|
|
233
237
|
];
|
|
234
|
-
|
|
238
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
239
|
+
export var ForbiddenException$ = [-3, n0, _FE,
|
|
240
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
241
|
+
[_m],
|
|
242
|
+
[0]
|
|
243
|
+
];
|
|
244
|
+
n0_registry.registerError(ForbiddenException$, ForbiddenException);
|
|
245
|
+
export var IdempotencyTokenInUseException$ = [-3, n0, _ITIUE,
|
|
246
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
247
|
+
[_m],
|
|
248
|
+
[0]
|
|
249
|
+
];
|
|
250
|
+
n0_registry.registerError(IdempotencyTokenInUseException$, IdempotencyTokenInUseException);
|
|
251
|
+
export var IdempotentParameterMismatchException$ = [-3, n0, _IPME,
|
|
252
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
253
|
+
[_m],
|
|
254
|
+
[0]
|
|
255
|
+
];
|
|
256
|
+
n0_registry.registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
257
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
258
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
259
|
+
[_m],
|
|
260
|
+
[0]
|
|
261
|
+
];
|
|
262
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
263
|
+
export var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
264
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
265
|
+
[_m],
|
|
266
|
+
[0]
|
|
267
|
+
];
|
|
268
|
+
n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
269
|
+
export var NotManagementAccountException$ = [-3, n0, _NMAE,
|
|
270
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
271
|
+
[_m],
|
|
272
|
+
[0]
|
|
273
|
+
];
|
|
274
|
+
n0_registry.registerError(NotManagementAccountException$, NotManagementAccountException);
|
|
275
|
+
export var OptInRequiredException$ = [-3, n0, _OIRE,
|
|
276
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
277
|
+
[_m],
|
|
278
|
+
[0]
|
|
279
|
+
];
|
|
280
|
+
n0_registry.registerError(OptInRequiredException$, OptInRequiredException);
|
|
281
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
282
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
283
|
+
[_m],
|
|
284
|
+
[0]
|
|
285
|
+
];
|
|
286
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
287
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
288
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
289
|
+
[_m],
|
|
290
|
+
[0]
|
|
291
|
+
];
|
|
292
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
293
|
+
export var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
294
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
295
|
+
[_m],
|
|
296
|
+
[0]
|
|
297
|
+
];
|
|
298
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
299
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
300
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
301
|
+
[_m],
|
|
302
|
+
[0]
|
|
303
|
+
];
|
|
304
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
305
|
+
export const errorTypeRegistries = [
|
|
306
|
+
_s_registry,
|
|
307
|
+
n0_registry,
|
|
308
|
+
];
|
|
235
309
|
export var AccountInfo$ = [3, n0, _AI,
|
|
236
310
|
0,
|
|
237
|
-
[_aI,
|
|
311
|
+
[_aI, _st, _oRM, _lUT, _sR],
|
|
238
312
|
[0, 0, 0, 4, 0], 4
|
|
239
313
|
];
|
|
240
314
|
export var AssociateAccountsRequest$ = [3, n0, _AAR,
|
|
@@ -269,17 +343,17 @@ export var AutomationEventSummary$ = [3, n0, _AESu,
|
|
|
269
343
|
];
|
|
270
344
|
export var AutomationRule$ = [3, n0, _AR,
|
|
271
345
|
0,
|
|
272
|
-
[_rAu, _rIu, _n, _de, _rTu, _rR, _aI, _oC, _p, _rAT, _sc,
|
|
346
|
+
[_rAu, _rIu, _n, _de, _rTu, _rR, _aI, _oC, _p, _rAT, _sc, _st, _cTr, _lUT],
|
|
273
347
|
[0, 0, 0, 0, 0, 1, 0, () => OrganizationConfiguration$, 0, 64 | 0, () => Schedule$, 0, 4, 4]
|
|
274
348
|
];
|
|
275
349
|
export var CreateAutomationRuleRequest$ = [3, n0, _CARR,
|
|
276
350
|
0,
|
|
277
|
-
[_n, _rTu, _rAT, _sc,
|
|
351
|
+
[_n, _rTu, _rAT, _sc, _st, _de, _oC, _p, _cr, _ta, _cT],
|
|
278
352
|
[0, 0, 64 | 0, () => Schedule$, 0, 0, () => OrganizationConfiguration$, 0, () => Criteria$, () => TagList, [0, 4]], 5
|
|
279
353
|
];
|
|
280
354
|
export var CreateAutomationRuleResponse$ = [3, n0, _CARRr,
|
|
281
355
|
0,
|
|
282
|
-
[_rAu, _rIu, _n, _de, _rTu, _rR, _oC, _p, _rAT, _cr, _sc,
|
|
356
|
+
[_rAu, _rIu, _n, _de, _rTu, _rR, _oC, _p, _rAT, _cr, _sc, _st, _ta, _cTr],
|
|
283
357
|
[0, 0, 0, 0, 0, 1, () => OrganizationConfiguration$, 0, 64 | 0, () => Criteria$, () => Schedule$, 0, () => TagList, 4]
|
|
284
358
|
];
|
|
285
359
|
export var Criteria$ = [3, n0, _C,
|
|
@@ -332,12 +406,6 @@ export var Filter$ = [3, n0, _F,
|
|
|
332
406
|
[_n, _v],
|
|
333
407
|
[0, 64 | 0], 2
|
|
334
408
|
];
|
|
335
|
-
export var ForbiddenException$ = [-3, n0, _FE,
|
|
336
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
337
|
-
[_m],
|
|
338
|
-
[0]
|
|
339
|
-
];
|
|
340
|
-
TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
341
409
|
export var GetAutomationEventRequest$ = [3, n0, _GAER,
|
|
342
410
|
0,
|
|
343
411
|
[_eI],
|
|
@@ -355,7 +423,7 @@ export var GetAutomationRuleRequest$ = [3, n0, _GARR,
|
|
|
355
423
|
];
|
|
356
424
|
export var GetAutomationRuleResponse$ = [3, n0, _GARRe,
|
|
357
425
|
0,
|
|
358
|
-
[_rAu, _rIu, _n, _de, _rTu, _rR, _aI, _oC, _p, _rAT, _cr, _sc,
|
|
426
|
+
[_rAu, _rIu, _n, _de, _rTu, _rR, _aI, _oC, _p, _rAT, _cr, _sc, _st, _ta, _cTr, _lUT],
|
|
359
427
|
[0, 0, 0, 0, 0, 1, 0, () => OrganizationConfiguration$, 0, 64 | 0, () => Criteria$, () => Schedule$, 0, () => TagList, 4, 4]
|
|
360
428
|
];
|
|
361
429
|
export var GetEnrollmentConfigurationRequest$ = [3, n0, _GECR,
|
|
@@ -365,38 +433,14 @@ export var GetEnrollmentConfigurationRequest$ = [3, n0, _GECR,
|
|
|
365
433
|
];
|
|
366
434
|
export var GetEnrollmentConfigurationResponse$ = [3, n0, _GECRe,
|
|
367
435
|
0,
|
|
368
|
-
[
|
|
436
|
+
[_st, _sR, _oRM, _lUT],
|
|
369
437
|
[0, 0, 0, 4], 1
|
|
370
438
|
];
|
|
371
|
-
export var IdempotencyTokenInUseException$ = [-3, n0, _ITIUE,
|
|
372
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
373
|
-
[_m],
|
|
374
|
-
[0]
|
|
375
|
-
];
|
|
376
|
-
TypeRegistry.for(n0).registerError(IdempotencyTokenInUseException$, IdempotencyTokenInUseException);
|
|
377
|
-
export var IdempotentParameterMismatchException$ = [-3, n0, _IPME,
|
|
378
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
379
|
-
[_m],
|
|
380
|
-
[0]
|
|
381
|
-
];
|
|
382
|
-
TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
383
439
|
export var IntegerCriteriaCondition$ = [3, n0, _ICC,
|
|
384
440
|
0,
|
|
385
441
|
[_co, _v],
|
|
386
442
|
[0, 64 | 1]
|
|
387
443
|
];
|
|
388
|
-
export var InternalServerException$ = [-3, n0, _ISE,
|
|
389
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
390
|
-
[_m],
|
|
391
|
-
[0]
|
|
392
|
-
];
|
|
393
|
-
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
394
|
-
export var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
395
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
396
|
-
[_m],
|
|
397
|
-
[0]
|
|
398
|
-
];
|
|
399
|
-
TypeRegistry.for(n0).registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
400
444
|
export var ListAccountsRequest$ = [3, n0, _LAR,
|
|
401
445
|
0,
|
|
402
446
|
[_mR, _nT],
|
|
@@ -497,18 +541,6 @@ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
|
497
541
|
[_ta],
|
|
498
542
|
[() => TagList]
|
|
499
543
|
];
|
|
500
|
-
export var NotManagementAccountException$ = [-3, n0, _NMAE,
|
|
501
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
502
|
-
[_m],
|
|
503
|
-
[0]
|
|
504
|
-
];
|
|
505
|
-
TypeRegistry.for(n0).registerError(NotManagementAccountException$, NotManagementAccountException);
|
|
506
|
-
export var OptInRequiredException$ = [-3, n0, _OIRE,
|
|
507
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
508
|
-
[_m],
|
|
509
|
-
[0]
|
|
510
|
-
];
|
|
511
|
-
TypeRegistry.for(n0).registerError(OptInRequiredException$, OptInRequiredException);
|
|
512
544
|
export var OrganizationConfiguration$ = [3, n0, _OC,
|
|
513
545
|
0,
|
|
514
546
|
[_rAO, _aIc],
|
|
@@ -549,12 +581,6 @@ export var RecommendedActionTotal$ = [3, n0, _RAT,
|
|
|
549
581
|
[_rAC, _eMS],
|
|
550
582
|
[1, () => EstimatedMonthlySavings$], 2
|
|
551
583
|
];
|
|
552
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
553
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
554
|
-
[_m],
|
|
555
|
-
[0]
|
|
556
|
-
];
|
|
557
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
558
584
|
export var ResourceTagsCriteriaCondition$ = [3, n0, _RTCC,
|
|
559
585
|
0,
|
|
560
586
|
[_co, _k, _v],
|
|
@@ -580,18 +606,6 @@ export var Schedule$ = [3, n0, _S,
|
|
|
580
606
|
[_sE, _sET, _eWIM],
|
|
581
607
|
[0, 0, 1]
|
|
582
608
|
];
|
|
583
|
-
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
584
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
585
|
-
[_m],
|
|
586
|
-
[0]
|
|
587
|
-
];
|
|
588
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
589
|
-
export var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
590
|
-
{ [_e]: _se, [_hE]: 503 },
|
|
591
|
-
[_m],
|
|
592
|
-
[0]
|
|
593
|
-
];
|
|
594
|
-
TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
595
609
|
export var StartAutomationEventRequest$ = [3, n0, _SAER,
|
|
596
610
|
0,
|
|
597
611
|
[_rAI, _cT],
|
|
@@ -632,12 +646,6 @@ export var TagResourceResponse$ = [3, n0, _TRRa,
|
|
|
632
646
|
[],
|
|
633
647
|
[]
|
|
634
648
|
];
|
|
635
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
636
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
637
|
-
[_m],
|
|
638
|
-
[0]
|
|
639
|
-
];
|
|
640
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
641
649
|
export var TimePeriod$ = [3, n0, _TP,
|
|
642
650
|
0,
|
|
643
651
|
[_sTI, _eTE],
|
|
@@ -655,26 +663,24 @@ export var UntagResourceResponse$ = [3, n0, _URRn,
|
|
|
655
663
|
];
|
|
656
664
|
export var UpdateAutomationRuleRequest$ = [3, n0, _UARR,
|
|
657
665
|
0,
|
|
658
|
-
[_rAu, _rR, _n, _de, _rTu, _oC, _p, _rAT, _cr, _sc,
|
|
666
|
+
[_rAu, _rR, _n, _de, _rTu, _oC, _p, _rAT, _cr, _sc, _st, _cT],
|
|
659
667
|
[0, 1, 0, 0, 0, () => OrganizationConfiguration$, 0, 64 | 0, () => Criteria$, () => Schedule$, 0, [0, 4]], 2
|
|
660
668
|
];
|
|
661
669
|
export var UpdateAutomationRuleResponse$ = [3, n0, _UARRp,
|
|
662
670
|
0,
|
|
663
|
-
[_rAu, _rR, _n, _de, _rTu, _oC, _p, _rAT, _cr, _sc,
|
|
671
|
+
[_rAu, _rR, _n, _de, _rTu, _oC, _p, _rAT, _cr, _sc, _st, _cTr, _lUT],
|
|
664
672
|
[0, 1, 0, 0, 0, () => OrganizationConfiguration$, 0, 64 | 0, () => Criteria$, () => Schedule$, 0, 4, 4]
|
|
665
673
|
];
|
|
666
674
|
export var UpdateEnrollmentConfigurationRequest$ = [3, n0, _UECR,
|
|
667
675
|
0,
|
|
668
|
-
[
|
|
676
|
+
[_st, _cT],
|
|
669
677
|
[0, [0, 4]], 1
|
|
670
678
|
];
|
|
671
679
|
export var UpdateEnrollmentConfigurationResponse$ = [3, n0, _UECRp,
|
|
672
680
|
0,
|
|
673
|
-
[
|
|
681
|
+
[_st, _lUT, _sR],
|
|
674
682
|
[0, 4, 0], 2
|
|
675
683
|
];
|
|
676
|
-
export var ComputeOptimizerAutomationServiceException$ = [-3, _sm, "ComputeOptimizerAutomationServiceException", 0, [], []];
|
|
677
|
-
TypeRegistry.for(_sm).registerError(ComputeOptimizerAutomationServiceException$, ComputeOptimizerAutomationServiceException);
|
|
678
684
|
var AccountIdList = 64 | 0;
|
|
679
685
|
var AccountInfoList = [1, n0, _AIL,
|
|
680
686
|
0, () => AccountInfo$
|
|
@@ -1,5 +1,24 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var ComputeOptimizerAutomationServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
6
|
+
export declare var IdempotencyTokenInUseException$: StaticErrorSchema;
|
|
7
|
+
export declare var IdempotentParameterMismatchException$: StaticErrorSchema;
|
|
8
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
9
|
+
export declare var InvalidParameterValueException$: StaticErrorSchema;
|
|
10
|
+
export declare var NotManagementAccountException$: StaticErrorSchema;
|
|
11
|
+
export declare var OptInRequiredException$: StaticErrorSchema;
|
|
12
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
13
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
14
|
+
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
15
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
16
|
+
/**
|
|
17
|
+
* TypeRegistry instances containing modeled errors.
|
|
18
|
+
* @internal
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
3
22
|
export declare var AccountInfo$: StaticStructureSchema;
|
|
4
23
|
export declare var AssociateAccountsRequest$: StaticStructureSchema;
|
|
5
24
|
export declare var AssociateAccountsResponse$: StaticStructureSchema;
|
|
@@ -20,18 +39,13 @@ export declare var EbsVolume$: StaticStructureSchema;
|
|
|
20
39
|
export declare var EbsVolumeConfiguration$: StaticStructureSchema;
|
|
21
40
|
export declare var EstimatedMonthlySavings$: StaticStructureSchema;
|
|
22
41
|
export declare var Filter$: StaticStructureSchema;
|
|
23
|
-
export declare var ForbiddenException$: StaticErrorSchema;
|
|
24
42
|
export declare var GetAutomationEventRequest$: StaticStructureSchema;
|
|
25
43
|
export declare var GetAutomationEventResponse$: StaticStructureSchema;
|
|
26
44
|
export declare var GetAutomationRuleRequest$: StaticStructureSchema;
|
|
27
45
|
export declare var GetAutomationRuleResponse$: StaticStructureSchema;
|
|
28
46
|
export declare var GetEnrollmentConfigurationRequest$: StaticStructureSchema;
|
|
29
47
|
export declare var GetEnrollmentConfigurationResponse$: StaticStructureSchema;
|
|
30
|
-
export declare var IdempotencyTokenInUseException$: StaticErrorSchema;
|
|
31
|
-
export declare var IdempotentParameterMismatchException$: StaticErrorSchema;
|
|
32
48
|
export declare var IntegerCriteriaCondition$: StaticStructureSchema;
|
|
33
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
34
|
-
export declare var InvalidParameterValueException$: StaticErrorSchema;
|
|
35
49
|
export declare var ListAccountsRequest$: StaticStructureSchema;
|
|
36
50
|
export declare var ListAccountsResponse$: StaticStructureSchema;
|
|
37
51
|
export declare var ListAutomationEventsRequest$: StaticStructureSchema;
|
|
@@ -52,8 +66,6 @@ export declare var ListRecommendedActionSummariesRequest$: StaticStructureSchema
|
|
|
52
66
|
export declare var ListRecommendedActionSummariesResponse$: StaticStructureSchema;
|
|
53
67
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
54
68
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
55
|
-
export declare var NotManagementAccountException$: StaticErrorSchema;
|
|
56
|
-
export declare var OptInRequiredException$: StaticErrorSchema;
|
|
57
69
|
export declare var OrganizationConfiguration$: StaticStructureSchema;
|
|
58
70
|
export declare var OrganizationScope$: StaticStructureSchema;
|
|
59
71
|
export declare var PreviewResult$: StaticStructureSchema;
|
|
@@ -62,14 +74,11 @@ export declare var RecommendedAction$: StaticStructureSchema;
|
|
|
62
74
|
export declare var RecommendedActionFilter$: StaticStructureSchema;
|
|
63
75
|
export declare var RecommendedActionSummary$: StaticStructureSchema;
|
|
64
76
|
export declare var RecommendedActionTotal$: StaticStructureSchema;
|
|
65
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
66
77
|
export declare var ResourceTagsCriteriaCondition$: StaticStructureSchema;
|
|
67
78
|
export declare var RollbackAutomationEventRequest$: StaticStructureSchema;
|
|
68
79
|
export declare var RollbackAutomationEventResponse$: StaticStructureSchema;
|
|
69
80
|
export declare var RulePreviewTotal$: StaticStructureSchema;
|
|
70
81
|
export declare var Schedule$: StaticStructureSchema;
|
|
71
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
72
|
-
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
73
82
|
export declare var StartAutomationEventRequest$: StaticStructureSchema;
|
|
74
83
|
export declare var StartAutomationEventResponse$: StaticStructureSchema;
|
|
75
84
|
export declare var StringCriteriaCondition$: StaticStructureSchema;
|
|
@@ -78,7 +87,6 @@ export declare var SummaryTotals$: StaticStructureSchema;
|
|
|
78
87
|
export declare var Tag$: StaticStructureSchema;
|
|
79
88
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
80
89
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
81
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
82
90
|
export declare var TimePeriod$: StaticStructureSchema;
|
|
83
91
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
84
92
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
@@ -86,7 +94,6 @@ export declare var UpdateAutomationRuleRequest$: StaticStructureSchema;
|
|
|
86
94
|
export declare var UpdateAutomationRuleResponse$: StaticStructureSchema;
|
|
87
95
|
export declare var UpdateEnrollmentConfigurationRequest$: StaticStructureSchema;
|
|
88
96
|
export declare var UpdateEnrollmentConfigurationResponse$: StaticStructureSchema;
|
|
89
|
-
export declare var ComputeOptimizerAutomationServiceException$: StaticErrorSchema;
|
|
90
97
|
export declare var ResourceDetails$: StaticUnionSchema;
|
|
91
98
|
export declare var AssociateAccounts$: StaticOperationSchema;
|
|
92
99
|
export declare var CreateAutomationRule$: StaticOperationSchema;
|
|
@@ -1,10 +1,24 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
StaticUnionSchema,
|
|
6
7
|
} from "@smithy/types";
|
|
8
|
+
export declare var ComputeOptimizerAutomationServiceException$: StaticErrorSchema;
|
|
7
9
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
10
|
+
export declare var ForbiddenException$: StaticErrorSchema;
|
|
11
|
+
export declare var IdempotencyTokenInUseException$: StaticErrorSchema;
|
|
12
|
+
export declare var IdempotentParameterMismatchException$: StaticErrorSchema;
|
|
13
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
14
|
+
export declare var InvalidParameterValueException$: StaticErrorSchema;
|
|
15
|
+
export declare var NotManagementAccountException$: StaticErrorSchema;
|
|
16
|
+
export declare var OptInRequiredException$: StaticErrorSchema;
|
|
17
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
18
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
19
|
+
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
20
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
21
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
8
22
|
export declare var AccountInfo$: StaticStructureSchema;
|
|
9
23
|
export declare var AssociateAccountsRequest$: StaticStructureSchema;
|
|
10
24
|
export declare var AssociateAccountsResponse$: StaticStructureSchema;
|
|
@@ -25,18 +39,13 @@ export declare var EbsVolume$: StaticStructureSchema;
|
|
|
25
39
|
export declare var EbsVolumeConfiguration$: StaticStructureSchema;
|
|
26
40
|
export declare var EstimatedMonthlySavings$: StaticStructureSchema;
|
|
27
41
|
export declare var Filter$: StaticStructureSchema;
|
|
28
|
-
export declare var ForbiddenException$: StaticErrorSchema;
|
|
29
42
|
export declare var GetAutomationEventRequest$: StaticStructureSchema;
|
|
30
43
|
export declare var GetAutomationEventResponse$: StaticStructureSchema;
|
|
31
44
|
export declare var GetAutomationRuleRequest$: StaticStructureSchema;
|
|
32
45
|
export declare var GetAutomationRuleResponse$: StaticStructureSchema;
|
|
33
46
|
export declare var GetEnrollmentConfigurationRequest$: StaticStructureSchema;
|
|
34
47
|
export declare var GetEnrollmentConfigurationResponse$: StaticStructureSchema;
|
|
35
|
-
export declare var IdempotencyTokenInUseException$: StaticErrorSchema;
|
|
36
|
-
export declare var IdempotentParameterMismatchException$: StaticErrorSchema;
|
|
37
48
|
export declare var IntegerCriteriaCondition$: StaticStructureSchema;
|
|
38
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
39
|
-
export declare var InvalidParameterValueException$: StaticErrorSchema;
|
|
40
49
|
export declare var ListAccountsRequest$: StaticStructureSchema;
|
|
41
50
|
export declare var ListAccountsResponse$: StaticStructureSchema;
|
|
42
51
|
export declare var ListAutomationEventsRequest$: StaticStructureSchema;
|
|
@@ -57,8 +66,6 @@ export declare var ListRecommendedActionSummariesRequest$: StaticStructureSchema
|
|
|
57
66
|
export declare var ListRecommendedActionSummariesResponse$: StaticStructureSchema;
|
|
58
67
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
59
68
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
60
|
-
export declare var NotManagementAccountException$: StaticErrorSchema;
|
|
61
|
-
export declare var OptInRequiredException$: StaticErrorSchema;
|
|
62
69
|
export declare var OrganizationConfiguration$: StaticStructureSchema;
|
|
63
70
|
export declare var OrganizationScope$: StaticStructureSchema;
|
|
64
71
|
export declare var PreviewResult$: StaticStructureSchema;
|
|
@@ -67,14 +74,11 @@ export declare var RecommendedAction$: StaticStructureSchema;
|
|
|
67
74
|
export declare var RecommendedActionFilter$: StaticStructureSchema;
|
|
68
75
|
export declare var RecommendedActionSummary$: StaticStructureSchema;
|
|
69
76
|
export declare var RecommendedActionTotal$: StaticStructureSchema;
|
|
70
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
71
77
|
export declare var ResourceTagsCriteriaCondition$: StaticStructureSchema;
|
|
72
78
|
export declare var RollbackAutomationEventRequest$: StaticStructureSchema;
|
|
73
79
|
export declare var RollbackAutomationEventResponse$: StaticStructureSchema;
|
|
74
80
|
export declare var RulePreviewTotal$: StaticStructureSchema;
|
|
75
81
|
export declare var Schedule$: StaticStructureSchema;
|
|
76
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
77
|
-
export declare var ServiceUnavailableException$: StaticErrorSchema;
|
|
78
82
|
export declare var StartAutomationEventRequest$: StaticStructureSchema;
|
|
79
83
|
export declare var StartAutomationEventResponse$: StaticStructureSchema;
|
|
80
84
|
export declare var StringCriteriaCondition$: StaticStructureSchema;
|
|
@@ -83,7 +87,6 @@ export declare var SummaryTotals$: StaticStructureSchema;
|
|
|
83
87
|
export declare var Tag$: StaticStructureSchema;
|
|
84
88
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
85
89
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
86
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
87
90
|
export declare var TimePeriod$: StaticStructureSchema;
|
|
88
91
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
89
92
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
@@ -91,7 +94,6 @@ export declare var UpdateAutomationRuleRequest$: StaticStructureSchema;
|
|
|
91
94
|
export declare var UpdateAutomationRuleResponse$: StaticStructureSchema;
|
|
92
95
|
export declare var UpdateEnrollmentConfigurationRequest$: StaticStructureSchema;
|
|
93
96
|
export declare var UpdateEnrollmentConfigurationResponse$: StaticStructureSchema;
|
|
94
|
-
export declare var ComputeOptimizerAutomationServiceException$: StaticErrorSchema;
|
|
95
97
|
export declare var ResourceDetails$: StaticUnionSchema;
|
|
96
98
|
export declare var AssociateAccounts$: StaticOperationSchema;
|
|
97
99
|
export declare var CreateAutomationRule$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-compute-optimizer-automation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Compute Optimizer Automation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.988.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-compute-optimizer-automation",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|