@aws-sdk/client-compute-optimizer-automation 3.938.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.
Files changed (173) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +392 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1668 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +41 -0
  11. package/dist-es/ComputeOptimizerAutomation.js +53 -0
  12. package/dist-es/ComputeOptimizerAutomationClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/AssociateAccountsCommand.js +16 -0
  16. package/dist-es/commands/CreateAutomationRuleCommand.js +16 -0
  17. package/dist-es/commands/DeleteAutomationRuleCommand.js +16 -0
  18. package/dist-es/commands/DisassociateAccountsCommand.js +16 -0
  19. package/dist-es/commands/GetAutomationEventCommand.js +16 -0
  20. package/dist-es/commands/GetAutomationRuleCommand.js +16 -0
  21. package/dist-es/commands/GetEnrollmentConfigurationCommand.js +16 -0
  22. package/dist-es/commands/ListAccountsCommand.js +16 -0
  23. package/dist-es/commands/ListAutomationEventStepsCommand.js +16 -0
  24. package/dist-es/commands/ListAutomationEventSummariesCommand.js +16 -0
  25. package/dist-es/commands/ListAutomationEventsCommand.js +16 -0
  26. package/dist-es/commands/ListAutomationRulePreviewCommand.js +16 -0
  27. package/dist-es/commands/ListAutomationRulePreviewSummariesCommand.js +16 -0
  28. package/dist-es/commands/ListAutomationRulesCommand.js +16 -0
  29. package/dist-es/commands/ListRecommendedActionSummariesCommand.js +16 -0
  30. package/dist-es/commands/ListRecommendedActionsCommand.js +16 -0
  31. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  32. package/dist-es/commands/RollbackAutomationEventCommand.js +16 -0
  33. package/dist-es/commands/StartAutomationEventCommand.js +16 -0
  34. package/dist-es/commands/TagResourceCommand.js +16 -0
  35. package/dist-es/commands/UntagResourceCommand.js +16 -0
  36. package/dist-es/commands/UpdateAutomationRuleCommand.js +16 -0
  37. package/dist-es/commands/UpdateEnrollmentConfigurationCommand.js +16 -0
  38. package/dist-es/commands/index.js +23 -0
  39. package/dist-es/endpoint/EndpointParameters.js +13 -0
  40. package/dist-es/endpoint/endpointResolver.js +14 -0
  41. package/dist-es/endpoint/ruleset.js +4 -0
  42. package/dist-es/extensionConfiguration.js +1 -0
  43. package/dist-es/index.js +7 -0
  44. package/dist-es/models/ComputeOptimizerAutomationServiceException.js +8 -0
  45. package/dist-es/models/enums.js +74 -0
  46. package/dist-es/models/errors.js +145 -0
  47. package/dist-es/models/models_0.js +28 -0
  48. package/dist-es/pagination/Interfaces.js +1 -0
  49. package/dist-es/pagination/ListAccountsPaginator.js +4 -0
  50. package/dist-es/pagination/ListAutomationEventStepsPaginator.js +4 -0
  51. package/dist-es/pagination/ListAutomationEventSummariesPaginator.js +4 -0
  52. package/dist-es/pagination/ListAutomationEventsPaginator.js +4 -0
  53. package/dist-es/pagination/ListAutomationRulePreviewPaginator.js +4 -0
  54. package/dist-es/pagination/ListAutomationRulePreviewSummariesPaginator.js +4 -0
  55. package/dist-es/pagination/ListAutomationRulesPaginator.js +4 -0
  56. package/dist-es/pagination/ListRecommendedActionSummariesPaginator.js +4 -0
  57. package/dist-es/pagination/ListRecommendedActionsPaginator.js +4 -0
  58. package/dist-es/pagination/index.js +10 -0
  59. package/dist-es/runtimeConfig.browser.js +34 -0
  60. package/dist-es/runtimeConfig.js +51 -0
  61. package/dist-es/runtimeConfig.native.js +11 -0
  62. package/dist-es/runtimeConfig.shared.js +37 -0
  63. package/dist-es/runtimeExtensions.js +9 -0
  64. package/dist-es/schemas/schemas_0.js +950 -0
  65. package/dist-types/ComputeOptimizerAutomation.d.ts +178 -0
  66. package/dist-types/ComputeOptimizerAutomationClient.d.ts +219 -0
  67. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  68. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  69. package/dist-types/commands/AssociateAccountsCommand.d.ts +112 -0
  70. package/dist-types/commands/CreateAutomationRuleCommand.d.ts +294 -0
  71. package/dist-types/commands/DeleteAutomationRuleCommand.d.ts +104 -0
  72. package/dist-types/commands/DisassociateAccountsCommand.d.ts +112 -0
  73. package/dist-types/commands/GetAutomationEventCommand.d.ts +117 -0
  74. package/dist-types/commands/GetAutomationRuleCommand.d.ts +195 -0
  75. package/dist-types/commands/GetEnrollmentConfigurationCommand.d.ts +99 -0
  76. package/dist-types/commands/ListAccountsCommand.d.ts +108 -0
  77. package/dist-types/commands/ListAutomationEventStepsCommand.d.ts +117 -0
  78. package/dist-types/commands/ListAutomationEventSummariesCommand.d.ts +130 -0
  79. package/dist-types/commands/ListAutomationEventsCommand.d.ts +130 -0
  80. package/dist-types/commands/ListAutomationRulePreviewCommand.d.ts +219 -0
  81. package/dist-types/commands/ListAutomationRulePreviewSummariesCommand.d.ts +186 -0
  82. package/dist-types/commands/ListAutomationRulesCommand.d.ts +133 -0
  83. package/dist-types/commands/ListRecommendedActionSummariesCommand.d.ts +118 -0
  84. package/dist-types/commands/ListRecommendedActionsCommand.d.ts +151 -0
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +103 -0
  86. package/dist-types/commands/RollbackAutomationEventCommand.d.ts +106 -0
  87. package/dist-types/commands/StartAutomationEventCommand.d.ts +110 -0
  88. package/dist-types/commands/TagResourceCommand.d.ts +110 -0
  89. package/dist-types/commands/UntagResourceCommand.d.ts +107 -0
  90. package/dist-types/commands/UpdateAutomationRuleCommand.d.ts +281 -0
  91. package/dist-types/commands/UpdateEnrollmentConfigurationCommand.d.ts +110 -0
  92. package/dist-types/commands/index.d.ts +23 -0
  93. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  94. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  95. package/dist-types/endpoint/ruleset.d.ts +2 -0
  96. package/dist-types/extensionConfiguration.d.ts +9 -0
  97. package/dist-types/index.d.ts +16 -0
  98. package/dist-types/models/ComputeOptimizerAutomationServiceException.d.ts +14 -0
  99. package/dist-types/models/enums.d.ts +178 -0
  100. package/dist-types/models/errors.d.ts +146 -0
  101. package/dist-types/models/models_0.d.ts +2028 -0
  102. package/dist-types/pagination/Interfaces.d.ts +8 -0
  103. package/dist-types/pagination/ListAccountsPaginator.d.ts +7 -0
  104. package/dist-types/pagination/ListAutomationEventStepsPaginator.d.ts +7 -0
  105. package/dist-types/pagination/ListAutomationEventSummariesPaginator.d.ts +7 -0
  106. package/dist-types/pagination/ListAutomationEventsPaginator.d.ts +7 -0
  107. package/dist-types/pagination/ListAutomationRulePreviewPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListAutomationRulePreviewSummariesPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListAutomationRulesPaginator.d.ts +7 -0
  110. package/dist-types/pagination/ListRecommendedActionSummariesPaginator.d.ts +7 -0
  111. package/dist-types/pagination/ListRecommendedActionsPaginator.d.ts +7 -0
  112. package/dist-types/pagination/index.d.ts +10 -0
  113. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  114. package/dist-types/runtimeConfig.d.ts +51 -0
  115. package/dist-types/runtimeConfig.native.d.ts +50 -0
  116. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  117. package/dist-types/runtimeExtensions.d.ts +17 -0
  118. package/dist-types/schemas/schemas_0.d.ts +141 -0
  119. package/dist-types/ts3.4/ComputeOptimizerAutomation.d.ts +411 -0
  120. package/dist-types/ts3.4/ComputeOptimizerAutomationClient.d.ts +264 -0
  121. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  122. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  123. package/dist-types/ts3.4/commands/AssociateAccountsCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/CreateAutomationRuleCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/DeleteAutomationRuleCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/DisassociateAccountsCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/GetAutomationEventCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/GetAutomationRuleCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/GetEnrollmentConfigurationCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +47 -0
  131. package/dist-types/ts3.4/commands/ListAutomationEventStepsCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/ListAutomationEventSummariesCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/ListAutomationEventsCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/ListAutomationRulePreviewCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/ListAutomationRulePreviewSummariesCommand.d.ts +51 -0
  136. package/dist-types/ts3.4/commands/ListAutomationRulesCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/ListRecommendedActionSummariesCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/ListRecommendedActionsCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  140. package/dist-types/ts3.4/commands/RollbackAutomationEventCommand.d.ts +51 -0
  141. package/dist-types/ts3.4/commands/StartAutomationEventCommand.d.ts +51 -0
  142. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  143. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  144. package/dist-types/ts3.4/commands/UpdateAutomationRuleCommand.d.ts +51 -0
  145. package/dist-types/ts3.4/commands/UpdateEnrollmentConfigurationCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/index.d.ts +23 -0
  147. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  148. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  149. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  150. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  151. package/dist-types/ts3.4/index.d.ts +11 -0
  152. package/dist-types/ts3.4/models/ComputeOptimizerAutomationServiceException.d.ts +9 -0
  153. package/dist-types/ts3.4/models/enums.d.ts +93 -0
  154. package/dist-types/ts3.4/models/errors.d.ts +87 -0
  155. package/dist-types/ts3.4/models/models_0.d.ts +520 -0
  156. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  157. package/dist-types/ts3.4/pagination/ListAccountsPaginator.d.ts +11 -0
  158. package/dist-types/ts3.4/pagination/ListAutomationEventStepsPaginator.d.ts +11 -0
  159. package/dist-types/ts3.4/pagination/ListAutomationEventSummariesPaginator.d.ts +11 -0
  160. package/dist-types/ts3.4/pagination/ListAutomationEventsPaginator.d.ts +11 -0
  161. package/dist-types/ts3.4/pagination/ListAutomationRulePreviewPaginator.d.ts +11 -0
  162. package/dist-types/ts3.4/pagination/ListAutomationRulePreviewSummariesPaginator.d.ts +11 -0
  163. package/dist-types/ts3.4/pagination/ListAutomationRulesPaginator.d.ts +11 -0
  164. package/dist-types/ts3.4/pagination/ListRecommendedActionSummariesPaginator.d.ts +11 -0
  165. package/dist-types/ts3.4/pagination/ListRecommendedActionsPaginator.d.ts +11 -0
  166. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  167. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +98 -0
  168. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  169. package/dist-types/ts3.4/runtimeConfig.native.d.ts +102 -0
  170. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
  171. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  172. package/dist-types/ts3.4/schemas/schemas_0.d.ts +146 -0
  173. package/package.json +99 -0
@@ -0,0 +1,950 @@
1
+ const _AA = "AssociateAccounts";
2
+ const _AAR = "AssociateAccountsRequest";
3
+ const _AARs = "AssociateAccountsResponse";
4
+ const _ADE = "AccessDeniedException";
5
+ const _AE = "AutomationEvent";
6
+ const _AEF = "AutomationEventFilter";
7
+ const _AEFL = "AutomationEventFilterList";
8
+ const _AES = "AutomationEventStep";
9
+ const _AESL = "AutomationEventSummaryList";
10
+ const _AESu = "AutomationEventSummary";
11
+ const _AESut = "AutomationEventSteps";
12
+ const _AEu = "AutomationEvents";
13
+ const _AI = "AccountInfo";
14
+ const _AIL = "AccountInfoList";
15
+ const _AR = "AutomationRule";
16
+ const _ARu = "AutomationRules";
17
+ const _C = "Criteria";
18
+ const _CAR = "CreateAutomationRule";
19
+ const _CARR = "CreateAutomationRuleRequest";
20
+ const _CARRr = "CreateAutomationRuleResponse";
21
+ const _DA = "DisassociateAccounts";
22
+ const _DAR = "DisassociateAccountsRequest";
23
+ const _DARR = "DeleteAutomationRuleRequest";
24
+ const _DARRe = "DeleteAutomationRuleResponse";
25
+ const _DARe = "DeleteAutomationRule";
26
+ const _DARi = "DisassociateAccountsResponse";
27
+ const _DCC = "DoubleCriteriaCondition";
28
+ const _DCCL = "DoubleCriteriaConditionList";
29
+ const _EMS = "EstimatedMonthlySavings";
30
+ const _EV = "EbsVolume";
31
+ const _EVC = "EbsVolumeConfiguration";
32
+ const _F = "Filter";
33
+ const _FE = "ForbiddenException";
34
+ const _FL = "FilterList";
35
+ const _GAE = "GetAutomationEvent";
36
+ const _GAER = "GetAutomationEventRequest";
37
+ const _GAERe = "GetAutomationEventResponse";
38
+ const _GAR = "GetAutomationRule";
39
+ const _GARR = "GetAutomationRuleRequest";
40
+ const _GARRe = "GetAutomationRuleResponse";
41
+ const _GEC = "GetEnrollmentConfiguration";
42
+ const _GECR = "GetEnrollmentConfigurationRequest";
43
+ const _GECRe = "GetEnrollmentConfigurationResponse";
44
+ const _ICC = "IntegerCriteriaCondition";
45
+ const _ICCL = "IntegerCriteriaConditionList";
46
+ const _IPME = "IdempotentParameterMismatchException";
47
+ const _IPVE = "InvalidParameterValueException";
48
+ const _ISE = "InternalServerException";
49
+ const _ITIUE = "IdempotencyTokenInUseException";
50
+ const _LA = "ListAccounts";
51
+ const _LAE = "ListAutomationEvents";
52
+ const _LAER = "ListAutomationEventsRequest";
53
+ const _LAERi = "ListAutomationEventsResponse";
54
+ const _LAES = "ListAutomationEventSteps";
55
+ const _LAESR = "ListAutomationEventStepsRequest";
56
+ const _LAESRi = "ListAutomationEventStepsResponse";
57
+ const _LAESRis = "ListAutomationEventSummariesRequest";
58
+ const _LAESRist = "ListAutomationEventSummariesResponse";
59
+ const _LAESi = "ListAutomationEventSummaries";
60
+ const _LAR = "ListAccountsRequest";
61
+ const _LARP = "ListAutomationRulePreview";
62
+ const _LARPR = "ListAutomationRulePreviewRequest";
63
+ const _LARPRi = "ListAutomationRulePreviewResponse";
64
+ const _LARPS = "ListAutomationRulePreviewSummaries";
65
+ const _LARPSR = "ListAutomationRulePreviewSummariesRequest";
66
+ const _LARPSRi = "ListAutomationRulePreviewSummariesResponse";
67
+ const _LARR = "ListAutomationRulesRequest";
68
+ const _LARRi = "ListAutomationRulesResponse";
69
+ const _LARi = "ListAccountsResponse";
70
+ const _LARis = "ListAutomationRules";
71
+ const _LRA = "ListRecommendedActions";
72
+ const _LRAR = "ListRecommendedActionsRequest";
73
+ const _LRARi = "ListRecommendedActionsResponse";
74
+ const _LRAS = "ListRecommendedActionSummaries";
75
+ const _LRASR = "ListRecommendedActionSummariesRequest";
76
+ const _LRASRi = "ListRecommendedActionSummariesResponse";
77
+ const _LTFR = "ListTagsForResource";
78
+ const _LTFRR = "ListTagsForResourceRequest";
79
+ const _LTFRRi = "ListTagsForResourceResponse";
80
+ const _NMAE = "NotManagementAccountException";
81
+ const _OC = "OrganizationConfiguration";
82
+ const _OIRE = "OptInRequiredException";
83
+ const _OS = "OrganizationScope";
84
+ const _PR = "PreviewResult";
85
+ const _PRS = "PreviewResultSummary";
86
+ const _PRSr = "PreviewResultSummaries";
87
+ const _PRr = "PreviewResults";
88
+ const _RA = "RecommendedAction";
89
+ const _RAE = "RollbackAutomationEvent";
90
+ const _RAER = "RollbackAutomationEventRequest";
91
+ const _RAERo = "RollbackAutomationEventResponse";
92
+ const _RAF = "RecommendedActionFilter";
93
+ const _RAFL = "RecommendedActionFilterList";
94
+ const _RAS = "RecommendedActionSummary";
95
+ const _RASe = "RecommendedActionSummaries";
96
+ const _RAT = "RecommendedActionTotal";
97
+ const _RAe = "RecommendedActions";
98
+ const _RD = "ResourceDetails";
99
+ const _RNFE = "ResourceNotFoundException";
100
+ const _RPT = "RulePreviewTotal";
101
+ const _RTCC = "ResourceTagsCriteriaCondition";
102
+ const _RTCCL = "ResourceTagsCriteriaConditionList";
103
+ const _S = "Schedule";
104
+ const _SAE = "StartAutomationEvent";
105
+ const _SAER = "StartAutomationEventRequest";
106
+ const _SAERt = "StartAutomationEventResponse";
107
+ const _SCC = "StringCriteriaCondition";
108
+ const _SCCL = "StringCriteriaConditionList";
109
+ const _SD = "SummaryDimension";
110
+ const _SDu = "SummaryDimensions";
111
+ const _SQEE = "ServiceQuotaExceededException";
112
+ const _ST = "SummaryTotals";
113
+ const _SUE = "ServiceUnavailableException";
114
+ const _T = "Tag";
115
+ const _TE = "ThrottlingException";
116
+ const _TL = "TagList";
117
+ const _TP = "TimePeriod";
118
+ const _TR = "TagResource";
119
+ const _TRR = "TagResourceRequest";
120
+ const _TRRa = "TagResourceResponse";
121
+ const _UAR = "UpdateAutomationRule";
122
+ const _UARR = "UpdateAutomationRuleRequest";
123
+ const _UARRp = "UpdateAutomationRuleResponse";
124
+ const _UEC = "UpdateEnrollmentConfiguration";
125
+ const _UECR = "UpdateEnrollmentConfigurationRequest";
126
+ const _UECRp = "UpdateEnrollmentConfigurationResponse";
127
+ const _UR = "UntagResource";
128
+ const _URR = "UntagResourceRequest";
129
+ const _URRn = "UntagResourceResponse";
130
+ const _a = "accounts";
131
+ const _aDS = "afterDiscountSavings";
132
+ const _aE = "automationEvents";
133
+ const _aEC = "automationEventCount";
134
+ const _aES = "automationEventSteps";
135
+ const _aESu = "automationEventSummaries";
136
+ const _aI = "accountId";
137
+ const _aIc = "accountIds";
138
+ const _aR = "automationRules";
139
+ const _bDS = "beforeDiscountSavings";
140
+ const _c = "client";
141
+ const _cRD = "currentResourceDetails";
142
+ const _cRS = "currentResourceSummary";
143
+ const _cT = "clientToken";
144
+ const _cTo = "completedTimestamp";
145
+ const _cTr = "createdTimestamp";
146
+ const _co = "comparison";
147
+ const _con = "configuration";
148
+ const _cr = "criteria";
149
+ const _cu = "currency";
150
+ const _d = "dimensions";
151
+ const _de = "description";
152
+ const _e = "error";
153
+ const _eD = "eventDescription";
154
+ const _eDE = "endDateExclusive";
155
+ const _eI = "eventId";
156
+ const _eMS = "estimatedMonthlySavings";
157
+ const _eS = "eventStatus";
158
+ const _eSR = "eventStatusReason";
159
+ const _eT = "eventType";
160
+ const _eTE = "endTimeExclusive";
161
+ const _eV = "ebsVolume";
162
+ const _eVSIG = "ebsVolumeSizeInGib";
163
+ const _eVT = "ebsVolumeType";
164
+ const _eWIM = "executionWindowInMinutes";
165
+ const _er = "errors";
166
+ const _f = "filters";
167
+ const _hE = "httpError";
168
+ const _i = "iops";
169
+ const _k = "key";
170
+ const _lBPID = "lookBackPeriodInDays";
171
+ const _lUT = "lastUpdatedTimestamp";
172
+ const _m = "message";
173
+ const _mR = "maxResults";
174
+ const _n = "name";
175
+ const _nT = "nextToken";
176
+ const _oC = "organizationConfiguration";
177
+ const _oRM = "organizationRuleMode";
178
+ const _oS = "organizationScope";
179
+ const _p = "priority";
180
+ const _pR = "previewResults";
181
+ const _pRS = "previewResultSummaries";
182
+ const _r = "region";
183
+ const _rA = "resourceArn";
184
+ const _rAC = "recommendedActionCount";
185
+ const _rAI = "recommendedActionId";
186
+ const _rAO = "ruleApplyOrder";
187
+ const _rAS = "recommendedActionSummaries";
188
+ const _rAT = "recommendedActionTypes";
189
+ const _rATe = "recommendedActionType";
190
+ const _rAe = "recommendedActions";
191
+ const _rAu = "ruleArn";
192
+ const _rI = "resourceId";
193
+ const _rIu = "ruleId";
194
+ const _rN = "restartNeeded";
195
+ const _rR = "ruleRevision";
196
+ const _rRD = "recommendedResourceDetails";
197
+ const _rRS = "recommendedResourceSummary";
198
+ const _rT = "resourceType";
199
+ const _rTe = "resourceTag";
200
+ const _rTes = "resourceTags";
201
+ const _rTu = "ruleType";
202
+ const _s = "status";
203
+ const _sDI = "startDateInclusive";
204
+ const _sE = "scheduleExpression";
205
+ const _sEM = "savingsEstimationMode";
206
+ const _sET = "scheduleExpressionTimezone";
207
+ const _sI = "stepId";
208
+ const _sIG = "sizeInGib";
209
+ const _sR = "statusReason";
210
+ const _sS = "stepStatus";
211
+ const _sT = "stepType";
212
+ const _sTI = "startTimeInclusive";
213
+ const _sTt = "startTimestamp";
214
+ const _sc = "schedule";
215
+ const _se = "server";
216
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.computeoptimizerautomation";
217
+ const _t = "total";
218
+ const _tK = "tagKeys";
219
+ const _tP = "timePeriod";
220
+ const _ta = "tags";
221
+ const _th = "throughput";
222
+ const _ty = "type";
223
+ const _v = "values";
224
+ const _va = "value";
225
+ const n0 = "com.amazonaws.computeoptimizerautomation";
226
+ import { TypeRegistry } from "@smithy/core/schema";
227
+ import { ComputeOptimizerAutomationServiceException as __ComputeOptimizerAutomationServiceException } from "../models/ComputeOptimizerAutomationServiceException";
228
+ import { AccessDeniedException as __AccessDeniedException, ForbiddenException as __ForbiddenException, IdempotencyTokenInUseException as __IdempotencyTokenInUseException, IdempotentParameterMismatchException as __IdempotentParameterMismatchException, InternalServerException as __InternalServerException, InvalidParameterValueException as __InvalidParameterValueException, NotManagementAccountException as __NotManagementAccountException, OptInRequiredException as __OptInRequiredException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ServiceUnavailableException as __ServiceUnavailableException, ThrottlingException as __ThrottlingException, } from "../models/errors";
229
+ export var AccessDeniedException = [
230
+ -3,
231
+ n0,
232
+ _ADE,
233
+ {
234
+ [_e]: _c,
235
+ [_hE]: 403,
236
+ },
237
+ [_m],
238
+ [0],
239
+ ];
240
+ TypeRegistry.for(n0).registerError(AccessDeniedException, __AccessDeniedException);
241
+ export var AccountInfo = [3, n0, _AI, 0, [_aI, _s, _oRM, _sR, _lUT], [0, 0, 0, 0, 4]];
242
+ export var AssociateAccountsRequest = [3, n0, _AAR, 0, [_aIc, _cT], [64 | 0, [0, 4]]];
243
+ export var AssociateAccountsResponse = [3, n0, _AARs, 0, [_aIc, _er], [64 | 0, 64 | 0]];
244
+ export var AutomationEvent = [
245
+ 3,
246
+ n0,
247
+ _AE,
248
+ 0,
249
+ [_eI, _eD, _eT, _eS, _eSR, _rA, _rI, _rAI, _aI, _r, _rIu, _rT, _cTr, _cTo, _eMS],
250
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, () => EstimatedMonthlySavings],
251
+ ];
252
+ export var AutomationEventFilter = [3, n0, _AEF, 0, [_n, _v], [0, 64 | 0]];
253
+ export var AutomationEventStep = [
254
+ 3,
255
+ n0,
256
+ _AES,
257
+ 0,
258
+ [_eI, _sI, _sT, _sS, _rI, _sTt, _cTo, _eMS],
259
+ [0, 0, 0, 0, 0, 4, 4, () => EstimatedMonthlySavings],
260
+ ];
261
+ export var AutomationEventSummary = [
262
+ 3,
263
+ n0,
264
+ _AESu,
265
+ 0,
266
+ [_k, _d, _tP, _t],
267
+ [0, () => SummaryDimensions, () => TimePeriod, () => SummaryTotals],
268
+ ];
269
+ export var AutomationRule = [
270
+ 3,
271
+ n0,
272
+ _AR,
273
+ 0,
274
+ [_rAu, _rIu, _n, _de, _rTu, _rR, _aI, _oC, _p, _rAT, _sc, _s, _cTr, _lUT],
275
+ [0, 0, 0, 0, 0, 1, 0, () => OrganizationConfiguration, 0, 64 | 0, () => Schedule, 0, 4, 4],
276
+ ];
277
+ export var CreateAutomationRuleRequest = [
278
+ 3,
279
+ n0,
280
+ _CARR,
281
+ 0,
282
+ [_n, _de, _rTu, _oC, _p, _rAT, _cr, _sc, _s, _ta, _cT],
283
+ [0, 0, 0, () => OrganizationConfiguration, 0, 64 | 0, () => Criteria, () => Schedule, 0, () => TagList, [0, 4]],
284
+ ];
285
+ export var CreateAutomationRuleResponse = [
286
+ 3,
287
+ n0,
288
+ _CARRr,
289
+ 0,
290
+ [_rAu, _rIu, _n, _de, _rTu, _rR, _oC, _p, _rAT, _cr, _sc, _s, _ta, _cTr],
291
+ [0, 0, 0, 0, 0, 1, () => OrganizationConfiguration, 0, 64 | 0, () => Criteria, () => Schedule, 0, () => TagList, 4],
292
+ ];
293
+ export var Criteria = [
294
+ 3,
295
+ n0,
296
+ _C,
297
+ 0,
298
+ [_r, _rA, _eVT, _eVSIG, _eMS, _rTe, _lBPID, _rN],
299
+ [
300
+ () => StringCriteriaConditionList,
301
+ () => StringCriteriaConditionList,
302
+ () => StringCriteriaConditionList,
303
+ () => IntegerCriteriaConditionList,
304
+ () => DoubleCriteriaConditionList,
305
+ () => ResourceTagsCriteriaConditionList,
306
+ () => IntegerCriteriaConditionList,
307
+ () => StringCriteriaConditionList,
308
+ ],
309
+ ];
310
+ export var DeleteAutomationRuleRequest = [3, n0, _DARR, 0, [_rAu, _rR, _cT], [0, 1, [0, 4]]];
311
+ export var DeleteAutomationRuleResponse = [3, n0, _DARRe, 0, [], []];
312
+ export var DisassociateAccountsRequest = [3, n0, _DAR, 0, [_aIc, _cT], [64 | 0, [0, 4]]];
313
+ export var DisassociateAccountsResponse = [3, n0, _DARi, 0, [_aIc, _er], [64 | 0, 64 | 0]];
314
+ export var DoubleCriteriaCondition = [3, n0, _DCC, 0, [_co, _v], [0, 64 | 1]];
315
+ export var EbsVolume = [3, n0, _EV, 0, [_con], [() => EbsVolumeConfiguration]];
316
+ export var EbsVolumeConfiguration = [3, n0, _EVC, 0, [_ty, _sIG, _i, _th], [0, 1, 1, 1]];
317
+ export var EstimatedMonthlySavings = [3, n0, _EMS, 0, [_cu, _bDS, _aDS, _sEM], [0, 1, 1, 0]];
318
+ export var Filter = [3, n0, _F, 0, [_n, _v], [0, 64 | 0]];
319
+ export var ForbiddenException = [
320
+ -3,
321
+ n0,
322
+ _FE,
323
+ {
324
+ [_e]: _c,
325
+ [_hE]: 403,
326
+ },
327
+ [_m],
328
+ [0],
329
+ ];
330
+ TypeRegistry.for(n0).registerError(ForbiddenException, __ForbiddenException);
331
+ export var GetAutomationEventRequest = [3, n0, _GAER, 0, [_eI], [0]];
332
+ export var GetAutomationEventResponse = [
333
+ 3,
334
+ n0,
335
+ _GAERe,
336
+ 0,
337
+ [_eI, _eD, _eT, _eS, _eSR, _rA, _rI, _rAI, _aI, _r, _rIu, _rT, _cTr, _cTo, _eMS],
338
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, () => EstimatedMonthlySavings],
339
+ ];
340
+ export var GetAutomationRuleRequest = [3, n0, _GARR, 0, [_rAu], [0]];
341
+ export var GetAutomationRuleResponse = [
342
+ 3,
343
+ n0,
344
+ _GARRe,
345
+ 0,
346
+ [_rAu, _rIu, _n, _de, _rTu, _rR, _aI, _oC, _p, _rAT, _cr, _sc, _s, _ta, _cTr, _lUT],
347
+ [
348
+ 0,
349
+ 0,
350
+ 0,
351
+ 0,
352
+ 0,
353
+ 1,
354
+ 0,
355
+ () => OrganizationConfiguration,
356
+ 0,
357
+ 64 | 0,
358
+ () => Criteria,
359
+ () => Schedule,
360
+ 0,
361
+ () => TagList,
362
+ 4,
363
+ 4,
364
+ ],
365
+ ];
366
+ export var GetEnrollmentConfigurationRequest = [3, n0, _GECR, 0, [], []];
367
+ export var GetEnrollmentConfigurationResponse = [
368
+ 3,
369
+ n0,
370
+ _GECRe,
371
+ 0,
372
+ [_s, _sR, _oRM, _lUT],
373
+ [0, 0, 0, 4],
374
+ ];
375
+ export var IdempotencyTokenInUseException = [
376
+ -3,
377
+ n0,
378
+ _ITIUE,
379
+ {
380
+ [_e]: _c,
381
+ [_hE]: 409,
382
+ },
383
+ [_m],
384
+ [0],
385
+ ];
386
+ TypeRegistry.for(n0).registerError(IdempotencyTokenInUseException, __IdempotencyTokenInUseException);
387
+ export var IdempotentParameterMismatchException = [
388
+ -3,
389
+ n0,
390
+ _IPME,
391
+ {
392
+ [_e]: _c,
393
+ [_hE]: 409,
394
+ },
395
+ [_m],
396
+ [0],
397
+ ];
398
+ TypeRegistry.for(n0).registerError(IdempotentParameterMismatchException, __IdempotentParameterMismatchException);
399
+ export var IntegerCriteriaCondition = [3, n0, _ICC, 0, [_co, _v], [0, 64 | 1]];
400
+ export var InternalServerException = [
401
+ -3,
402
+ n0,
403
+ _ISE,
404
+ {
405
+ [_e]: _se,
406
+ [_hE]: 500,
407
+ },
408
+ [_m],
409
+ [0],
410
+ ];
411
+ TypeRegistry.for(n0).registerError(InternalServerException, __InternalServerException);
412
+ export var InvalidParameterValueException = [
413
+ -3,
414
+ n0,
415
+ _IPVE,
416
+ {
417
+ [_e]: _c,
418
+ [_hE]: 400,
419
+ },
420
+ [_m],
421
+ [0],
422
+ ];
423
+ TypeRegistry.for(n0).registerError(InvalidParameterValueException, __InvalidParameterValueException);
424
+ export var ListAccountsRequest = [3, n0, _LAR, 0, [_mR, _nT], [1, 0]];
425
+ export var ListAccountsResponse = [3, n0, _LARi, 0, [_a, _nT], [() => AccountInfoList, 0]];
426
+ export var ListAutomationEventsRequest = [
427
+ 3,
428
+ n0,
429
+ _LAER,
430
+ 0,
431
+ [_f, _sTI, _eTE, _mR, _nT],
432
+ [() => AutomationEventFilterList, 4, 4, 1, 0],
433
+ ];
434
+ export var ListAutomationEventsResponse = [
435
+ 3,
436
+ n0,
437
+ _LAERi,
438
+ 0,
439
+ [_aE, _nT],
440
+ [() => AutomationEvents, 0],
441
+ ];
442
+ export var ListAutomationEventStepsRequest = [3, n0, _LAESR, 0, [_eI, _mR, _nT], [0, 1, 0]];
443
+ export var ListAutomationEventStepsResponse = [
444
+ 3,
445
+ n0,
446
+ _LAESRi,
447
+ 0,
448
+ [_aES, _nT],
449
+ [() => AutomationEventSteps, 0],
450
+ ];
451
+ export var ListAutomationEventSummariesRequest = [
452
+ 3,
453
+ n0,
454
+ _LAESRis,
455
+ 0,
456
+ [_f, _sDI, _eDE, _mR, _nT],
457
+ [() => AutomationEventFilterList, 0, 0, 1, 0],
458
+ ];
459
+ export var ListAutomationEventSummariesResponse = [
460
+ 3,
461
+ n0,
462
+ _LAESRist,
463
+ 0,
464
+ [_aESu, _nT],
465
+ [() => AutomationEventSummaryList, 0],
466
+ ];
467
+ export var ListAutomationRulePreviewRequest = [
468
+ 3,
469
+ n0,
470
+ _LARPR,
471
+ 0,
472
+ [_rTu, _oS, _rAT, _cr, _mR, _nT],
473
+ [0, () => OrganizationScope, 64 | 0, () => Criteria, 1, 0],
474
+ ];
475
+ export var ListAutomationRulePreviewResponse = [
476
+ 3,
477
+ n0,
478
+ _LARPRi,
479
+ 0,
480
+ [_pR, _nT],
481
+ [() => PreviewResults, 0],
482
+ ];
483
+ export var ListAutomationRulePreviewSummariesRequest = [
484
+ 3,
485
+ n0,
486
+ _LARPSR,
487
+ 0,
488
+ [_rTu, _oS, _rAT, _cr, _mR, _nT],
489
+ [0, () => OrganizationScope, 64 | 0, () => Criteria, 1, 0],
490
+ ];
491
+ export var ListAutomationRulePreviewSummariesResponse = [
492
+ 3,
493
+ n0,
494
+ _LARPSRi,
495
+ 0,
496
+ [_pRS, _nT],
497
+ [() => PreviewResultSummaries, 0],
498
+ ];
499
+ export var ListAutomationRulesRequest = [
500
+ 3,
501
+ n0,
502
+ _LARR,
503
+ 0,
504
+ [_f, _mR, _nT],
505
+ [() => FilterList, 1, 0],
506
+ ];
507
+ export var ListAutomationRulesResponse = [
508
+ 3,
509
+ n0,
510
+ _LARRi,
511
+ 0,
512
+ [_aR, _nT],
513
+ [() => AutomationRules, 0],
514
+ ];
515
+ export var ListRecommendedActionsRequest = [
516
+ 3,
517
+ n0,
518
+ _LRAR,
519
+ 0,
520
+ [_f, _mR, _nT],
521
+ [() => RecommendedActionFilterList, 1, 0],
522
+ ];
523
+ export var ListRecommendedActionsResponse = [
524
+ 3,
525
+ n0,
526
+ _LRARi,
527
+ 0,
528
+ [_rAe, _nT],
529
+ [() => RecommendedActions, 0],
530
+ ];
531
+ export var ListRecommendedActionSummariesRequest = [
532
+ 3,
533
+ n0,
534
+ _LRASR,
535
+ 0,
536
+ [_f, _mR, _nT],
537
+ [() => RecommendedActionFilterList, 1, 0],
538
+ ];
539
+ export var ListRecommendedActionSummariesResponse = [
540
+ 3,
541
+ n0,
542
+ _LRASRi,
543
+ 0,
544
+ [_rAS, _nT],
545
+ [() => RecommendedActionSummaries, 0],
546
+ ];
547
+ export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [0]];
548
+ export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [() => TagList]];
549
+ export var NotManagementAccountException = [
550
+ -3,
551
+ n0,
552
+ _NMAE,
553
+ {
554
+ [_e]: _c,
555
+ [_hE]: 400,
556
+ },
557
+ [_m],
558
+ [0],
559
+ ];
560
+ TypeRegistry.for(n0).registerError(NotManagementAccountException, __NotManagementAccountException);
561
+ export var OptInRequiredException = [
562
+ -3,
563
+ n0,
564
+ _OIRE,
565
+ {
566
+ [_e]: _c,
567
+ [_hE]: 403,
568
+ },
569
+ [_m],
570
+ [0],
571
+ ];
572
+ TypeRegistry.for(n0).registerError(OptInRequiredException, __OptInRequiredException);
573
+ export var OrganizationConfiguration = [3, n0, _OC, 0, [_rAO, _aIc], [0, 64 | 0]];
574
+ export var OrganizationScope = [3, n0, _OS, 0, [_aIc], [64 | 0]];
575
+ export var PreviewResult = [
576
+ 3,
577
+ n0,
578
+ _PR,
579
+ 0,
580
+ [_rAI, _rA, _rI, _aI, _r, _rT, _lBPID, _rATe, _cRS, _cRD, _rRS, _rRD, _rN, _eMS, _rTes],
581
+ [
582
+ 0,
583
+ 0,
584
+ 0,
585
+ 0,
586
+ 0,
587
+ 0,
588
+ 1,
589
+ 0,
590
+ 0,
591
+ () => ResourceDetails,
592
+ 0,
593
+ () => ResourceDetails,
594
+ 2,
595
+ () => EstimatedMonthlySavings,
596
+ () => TagList,
597
+ ],
598
+ ];
599
+ export var PreviewResultSummary = [3, n0, _PRS, 0, [_k, _t], [0, () => RulePreviewTotal]];
600
+ export var RecommendedAction = [
601
+ 3,
602
+ n0,
603
+ _RA,
604
+ 0,
605
+ [_rAI, _rA, _rI, _aI, _r, _rT, _lBPID, _rATe, _cRS, _cRD, _rRS, _rRD, _rN, _eMS, _rTes],
606
+ [
607
+ 0,
608
+ 0,
609
+ 0,
610
+ 0,
611
+ 0,
612
+ 0,
613
+ 1,
614
+ 0,
615
+ 0,
616
+ () => ResourceDetails,
617
+ 0,
618
+ () => ResourceDetails,
619
+ 2,
620
+ () => EstimatedMonthlySavings,
621
+ () => TagList,
622
+ ],
623
+ ];
624
+ export var RecommendedActionFilter = [3, n0, _RAF, 0, [_n, _v], [0, 64 | 0]];
625
+ export var RecommendedActionSummary = [
626
+ 3,
627
+ n0,
628
+ _RAS,
629
+ 0,
630
+ [_k, _t],
631
+ [0, () => RecommendedActionTotal],
632
+ ];
633
+ export var RecommendedActionTotal = [
634
+ 3,
635
+ n0,
636
+ _RAT,
637
+ 0,
638
+ [_rAC, _eMS],
639
+ [1, () => EstimatedMonthlySavings],
640
+ ];
641
+ export var ResourceNotFoundException = [
642
+ -3,
643
+ n0,
644
+ _RNFE,
645
+ {
646
+ [_e]: _c,
647
+ [_hE]: 404,
648
+ },
649
+ [_m],
650
+ [0],
651
+ ];
652
+ TypeRegistry.for(n0).registerError(ResourceNotFoundException, __ResourceNotFoundException);
653
+ export var ResourceTagsCriteriaCondition = [3, n0, _RTCC, 0, [_co, _k, _v], [0, 0, 64 | 0]];
654
+ export var RollbackAutomationEventRequest = [3, n0, _RAER, 0, [_eI, _cT], [0, [0, 4]]];
655
+ export var RollbackAutomationEventResponse = [3, n0, _RAERo, 0, [_eI, _eS], [0, 0]];
656
+ export var RulePreviewTotal = [3, n0, _RPT, 0, [_rAC, _eMS], [1, () => EstimatedMonthlySavings]];
657
+ export var Schedule = [3, n0, _S, 0, [_sE, _sET, _eWIM], [0, 0, 1]];
658
+ export var ServiceQuotaExceededException = [
659
+ -3,
660
+ n0,
661
+ _SQEE,
662
+ {
663
+ [_e]: _c,
664
+ [_hE]: 402,
665
+ },
666
+ [_m],
667
+ [0],
668
+ ];
669
+ TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, __ServiceQuotaExceededException);
670
+ export var ServiceUnavailableException = [
671
+ -3,
672
+ n0,
673
+ _SUE,
674
+ {
675
+ [_e]: _se,
676
+ [_hE]: 503,
677
+ },
678
+ [_m],
679
+ [0],
680
+ ];
681
+ TypeRegistry.for(n0).registerError(ServiceUnavailableException, __ServiceUnavailableException);
682
+ export var StartAutomationEventRequest = [3, n0, _SAER, 0, [_rAI, _cT], [0, [0, 4]]];
683
+ export var StartAutomationEventResponse = [3, n0, _SAERt, 0, [_rAI, _eI, _eS], [0, 0, 0]];
684
+ export var StringCriteriaCondition = [3, n0, _SCC, 0, [_co, _v], [0, 64 | 0]];
685
+ export var SummaryDimension = [3, n0, _SD, 0, [_k, _va], [0, 0]];
686
+ export var SummaryTotals = [3, n0, _ST, 0, [_aEC, _eMS], [1, () => EstimatedMonthlySavings]];
687
+ export var Tag = [3, n0, _T, 0, [_k, _va], [0, 0]];
688
+ export var TagResourceRequest = [
689
+ 3,
690
+ n0,
691
+ _TRR,
692
+ 0,
693
+ [_rA, _rR, _ta, _cT],
694
+ [0, 1, () => TagList, [0, 4]],
695
+ ];
696
+ export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
697
+ export var ThrottlingException = [
698
+ -3,
699
+ n0,
700
+ _TE,
701
+ {
702
+ [_e]: _c,
703
+ [_hE]: 429,
704
+ },
705
+ [_m],
706
+ [0],
707
+ ];
708
+ TypeRegistry.for(n0).registerError(ThrottlingException, __ThrottlingException);
709
+ export var TimePeriod = [3, n0, _TP, 0, [_sTI, _eTE], [4, 4]];
710
+ export var UntagResourceRequest = [3, n0, _URR, 0, [_rA, _rR, _tK, _cT], [0, 1, 64 | 0, [0, 4]]];
711
+ export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
712
+ export var UpdateAutomationRuleRequest = [
713
+ 3,
714
+ n0,
715
+ _UARR,
716
+ 0,
717
+ [_rAu, _rR, _n, _de, _rTu, _oC, _p, _rAT, _cr, _sc, _s, _cT],
718
+ [0, 1, 0, 0, 0, () => OrganizationConfiguration, 0, 64 | 0, () => Criteria, () => Schedule, 0, [0, 4]],
719
+ ];
720
+ export var UpdateAutomationRuleResponse = [
721
+ 3,
722
+ n0,
723
+ _UARRp,
724
+ 0,
725
+ [_rAu, _rR, _n, _de, _rTu, _oC, _p, _rAT, _cr, _sc, _s, _cTr, _lUT],
726
+ [0, 1, 0, 0, 0, () => OrganizationConfiguration, 0, 64 | 0, () => Criteria, () => Schedule, 0, 4, 4],
727
+ ];
728
+ export var UpdateEnrollmentConfigurationRequest = [3, n0, _UECR, 0, [_s, _cT], [0, [0, 4]]];
729
+ export var UpdateEnrollmentConfigurationResponse = [
730
+ 3,
731
+ n0,
732
+ _UECRp,
733
+ 0,
734
+ [_s, _sR, _lUT],
735
+ [0, 0, 4],
736
+ ];
737
+ export var __Unit = "unit";
738
+ export var ComputeOptimizerAutomationServiceException = [
739
+ -3,
740
+ _sm,
741
+ "ComputeOptimizerAutomationServiceException",
742
+ 0,
743
+ [],
744
+ [],
745
+ ];
746
+ TypeRegistry.for(_sm).registerError(ComputeOptimizerAutomationServiceException, __ComputeOptimizerAutomationServiceException);
747
+ export var AccountIdList = 64 | 0;
748
+ export var AccountInfoList = [1, n0, _AIL, 0, () => AccountInfo];
749
+ export var AutomationEventFilterList = [1, n0, _AEFL, 0, () => AutomationEventFilter];
750
+ export var AutomationEvents = [1, n0, _AEu, 0, () => AutomationEvent];
751
+ export var AutomationEventSteps = [1, n0, _AESut, 0, () => AutomationEventStep];
752
+ export var AutomationEventSummaryList = [1, n0, _AESL, 0, () => AutomationEventSummary];
753
+ export var AutomationRules = [1, n0, _ARu, 0, () => AutomationRule];
754
+ export var DoubleCriteriaConditionList = [1, n0, _DCCL, 0, () => DoubleCriteriaCondition];
755
+ export var DoubleList = 64 | 1;
756
+ export var FilterList = [1, n0, _FL, 0, () => Filter];
757
+ export var FilterValues = 64 | 0;
758
+ export var IntegerCriteriaConditionList = [1, n0, _ICCL, 0, () => IntegerCriteriaCondition];
759
+ export var IntegerList = 64 | 1;
760
+ export var OrganizationConfigurationAccountIds = 64 | 0;
761
+ export var PreviewResults = [1, n0, _PRr, 0, () => PreviewResult];
762
+ export var PreviewResultSummaries = [1, n0, _PRSr, 0, () => PreviewResultSummary];
763
+ export var RecommendedActionFilterList = [1, n0, _RAFL, 0, () => RecommendedActionFilter];
764
+ export var RecommendedActions = [1, n0, _RAe, 0, () => RecommendedAction];
765
+ export var RecommendedActionSummaries = [1, n0, _RASe, 0, () => RecommendedActionSummary];
766
+ export var RecommendedActionTypeList = 64 | 0;
767
+ export var ResourceTagsCriteriaConditionList = [
768
+ 1,
769
+ n0,
770
+ _RTCCL,
771
+ 0,
772
+ () => ResourceTagsCriteriaCondition,
773
+ ];
774
+ export var StringCriteriaConditionList = [1, n0, _SCCL, 0, () => StringCriteriaCondition];
775
+ export var StringCriteriaValues = 64 | 0;
776
+ export var StringList = 64 | 0;
777
+ export var SummaryDimensions = [1, n0, _SDu, 0, () => SummaryDimension];
778
+ export var TagKeyList = 64 | 0;
779
+ export var TagList = [1, n0, _TL, 0, () => Tag];
780
+ export var ResourceDetails = [3, n0, _RD, 0, [_eV], [() => EbsVolume]];
781
+ export var AssociateAccounts = [
782
+ 9,
783
+ n0,
784
+ _AA,
785
+ 2,
786
+ () => AssociateAccountsRequest,
787
+ () => AssociateAccountsResponse,
788
+ ];
789
+ export var CreateAutomationRule = [
790
+ 9,
791
+ n0,
792
+ _CAR,
793
+ 2,
794
+ () => CreateAutomationRuleRequest,
795
+ () => CreateAutomationRuleResponse,
796
+ ];
797
+ export var DeleteAutomationRule = [
798
+ 9,
799
+ n0,
800
+ _DARe,
801
+ 2,
802
+ () => DeleteAutomationRuleRequest,
803
+ () => DeleteAutomationRuleResponse,
804
+ ];
805
+ export var DisassociateAccounts = [
806
+ 9,
807
+ n0,
808
+ _DA,
809
+ 2,
810
+ () => DisassociateAccountsRequest,
811
+ () => DisassociateAccountsResponse,
812
+ ];
813
+ export var GetAutomationEvent = [
814
+ 9,
815
+ n0,
816
+ _GAE,
817
+ 0,
818
+ () => GetAutomationEventRequest,
819
+ () => GetAutomationEventResponse,
820
+ ];
821
+ export var GetAutomationRule = [
822
+ 9,
823
+ n0,
824
+ _GAR,
825
+ 0,
826
+ () => GetAutomationRuleRequest,
827
+ () => GetAutomationRuleResponse,
828
+ ];
829
+ export var GetEnrollmentConfiguration = [
830
+ 9,
831
+ n0,
832
+ _GEC,
833
+ 0,
834
+ () => GetEnrollmentConfigurationRequest,
835
+ () => GetEnrollmentConfigurationResponse,
836
+ ];
837
+ export var ListAccounts = [9, n0, _LA, 0, () => ListAccountsRequest, () => ListAccountsResponse];
838
+ export var ListAutomationEvents = [
839
+ 9,
840
+ n0,
841
+ _LAE,
842
+ 0,
843
+ () => ListAutomationEventsRequest,
844
+ () => ListAutomationEventsResponse,
845
+ ];
846
+ export var ListAutomationEventSteps = [
847
+ 9,
848
+ n0,
849
+ _LAES,
850
+ 0,
851
+ () => ListAutomationEventStepsRequest,
852
+ () => ListAutomationEventStepsResponse,
853
+ ];
854
+ export var ListAutomationEventSummaries = [
855
+ 9,
856
+ n0,
857
+ _LAESi,
858
+ 0,
859
+ () => ListAutomationEventSummariesRequest,
860
+ () => ListAutomationEventSummariesResponse,
861
+ ];
862
+ export var ListAutomationRulePreview = [
863
+ 9,
864
+ n0,
865
+ _LARP,
866
+ 0,
867
+ () => ListAutomationRulePreviewRequest,
868
+ () => ListAutomationRulePreviewResponse,
869
+ ];
870
+ export var ListAutomationRulePreviewSummaries = [
871
+ 9,
872
+ n0,
873
+ _LARPS,
874
+ 0,
875
+ () => ListAutomationRulePreviewSummariesRequest,
876
+ () => ListAutomationRulePreviewSummariesResponse,
877
+ ];
878
+ export var ListAutomationRules = [
879
+ 9,
880
+ n0,
881
+ _LARis,
882
+ 0,
883
+ () => ListAutomationRulesRequest,
884
+ () => ListAutomationRulesResponse,
885
+ ];
886
+ export var ListRecommendedActions = [
887
+ 9,
888
+ n0,
889
+ _LRA,
890
+ 0,
891
+ () => ListRecommendedActionsRequest,
892
+ () => ListRecommendedActionsResponse,
893
+ ];
894
+ export var ListRecommendedActionSummaries = [
895
+ 9,
896
+ n0,
897
+ _LRAS,
898
+ 0,
899
+ () => ListRecommendedActionSummariesRequest,
900
+ () => ListRecommendedActionSummariesResponse,
901
+ ];
902
+ export var ListTagsForResource = [
903
+ 9,
904
+ n0,
905
+ _LTFR,
906
+ 0,
907
+ () => ListTagsForResourceRequest,
908
+ () => ListTagsForResourceResponse,
909
+ ];
910
+ export var RollbackAutomationEvent = [
911
+ 9,
912
+ n0,
913
+ _RAE,
914
+ 2,
915
+ () => RollbackAutomationEventRequest,
916
+ () => RollbackAutomationEventResponse,
917
+ ];
918
+ export var StartAutomationEvent = [
919
+ 9,
920
+ n0,
921
+ _SAE,
922
+ 2,
923
+ () => StartAutomationEventRequest,
924
+ () => StartAutomationEventResponse,
925
+ ];
926
+ export var TagResource = [9, n0, _TR, 2, () => TagResourceRequest, () => TagResourceResponse];
927
+ export var UntagResource = [
928
+ 9,
929
+ n0,
930
+ _UR,
931
+ 2,
932
+ () => UntagResourceRequest,
933
+ () => UntagResourceResponse,
934
+ ];
935
+ export var UpdateAutomationRule = [
936
+ 9,
937
+ n0,
938
+ _UAR,
939
+ 2,
940
+ () => UpdateAutomationRuleRequest,
941
+ () => UpdateAutomationRuleResponse,
942
+ ];
943
+ export var UpdateEnrollmentConfiguration = [
944
+ 9,
945
+ n0,
946
+ _UEC,
947
+ 2,
948
+ () => UpdateEnrollmentConfigurationRequest,
949
+ () => UpdateEnrollmentConfigurationResponse,
950
+ ];