@aws-sdk/client-compute-optimizer-automation 3.952.0 → 3.953.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 +417 -275
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/AssociateAccountsCommand.js +2 -2
- package/dist-es/commands/CreateAutomationRuleCommand.js +2 -2
- package/dist-es/commands/DeleteAutomationRuleCommand.js +2 -2
- package/dist-es/commands/DisassociateAccountsCommand.js +2 -2
- package/dist-es/commands/GetAutomationEventCommand.js +2 -2
- package/dist-es/commands/GetAutomationRuleCommand.js +2 -2
- package/dist-es/commands/GetEnrollmentConfigurationCommand.js +2 -2
- package/dist-es/commands/ListAccountsCommand.js +2 -2
- package/dist-es/commands/ListAutomationEventStepsCommand.js +2 -2
- package/dist-es/commands/ListAutomationEventSummariesCommand.js +2 -2
- package/dist-es/commands/ListAutomationEventsCommand.js +2 -2
- package/dist-es/commands/ListAutomationRulePreviewCommand.js +2 -2
- package/dist-es/commands/ListAutomationRulePreviewSummariesCommand.js +2 -2
- package/dist-es/commands/ListAutomationRulesCommand.js +2 -2
- package/dist-es/commands/ListRecommendedActionSummariesCommand.js +2 -2
- package/dist-es/commands/ListRecommendedActionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RollbackAutomationEventCommand.js +2 -2
- package/dist-es/commands/StartAutomationEventCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAutomationRuleCommand.js +2 -2
- package/dist-es/commands/UpdateEnrollmentConfigurationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +255 -225
- package/dist-types/ComputeOptimizerAutomationClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +113 -140
- package/dist-types/ts3.4/ComputeOptimizerAutomationClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +112 -140
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class ComputeOptimizerAutomationClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class ComputeOptimizerAutomationServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, ComputeOptimizerAutomationServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends ComputeOptimizerAutomationServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends ComputeOptimiz
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
131
|
+
}
|
|
132
|
+
class ForbiddenException extends ComputeOptimizerAutomationServiceException {
|
|
133
133
|
name = "ForbiddenException";
|
|
134
134
|
$fault = "client";
|
|
135
135
|
constructor(opts) {
|
|
@@ -140,8 +140,8 @@ let ForbiddenException$1 = class ForbiddenException extends ComputeOptimizerAuto
|
|
|
140
140
|
});
|
|
141
141
|
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
142
142
|
}
|
|
143
|
-
}
|
|
144
|
-
|
|
143
|
+
}
|
|
144
|
+
class IdempotencyTokenInUseException extends ComputeOptimizerAutomationServiceException {
|
|
145
145
|
name = "IdempotencyTokenInUseException";
|
|
146
146
|
$fault = "client";
|
|
147
147
|
constructor(opts) {
|
|
@@ -152,8 +152,8 @@ let IdempotencyTokenInUseException$1 = class IdempotencyTokenInUseException exte
|
|
|
152
152
|
});
|
|
153
153
|
Object.setPrototypeOf(this, IdempotencyTokenInUseException.prototype);
|
|
154
154
|
}
|
|
155
|
-
}
|
|
156
|
-
|
|
155
|
+
}
|
|
156
|
+
class IdempotentParameterMismatchException extends ComputeOptimizerAutomationServiceException {
|
|
157
157
|
name = "IdempotentParameterMismatchException";
|
|
158
158
|
$fault = "client";
|
|
159
159
|
constructor(opts) {
|
|
@@ -164,8 +164,8 @@ let IdempotentParameterMismatchException$1 = class IdempotentParameterMismatchEx
|
|
|
164
164
|
});
|
|
165
165
|
Object.setPrototypeOf(this, IdempotentParameterMismatchException.prototype);
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
167
|
+
}
|
|
168
|
+
class InternalServerException extends ComputeOptimizerAutomationServiceException {
|
|
169
169
|
name = "InternalServerException";
|
|
170
170
|
$fault = "server";
|
|
171
171
|
constructor(opts) {
|
|
@@ -176,8 +176,8 @@ let InternalServerException$1 = class InternalServerException extends ComputeOpt
|
|
|
176
176
|
});
|
|
177
177
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
178
178
|
}
|
|
179
|
-
}
|
|
180
|
-
|
|
179
|
+
}
|
|
180
|
+
class InvalidParameterValueException extends ComputeOptimizerAutomationServiceException {
|
|
181
181
|
name = "InvalidParameterValueException";
|
|
182
182
|
$fault = "client";
|
|
183
183
|
constructor(opts) {
|
|
@@ -188,8 +188,8 @@ let InvalidParameterValueException$1 = class InvalidParameterValueException exte
|
|
|
188
188
|
});
|
|
189
189
|
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
190
190
|
}
|
|
191
|
-
}
|
|
192
|
-
|
|
191
|
+
}
|
|
192
|
+
class NotManagementAccountException extends ComputeOptimizerAutomationServiceException {
|
|
193
193
|
name = "NotManagementAccountException";
|
|
194
194
|
$fault = "client";
|
|
195
195
|
constructor(opts) {
|
|
@@ -200,8 +200,8 @@ let NotManagementAccountException$1 = class NotManagementAccountException extend
|
|
|
200
200
|
});
|
|
201
201
|
Object.setPrototypeOf(this, NotManagementAccountException.prototype);
|
|
202
202
|
}
|
|
203
|
-
}
|
|
204
|
-
|
|
203
|
+
}
|
|
204
|
+
class OptInRequiredException extends ComputeOptimizerAutomationServiceException {
|
|
205
205
|
name = "OptInRequiredException";
|
|
206
206
|
$fault = "client";
|
|
207
207
|
constructor(opts) {
|
|
@@ -212,8 +212,8 @@ let OptInRequiredException$1 = class OptInRequiredException extends ComputeOptim
|
|
|
212
212
|
});
|
|
213
213
|
Object.setPrototypeOf(this, OptInRequiredException.prototype);
|
|
214
214
|
}
|
|
215
|
-
}
|
|
216
|
-
|
|
215
|
+
}
|
|
216
|
+
class ServiceUnavailableException extends ComputeOptimizerAutomationServiceException {
|
|
217
217
|
name = "ServiceUnavailableException";
|
|
218
218
|
$fault = "server";
|
|
219
219
|
constructor(opts) {
|
|
@@ -224,8 +224,8 @@ let ServiceUnavailableException$1 = class ServiceUnavailableException extends Co
|
|
|
224
224
|
});
|
|
225
225
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
226
226
|
}
|
|
227
|
-
}
|
|
228
|
-
|
|
227
|
+
}
|
|
228
|
+
class ThrottlingException extends ComputeOptimizerAutomationServiceException {
|
|
229
229
|
name = "ThrottlingException";
|
|
230
230
|
$fault = "client";
|
|
231
231
|
constructor(opts) {
|
|
@@ -236,8 +236,8 @@ let ThrottlingException$1 = class ThrottlingException extends ComputeOptimizerAu
|
|
|
236
236
|
});
|
|
237
237
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
238
238
|
}
|
|
239
|
-
}
|
|
240
|
-
|
|
239
|
+
}
|
|
240
|
+
class ResourceNotFoundException extends ComputeOptimizerAutomationServiceException {
|
|
241
241
|
name = "ResourceNotFoundException";
|
|
242
242
|
$fault = "client";
|
|
243
243
|
constructor(opts) {
|
|
@@ -248,8 +248,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Comput
|
|
|
248
248
|
});
|
|
249
249
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
250
250
|
}
|
|
251
|
-
}
|
|
252
|
-
|
|
251
|
+
}
|
|
252
|
+
class ServiceQuotaExceededException extends ComputeOptimizerAutomationServiceException {
|
|
253
253
|
name = "ServiceQuotaExceededException";
|
|
254
254
|
$fault = "client";
|
|
255
255
|
constructor(opts) {
|
|
@@ -260,7 +260,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
260
260
|
});
|
|
261
261
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
262
262
|
}
|
|
263
|
-
}
|
|
263
|
+
}
|
|
264
264
|
|
|
265
265
|
const _AA = "AssociateAccounts";
|
|
266
266
|
const _AAR = "AssociateAccountsRequest";
|
|
@@ -487,61 +487,76 @@ const _ty = "type";
|
|
|
487
487
|
const _v = "values";
|
|
488
488
|
const _va = "value";
|
|
489
489
|
const n0 = "com.amazonaws.computeoptimizerautomation";
|
|
490
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
491
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
492
|
-
var AccountInfo = [3, n0, _AI, 0, [_aI, _s, _oRM, _sR, _lUT], [0, 0, 0, 0, 4]];
|
|
493
|
-
var AssociateAccountsRequest = [3, n0, _AAR, 0, [_aIc, _cT], [64 | 0, [0, 4]]];
|
|
494
|
-
var AssociateAccountsResponse = [3, n0, _AARs, 0, [_aIc, _er], [64 | 0, 64 | 0]];
|
|
495
|
-
var AutomationEvent = [
|
|
490
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
491
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
492
|
+
var AccountInfo$ = [3, n0, _AI, 0, [_aI, _s, _oRM, _sR, _lUT], [0, 0, 0, 0, 4]];
|
|
493
|
+
var AssociateAccountsRequest$ = [3, n0, _AAR, 0, [_aIc, _cT], [64 | 0, [0, 4]]];
|
|
494
|
+
var AssociateAccountsResponse$ = [3, n0, _AARs, 0, [_aIc, _er], [64 | 0, 64 | 0]];
|
|
495
|
+
var AutomationEvent$ = [
|
|
496
496
|
3,
|
|
497
497
|
n0,
|
|
498
498
|
_AE,
|
|
499
499
|
0,
|
|
500
500
|
[_eI, _eD, _eT, _eS, _eSR, _rA, _rI, _rAI, _aI, _r, _rIu, _rT, _cTr, _cTo, _eMS],
|
|
501
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, () => EstimatedMonthlySavings],
|
|
501
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, () => EstimatedMonthlySavings$],
|
|
502
502
|
];
|
|
503
|
-
var AutomationEventFilter = [3, n0, _AEF, 0, [_n, _v], [0, 64 | 0]];
|
|
504
|
-
var AutomationEventStep = [
|
|
503
|
+
var AutomationEventFilter$ = [3, n0, _AEF, 0, [_n, _v], [0, 64 | 0]];
|
|
504
|
+
var AutomationEventStep$ = [
|
|
505
505
|
3,
|
|
506
506
|
n0,
|
|
507
507
|
_AES,
|
|
508
508
|
0,
|
|
509
509
|
[_eI, _sI, _sT, _sS, _rI, _sTt, _cTo, _eMS],
|
|
510
|
-
[0, 0, 0, 0, 0, 4, 4, () => EstimatedMonthlySavings],
|
|
510
|
+
[0, 0, 0, 0, 0, 4, 4, () => EstimatedMonthlySavings$],
|
|
511
511
|
];
|
|
512
|
-
var AutomationEventSummary = [
|
|
512
|
+
var AutomationEventSummary$ = [
|
|
513
513
|
3,
|
|
514
514
|
n0,
|
|
515
515
|
_AESu,
|
|
516
516
|
0,
|
|
517
517
|
[_k, _d, _tP, _t],
|
|
518
|
-
[0, () => SummaryDimensions, () => TimePeriod
|
|
518
|
+
[0, () => SummaryDimensions, () => TimePeriod$, () => SummaryTotals$],
|
|
519
519
|
];
|
|
520
|
-
var AutomationRule = [
|
|
520
|
+
var AutomationRule$ = [
|
|
521
521
|
3,
|
|
522
522
|
n0,
|
|
523
523
|
_AR,
|
|
524
524
|
0,
|
|
525
525
|
[_rAu, _rIu, _n, _de, _rTu, _rR, _aI, _oC, _p, _rAT, _sc, _s, _cTr, _lUT],
|
|
526
|
-
[0, 0, 0, 0, 0, 1, 0, () => OrganizationConfiguration
|
|
526
|
+
[0, 0, 0, 0, 0, 1, 0, () => OrganizationConfiguration$, 0, 64 | 0, () => Schedule$, 0, 4, 4],
|
|
527
527
|
];
|
|
528
|
-
var CreateAutomationRuleRequest = [
|
|
528
|
+
var CreateAutomationRuleRequest$ = [
|
|
529
529
|
3,
|
|
530
530
|
n0,
|
|
531
531
|
_CARR,
|
|
532
532
|
0,
|
|
533
533
|
[_n, _de, _rTu, _oC, _p, _rAT, _cr, _sc, _s, _ta, _cT],
|
|
534
|
-
[0, 0, 0, () => OrganizationConfiguration
|
|
534
|
+
[0, 0, 0, () => OrganizationConfiguration$, 0, 64 | 0, () => Criteria$, () => Schedule$, 0, () => TagList, [0, 4]],
|
|
535
535
|
];
|
|
536
|
-
var CreateAutomationRuleResponse = [
|
|
536
|
+
var CreateAutomationRuleResponse$ = [
|
|
537
537
|
3,
|
|
538
538
|
n0,
|
|
539
539
|
_CARRr,
|
|
540
540
|
0,
|
|
541
541
|
[_rAu, _rIu, _n, _de, _rTu, _rR, _oC, _p, _rAT, _cr, _sc, _s, _ta, _cTr],
|
|
542
|
-
[
|
|
542
|
+
[
|
|
543
|
+
0,
|
|
544
|
+
0,
|
|
545
|
+
0,
|
|
546
|
+
0,
|
|
547
|
+
0,
|
|
548
|
+
1,
|
|
549
|
+
() => OrganizationConfiguration$,
|
|
550
|
+
0,
|
|
551
|
+
64 | 0,
|
|
552
|
+
() => Criteria$,
|
|
553
|
+
() => Schedule$,
|
|
554
|
+
0,
|
|
555
|
+
() => TagList,
|
|
556
|
+
4,
|
|
557
|
+
],
|
|
543
558
|
];
|
|
544
|
-
var Criteria = [
|
|
559
|
+
var Criteria$ = [
|
|
545
560
|
3,
|
|
546
561
|
n0,
|
|
547
562
|
_C,
|
|
@@ -558,28 +573,28 @@ var Criteria = [
|
|
|
558
573
|
() => StringCriteriaConditionList,
|
|
559
574
|
],
|
|
560
575
|
];
|
|
561
|
-
var DeleteAutomationRuleRequest = [3, n0, _DARR, 0, [_rAu, _rR, _cT], [0, 1, [0, 4]]];
|
|
562
|
-
var DeleteAutomationRuleResponse = [3, n0, _DARRe, 0, [], []];
|
|
563
|
-
var DisassociateAccountsRequest = [3, n0, _DAR, 0, [_aIc, _cT], [64 | 0, [0, 4]]];
|
|
564
|
-
var DisassociateAccountsResponse = [3, n0, _DARi, 0, [_aIc, _er], [64 | 0, 64 | 0]];
|
|
565
|
-
var DoubleCriteriaCondition = [3, n0, _DCC, 0, [_co, _v], [0, 64 | 1]];
|
|
566
|
-
var EbsVolume = [3, n0, _EV, 0, [_con], [() => EbsVolumeConfiguration]];
|
|
567
|
-
var EbsVolumeConfiguration = [3, n0, _EVC, 0, [_ty, _sIG, _i, _th], [0, 1, 1, 1]];
|
|
568
|
-
var EstimatedMonthlySavings = [3, n0, _EMS, 0, [_cu, _bDS, _aDS, _sEM], [0, 1, 1, 0]];
|
|
569
|
-
var Filter = [3, n0, _F, 0, [_n, _v], [0, 64 | 0]];
|
|
570
|
-
var ForbiddenException = [-3, n0, _FE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
571
|
-
schema.TypeRegistry.for(n0).registerError(ForbiddenException
|
|
572
|
-
var GetAutomationEventRequest = [3, n0, _GAER, 0, [_eI], [0]];
|
|
573
|
-
var GetAutomationEventResponse = [
|
|
576
|
+
var DeleteAutomationRuleRequest$ = [3, n0, _DARR, 0, [_rAu, _rR, _cT], [0, 1, [0, 4]]];
|
|
577
|
+
var DeleteAutomationRuleResponse$ = [3, n0, _DARRe, 0, [], []];
|
|
578
|
+
var DisassociateAccountsRequest$ = [3, n0, _DAR, 0, [_aIc, _cT], [64 | 0, [0, 4]]];
|
|
579
|
+
var DisassociateAccountsResponse$ = [3, n0, _DARi, 0, [_aIc, _er], [64 | 0, 64 | 0]];
|
|
580
|
+
var DoubleCriteriaCondition$ = [3, n0, _DCC, 0, [_co, _v], [0, 64 | 1]];
|
|
581
|
+
var EbsVolume$ = [3, n0, _EV, 0, [_con], [() => EbsVolumeConfiguration$]];
|
|
582
|
+
var EbsVolumeConfiguration$ = [3, n0, _EVC, 0, [_ty, _sIG, _i, _th], [0, 1, 1, 1]];
|
|
583
|
+
var EstimatedMonthlySavings$ = [3, n0, _EMS, 0, [_cu, _bDS, _aDS, _sEM], [0, 1, 1, 0]];
|
|
584
|
+
var Filter$ = [3, n0, _F, 0, [_n, _v], [0, 64 | 0]];
|
|
585
|
+
var ForbiddenException$ = [-3, n0, _FE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
586
|
+
schema.TypeRegistry.for(n0).registerError(ForbiddenException$, ForbiddenException);
|
|
587
|
+
var GetAutomationEventRequest$ = [3, n0, _GAER, 0, [_eI], [0]];
|
|
588
|
+
var GetAutomationEventResponse$ = [
|
|
574
589
|
3,
|
|
575
590
|
n0,
|
|
576
591
|
_GAERe,
|
|
577
592
|
0,
|
|
578
593
|
[_eI, _eD, _eT, _eS, _eSR, _rA, _rI, _rAI, _aI, _r, _rIu, _rT, _cTr, _cTo, _eMS],
|
|
579
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, () => EstimatedMonthlySavings],
|
|
594
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, () => EstimatedMonthlySavings$],
|
|
580
595
|
];
|
|
581
|
-
var GetAutomationRuleRequest = [3, n0, _GARR, 0, [_rAu], [0]];
|
|
582
|
-
var GetAutomationRuleResponse = [
|
|
596
|
+
var GetAutomationRuleRequest$ = [3, n0, _GARR, 0, [_rAu], [0]];
|
|
597
|
+
var GetAutomationRuleResponse$ = [
|
|
583
598
|
3,
|
|
584
599
|
n0,
|
|
585
600
|
_GARRe,
|
|
@@ -593,19 +608,19 @@ var GetAutomationRuleResponse = [
|
|
|
593
608
|
0,
|
|
594
609
|
1,
|
|
595
610
|
0,
|
|
596
|
-
() => OrganizationConfiguration
|
|
611
|
+
() => OrganizationConfiguration$,
|
|
597
612
|
0,
|
|
598
613
|
64 | 0,
|
|
599
|
-
() => Criteria
|
|
600
|
-
() => Schedule
|
|
614
|
+
() => Criteria$,
|
|
615
|
+
() => Schedule$,
|
|
601
616
|
0,
|
|
602
617
|
() => TagList,
|
|
603
618
|
4,
|
|
604
619
|
4,
|
|
605
620
|
],
|
|
606
621
|
];
|
|
607
|
-
var GetEnrollmentConfigurationRequest = [3, n0, _GECR, 0, [], []];
|
|
608
|
-
var GetEnrollmentConfigurationResponse = [
|
|
622
|
+
var GetEnrollmentConfigurationRequest$ = [3, n0, _GECR, 0, [], []];
|
|
623
|
+
var GetEnrollmentConfigurationResponse$ = [
|
|
609
624
|
3,
|
|
610
625
|
n0,
|
|
611
626
|
_GECRe,
|
|
@@ -613,9 +628,9 @@ var GetEnrollmentConfigurationResponse = [
|
|
|
613
628
|
[_s, _sR, _oRM, _lUT],
|
|
614
629
|
[0, 0, 0, 4],
|
|
615
630
|
];
|
|
616
|
-
var IdempotencyTokenInUseException = [-3, n0, _ITIUE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
617
|
-
schema.TypeRegistry.for(n0).registerError(IdempotencyTokenInUseException
|
|
618
|
-
var IdempotentParameterMismatchException = [
|
|
631
|
+
var IdempotencyTokenInUseException$ = [-3, n0, _ITIUE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
632
|
+
schema.TypeRegistry.for(n0).registerError(IdempotencyTokenInUseException$, IdempotencyTokenInUseException);
|
|
633
|
+
var IdempotentParameterMismatchException$ = [
|
|
619
634
|
-3,
|
|
620
635
|
n0,
|
|
621
636
|
_IPME,
|
|
@@ -623,15 +638,15 @@ var IdempotentParameterMismatchException = [
|
|
|
623
638
|
[_m],
|
|
624
639
|
[0],
|
|
625
640
|
];
|
|
626
|
-
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException
|
|
627
|
-
var IntegerCriteriaCondition = [3, n0, _ICC, 0, [_co, _v], [0, 64 | 1]];
|
|
628
|
-
var InternalServerException = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
629
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
630
|
-
var InvalidParameterValueException = [-3, n0, _IPVE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
631
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException
|
|
632
|
-
var ListAccountsRequest = [3, n0, _LAR, 0, [_mR, _nT], [1, 0]];
|
|
633
|
-
var ListAccountsResponse = [3, n0, _LARi, 0, [_a, _nT], [() => AccountInfoList, 0]];
|
|
634
|
-
var ListAutomationEventsRequest = [
|
|
641
|
+
schema.TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException$, IdempotentParameterMismatchException);
|
|
642
|
+
var IntegerCriteriaCondition$ = [3, n0, _ICC, 0, [_co, _v], [0, 64 | 1]];
|
|
643
|
+
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _se, [_hE]: 500 }, [_m], [0]];
|
|
644
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
645
|
+
var InvalidParameterValueException$ = [-3, n0, _IPVE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
646
|
+
schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
647
|
+
var ListAccountsRequest$ = [3, n0, _LAR, 0, [_mR, _nT], [1, 0]];
|
|
648
|
+
var ListAccountsResponse$ = [3, n0, _LARi, 0, [_a, _nT], [() => AccountInfoList, 0]];
|
|
649
|
+
var ListAutomationEventsRequest$ = [
|
|
635
650
|
3,
|
|
636
651
|
n0,
|
|
637
652
|
_LAER,
|
|
@@ -639,7 +654,7 @@ var ListAutomationEventsRequest = [
|
|
|
639
654
|
[_f, _sTI, _eTE, _mR, _nT],
|
|
640
655
|
[() => AutomationEventFilterList, 4, 4, 1, 0],
|
|
641
656
|
];
|
|
642
|
-
var ListAutomationEventsResponse = [
|
|
657
|
+
var ListAutomationEventsResponse$ = [
|
|
643
658
|
3,
|
|
644
659
|
n0,
|
|
645
660
|
_LAERi,
|
|
@@ -647,8 +662,8 @@ var ListAutomationEventsResponse = [
|
|
|
647
662
|
[_aE, _nT],
|
|
648
663
|
[() => AutomationEvents, 0],
|
|
649
664
|
];
|
|
650
|
-
var ListAutomationEventStepsRequest = [3, n0, _LAESR, 0, [_eI, _mR, _nT], [0, 1, 0]];
|
|
651
|
-
var ListAutomationEventStepsResponse = [
|
|
665
|
+
var ListAutomationEventStepsRequest$ = [3, n0, _LAESR, 0, [_eI, _mR, _nT], [0, 1, 0]];
|
|
666
|
+
var ListAutomationEventStepsResponse$ = [
|
|
652
667
|
3,
|
|
653
668
|
n0,
|
|
654
669
|
_LAESRi,
|
|
@@ -656,7 +671,7 @@ var ListAutomationEventStepsResponse = [
|
|
|
656
671
|
[_aES, _nT],
|
|
657
672
|
[() => AutomationEventSteps, 0],
|
|
658
673
|
];
|
|
659
|
-
var ListAutomationEventSummariesRequest = [
|
|
674
|
+
var ListAutomationEventSummariesRequest$ = [
|
|
660
675
|
3,
|
|
661
676
|
n0,
|
|
662
677
|
_LAESRis,
|
|
@@ -664,7 +679,7 @@ var ListAutomationEventSummariesRequest = [
|
|
|
664
679
|
[_f, _sDI, _eDE, _mR, _nT],
|
|
665
680
|
[() => AutomationEventFilterList, 0, 0, 1, 0],
|
|
666
681
|
];
|
|
667
|
-
var ListAutomationEventSummariesResponse = [
|
|
682
|
+
var ListAutomationEventSummariesResponse$ = [
|
|
668
683
|
3,
|
|
669
684
|
n0,
|
|
670
685
|
_LAESRist,
|
|
@@ -672,15 +687,15 @@ var ListAutomationEventSummariesResponse = [
|
|
|
672
687
|
[_aESu, _nT],
|
|
673
688
|
[() => AutomationEventSummaryList, 0],
|
|
674
689
|
];
|
|
675
|
-
var ListAutomationRulePreviewRequest = [
|
|
690
|
+
var ListAutomationRulePreviewRequest$ = [
|
|
676
691
|
3,
|
|
677
692
|
n0,
|
|
678
693
|
_LARPR,
|
|
679
694
|
0,
|
|
680
695
|
[_rTu, _oS, _rAT, _cr, _mR, _nT],
|
|
681
|
-
[0, () => OrganizationScope
|
|
696
|
+
[0, () => OrganizationScope$, 64 | 0, () => Criteria$, 1, 0],
|
|
682
697
|
];
|
|
683
|
-
var ListAutomationRulePreviewResponse = [
|
|
698
|
+
var ListAutomationRulePreviewResponse$ = [
|
|
684
699
|
3,
|
|
685
700
|
n0,
|
|
686
701
|
_LARPRi,
|
|
@@ -688,15 +703,15 @@ var ListAutomationRulePreviewResponse = [
|
|
|
688
703
|
[_pR, _nT],
|
|
689
704
|
[() => PreviewResults, 0],
|
|
690
705
|
];
|
|
691
|
-
var ListAutomationRulePreviewSummariesRequest = [
|
|
706
|
+
var ListAutomationRulePreviewSummariesRequest$ = [
|
|
692
707
|
3,
|
|
693
708
|
n0,
|
|
694
709
|
_LARPSR,
|
|
695
710
|
0,
|
|
696
711
|
[_rTu, _oS, _rAT, _cr, _mR, _nT],
|
|
697
|
-
[0, () => OrganizationScope
|
|
712
|
+
[0, () => OrganizationScope$, 64 | 0, () => Criteria$, 1, 0],
|
|
698
713
|
];
|
|
699
|
-
var ListAutomationRulePreviewSummariesResponse = [
|
|
714
|
+
var ListAutomationRulePreviewSummariesResponse$ = [
|
|
700
715
|
3,
|
|
701
716
|
n0,
|
|
702
717
|
_LARPSRi,
|
|
@@ -704,7 +719,7 @@ var ListAutomationRulePreviewSummariesResponse = [
|
|
|
704
719
|
[_pRS, _nT],
|
|
705
720
|
[() => PreviewResultSummaries, 0],
|
|
706
721
|
];
|
|
707
|
-
var ListAutomationRulesRequest = [
|
|
722
|
+
var ListAutomationRulesRequest$ = [
|
|
708
723
|
3,
|
|
709
724
|
n0,
|
|
710
725
|
_LARR,
|
|
@@ -712,7 +727,7 @@ var ListAutomationRulesRequest = [
|
|
|
712
727
|
[_f, _mR, _nT],
|
|
713
728
|
[() => FilterList, 1, 0],
|
|
714
729
|
];
|
|
715
|
-
var ListAutomationRulesResponse = [
|
|
730
|
+
var ListAutomationRulesResponse$ = [
|
|
716
731
|
3,
|
|
717
732
|
n0,
|
|
718
733
|
_LARRi,
|
|
@@ -720,7 +735,7 @@ var ListAutomationRulesResponse = [
|
|
|
720
735
|
[_aR, _nT],
|
|
721
736
|
[() => AutomationRules, 0],
|
|
722
737
|
];
|
|
723
|
-
var ListRecommendedActionsRequest = [
|
|
738
|
+
var ListRecommendedActionsRequest$ = [
|
|
724
739
|
3,
|
|
725
740
|
n0,
|
|
726
741
|
_LRAR,
|
|
@@ -728,7 +743,7 @@ var ListRecommendedActionsRequest = [
|
|
|
728
743
|
[_f, _mR, _nT],
|
|
729
744
|
[() => RecommendedActionFilterList, 1, 0],
|
|
730
745
|
];
|
|
731
|
-
var ListRecommendedActionsResponse = [
|
|
746
|
+
var ListRecommendedActionsResponse$ = [
|
|
732
747
|
3,
|
|
733
748
|
n0,
|
|
734
749
|
_LRARi,
|
|
@@ -736,7 +751,7 @@ var ListRecommendedActionsResponse = [
|
|
|
736
751
|
[_rAe, _nT],
|
|
737
752
|
[() => RecommendedActions, 0],
|
|
738
753
|
];
|
|
739
|
-
var ListRecommendedActionSummariesRequest = [
|
|
754
|
+
var ListRecommendedActionSummariesRequest$ = [
|
|
740
755
|
3,
|
|
741
756
|
n0,
|
|
742
757
|
_LRASR,
|
|
@@ -744,7 +759,7 @@ var ListRecommendedActionSummariesRequest = [
|
|
|
744
759
|
[_f, _mR, _nT],
|
|
745
760
|
[() => RecommendedActionFilterList, 1, 0],
|
|
746
761
|
];
|
|
747
|
-
var ListRecommendedActionSummariesResponse = [
|
|
762
|
+
var ListRecommendedActionSummariesResponse$ = [
|
|
748
763
|
3,
|
|
749
764
|
n0,
|
|
750
765
|
_LRASRi,
|
|
@@ -752,15 +767,15 @@ var ListRecommendedActionSummariesResponse = [
|
|
|
752
767
|
[_rAS, _nT],
|
|
753
768
|
[() => RecommendedActionSummaries, 0],
|
|
754
769
|
];
|
|
755
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
756
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [() => TagList]];
|
|
757
|
-
var NotManagementAccountException = [-3, n0, _NMAE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
758
|
-
schema.TypeRegistry.for(n0).registerError(NotManagementAccountException
|
|
759
|
-
var OptInRequiredException = [-3, n0, _OIRE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
760
|
-
schema.TypeRegistry.for(n0).registerError(OptInRequiredException
|
|
761
|
-
var OrganizationConfiguration = [3, n0, _OC, 0, [_rAO, _aIc], [0, 64 | 0]];
|
|
762
|
-
var OrganizationScope = [3, n0, _OS, 0, [_aIc], [64 | 0]];
|
|
763
|
-
var PreviewResult = [
|
|
770
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [0]];
|
|
771
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_ta], [() => TagList]];
|
|
772
|
+
var NotManagementAccountException$ = [-3, n0, _NMAE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
773
|
+
schema.TypeRegistry.for(n0).registerError(NotManagementAccountException$, NotManagementAccountException);
|
|
774
|
+
var OptInRequiredException$ = [-3, n0, _OIRE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
775
|
+
schema.TypeRegistry.for(n0).registerError(OptInRequiredException$, OptInRequiredException);
|
|
776
|
+
var OrganizationConfiguration$ = [3, n0, _OC, 0, [_rAO, _aIc], [0, 64 | 0]];
|
|
777
|
+
var OrganizationScope$ = [3, n0, _OS, 0, [_aIc], [64 | 0]];
|
|
778
|
+
var PreviewResult$ = [
|
|
764
779
|
3,
|
|
765
780
|
n0,
|
|
766
781
|
_PR,
|
|
@@ -776,16 +791,16 @@ var PreviewResult = [
|
|
|
776
791
|
1,
|
|
777
792
|
0,
|
|
778
793
|
0,
|
|
779
|
-
() => ResourceDetails
|
|
794
|
+
() => ResourceDetails$,
|
|
780
795
|
0,
|
|
781
|
-
() => ResourceDetails
|
|
796
|
+
() => ResourceDetails$,
|
|
782
797
|
2,
|
|
783
|
-
() => EstimatedMonthlySavings
|
|
798
|
+
() => EstimatedMonthlySavings$,
|
|
784
799
|
() => TagList,
|
|
785
800
|
],
|
|
786
801
|
];
|
|
787
|
-
var PreviewResultSummary = [3, n0, _PRS, 0, [_k, _t], [0, () => RulePreviewTotal]];
|
|
788
|
-
var RecommendedAction = [
|
|
802
|
+
var PreviewResultSummary$ = [3, n0, _PRS, 0, [_k, _t], [0, () => RulePreviewTotal$]];
|
|
803
|
+
var RecommendedAction$ = [
|
|
789
804
|
3,
|
|
790
805
|
n0,
|
|
791
806
|
_RA,
|
|
@@ -801,49 +816,56 @@ var RecommendedAction = [
|
|
|
801
816
|
1,
|
|
802
817
|
0,
|
|
803
818
|
0,
|
|
804
|
-
() => ResourceDetails
|
|
819
|
+
() => ResourceDetails$,
|
|
805
820
|
0,
|
|
806
|
-
() => ResourceDetails
|
|
821
|
+
() => ResourceDetails$,
|
|
807
822
|
2,
|
|
808
|
-
() => EstimatedMonthlySavings
|
|
823
|
+
() => EstimatedMonthlySavings$,
|
|
809
824
|
() => TagList,
|
|
810
825
|
],
|
|
811
826
|
];
|
|
812
|
-
var RecommendedActionFilter = [3, n0, _RAF, 0, [_n, _v], [0, 64 | 0]];
|
|
813
|
-
var RecommendedActionSummary = [
|
|
827
|
+
var RecommendedActionFilter$ = [3, n0, _RAF, 0, [_n, _v], [0, 64 | 0]];
|
|
828
|
+
var RecommendedActionSummary$ = [
|
|
814
829
|
3,
|
|
815
830
|
n0,
|
|
816
831
|
_RAS,
|
|
817
832
|
0,
|
|
818
833
|
[_k, _t],
|
|
819
|
-
[0, () => RecommendedActionTotal],
|
|
834
|
+
[0, () => RecommendedActionTotal$],
|
|
820
835
|
];
|
|
821
|
-
var RecommendedActionTotal = [
|
|
836
|
+
var RecommendedActionTotal$ = [
|
|
822
837
|
3,
|
|
823
838
|
n0,
|
|
824
839
|
_RAT,
|
|
825
840
|
0,
|
|
826
841
|
[_rAC, _eMS],
|
|
827
|
-
[1, () => EstimatedMonthlySavings],
|
|
842
|
+
[1, () => EstimatedMonthlySavings$],
|
|
828
843
|
];
|
|
829
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
830
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
831
|
-
var ResourceTagsCriteriaCondition = [3, n0, _RTCC, 0, [_co, _k, _v], [0, 0, 64 | 0]];
|
|
832
|
-
var RollbackAutomationEventRequest = [3, n0, _RAER, 0, [_eI, _cT], [0, [0, 4]]];
|
|
833
|
-
var RollbackAutomationEventResponse = [3, n0, _RAERo, 0, [_eI, _eS], [0, 0]];
|
|
834
|
-
var RulePreviewTotal = [
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
var
|
|
843
|
-
var
|
|
844
|
-
|
|
845
|
-
var
|
|
846
|
-
|
|
844
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
845
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
846
|
+
var ResourceTagsCriteriaCondition$ = [3, n0, _RTCC, 0, [_co, _k, _v], [0, 0, 64 | 0]];
|
|
847
|
+
var RollbackAutomationEventRequest$ = [3, n0, _RAER, 0, [_eI, _cT], [0, [0, 4]]];
|
|
848
|
+
var RollbackAutomationEventResponse$ = [3, n0, _RAERo, 0, [_eI, _eS], [0, 0]];
|
|
849
|
+
var RulePreviewTotal$ = [
|
|
850
|
+
3,
|
|
851
|
+
n0,
|
|
852
|
+
_RPT,
|
|
853
|
+
0,
|
|
854
|
+
[_rAC, _eMS],
|
|
855
|
+
[1, () => EstimatedMonthlySavings$],
|
|
856
|
+
];
|
|
857
|
+
var Schedule$ = [3, n0, _S, 0, [_sE, _sET, _eWIM], [0, 0, 1]];
|
|
858
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE, { [_e]: _c, [_hE]: 402 }, [_m], [0]];
|
|
859
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
860
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE, { [_e]: _se, [_hE]: 503 }, [_m], [0]];
|
|
861
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
862
|
+
var StartAutomationEventRequest$ = [3, n0, _SAER, 0, [_rAI, _cT], [0, [0, 4]]];
|
|
863
|
+
var StartAutomationEventResponse$ = [3, n0, _SAERt, 0, [_rAI, _eI, _eS], [0, 0, 0]];
|
|
864
|
+
var StringCriteriaCondition$ = [3, n0, _SCC, 0, [_co, _v], [0, 64 | 0]];
|
|
865
|
+
var SummaryDimension$ = [3, n0, _SD, 0, [_k, _va], [0, 0]];
|
|
866
|
+
var SummaryTotals$ = [3, n0, _ST, 0, [_aEC, _eMS], [1, () => EstimatedMonthlySavings$]];
|
|
867
|
+
var Tag$ = [3, n0, _T, 0, [_k, _va], [0, 0]];
|
|
868
|
+
var TagResourceRequest$ = [
|
|
847
869
|
3,
|
|
848
870
|
n0,
|
|
849
871
|
_TRR,
|
|
@@ -851,30 +873,37 @@ var TagResourceRequest = [
|
|
|
851
873
|
[_rA, _rR, _ta, _cT],
|
|
852
874
|
[0, 1, () => TagList, [0, 4]],
|
|
853
875
|
];
|
|
854
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
855
|
-
var ThrottlingException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
856
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
857
|
-
var TimePeriod = [3, n0, _TP, 0, [_sTI, _eTE], [4, 4]];
|
|
858
|
-
var UntagResourceRequest = [
|
|
859
|
-
|
|
860
|
-
|
|
876
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
877
|
+
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
878
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
879
|
+
var TimePeriod$ = [3, n0, _TP, 0, [_sTI, _eTE], [4, 4]];
|
|
880
|
+
var UntagResourceRequest$ = [
|
|
881
|
+
3,
|
|
882
|
+
n0,
|
|
883
|
+
_URR,
|
|
884
|
+
0,
|
|
885
|
+
[_rA, _rR, _tK, _cT],
|
|
886
|
+
[0, 1, 64 | 0, [0, 4]],
|
|
887
|
+
];
|
|
888
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
889
|
+
var UpdateAutomationRuleRequest$ = [
|
|
861
890
|
3,
|
|
862
891
|
n0,
|
|
863
892
|
_UARR,
|
|
864
893
|
0,
|
|
865
894
|
[_rAu, _rR, _n, _de, _rTu, _oC, _p, _rAT, _cr, _sc, _s, _cT],
|
|
866
|
-
[0, 1, 0, 0, 0, () => OrganizationConfiguration
|
|
895
|
+
[0, 1, 0, 0, 0, () => OrganizationConfiguration$, 0, 64 | 0, () => Criteria$, () => Schedule$, 0, [0, 4]],
|
|
867
896
|
];
|
|
868
|
-
var UpdateAutomationRuleResponse = [
|
|
897
|
+
var UpdateAutomationRuleResponse$ = [
|
|
869
898
|
3,
|
|
870
899
|
n0,
|
|
871
900
|
_UARRp,
|
|
872
901
|
0,
|
|
873
902
|
[_rAu, _rR, _n, _de, _rTu, _oC, _p, _rAT, _cr, _sc, _s, _cTr, _lUT],
|
|
874
|
-
[0, 1, 0, 0, 0, () => OrganizationConfiguration
|
|
903
|
+
[0, 1, 0, 0, 0, () => OrganizationConfiguration$, 0, 64 | 0, () => Criteria$, () => Schedule$, 0, 4, 4],
|
|
875
904
|
];
|
|
876
|
-
var UpdateEnrollmentConfigurationRequest = [3, n0, _UECR, 0, [_s, _cT], [0, [0, 4]]];
|
|
877
|
-
var UpdateEnrollmentConfigurationResponse = [
|
|
905
|
+
var UpdateEnrollmentConfigurationRequest$ = [3, n0, _UECR, 0, [_s, _cT], [0, [0, 4]]];
|
|
906
|
+
var UpdateEnrollmentConfigurationResponse$ = [
|
|
878
907
|
3,
|
|
879
908
|
n0,
|
|
880
909
|
_UECRp,
|
|
@@ -882,7 +911,7 @@ var UpdateEnrollmentConfigurationResponse = [
|
|
|
882
911
|
[_s, _sR, _lUT],
|
|
883
912
|
[0, 0, 4],
|
|
884
913
|
];
|
|
885
|
-
var ComputeOptimizerAutomationServiceException = [
|
|
914
|
+
var ComputeOptimizerAutomationServiceException$ = [
|
|
886
915
|
-3,
|
|
887
916
|
_sm,
|
|
888
917
|
"ComputeOptimizerAutomationServiceException",
|
|
@@ -890,201 +919,202 @@ var ComputeOptimizerAutomationServiceException = [
|
|
|
890
919
|
[],
|
|
891
920
|
[],
|
|
892
921
|
];
|
|
893
|
-
schema.TypeRegistry.for(_sm).registerError(ComputeOptimizerAutomationServiceException
|
|
894
|
-
var AccountInfoList = [1, n0, _AIL, 0, () => AccountInfo];
|
|
895
|
-
var AutomationEventFilterList = [1, n0, _AEFL, 0, () => AutomationEventFilter];
|
|
896
|
-
var AutomationEvents = [1, n0, _AEu, 0, () => AutomationEvent];
|
|
897
|
-
var AutomationEventSteps = [1, n0, _AESut, 0, () => AutomationEventStep];
|
|
898
|
-
var AutomationEventSummaryList = [1, n0, _AESL, 0, () => AutomationEventSummary];
|
|
899
|
-
var AutomationRules = [1, n0, _ARu, 0, () => AutomationRule];
|
|
900
|
-
var DoubleCriteriaConditionList = [1, n0, _DCCL, 0, () => DoubleCriteriaCondition];
|
|
901
|
-
var FilterList = [1, n0, _FL, 0, () => Filter];
|
|
902
|
-
var IntegerCriteriaConditionList = [1, n0, _ICCL, 0, () => IntegerCriteriaCondition];
|
|
903
|
-
var PreviewResults = [1, n0, _PRr, 0, () => PreviewResult];
|
|
904
|
-
var PreviewResultSummaries = [1, n0, _PRSr, 0, () => PreviewResultSummary];
|
|
905
|
-
var RecommendedActionFilterList = [1, n0, _RAFL, 0, () => RecommendedActionFilter];
|
|
906
|
-
var RecommendedActions = [1, n0, _RAe, 0, () => RecommendedAction];
|
|
907
|
-
var RecommendedActionSummaries = [1, n0, _RASe, 0, () => RecommendedActionSummary];
|
|
908
|
-
var ResourceTagsCriteriaConditionList = [
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
];
|
|
915
|
-
var StringCriteriaConditionList = [1, n0, _SCCL, 0, () => StringCriteriaCondition];
|
|
916
|
-
var SummaryDimensions = [1, n0, _SDu, 0, () => SummaryDimension];
|
|
917
|
-
var TagList = [1, n0, _TL, 0, () => Tag];
|
|
918
|
-
var ResourceDetails = [3, n0, _RD, 0, [_eV], [() => EbsVolume]];
|
|
919
|
-
var AssociateAccounts = [
|
|
922
|
+
schema.TypeRegistry.for(_sm).registerError(ComputeOptimizerAutomationServiceException$, ComputeOptimizerAutomationServiceException);
|
|
923
|
+
var AccountInfoList = [1, n0, _AIL, 0, () => AccountInfo$];
|
|
924
|
+
var AutomationEventFilterList = [1, n0, _AEFL, 0, () => AutomationEventFilter$];
|
|
925
|
+
var AutomationEvents = [1, n0, _AEu, 0, () => AutomationEvent$];
|
|
926
|
+
var AutomationEventSteps = [1, n0, _AESut, 0, () => AutomationEventStep$];
|
|
927
|
+
var AutomationEventSummaryList = [1, n0, _AESL, 0, () => AutomationEventSummary$];
|
|
928
|
+
var AutomationRules = [1, n0, _ARu, 0, () => AutomationRule$];
|
|
929
|
+
var DoubleCriteriaConditionList = [1, n0, _DCCL, 0, () => DoubleCriteriaCondition$];
|
|
930
|
+
var FilterList = [1, n0, _FL, 0, () => Filter$];
|
|
931
|
+
var IntegerCriteriaConditionList = [1, n0, _ICCL, 0, () => IntegerCriteriaCondition$];
|
|
932
|
+
var PreviewResults = [1, n0, _PRr, 0, () => PreviewResult$];
|
|
933
|
+
var PreviewResultSummaries = [1, n0, _PRSr, 0, () => PreviewResultSummary$];
|
|
934
|
+
var RecommendedActionFilterList = [1, n0, _RAFL, 0, () => RecommendedActionFilter$];
|
|
935
|
+
var RecommendedActions = [1, n0, _RAe, 0, () => RecommendedAction$];
|
|
936
|
+
var RecommendedActionSummaries = [1, n0, _RASe, 0, () => RecommendedActionSummary$];
|
|
937
|
+
var ResourceTagsCriteriaConditionList = [1, n0, _RTCCL, 0, () => ResourceTagsCriteriaCondition$];
|
|
938
|
+
var StringCriteriaConditionList = [1, n0, _SCCL, 0, () => StringCriteriaCondition$];
|
|
939
|
+
var SummaryDimensions = [1, n0, _SDu, 0, () => SummaryDimension$];
|
|
940
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
941
|
+
var ResourceDetails$ = [3, n0, _RD, 0, [_eV], [() => EbsVolume$]];
|
|
942
|
+
var AssociateAccounts$ = [
|
|
920
943
|
9,
|
|
921
944
|
n0,
|
|
922
945
|
_AA,
|
|
923
946
|
2,
|
|
924
|
-
() => AssociateAccountsRequest
|
|
925
|
-
() => AssociateAccountsResponse
|
|
947
|
+
() => AssociateAccountsRequest$,
|
|
948
|
+
() => AssociateAccountsResponse$,
|
|
926
949
|
];
|
|
927
|
-
var CreateAutomationRule = [
|
|
950
|
+
var CreateAutomationRule$ = [
|
|
928
951
|
9,
|
|
929
952
|
n0,
|
|
930
953
|
_CAR,
|
|
931
954
|
2,
|
|
932
|
-
() => CreateAutomationRuleRequest
|
|
933
|
-
() => CreateAutomationRuleResponse
|
|
955
|
+
() => CreateAutomationRuleRequest$,
|
|
956
|
+
() => CreateAutomationRuleResponse$,
|
|
934
957
|
];
|
|
935
|
-
var DeleteAutomationRule = [
|
|
958
|
+
var DeleteAutomationRule$ = [
|
|
936
959
|
9,
|
|
937
960
|
n0,
|
|
938
961
|
_DARe,
|
|
939
962
|
2,
|
|
940
|
-
() => DeleteAutomationRuleRequest
|
|
941
|
-
() => DeleteAutomationRuleResponse
|
|
963
|
+
() => DeleteAutomationRuleRequest$,
|
|
964
|
+
() => DeleteAutomationRuleResponse$,
|
|
942
965
|
];
|
|
943
|
-
var DisassociateAccounts = [
|
|
966
|
+
var DisassociateAccounts$ = [
|
|
944
967
|
9,
|
|
945
968
|
n0,
|
|
946
969
|
_DA,
|
|
947
970
|
2,
|
|
948
|
-
() => DisassociateAccountsRequest
|
|
949
|
-
() => DisassociateAccountsResponse
|
|
971
|
+
() => DisassociateAccountsRequest$,
|
|
972
|
+
() => DisassociateAccountsResponse$,
|
|
950
973
|
];
|
|
951
|
-
var GetAutomationEvent = [
|
|
974
|
+
var GetAutomationEvent$ = [
|
|
952
975
|
9,
|
|
953
976
|
n0,
|
|
954
977
|
_GAE,
|
|
955
978
|
0,
|
|
956
|
-
() => GetAutomationEventRequest
|
|
957
|
-
() => GetAutomationEventResponse
|
|
979
|
+
() => GetAutomationEventRequest$,
|
|
980
|
+
() => GetAutomationEventResponse$,
|
|
958
981
|
];
|
|
959
|
-
var GetAutomationRule = [
|
|
982
|
+
var GetAutomationRule$ = [
|
|
960
983
|
9,
|
|
961
984
|
n0,
|
|
962
985
|
_GAR,
|
|
963
986
|
0,
|
|
964
|
-
() => GetAutomationRuleRequest
|
|
965
|
-
() => GetAutomationRuleResponse
|
|
987
|
+
() => GetAutomationRuleRequest$,
|
|
988
|
+
() => GetAutomationRuleResponse$,
|
|
966
989
|
];
|
|
967
|
-
var GetEnrollmentConfiguration = [
|
|
990
|
+
var GetEnrollmentConfiguration$ = [
|
|
968
991
|
9,
|
|
969
992
|
n0,
|
|
970
993
|
_GEC,
|
|
971
994
|
0,
|
|
972
|
-
() => GetEnrollmentConfigurationRequest
|
|
973
|
-
() => GetEnrollmentConfigurationResponse
|
|
995
|
+
() => GetEnrollmentConfigurationRequest$,
|
|
996
|
+
() => GetEnrollmentConfigurationResponse$,
|
|
997
|
+
];
|
|
998
|
+
var ListAccounts$ = [
|
|
999
|
+
9,
|
|
1000
|
+
n0,
|
|
1001
|
+
_LA,
|
|
1002
|
+
0,
|
|
1003
|
+
() => ListAccountsRequest$,
|
|
1004
|
+
() => ListAccountsResponse$,
|
|
974
1005
|
];
|
|
975
|
-
var
|
|
976
|
-
var ListAutomationEvents = [
|
|
1006
|
+
var ListAutomationEvents$ = [
|
|
977
1007
|
9,
|
|
978
1008
|
n0,
|
|
979
1009
|
_LAE,
|
|
980
1010
|
0,
|
|
981
|
-
() => ListAutomationEventsRequest
|
|
982
|
-
() => ListAutomationEventsResponse
|
|
1011
|
+
() => ListAutomationEventsRequest$,
|
|
1012
|
+
() => ListAutomationEventsResponse$,
|
|
983
1013
|
];
|
|
984
|
-
var ListAutomationEventSteps = [
|
|
1014
|
+
var ListAutomationEventSteps$ = [
|
|
985
1015
|
9,
|
|
986
1016
|
n0,
|
|
987
1017
|
_LAES,
|
|
988
1018
|
0,
|
|
989
|
-
() => ListAutomationEventStepsRequest
|
|
990
|
-
() => ListAutomationEventStepsResponse
|
|
1019
|
+
() => ListAutomationEventStepsRequest$,
|
|
1020
|
+
() => ListAutomationEventStepsResponse$,
|
|
991
1021
|
];
|
|
992
|
-
var ListAutomationEventSummaries = [
|
|
1022
|
+
var ListAutomationEventSummaries$ = [
|
|
993
1023
|
9,
|
|
994
1024
|
n0,
|
|
995
1025
|
_LAESi,
|
|
996
1026
|
0,
|
|
997
|
-
() => ListAutomationEventSummariesRequest
|
|
998
|
-
() => ListAutomationEventSummariesResponse
|
|
1027
|
+
() => ListAutomationEventSummariesRequest$,
|
|
1028
|
+
() => ListAutomationEventSummariesResponse$,
|
|
999
1029
|
];
|
|
1000
|
-
var ListAutomationRulePreview = [
|
|
1030
|
+
var ListAutomationRulePreview$ = [
|
|
1001
1031
|
9,
|
|
1002
1032
|
n0,
|
|
1003
1033
|
_LARP,
|
|
1004
1034
|
0,
|
|
1005
|
-
() => ListAutomationRulePreviewRequest
|
|
1006
|
-
() => ListAutomationRulePreviewResponse
|
|
1035
|
+
() => ListAutomationRulePreviewRequest$,
|
|
1036
|
+
() => ListAutomationRulePreviewResponse$,
|
|
1007
1037
|
];
|
|
1008
|
-
var ListAutomationRulePreviewSummaries = [
|
|
1038
|
+
var ListAutomationRulePreviewSummaries$ = [
|
|
1009
1039
|
9,
|
|
1010
1040
|
n0,
|
|
1011
1041
|
_LARPS,
|
|
1012
1042
|
0,
|
|
1013
|
-
() => ListAutomationRulePreviewSummariesRequest
|
|
1014
|
-
() => ListAutomationRulePreviewSummariesResponse
|
|
1043
|
+
() => ListAutomationRulePreviewSummariesRequest$,
|
|
1044
|
+
() => ListAutomationRulePreviewSummariesResponse$,
|
|
1015
1045
|
];
|
|
1016
|
-
var ListAutomationRules = [
|
|
1046
|
+
var ListAutomationRules$ = [
|
|
1017
1047
|
9,
|
|
1018
1048
|
n0,
|
|
1019
1049
|
_LARis,
|
|
1020
1050
|
0,
|
|
1021
|
-
() => ListAutomationRulesRequest
|
|
1022
|
-
() => ListAutomationRulesResponse
|
|
1051
|
+
() => ListAutomationRulesRequest$,
|
|
1052
|
+
() => ListAutomationRulesResponse$,
|
|
1023
1053
|
];
|
|
1024
|
-
var ListRecommendedActions = [
|
|
1054
|
+
var ListRecommendedActions$ = [
|
|
1025
1055
|
9,
|
|
1026
1056
|
n0,
|
|
1027
1057
|
_LRA,
|
|
1028
1058
|
0,
|
|
1029
|
-
() => ListRecommendedActionsRequest
|
|
1030
|
-
() => ListRecommendedActionsResponse
|
|
1059
|
+
() => ListRecommendedActionsRequest$,
|
|
1060
|
+
() => ListRecommendedActionsResponse$,
|
|
1031
1061
|
];
|
|
1032
|
-
var ListRecommendedActionSummaries = [
|
|
1062
|
+
var ListRecommendedActionSummaries$ = [
|
|
1033
1063
|
9,
|
|
1034
1064
|
n0,
|
|
1035
1065
|
_LRAS,
|
|
1036
1066
|
0,
|
|
1037
|
-
() => ListRecommendedActionSummariesRequest
|
|
1038
|
-
() => ListRecommendedActionSummariesResponse
|
|
1067
|
+
() => ListRecommendedActionSummariesRequest$,
|
|
1068
|
+
() => ListRecommendedActionSummariesResponse$,
|
|
1039
1069
|
];
|
|
1040
|
-
var ListTagsForResource = [
|
|
1070
|
+
var ListTagsForResource$ = [
|
|
1041
1071
|
9,
|
|
1042
1072
|
n0,
|
|
1043
1073
|
_LTFR,
|
|
1044
1074
|
0,
|
|
1045
|
-
() => ListTagsForResourceRequest
|
|
1046
|
-
() => ListTagsForResourceResponse
|
|
1075
|
+
() => ListTagsForResourceRequest$,
|
|
1076
|
+
() => ListTagsForResourceResponse$,
|
|
1047
1077
|
];
|
|
1048
|
-
var RollbackAutomationEvent = [
|
|
1078
|
+
var RollbackAutomationEvent$ = [
|
|
1049
1079
|
9,
|
|
1050
1080
|
n0,
|
|
1051
1081
|
_RAE,
|
|
1052
1082
|
2,
|
|
1053
|
-
() => RollbackAutomationEventRequest
|
|
1054
|
-
() => RollbackAutomationEventResponse
|
|
1083
|
+
() => RollbackAutomationEventRequest$,
|
|
1084
|
+
() => RollbackAutomationEventResponse$,
|
|
1055
1085
|
];
|
|
1056
|
-
var StartAutomationEvent = [
|
|
1086
|
+
var StartAutomationEvent$ = [
|
|
1057
1087
|
9,
|
|
1058
1088
|
n0,
|
|
1059
1089
|
_SAE,
|
|
1060
1090
|
2,
|
|
1061
|
-
() => StartAutomationEventRequest
|
|
1062
|
-
() => StartAutomationEventResponse
|
|
1091
|
+
() => StartAutomationEventRequest$,
|
|
1092
|
+
() => StartAutomationEventResponse$,
|
|
1063
1093
|
];
|
|
1064
|
-
var TagResource = [9, n0, _TR, 2, () => TagResourceRequest
|
|
1065
|
-
var UntagResource = [
|
|
1094
|
+
var TagResource$ = [9, n0, _TR, 2, () => TagResourceRequest$, () => TagResourceResponse$];
|
|
1095
|
+
var UntagResource$ = [
|
|
1066
1096
|
9,
|
|
1067
1097
|
n0,
|
|
1068
1098
|
_UR,
|
|
1069
1099
|
2,
|
|
1070
|
-
() => UntagResourceRequest
|
|
1071
|
-
() => UntagResourceResponse
|
|
1100
|
+
() => UntagResourceRequest$,
|
|
1101
|
+
() => UntagResourceResponse$,
|
|
1072
1102
|
];
|
|
1073
|
-
var UpdateAutomationRule = [
|
|
1103
|
+
var UpdateAutomationRule$ = [
|
|
1074
1104
|
9,
|
|
1075
1105
|
n0,
|
|
1076
1106
|
_UAR,
|
|
1077
1107
|
2,
|
|
1078
|
-
() => UpdateAutomationRuleRequest
|
|
1079
|
-
() => UpdateAutomationRuleResponse
|
|
1108
|
+
() => UpdateAutomationRuleRequest$,
|
|
1109
|
+
() => UpdateAutomationRuleResponse$,
|
|
1080
1110
|
];
|
|
1081
|
-
var UpdateEnrollmentConfiguration = [
|
|
1111
|
+
var UpdateEnrollmentConfiguration$ = [
|
|
1082
1112
|
9,
|
|
1083
1113
|
n0,
|
|
1084
1114
|
_UEC,
|
|
1085
1115
|
2,
|
|
1086
|
-
() => UpdateEnrollmentConfigurationRequest
|
|
1087
|
-
() => UpdateEnrollmentConfigurationResponse
|
|
1116
|
+
() => UpdateEnrollmentConfigurationRequest$,
|
|
1117
|
+
() => UpdateEnrollmentConfigurationResponse$,
|
|
1088
1118
|
];
|
|
1089
1119
|
|
|
1090
1120
|
class AssociateAccountsCommand extends smithyClient.Command
|
|
@@ -1095,7 +1125,7 @@ class AssociateAccountsCommand extends smithyClient.Command
|
|
|
1095
1125
|
})
|
|
1096
1126
|
.s("ComputeOptimizerAutomationService", "AssociateAccounts", {})
|
|
1097
1127
|
.n("ComputeOptimizerAutomationClient", "AssociateAccountsCommand")
|
|
1098
|
-
.sc(AssociateAccounts)
|
|
1128
|
+
.sc(AssociateAccounts$)
|
|
1099
1129
|
.build() {
|
|
1100
1130
|
}
|
|
1101
1131
|
|
|
@@ -1107,7 +1137,7 @@ class CreateAutomationRuleCommand extends smithyClient.Command
|
|
|
1107
1137
|
})
|
|
1108
1138
|
.s("ComputeOptimizerAutomationService", "CreateAutomationRule", {})
|
|
1109
1139
|
.n("ComputeOptimizerAutomationClient", "CreateAutomationRuleCommand")
|
|
1110
|
-
.sc(CreateAutomationRule)
|
|
1140
|
+
.sc(CreateAutomationRule$)
|
|
1111
1141
|
.build() {
|
|
1112
1142
|
}
|
|
1113
1143
|
|
|
@@ -1119,7 +1149,7 @@ class DeleteAutomationRuleCommand extends smithyClient.Command
|
|
|
1119
1149
|
})
|
|
1120
1150
|
.s("ComputeOptimizerAutomationService", "DeleteAutomationRule", {})
|
|
1121
1151
|
.n("ComputeOptimizerAutomationClient", "DeleteAutomationRuleCommand")
|
|
1122
|
-
.sc(DeleteAutomationRule)
|
|
1152
|
+
.sc(DeleteAutomationRule$)
|
|
1123
1153
|
.build() {
|
|
1124
1154
|
}
|
|
1125
1155
|
|
|
@@ -1131,7 +1161,7 @@ class DisassociateAccountsCommand extends smithyClient.Command
|
|
|
1131
1161
|
})
|
|
1132
1162
|
.s("ComputeOptimizerAutomationService", "DisassociateAccounts", {})
|
|
1133
1163
|
.n("ComputeOptimizerAutomationClient", "DisassociateAccountsCommand")
|
|
1134
|
-
.sc(DisassociateAccounts)
|
|
1164
|
+
.sc(DisassociateAccounts$)
|
|
1135
1165
|
.build() {
|
|
1136
1166
|
}
|
|
1137
1167
|
|
|
@@ -1143,7 +1173,7 @@ class GetAutomationEventCommand extends smithyClient.Command
|
|
|
1143
1173
|
})
|
|
1144
1174
|
.s("ComputeOptimizerAutomationService", "GetAutomationEvent", {})
|
|
1145
1175
|
.n("ComputeOptimizerAutomationClient", "GetAutomationEventCommand")
|
|
1146
|
-
.sc(GetAutomationEvent)
|
|
1176
|
+
.sc(GetAutomationEvent$)
|
|
1147
1177
|
.build() {
|
|
1148
1178
|
}
|
|
1149
1179
|
|
|
@@ -1155,7 +1185,7 @@ class GetAutomationRuleCommand extends smithyClient.Command
|
|
|
1155
1185
|
})
|
|
1156
1186
|
.s("ComputeOptimizerAutomationService", "GetAutomationRule", {})
|
|
1157
1187
|
.n("ComputeOptimizerAutomationClient", "GetAutomationRuleCommand")
|
|
1158
|
-
.sc(GetAutomationRule)
|
|
1188
|
+
.sc(GetAutomationRule$)
|
|
1159
1189
|
.build() {
|
|
1160
1190
|
}
|
|
1161
1191
|
|
|
@@ -1167,7 +1197,7 @@ class GetEnrollmentConfigurationCommand extends smithyClient.Command
|
|
|
1167
1197
|
})
|
|
1168
1198
|
.s("ComputeOptimizerAutomationService", "GetEnrollmentConfiguration", {})
|
|
1169
1199
|
.n("ComputeOptimizerAutomationClient", "GetEnrollmentConfigurationCommand")
|
|
1170
|
-
.sc(GetEnrollmentConfiguration)
|
|
1200
|
+
.sc(GetEnrollmentConfiguration$)
|
|
1171
1201
|
.build() {
|
|
1172
1202
|
}
|
|
1173
1203
|
|
|
@@ -1179,7 +1209,7 @@ class ListAccountsCommand extends smithyClient.Command
|
|
|
1179
1209
|
})
|
|
1180
1210
|
.s("ComputeOptimizerAutomationService", "ListAccounts", {})
|
|
1181
1211
|
.n("ComputeOptimizerAutomationClient", "ListAccountsCommand")
|
|
1182
|
-
.sc(ListAccounts)
|
|
1212
|
+
.sc(ListAccounts$)
|
|
1183
1213
|
.build() {
|
|
1184
1214
|
}
|
|
1185
1215
|
|
|
@@ -1191,7 +1221,7 @@ class ListAutomationEventsCommand extends smithyClient.Command
|
|
|
1191
1221
|
})
|
|
1192
1222
|
.s("ComputeOptimizerAutomationService", "ListAutomationEvents", {})
|
|
1193
1223
|
.n("ComputeOptimizerAutomationClient", "ListAutomationEventsCommand")
|
|
1194
|
-
.sc(ListAutomationEvents)
|
|
1224
|
+
.sc(ListAutomationEvents$)
|
|
1195
1225
|
.build() {
|
|
1196
1226
|
}
|
|
1197
1227
|
|
|
@@ -1203,7 +1233,7 @@ class ListAutomationEventStepsCommand extends smithyClient.Command
|
|
|
1203
1233
|
})
|
|
1204
1234
|
.s("ComputeOptimizerAutomationService", "ListAutomationEventSteps", {})
|
|
1205
1235
|
.n("ComputeOptimizerAutomationClient", "ListAutomationEventStepsCommand")
|
|
1206
|
-
.sc(ListAutomationEventSteps)
|
|
1236
|
+
.sc(ListAutomationEventSteps$)
|
|
1207
1237
|
.build() {
|
|
1208
1238
|
}
|
|
1209
1239
|
|
|
@@ -1215,7 +1245,7 @@ class ListAutomationEventSummariesCommand extends smithyClient.Command
|
|
|
1215
1245
|
})
|
|
1216
1246
|
.s("ComputeOptimizerAutomationService", "ListAutomationEventSummaries", {})
|
|
1217
1247
|
.n("ComputeOptimizerAutomationClient", "ListAutomationEventSummariesCommand")
|
|
1218
|
-
.sc(ListAutomationEventSummaries)
|
|
1248
|
+
.sc(ListAutomationEventSummaries$)
|
|
1219
1249
|
.build() {
|
|
1220
1250
|
}
|
|
1221
1251
|
|
|
@@ -1227,7 +1257,7 @@ class ListAutomationRulePreviewCommand extends smithyClient.Command
|
|
|
1227
1257
|
})
|
|
1228
1258
|
.s("ComputeOptimizerAutomationService", "ListAutomationRulePreview", {})
|
|
1229
1259
|
.n("ComputeOptimizerAutomationClient", "ListAutomationRulePreviewCommand")
|
|
1230
|
-
.sc(ListAutomationRulePreview)
|
|
1260
|
+
.sc(ListAutomationRulePreview$)
|
|
1231
1261
|
.build() {
|
|
1232
1262
|
}
|
|
1233
1263
|
|
|
@@ -1239,7 +1269,7 @@ class ListAutomationRulePreviewSummariesCommand extends smithyClient.Command
|
|
|
1239
1269
|
})
|
|
1240
1270
|
.s("ComputeOptimizerAutomationService", "ListAutomationRulePreviewSummaries", {})
|
|
1241
1271
|
.n("ComputeOptimizerAutomationClient", "ListAutomationRulePreviewSummariesCommand")
|
|
1242
|
-
.sc(ListAutomationRulePreviewSummaries)
|
|
1272
|
+
.sc(ListAutomationRulePreviewSummaries$)
|
|
1243
1273
|
.build() {
|
|
1244
1274
|
}
|
|
1245
1275
|
|
|
@@ -1251,7 +1281,7 @@ class ListAutomationRulesCommand extends smithyClient.Command
|
|
|
1251
1281
|
})
|
|
1252
1282
|
.s("ComputeOptimizerAutomationService", "ListAutomationRules", {})
|
|
1253
1283
|
.n("ComputeOptimizerAutomationClient", "ListAutomationRulesCommand")
|
|
1254
|
-
.sc(ListAutomationRules)
|
|
1284
|
+
.sc(ListAutomationRules$)
|
|
1255
1285
|
.build() {
|
|
1256
1286
|
}
|
|
1257
1287
|
|
|
@@ -1263,7 +1293,7 @@ class ListRecommendedActionsCommand extends smithyClient.Command
|
|
|
1263
1293
|
})
|
|
1264
1294
|
.s("ComputeOptimizerAutomationService", "ListRecommendedActions", {})
|
|
1265
1295
|
.n("ComputeOptimizerAutomationClient", "ListRecommendedActionsCommand")
|
|
1266
|
-
.sc(ListRecommendedActions)
|
|
1296
|
+
.sc(ListRecommendedActions$)
|
|
1267
1297
|
.build() {
|
|
1268
1298
|
}
|
|
1269
1299
|
|
|
@@ -1275,7 +1305,7 @@ class ListRecommendedActionSummariesCommand extends smithyClient.Command
|
|
|
1275
1305
|
})
|
|
1276
1306
|
.s("ComputeOptimizerAutomationService", "ListRecommendedActionSummaries", {})
|
|
1277
1307
|
.n("ComputeOptimizerAutomationClient", "ListRecommendedActionSummariesCommand")
|
|
1278
|
-
.sc(ListRecommendedActionSummaries)
|
|
1308
|
+
.sc(ListRecommendedActionSummaries$)
|
|
1279
1309
|
.build() {
|
|
1280
1310
|
}
|
|
1281
1311
|
|
|
@@ -1287,7 +1317,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1287
1317
|
})
|
|
1288
1318
|
.s("ComputeOptimizerAutomationService", "ListTagsForResource", {})
|
|
1289
1319
|
.n("ComputeOptimizerAutomationClient", "ListTagsForResourceCommand")
|
|
1290
|
-
.sc(ListTagsForResource)
|
|
1320
|
+
.sc(ListTagsForResource$)
|
|
1291
1321
|
.build() {
|
|
1292
1322
|
}
|
|
1293
1323
|
|
|
@@ -1299,7 +1329,7 @@ class RollbackAutomationEventCommand extends smithyClient.Command
|
|
|
1299
1329
|
})
|
|
1300
1330
|
.s("ComputeOptimizerAutomationService", "RollbackAutomationEvent", {})
|
|
1301
1331
|
.n("ComputeOptimizerAutomationClient", "RollbackAutomationEventCommand")
|
|
1302
|
-
.sc(RollbackAutomationEvent)
|
|
1332
|
+
.sc(RollbackAutomationEvent$)
|
|
1303
1333
|
.build() {
|
|
1304
1334
|
}
|
|
1305
1335
|
|
|
@@ -1311,7 +1341,7 @@ class StartAutomationEventCommand extends smithyClient.Command
|
|
|
1311
1341
|
})
|
|
1312
1342
|
.s("ComputeOptimizerAutomationService", "StartAutomationEvent", {})
|
|
1313
1343
|
.n("ComputeOptimizerAutomationClient", "StartAutomationEventCommand")
|
|
1314
|
-
.sc(StartAutomationEvent)
|
|
1344
|
+
.sc(StartAutomationEvent$)
|
|
1315
1345
|
.build() {
|
|
1316
1346
|
}
|
|
1317
1347
|
|
|
@@ -1323,7 +1353,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1323
1353
|
})
|
|
1324
1354
|
.s("ComputeOptimizerAutomationService", "TagResource", {})
|
|
1325
1355
|
.n("ComputeOptimizerAutomationClient", "TagResourceCommand")
|
|
1326
|
-
.sc(TagResource)
|
|
1356
|
+
.sc(TagResource$)
|
|
1327
1357
|
.build() {
|
|
1328
1358
|
}
|
|
1329
1359
|
|
|
@@ -1335,7 +1365,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1335
1365
|
})
|
|
1336
1366
|
.s("ComputeOptimizerAutomationService", "UntagResource", {})
|
|
1337
1367
|
.n("ComputeOptimizerAutomationClient", "UntagResourceCommand")
|
|
1338
|
-
.sc(UntagResource)
|
|
1368
|
+
.sc(UntagResource$)
|
|
1339
1369
|
.build() {
|
|
1340
1370
|
}
|
|
1341
1371
|
|
|
@@ -1347,7 +1377,7 @@ class UpdateAutomationRuleCommand extends smithyClient.Command
|
|
|
1347
1377
|
})
|
|
1348
1378
|
.s("ComputeOptimizerAutomationService", "UpdateAutomationRule", {})
|
|
1349
1379
|
.n("ComputeOptimizerAutomationClient", "UpdateAutomationRuleCommand")
|
|
1350
|
-
.sc(UpdateAutomationRule)
|
|
1380
|
+
.sc(UpdateAutomationRule$)
|
|
1351
1381
|
.build() {
|
|
1352
1382
|
}
|
|
1353
1383
|
|
|
@@ -1359,7 +1389,7 @@ class UpdateEnrollmentConfigurationCommand extends smithyClient.Command
|
|
|
1359
1389
|
})
|
|
1360
1390
|
.s("ComputeOptimizerAutomationService", "UpdateEnrollmentConfiguration", {})
|
|
1361
1391
|
.n("ComputeOptimizerAutomationClient", "UpdateEnrollmentConfigurationCommand")
|
|
1362
|
-
.sc(UpdateEnrollmentConfiguration)
|
|
1392
|
+
.sc(UpdateEnrollmentConfiguration$)
|
|
1363
1393
|
.build() {
|
|
1364
1394
|
}
|
|
1365
1395
|
|
|
@@ -1521,61 +1551,173 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1521
1551
|
enumerable: true,
|
|
1522
1552
|
get: function () { return smithyClient.Client; }
|
|
1523
1553
|
});
|
|
1524
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1554
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1555
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1556
|
+
exports.AccountInfo$ = AccountInfo$;
|
|
1557
|
+
exports.AssociateAccounts$ = AssociateAccounts$;
|
|
1525
1558
|
exports.AssociateAccountsCommand = AssociateAccountsCommand;
|
|
1559
|
+
exports.AssociateAccountsRequest$ = AssociateAccountsRequest$;
|
|
1560
|
+
exports.AssociateAccountsResponse$ = AssociateAccountsResponse$;
|
|
1561
|
+
exports.AutomationEvent$ = AutomationEvent$;
|
|
1562
|
+
exports.AutomationEventFilter$ = AutomationEventFilter$;
|
|
1526
1563
|
exports.AutomationEventFilterName = AutomationEventFilterName;
|
|
1564
|
+
exports.AutomationEventStep$ = AutomationEventStep$;
|
|
1565
|
+
exports.AutomationEventSummary$ = AutomationEventSummary$;
|
|
1566
|
+
exports.AutomationRule$ = AutomationRule$;
|
|
1527
1567
|
exports.AutomationRuleFilterName = AutomationRuleFilterName;
|
|
1528
1568
|
exports.ComparisonOperator = ComparisonOperator;
|
|
1529
1569
|
exports.ComputeOptimizerAutomation = ComputeOptimizerAutomation;
|
|
1530
1570
|
exports.ComputeOptimizerAutomationClient = ComputeOptimizerAutomationClient;
|
|
1531
|
-
exports.ComputeOptimizerAutomationServiceException = ComputeOptimizerAutomationServiceException
|
|
1571
|
+
exports.ComputeOptimizerAutomationServiceException = ComputeOptimizerAutomationServiceException;
|
|
1572
|
+
exports.ComputeOptimizerAutomationServiceException$ = ComputeOptimizerAutomationServiceException$;
|
|
1573
|
+
exports.CreateAutomationRule$ = CreateAutomationRule$;
|
|
1532
1574
|
exports.CreateAutomationRuleCommand = CreateAutomationRuleCommand;
|
|
1575
|
+
exports.CreateAutomationRuleRequest$ = CreateAutomationRuleRequest$;
|
|
1576
|
+
exports.CreateAutomationRuleResponse$ = CreateAutomationRuleResponse$;
|
|
1577
|
+
exports.Criteria$ = Criteria$;
|
|
1578
|
+
exports.DeleteAutomationRule$ = DeleteAutomationRule$;
|
|
1533
1579
|
exports.DeleteAutomationRuleCommand = DeleteAutomationRuleCommand;
|
|
1580
|
+
exports.DeleteAutomationRuleRequest$ = DeleteAutomationRuleRequest$;
|
|
1581
|
+
exports.DeleteAutomationRuleResponse$ = DeleteAutomationRuleResponse$;
|
|
1582
|
+
exports.DisassociateAccounts$ = DisassociateAccounts$;
|
|
1534
1583
|
exports.DisassociateAccountsCommand = DisassociateAccountsCommand;
|
|
1584
|
+
exports.DisassociateAccountsRequest$ = DisassociateAccountsRequest$;
|
|
1585
|
+
exports.DisassociateAccountsResponse$ = DisassociateAccountsResponse$;
|
|
1586
|
+
exports.DoubleCriteriaCondition$ = DoubleCriteriaCondition$;
|
|
1587
|
+
exports.EbsVolume$ = EbsVolume$;
|
|
1588
|
+
exports.EbsVolumeConfiguration$ = EbsVolumeConfiguration$;
|
|
1535
1589
|
exports.EnrollmentStatus = EnrollmentStatus;
|
|
1590
|
+
exports.EstimatedMonthlySavings$ = EstimatedMonthlySavings$;
|
|
1536
1591
|
exports.EventStatus = EventStatus;
|
|
1537
1592
|
exports.EventType = EventType;
|
|
1538
|
-
exports.
|
|
1593
|
+
exports.Filter$ = Filter$;
|
|
1594
|
+
exports.ForbiddenException = ForbiddenException;
|
|
1595
|
+
exports.ForbiddenException$ = ForbiddenException$;
|
|
1596
|
+
exports.GetAutomationEvent$ = GetAutomationEvent$;
|
|
1539
1597
|
exports.GetAutomationEventCommand = GetAutomationEventCommand;
|
|
1598
|
+
exports.GetAutomationEventRequest$ = GetAutomationEventRequest$;
|
|
1599
|
+
exports.GetAutomationEventResponse$ = GetAutomationEventResponse$;
|
|
1600
|
+
exports.GetAutomationRule$ = GetAutomationRule$;
|
|
1540
1601
|
exports.GetAutomationRuleCommand = GetAutomationRuleCommand;
|
|
1602
|
+
exports.GetAutomationRuleRequest$ = GetAutomationRuleRequest$;
|
|
1603
|
+
exports.GetAutomationRuleResponse$ = GetAutomationRuleResponse$;
|
|
1604
|
+
exports.GetEnrollmentConfiguration$ = GetEnrollmentConfiguration$;
|
|
1541
1605
|
exports.GetEnrollmentConfigurationCommand = GetEnrollmentConfigurationCommand;
|
|
1542
|
-
exports.
|
|
1543
|
-
exports.
|
|
1544
|
-
exports.
|
|
1545
|
-
exports.
|
|
1606
|
+
exports.GetEnrollmentConfigurationRequest$ = GetEnrollmentConfigurationRequest$;
|
|
1607
|
+
exports.GetEnrollmentConfigurationResponse$ = GetEnrollmentConfigurationResponse$;
|
|
1608
|
+
exports.IdempotencyTokenInUseException = IdempotencyTokenInUseException;
|
|
1609
|
+
exports.IdempotencyTokenInUseException$ = IdempotencyTokenInUseException$;
|
|
1610
|
+
exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
|
|
1611
|
+
exports.IdempotentParameterMismatchException$ = IdempotentParameterMismatchException$;
|
|
1612
|
+
exports.IntegerCriteriaCondition$ = IntegerCriteriaCondition$;
|
|
1613
|
+
exports.InternalServerException = InternalServerException;
|
|
1614
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1615
|
+
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
1616
|
+
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
1617
|
+
exports.ListAccounts$ = ListAccounts$;
|
|
1546
1618
|
exports.ListAccountsCommand = ListAccountsCommand;
|
|
1619
|
+
exports.ListAccountsRequest$ = ListAccountsRequest$;
|
|
1620
|
+
exports.ListAccountsResponse$ = ListAccountsResponse$;
|
|
1621
|
+
exports.ListAutomationEventSteps$ = ListAutomationEventSteps$;
|
|
1547
1622
|
exports.ListAutomationEventStepsCommand = ListAutomationEventStepsCommand;
|
|
1623
|
+
exports.ListAutomationEventStepsRequest$ = ListAutomationEventStepsRequest$;
|
|
1624
|
+
exports.ListAutomationEventStepsResponse$ = ListAutomationEventStepsResponse$;
|
|
1625
|
+
exports.ListAutomationEventSummaries$ = ListAutomationEventSummaries$;
|
|
1548
1626
|
exports.ListAutomationEventSummariesCommand = ListAutomationEventSummariesCommand;
|
|
1627
|
+
exports.ListAutomationEventSummariesRequest$ = ListAutomationEventSummariesRequest$;
|
|
1628
|
+
exports.ListAutomationEventSummariesResponse$ = ListAutomationEventSummariesResponse$;
|
|
1629
|
+
exports.ListAutomationEvents$ = ListAutomationEvents$;
|
|
1549
1630
|
exports.ListAutomationEventsCommand = ListAutomationEventsCommand;
|
|
1631
|
+
exports.ListAutomationEventsRequest$ = ListAutomationEventsRequest$;
|
|
1632
|
+
exports.ListAutomationEventsResponse$ = ListAutomationEventsResponse$;
|
|
1633
|
+
exports.ListAutomationRulePreview$ = ListAutomationRulePreview$;
|
|
1550
1634
|
exports.ListAutomationRulePreviewCommand = ListAutomationRulePreviewCommand;
|
|
1635
|
+
exports.ListAutomationRulePreviewRequest$ = ListAutomationRulePreviewRequest$;
|
|
1636
|
+
exports.ListAutomationRulePreviewResponse$ = ListAutomationRulePreviewResponse$;
|
|
1637
|
+
exports.ListAutomationRulePreviewSummaries$ = ListAutomationRulePreviewSummaries$;
|
|
1551
1638
|
exports.ListAutomationRulePreviewSummariesCommand = ListAutomationRulePreviewSummariesCommand;
|
|
1639
|
+
exports.ListAutomationRulePreviewSummariesRequest$ = ListAutomationRulePreviewSummariesRequest$;
|
|
1640
|
+
exports.ListAutomationRulePreviewSummariesResponse$ = ListAutomationRulePreviewSummariesResponse$;
|
|
1641
|
+
exports.ListAutomationRules$ = ListAutomationRules$;
|
|
1552
1642
|
exports.ListAutomationRulesCommand = ListAutomationRulesCommand;
|
|
1643
|
+
exports.ListAutomationRulesRequest$ = ListAutomationRulesRequest$;
|
|
1644
|
+
exports.ListAutomationRulesResponse$ = ListAutomationRulesResponse$;
|
|
1645
|
+
exports.ListRecommendedActionSummaries$ = ListRecommendedActionSummaries$;
|
|
1553
1646
|
exports.ListRecommendedActionSummariesCommand = ListRecommendedActionSummariesCommand;
|
|
1647
|
+
exports.ListRecommendedActionSummariesRequest$ = ListRecommendedActionSummariesRequest$;
|
|
1648
|
+
exports.ListRecommendedActionSummariesResponse$ = ListRecommendedActionSummariesResponse$;
|
|
1649
|
+
exports.ListRecommendedActions$ = ListRecommendedActions$;
|
|
1554
1650
|
exports.ListRecommendedActionsCommand = ListRecommendedActionsCommand;
|
|
1651
|
+
exports.ListRecommendedActionsRequest$ = ListRecommendedActionsRequest$;
|
|
1652
|
+
exports.ListRecommendedActionsResponse$ = ListRecommendedActionsResponse$;
|
|
1653
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1555
1654
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1556
|
-
exports.
|
|
1557
|
-
exports.
|
|
1655
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1656
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1657
|
+
exports.NotManagementAccountException = NotManagementAccountException;
|
|
1658
|
+
exports.NotManagementAccountException$ = NotManagementAccountException$;
|
|
1659
|
+
exports.OptInRequiredException = OptInRequiredException;
|
|
1660
|
+
exports.OptInRequiredException$ = OptInRequiredException$;
|
|
1661
|
+
exports.OrganizationConfiguration$ = OrganizationConfiguration$;
|
|
1558
1662
|
exports.OrganizationRuleMode = OrganizationRuleMode;
|
|
1663
|
+
exports.OrganizationScope$ = OrganizationScope$;
|
|
1664
|
+
exports.PreviewResult$ = PreviewResult$;
|
|
1665
|
+
exports.PreviewResultSummary$ = PreviewResultSummary$;
|
|
1666
|
+
exports.RecommendedAction$ = RecommendedAction$;
|
|
1667
|
+
exports.RecommendedActionFilter$ = RecommendedActionFilter$;
|
|
1559
1668
|
exports.RecommendedActionFilterName = RecommendedActionFilterName;
|
|
1669
|
+
exports.RecommendedActionSummary$ = RecommendedActionSummary$;
|
|
1670
|
+
exports.RecommendedActionTotal$ = RecommendedActionTotal$;
|
|
1560
1671
|
exports.RecommendedActionType = RecommendedActionType;
|
|
1561
|
-
exports.
|
|
1672
|
+
exports.ResourceDetails$ = ResourceDetails$;
|
|
1673
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1674
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1675
|
+
exports.ResourceTagsCriteriaCondition$ = ResourceTagsCriteriaCondition$;
|
|
1562
1676
|
exports.ResourceType = ResourceType;
|
|
1677
|
+
exports.RollbackAutomationEvent$ = RollbackAutomationEvent$;
|
|
1563
1678
|
exports.RollbackAutomationEventCommand = RollbackAutomationEventCommand;
|
|
1679
|
+
exports.RollbackAutomationEventRequest$ = RollbackAutomationEventRequest$;
|
|
1680
|
+
exports.RollbackAutomationEventResponse$ = RollbackAutomationEventResponse$;
|
|
1564
1681
|
exports.RuleApplyOrder = RuleApplyOrder;
|
|
1682
|
+
exports.RulePreviewTotal$ = RulePreviewTotal$;
|
|
1565
1683
|
exports.RuleStatus = RuleStatus;
|
|
1566
1684
|
exports.RuleType = RuleType;
|
|
1567
1685
|
exports.SavingsEstimationMode = SavingsEstimationMode;
|
|
1568
|
-
exports.
|
|
1569
|
-
exports.
|
|
1686
|
+
exports.Schedule$ = Schedule$;
|
|
1687
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1688
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1689
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
1690
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
1691
|
+
exports.StartAutomationEvent$ = StartAutomationEvent$;
|
|
1570
1692
|
exports.StartAutomationEventCommand = StartAutomationEventCommand;
|
|
1693
|
+
exports.StartAutomationEventRequest$ = StartAutomationEventRequest$;
|
|
1694
|
+
exports.StartAutomationEventResponse$ = StartAutomationEventResponse$;
|
|
1571
1695
|
exports.StepStatus = StepStatus;
|
|
1572
1696
|
exports.StepType = StepType;
|
|
1697
|
+
exports.StringCriteriaCondition$ = StringCriteriaCondition$;
|
|
1698
|
+
exports.SummaryDimension$ = SummaryDimension$;
|
|
1573
1699
|
exports.SummaryDimensionKey = SummaryDimensionKey;
|
|
1700
|
+
exports.SummaryTotals$ = SummaryTotals$;
|
|
1701
|
+
exports.Tag$ = Tag$;
|
|
1702
|
+
exports.TagResource$ = TagResource$;
|
|
1574
1703
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1575
|
-
exports.
|
|
1704
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1705
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1706
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1707
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1708
|
+
exports.TimePeriod$ = TimePeriod$;
|
|
1709
|
+
exports.UntagResource$ = UntagResource$;
|
|
1576
1710
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1711
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1712
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1713
|
+
exports.UpdateAutomationRule$ = UpdateAutomationRule$;
|
|
1577
1714
|
exports.UpdateAutomationRuleCommand = UpdateAutomationRuleCommand;
|
|
1715
|
+
exports.UpdateAutomationRuleRequest$ = UpdateAutomationRuleRequest$;
|
|
1716
|
+
exports.UpdateAutomationRuleResponse$ = UpdateAutomationRuleResponse$;
|
|
1717
|
+
exports.UpdateEnrollmentConfiguration$ = UpdateEnrollmentConfiguration$;
|
|
1578
1718
|
exports.UpdateEnrollmentConfigurationCommand = UpdateEnrollmentConfigurationCommand;
|
|
1719
|
+
exports.UpdateEnrollmentConfigurationRequest$ = UpdateEnrollmentConfigurationRequest$;
|
|
1720
|
+
exports.UpdateEnrollmentConfigurationResponse$ = UpdateEnrollmentConfigurationResponse$;
|
|
1579
1721
|
exports.paginateListAccounts = paginateListAccounts;
|
|
1580
1722
|
exports.paginateListAutomationEventSteps = paginateListAutomationEventSteps;
|
|
1581
1723
|
exports.paginateListAutomationEventSummaries = paginateListAutomationEventSummaries;
|