@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,411 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ AssociateAccountsCommandInput,
4
+ AssociateAccountsCommandOutput,
5
+ } from "./commands/AssociateAccountsCommand";
6
+ import {
7
+ CreateAutomationRuleCommandInput,
8
+ CreateAutomationRuleCommandOutput,
9
+ } from "./commands/CreateAutomationRuleCommand";
10
+ import {
11
+ DeleteAutomationRuleCommandInput,
12
+ DeleteAutomationRuleCommandOutput,
13
+ } from "./commands/DeleteAutomationRuleCommand";
14
+ import {
15
+ DisassociateAccountsCommandInput,
16
+ DisassociateAccountsCommandOutput,
17
+ } from "./commands/DisassociateAccountsCommand";
18
+ import {
19
+ GetAutomationEventCommandInput,
20
+ GetAutomationEventCommandOutput,
21
+ } from "./commands/GetAutomationEventCommand";
22
+ import {
23
+ GetAutomationRuleCommandInput,
24
+ GetAutomationRuleCommandOutput,
25
+ } from "./commands/GetAutomationRuleCommand";
26
+ import {
27
+ GetEnrollmentConfigurationCommandInput,
28
+ GetEnrollmentConfigurationCommandOutput,
29
+ } from "./commands/GetEnrollmentConfigurationCommand";
30
+ import {
31
+ ListAccountsCommandInput,
32
+ ListAccountsCommandOutput,
33
+ } from "./commands/ListAccountsCommand";
34
+ import {
35
+ ListAutomationEventsCommandInput,
36
+ ListAutomationEventsCommandOutput,
37
+ } from "./commands/ListAutomationEventsCommand";
38
+ import {
39
+ ListAutomationEventStepsCommandInput,
40
+ ListAutomationEventStepsCommandOutput,
41
+ } from "./commands/ListAutomationEventStepsCommand";
42
+ import {
43
+ ListAutomationEventSummariesCommandInput,
44
+ ListAutomationEventSummariesCommandOutput,
45
+ } from "./commands/ListAutomationEventSummariesCommand";
46
+ import {
47
+ ListAutomationRulePreviewCommandInput,
48
+ ListAutomationRulePreviewCommandOutput,
49
+ } from "./commands/ListAutomationRulePreviewCommand";
50
+ import {
51
+ ListAutomationRulePreviewSummariesCommandInput,
52
+ ListAutomationRulePreviewSummariesCommandOutput,
53
+ } from "./commands/ListAutomationRulePreviewSummariesCommand";
54
+ import {
55
+ ListAutomationRulesCommandInput,
56
+ ListAutomationRulesCommandOutput,
57
+ } from "./commands/ListAutomationRulesCommand";
58
+ import {
59
+ ListRecommendedActionsCommandInput,
60
+ ListRecommendedActionsCommandOutput,
61
+ } from "./commands/ListRecommendedActionsCommand";
62
+ import {
63
+ ListRecommendedActionSummariesCommandInput,
64
+ ListRecommendedActionSummariesCommandOutput,
65
+ } from "./commands/ListRecommendedActionSummariesCommand";
66
+ import {
67
+ ListTagsForResourceCommandInput,
68
+ ListTagsForResourceCommandOutput,
69
+ } from "./commands/ListTagsForResourceCommand";
70
+ import {
71
+ RollbackAutomationEventCommandInput,
72
+ RollbackAutomationEventCommandOutput,
73
+ } from "./commands/RollbackAutomationEventCommand";
74
+ import {
75
+ StartAutomationEventCommandInput,
76
+ StartAutomationEventCommandOutput,
77
+ } from "./commands/StartAutomationEventCommand";
78
+ import {
79
+ TagResourceCommandInput,
80
+ TagResourceCommandOutput,
81
+ } from "./commands/TagResourceCommand";
82
+ import {
83
+ UntagResourceCommandInput,
84
+ UntagResourceCommandOutput,
85
+ } from "./commands/UntagResourceCommand";
86
+ import {
87
+ UpdateAutomationRuleCommandInput,
88
+ UpdateAutomationRuleCommandOutput,
89
+ } from "./commands/UpdateAutomationRuleCommand";
90
+ import {
91
+ UpdateEnrollmentConfigurationCommandInput,
92
+ UpdateEnrollmentConfigurationCommandOutput,
93
+ } from "./commands/UpdateEnrollmentConfigurationCommand";
94
+ import { ComputeOptimizerAutomationClient } from "./ComputeOptimizerAutomationClient";
95
+ export interface ComputeOptimizerAutomation {
96
+ associateAccounts(
97
+ args: AssociateAccountsCommandInput,
98
+ options?: __HttpHandlerOptions
99
+ ): Promise<AssociateAccountsCommandOutput>;
100
+ associateAccounts(
101
+ args: AssociateAccountsCommandInput,
102
+ cb: (err: any, data?: AssociateAccountsCommandOutput) => void
103
+ ): void;
104
+ associateAccounts(
105
+ args: AssociateAccountsCommandInput,
106
+ options: __HttpHandlerOptions,
107
+ cb: (err: any, data?: AssociateAccountsCommandOutput) => void
108
+ ): void;
109
+ createAutomationRule(
110
+ args: CreateAutomationRuleCommandInput,
111
+ options?: __HttpHandlerOptions
112
+ ): Promise<CreateAutomationRuleCommandOutput>;
113
+ createAutomationRule(
114
+ args: CreateAutomationRuleCommandInput,
115
+ cb: (err: any, data?: CreateAutomationRuleCommandOutput) => void
116
+ ): void;
117
+ createAutomationRule(
118
+ args: CreateAutomationRuleCommandInput,
119
+ options: __HttpHandlerOptions,
120
+ cb: (err: any, data?: CreateAutomationRuleCommandOutput) => void
121
+ ): void;
122
+ deleteAutomationRule(
123
+ args: DeleteAutomationRuleCommandInput,
124
+ options?: __HttpHandlerOptions
125
+ ): Promise<DeleteAutomationRuleCommandOutput>;
126
+ deleteAutomationRule(
127
+ args: DeleteAutomationRuleCommandInput,
128
+ cb: (err: any, data?: DeleteAutomationRuleCommandOutput) => void
129
+ ): void;
130
+ deleteAutomationRule(
131
+ args: DeleteAutomationRuleCommandInput,
132
+ options: __HttpHandlerOptions,
133
+ cb: (err: any, data?: DeleteAutomationRuleCommandOutput) => void
134
+ ): void;
135
+ disassociateAccounts(
136
+ args: DisassociateAccountsCommandInput,
137
+ options?: __HttpHandlerOptions
138
+ ): Promise<DisassociateAccountsCommandOutput>;
139
+ disassociateAccounts(
140
+ args: DisassociateAccountsCommandInput,
141
+ cb: (err: any, data?: DisassociateAccountsCommandOutput) => void
142
+ ): void;
143
+ disassociateAccounts(
144
+ args: DisassociateAccountsCommandInput,
145
+ options: __HttpHandlerOptions,
146
+ cb: (err: any, data?: DisassociateAccountsCommandOutput) => void
147
+ ): void;
148
+ getAutomationEvent(
149
+ args: GetAutomationEventCommandInput,
150
+ options?: __HttpHandlerOptions
151
+ ): Promise<GetAutomationEventCommandOutput>;
152
+ getAutomationEvent(
153
+ args: GetAutomationEventCommandInput,
154
+ cb: (err: any, data?: GetAutomationEventCommandOutput) => void
155
+ ): void;
156
+ getAutomationEvent(
157
+ args: GetAutomationEventCommandInput,
158
+ options: __HttpHandlerOptions,
159
+ cb: (err: any, data?: GetAutomationEventCommandOutput) => void
160
+ ): void;
161
+ getAutomationRule(
162
+ args: GetAutomationRuleCommandInput,
163
+ options?: __HttpHandlerOptions
164
+ ): Promise<GetAutomationRuleCommandOutput>;
165
+ getAutomationRule(
166
+ args: GetAutomationRuleCommandInput,
167
+ cb: (err: any, data?: GetAutomationRuleCommandOutput) => void
168
+ ): void;
169
+ getAutomationRule(
170
+ args: GetAutomationRuleCommandInput,
171
+ options: __HttpHandlerOptions,
172
+ cb: (err: any, data?: GetAutomationRuleCommandOutput) => void
173
+ ): void;
174
+ getEnrollmentConfiguration(): Promise<GetEnrollmentConfigurationCommandOutput>;
175
+ getEnrollmentConfiguration(
176
+ args: GetEnrollmentConfigurationCommandInput,
177
+ options?: __HttpHandlerOptions
178
+ ): Promise<GetEnrollmentConfigurationCommandOutput>;
179
+ getEnrollmentConfiguration(
180
+ args: GetEnrollmentConfigurationCommandInput,
181
+ cb: (err: any, data?: GetEnrollmentConfigurationCommandOutput) => void
182
+ ): void;
183
+ getEnrollmentConfiguration(
184
+ args: GetEnrollmentConfigurationCommandInput,
185
+ options: __HttpHandlerOptions,
186
+ cb: (err: any, data?: GetEnrollmentConfigurationCommandOutput) => void
187
+ ): void;
188
+ listAccounts(): Promise<ListAccountsCommandOutput>;
189
+ listAccounts(
190
+ args: ListAccountsCommandInput,
191
+ options?: __HttpHandlerOptions
192
+ ): Promise<ListAccountsCommandOutput>;
193
+ listAccounts(
194
+ args: ListAccountsCommandInput,
195
+ cb: (err: any, data?: ListAccountsCommandOutput) => void
196
+ ): void;
197
+ listAccounts(
198
+ args: ListAccountsCommandInput,
199
+ options: __HttpHandlerOptions,
200
+ cb: (err: any, data?: ListAccountsCommandOutput) => void
201
+ ): void;
202
+ listAutomationEvents(): Promise<ListAutomationEventsCommandOutput>;
203
+ listAutomationEvents(
204
+ args: ListAutomationEventsCommandInput,
205
+ options?: __HttpHandlerOptions
206
+ ): Promise<ListAutomationEventsCommandOutput>;
207
+ listAutomationEvents(
208
+ args: ListAutomationEventsCommandInput,
209
+ cb: (err: any, data?: ListAutomationEventsCommandOutput) => void
210
+ ): void;
211
+ listAutomationEvents(
212
+ args: ListAutomationEventsCommandInput,
213
+ options: __HttpHandlerOptions,
214
+ cb: (err: any, data?: ListAutomationEventsCommandOutput) => void
215
+ ): void;
216
+ listAutomationEventSteps(
217
+ args: ListAutomationEventStepsCommandInput,
218
+ options?: __HttpHandlerOptions
219
+ ): Promise<ListAutomationEventStepsCommandOutput>;
220
+ listAutomationEventSteps(
221
+ args: ListAutomationEventStepsCommandInput,
222
+ cb: (err: any, data?: ListAutomationEventStepsCommandOutput) => void
223
+ ): void;
224
+ listAutomationEventSteps(
225
+ args: ListAutomationEventStepsCommandInput,
226
+ options: __HttpHandlerOptions,
227
+ cb: (err: any, data?: ListAutomationEventStepsCommandOutput) => void
228
+ ): void;
229
+ listAutomationEventSummaries(): Promise<ListAutomationEventSummariesCommandOutput>;
230
+ listAutomationEventSummaries(
231
+ args: ListAutomationEventSummariesCommandInput,
232
+ options?: __HttpHandlerOptions
233
+ ): Promise<ListAutomationEventSummariesCommandOutput>;
234
+ listAutomationEventSummaries(
235
+ args: ListAutomationEventSummariesCommandInput,
236
+ cb: (err: any, data?: ListAutomationEventSummariesCommandOutput) => void
237
+ ): void;
238
+ listAutomationEventSummaries(
239
+ args: ListAutomationEventSummariesCommandInput,
240
+ options: __HttpHandlerOptions,
241
+ cb: (err: any, data?: ListAutomationEventSummariesCommandOutput) => void
242
+ ): void;
243
+ listAutomationRulePreview(
244
+ args: ListAutomationRulePreviewCommandInput,
245
+ options?: __HttpHandlerOptions
246
+ ): Promise<ListAutomationRulePreviewCommandOutput>;
247
+ listAutomationRulePreview(
248
+ args: ListAutomationRulePreviewCommandInput,
249
+ cb: (err: any, data?: ListAutomationRulePreviewCommandOutput) => void
250
+ ): void;
251
+ listAutomationRulePreview(
252
+ args: ListAutomationRulePreviewCommandInput,
253
+ options: __HttpHandlerOptions,
254
+ cb: (err: any, data?: ListAutomationRulePreviewCommandOutput) => void
255
+ ): void;
256
+ listAutomationRulePreviewSummaries(
257
+ args: ListAutomationRulePreviewSummariesCommandInput,
258
+ options?: __HttpHandlerOptions
259
+ ): Promise<ListAutomationRulePreviewSummariesCommandOutput>;
260
+ listAutomationRulePreviewSummaries(
261
+ args: ListAutomationRulePreviewSummariesCommandInput,
262
+ cb: (
263
+ err: any,
264
+ data?: ListAutomationRulePreviewSummariesCommandOutput
265
+ ) => void
266
+ ): void;
267
+ listAutomationRulePreviewSummaries(
268
+ args: ListAutomationRulePreviewSummariesCommandInput,
269
+ options: __HttpHandlerOptions,
270
+ cb: (
271
+ err: any,
272
+ data?: ListAutomationRulePreviewSummariesCommandOutput
273
+ ) => void
274
+ ): void;
275
+ listAutomationRules(): Promise<ListAutomationRulesCommandOutput>;
276
+ listAutomationRules(
277
+ args: ListAutomationRulesCommandInput,
278
+ options?: __HttpHandlerOptions
279
+ ): Promise<ListAutomationRulesCommandOutput>;
280
+ listAutomationRules(
281
+ args: ListAutomationRulesCommandInput,
282
+ cb: (err: any, data?: ListAutomationRulesCommandOutput) => void
283
+ ): void;
284
+ listAutomationRules(
285
+ args: ListAutomationRulesCommandInput,
286
+ options: __HttpHandlerOptions,
287
+ cb: (err: any, data?: ListAutomationRulesCommandOutput) => void
288
+ ): void;
289
+ listRecommendedActions(): Promise<ListRecommendedActionsCommandOutput>;
290
+ listRecommendedActions(
291
+ args: ListRecommendedActionsCommandInput,
292
+ options?: __HttpHandlerOptions
293
+ ): Promise<ListRecommendedActionsCommandOutput>;
294
+ listRecommendedActions(
295
+ args: ListRecommendedActionsCommandInput,
296
+ cb: (err: any, data?: ListRecommendedActionsCommandOutput) => void
297
+ ): void;
298
+ listRecommendedActions(
299
+ args: ListRecommendedActionsCommandInput,
300
+ options: __HttpHandlerOptions,
301
+ cb: (err: any, data?: ListRecommendedActionsCommandOutput) => void
302
+ ): void;
303
+ listRecommendedActionSummaries(): Promise<ListRecommendedActionSummariesCommandOutput>;
304
+ listRecommendedActionSummaries(
305
+ args: ListRecommendedActionSummariesCommandInput,
306
+ options?: __HttpHandlerOptions
307
+ ): Promise<ListRecommendedActionSummariesCommandOutput>;
308
+ listRecommendedActionSummaries(
309
+ args: ListRecommendedActionSummariesCommandInput,
310
+ cb: (err: any, data?: ListRecommendedActionSummariesCommandOutput) => void
311
+ ): void;
312
+ listRecommendedActionSummaries(
313
+ args: ListRecommendedActionSummariesCommandInput,
314
+ options: __HttpHandlerOptions,
315
+ cb: (err: any, data?: ListRecommendedActionSummariesCommandOutput) => void
316
+ ): void;
317
+ listTagsForResource(
318
+ args: ListTagsForResourceCommandInput,
319
+ options?: __HttpHandlerOptions
320
+ ): Promise<ListTagsForResourceCommandOutput>;
321
+ listTagsForResource(
322
+ args: ListTagsForResourceCommandInput,
323
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
324
+ ): void;
325
+ listTagsForResource(
326
+ args: ListTagsForResourceCommandInput,
327
+ options: __HttpHandlerOptions,
328
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
329
+ ): void;
330
+ rollbackAutomationEvent(
331
+ args: RollbackAutomationEventCommandInput,
332
+ options?: __HttpHandlerOptions
333
+ ): Promise<RollbackAutomationEventCommandOutput>;
334
+ rollbackAutomationEvent(
335
+ args: RollbackAutomationEventCommandInput,
336
+ cb: (err: any, data?: RollbackAutomationEventCommandOutput) => void
337
+ ): void;
338
+ rollbackAutomationEvent(
339
+ args: RollbackAutomationEventCommandInput,
340
+ options: __HttpHandlerOptions,
341
+ cb: (err: any, data?: RollbackAutomationEventCommandOutput) => void
342
+ ): void;
343
+ startAutomationEvent(
344
+ args: StartAutomationEventCommandInput,
345
+ options?: __HttpHandlerOptions
346
+ ): Promise<StartAutomationEventCommandOutput>;
347
+ startAutomationEvent(
348
+ args: StartAutomationEventCommandInput,
349
+ cb: (err: any, data?: StartAutomationEventCommandOutput) => void
350
+ ): void;
351
+ startAutomationEvent(
352
+ args: StartAutomationEventCommandInput,
353
+ options: __HttpHandlerOptions,
354
+ cb: (err: any, data?: StartAutomationEventCommandOutput) => void
355
+ ): void;
356
+ tagResource(
357
+ args: TagResourceCommandInput,
358
+ options?: __HttpHandlerOptions
359
+ ): Promise<TagResourceCommandOutput>;
360
+ tagResource(
361
+ args: TagResourceCommandInput,
362
+ cb: (err: any, data?: TagResourceCommandOutput) => void
363
+ ): void;
364
+ tagResource(
365
+ args: TagResourceCommandInput,
366
+ options: __HttpHandlerOptions,
367
+ cb: (err: any, data?: TagResourceCommandOutput) => void
368
+ ): void;
369
+ untagResource(
370
+ args: UntagResourceCommandInput,
371
+ options?: __HttpHandlerOptions
372
+ ): Promise<UntagResourceCommandOutput>;
373
+ untagResource(
374
+ args: UntagResourceCommandInput,
375
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
376
+ ): void;
377
+ untagResource(
378
+ args: UntagResourceCommandInput,
379
+ options: __HttpHandlerOptions,
380
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
381
+ ): void;
382
+ updateAutomationRule(
383
+ args: UpdateAutomationRuleCommandInput,
384
+ options?: __HttpHandlerOptions
385
+ ): Promise<UpdateAutomationRuleCommandOutput>;
386
+ updateAutomationRule(
387
+ args: UpdateAutomationRuleCommandInput,
388
+ cb: (err: any, data?: UpdateAutomationRuleCommandOutput) => void
389
+ ): void;
390
+ updateAutomationRule(
391
+ args: UpdateAutomationRuleCommandInput,
392
+ options: __HttpHandlerOptions,
393
+ cb: (err: any, data?: UpdateAutomationRuleCommandOutput) => void
394
+ ): void;
395
+ updateEnrollmentConfiguration(
396
+ args: UpdateEnrollmentConfigurationCommandInput,
397
+ options?: __HttpHandlerOptions
398
+ ): Promise<UpdateEnrollmentConfigurationCommandOutput>;
399
+ updateEnrollmentConfiguration(
400
+ args: UpdateEnrollmentConfigurationCommandInput,
401
+ cb: (err: any, data?: UpdateEnrollmentConfigurationCommandOutput) => void
402
+ ): void;
403
+ updateEnrollmentConfiguration(
404
+ args: UpdateEnrollmentConfigurationCommandInput,
405
+ options: __HttpHandlerOptions,
406
+ cb: (err: any, data?: UpdateEnrollmentConfigurationCommandOutput) => void
407
+ ): void;
408
+ }
409
+ export declare class ComputeOptimizerAutomation
410
+ extends ComputeOptimizerAutomationClient
411
+ implements ComputeOptimizerAutomation {}
@@ -0,0 +1,264 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
34
+ Decoder as __Decoder,
35
+ Encoder as __Encoder,
36
+ HashConstructor as __HashConstructor,
37
+ HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
40
+ Logger as __Logger,
41
+ Provider as __Provider,
42
+ Provider,
43
+ StreamCollector as __StreamCollector,
44
+ UrlParser as __UrlParser,
45
+ UserAgent as __UserAgent,
46
+ } from "@smithy/types";
47
+ import {
48
+ HttpAuthSchemeInputConfig,
49
+ HttpAuthSchemeResolvedConfig,
50
+ } from "./auth/httpAuthSchemeProvider";
51
+ import {
52
+ AssociateAccountsCommandInput,
53
+ AssociateAccountsCommandOutput,
54
+ } from "./commands/AssociateAccountsCommand";
55
+ import {
56
+ CreateAutomationRuleCommandInput,
57
+ CreateAutomationRuleCommandOutput,
58
+ } from "./commands/CreateAutomationRuleCommand";
59
+ import {
60
+ DeleteAutomationRuleCommandInput,
61
+ DeleteAutomationRuleCommandOutput,
62
+ } from "./commands/DeleteAutomationRuleCommand";
63
+ import {
64
+ DisassociateAccountsCommandInput,
65
+ DisassociateAccountsCommandOutput,
66
+ } from "./commands/DisassociateAccountsCommand";
67
+ import {
68
+ GetAutomationEventCommandInput,
69
+ GetAutomationEventCommandOutput,
70
+ } from "./commands/GetAutomationEventCommand";
71
+ import {
72
+ GetAutomationRuleCommandInput,
73
+ GetAutomationRuleCommandOutput,
74
+ } from "./commands/GetAutomationRuleCommand";
75
+ import {
76
+ GetEnrollmentConfigurationCommandInput,
77
+ GetEnrollmentConfigurationCommandOutput,
78
+ } from "./commands/GetEnrollmentConfigurationCommand";
79
+ import {
80
+ ListAccountsCommandInput,
81
+ ListAccountsCommandOutput,
82
+ } from "./commands/ListAccountsCommand";
83
+ import {
84
+ ListAutomationEventsCommandInput,
85
+ ListAutomationEventsCommandOutput,
86
+ } from "./commands/ListAutomationEventsCommand";
87
+ import {
88
+ ListAutomationEventStepsCommandInput,
89
+ ListAutomationEventStepsCommandOutput,
90
+ } from "./commands/ListAutomationEventStepsCommand";
91
+ import {
92
+ ListAutomationEventSummariesCommandInput,
93
+ ListAutomationEventSummariesCommandOutput,
94
+ } from "./commands/ListAutomationEventSummariesCommand";
95
+ import {
96
+ ListAutomationRulePreviewCommandInput,
97
+ ListAutomationRulePreviewCommandOutput,
98
+ } from "./commands/ListAutomationRulePreviewCommand";
99
+ import {
100
+ ListAutomationRulePreviewSummariesCommandInput,
101
+ ListAutomationRulePreviewSummariesCommandOutput,
102
+ } from "./commands/ListAutomationRulePreviewSummariesCommand";
103
+ import {
104
+ ListAutomationRulesCommandInput,
105
+ ListAutomationRulesCommandOutput,
106
+ } from "./commands/ListAutomationRulesCommand";
107
+ import {
108
+ ListRecommendedActionsCommandInput,
109
+ ListRecommendedActionsCommandOutput,
110
+ } from "./commands/ListRecommendedActionsCommand";
111
+ import {
112
+ ListRecommendedActionSummariesCommandInput,
113
+ ListRecommendedActionSummariesCommandOutput,
114
+ } from "./commands/ListRecommendedActionSummariesCommand";
115
+ import {
116
+ ListTagsForResourceCommandInput,
117
+ ListTagsForResourceCommandOutput,
118
+ } from "./commands/ListTagsForResourceCommand";
119
+ import {
120
+ RollbackAutomationEventCommandInput,
121
+ RollbackAutomationEventCommandOutput,
122
+ } from "./commands/RollbackAutomationEventCommand";
123
+ import {
124
+ StartAutomationEventCommandInput,
125
+ StartAutomationEventCommandOutput,
126
+ } from "./commands/StartAutomationEventCommand";
127
+ import {
128
+ TagResourceCommandInput,
129
+ TagResourceCommandOutput,
130
+ } from "./commands/TagResourceCommand";
131
+ import {
132
+ UntagResourceCommandInput,
133
+ UntagResourceCommandOutput,
134
+ } from "./commands/UntagResourceCommand";
135
+ import {
136
+ UpdateAutomationRuleCommandInput,
137
+ UpdateAutomationRuleCommandOutput,
138
+ } from "./commands/UpdateAutomationRuleCommand";
139
+ import {
140
+ UpdateEnrollmentConfigurationCommandInput,
141
+ UpdateEnrollmentConfigurationCommandOutput,
142
+ } from "./commands/UpdateEnrollmentConfigurationCommand";
143
+ import {
144
+ ClientInputEndpointParameters,
145
+ ClientResolvedEndpointParameters,
146
+ EndpointParameters,
147
+ } from "./endpoint/EndpointParameters";
148
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
149
+ export { __Client };
150
+ export type ServiceInputTypes =
151
+ | AssociateAccountsCommandInput
152
+ | CreateAutomationRuleCommandInput
153
+ | DeleteAutomationRuleCommandInput
154
+ | DisassociateAccountsCommandInput
155
+ | GetAutomationEventCommandInput
156
+ | GetAutomationRuleCommandInput
157
+ | GetEnrollmentConfigurationCommandInput
158
+ | ListAccountsCommandInput
159
+ | ListAutomationEventStepsCommandInput
160
+ | ListAutomationEventSummariesCommandInput
161
+ | ListAutomationEventsCommandInput
162
+ | ListAutomationRulePreviewCommandInput
163
+ | ListAutomationRulePreviewSummariesCommandInput
164
+ | ListAutomationRulesCommandInput
165
+ | ListRecommendedActionSummariesCommandInput
166
+ | ListRecommendedActionsCommandInput
167
+ | ListTagsForResourceCommandInput
168
+ | RollbackAutomationEventCommandInput
169
+ | StartAutomationEventCommandInput
170
+ | TagResourceCommandInput
171
+ | UntagResourceCommandInput
172
+ | UpdateAutomationRuleCommandInput
173
+ | UpdateEnrollmentConfigurationCommandInput;
174
+ export type ServiceOutputTypes =
175
+ | AssociateAccountsCommandOutput
176
+ | CreateAutomationRuleCommandOutput
177
+ | DeleteAutomationRuleCommandOutput
178
+ | DisassociateAccountsCommandOutput
179
+ | GetAutomationEventCommandOutput
180
+ | GetAutomationRuleCommandOutput
181
+ | GetEnrollmentConfigurationCommandOutput
182
+ | ListAccountsCommandOutput
183
+ | ListAutomationEventStepsCommandOutput
184
+ | ListAutomationEventSummariesCommandOutput
185
+ | ListAutomationEventsCommandOutput
186
+ | ListAutomationRulePreviewCommandOutput
187
+ | ListAutomationRulePreviewSummariesCommandOutput
188
+ | ListAutomationRulesCommandOutput
189
+ | ListRecommendedActionSummariesCommandOutput
190
+ | ListRecommendedActionsCommandOutput
191
+ | ListTagsForResourceCommandOutput
192
+ | RollbackAutomationEventCommandOutput
193
+ | StartAutomationEventCommandOutput
194
+ | TagResourceCommandOutput
195
+ | UntagResourceCommandOutput
196
+ | UpdateAutomationRuleCommandOutput
197
+ | UpdateEnrollmentConfigurationCommandOutput;
198
+ export interface ClientDefaults
199
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
200
+ requestHandler?: __HttpHandlerUserInput;
201
+ sha256?: __ChecksumConstructor | __HashConstructor;
202
+ urlParser?: __UrlParser;
203
+ bodyLengthChecker?: __BodyLengthCalculator;
204
+ streamCollector?: __StreamCollector;
205
+ base64Decoder?: __Decoder;
206
+ base64Encoder?: __Encoder;
207
+ utf8Decoder?: __Decoder;
208
+ utf8Encoder?: __Encoder;
209
+ runtime?: string;
210
+ disableHostPrefix?: boolean;
211
+ serviceId?: string;
212
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
213
+ useFipsEndpoint?: boolean | __Provider<boolean>;
214
+ region?: string | __Provider<string>;
215
+ profile?: string;
216
+ defaultUserAgentProvider?: Provider<__UserAgent>;
217
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
218
+ maxAttempts?: number | __Provider<number>;
219
+ retryMode?: string | __Provider<string>;
220
+ logger?: __Logger;
221
+ extensions?: RuntimeExtension[];
222
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
223
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
224
+ }
225
+ export type ComputeOptimizerAutomationClientConfigType = Partial<
226
+ __SmithyConfiguration<__HttpHandlerOptions>
227
+ > &
228
+ ClientDefaults &
229
+ UserAgentInputConfig &
230
+ RetryInputConfig &
231
+ RegionInputConfig &
232
+ HostHeaderInputConfig &
233
+ EndpointInputConfig<EndpointParameters> &
234
+ HttpAuthSchemeInputConfig &
235
+ ClientInputEndpointParameters;
236
+ export interface ComputeOptimizerAutomationClientConfig
237
+ extends ComputeOptimizerAutomationClientConfigType {}
238
+ export type ComputeOptimizerAutomationClientResolvedConfigType =
239
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
240
+ Required<ClientDefaults> &
241
+ RuntimeExtensionsConfig &
242
+ UserAgentResolvedConfig &
243
+ RetryResolvedConfig &
244
+ RegionResolvedConfig &
245
+ HostHeaderResolvedConfig &
246
+ EndpointResolvedConfig<EndpointParameters> &
247
+ HttpAuthSchemeResolvedConfig &
248
+ ClientResolvedEndpointParameters;
249
+ export interface ComputeOptimizerAutomationClientResolvedConfig
250
+ extends ComputeOptimizerAutomationClientResolvedConfigType {}
251
+ export declare class ComputeOptimizerAutomationClient extends __Client<
252
+ __HttpHandlerOptions,
253
+ ServiceInputTypes,
254
+ ServiceOutputTypes,
255
+ ComputeOptimizerAutomationClientResolvedConfig
256
+ > {
257
+ readonly config: ComputeOptimizerAutomationClientResolvedConfig;
258
+ constructor(
259
+ ...[
260
+ configuration,
261
+ ]: __CheckOptionalClientConfig<ComputeOptimizerAutomationClientConfig>
262
+ );
263
+ destroy(): void;
264
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { ComputeOptimizerAutomationHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: ComputeOptimizerAutomationHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): ComputeOptimizerAutomationHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: ComputeOptimizerAutomationHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;