@aws-sdk/client-compute-optimizer-automation 3.1086.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/ComputeOptimizerAutomation.d.ts +79 -88
- package/dist-types/ts3.4/ComputeOptimizerAutomationClient.d.ts +6 -17
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AssociateAccountsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateAutomationRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteAutomationRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DisassociateAccountsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAutomationEventCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAutomationRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetEnrollmentConfigurationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListAccountsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListAutomationEventStepsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAutomationEventSummariesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListAutomationEventsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListAutomationRulePreviewCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAutomationRulePreviewSummariesCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAutomationRulesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRecommendedActionSummariesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListRecommendedActionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RollbackAutomationEventCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/StartAutomationEventCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAutomationRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateEnrollmentConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +5 -10
- package/dist-types/ts3.4/models/errors.d.ts +11 -36
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -79,10 +79,7 @@ import {
|
|
|
79
79
|
StartAutomationEventCommandInput,
|
|
80
80
|
StartAutomationEventCommandOutput,
|
|
81
81
|
} from "./commands/StartAutomationEventCommand";
|
|
82
|
-
import {
|
|
83
|
-
TagResourceCommandInput,
|
|
84
|
-
TagResourceCommandOutput,
|
|
85
|
-
} from "./commands/TagResourceCommand";
|
|
82
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
86
83
|
import {
|
|
87
84
|
UntagResourceCommandInput,
|
|
88
85
|
UntagResourceCommandOutput,
|
|
@@ -99,378 +96,372 @@ import { ComputeOptimizerAutomationClient } from "./ComputeOptimizerAutomationCl
|
|
|
99
96
|
export interface ComputeOptimizerAutomation {
|
|
100
97
|
associateAccounts(
|
|
101
98
|
args: AssociateAccountsCommandInput,
|
|
102
|
-
options?: __HttpHandlerOptions
|
|
99
|
+
options?: __HttpHandlerOptions,
|
|
103
100
|
): Promise<AssociateAccountsCommandOutput>;
|
|
104
101
|
associateAccounts(
|
|
105
102
|
args: AssociateAccountsCommandInput,
|
|
106
|
-
cb: (err: any, data?: AssociateAccountsCommandOutput) => void
|
|
103
|
+
cb: (err: any, data?: AssociateAccountsCommandOutput) => void,
|
|
107
104
|
): void;
|
|
108
105
|
associateAccounts(
|
|
109
106
|
args: AssociateAccountsCommandInput,
|
|
110
107
|
options: __HttpHandlerOptions,
|
|
111
|
-
cb: (err: any, data?: AssociateAccountsCommandOutput) => void
|
|
108
|
+
cb: (err: any, data?: AssociateAccountsCommandOutput) => void,
|
|
112
109
|
): void;
|
|
113
110
|
createAutomationRule(
|
|
114
111
|
args: CreateAutomationRuleCommandInput,
|
|
115
|
-
options?: __HttpHandlerOptions
|
|
112
|
+
options?: __HttpHandlerOptions,
|
|
116
113
|
): Promise<CreateAutomationRuleCommandOutput>;
|
|
117
114
|
createAutomationRule(
|
|
118
115
|
args: CreateAutomationRuleCommandInput,
|
|
119
|
-
cb: (err: any, data?: CreateAutomationRuleCommandOutput) => void
|
|
116
|
+
cb: (err: any, data?: CreateAutomationRuleCommandOutput) => void,
|
|
120
117
|
): void;
|
|
121
118
|
createAutomationRule(
|
|
122
119
|
args: CreateAutomationRuleCommandInput,
|
|
123
120
|
options: __HttpHandlerOptions,
|
|
124
|
-
cb: (err: any, data?: CreateAutomationRuleCommandOutput) => void
|
|
121
|
+
cb: (err: any, data?: CreateAutomationRuleCommandOutput) => void,
|
|
125
122
|
): void;
|
|
126
123
|
deleteAutomationRule(
|
|
127
124
|
args: DeleteAutomationRuleCommandInput,
|
|
128
|
-
options?: __HttpHandlerOptions
|
|
125
|
+
options?: __HttpHandlerOptions,
|
|
129
126
|
): Promise<DeleteAutomationRuleCommandOutput>;
|
|
130
127
|
deleteAutomationRule(
|
|
131
128
|
args: DeleteAutomationRuleCommandInput,
|
|
132
|
-
cb: (err: any, data?: DeleteAutomationRuleCommandOutput) => void
|
|
129
|
+
cb: (err: any, data?: DeleteAutomationRuleCommandOutput) => void,
|
|
133
130
|
): void;
|
|
134
131
|
deleteAutomationRule(
|
|
135
132
|
args: DeleteAutomationRuleCommandInput,
|
|
136
133
|
options: __HttpHandlerOptions,
|
|
137
|
-
cb: (err: any, data?: DeleteAutomationRuleCommandOutput) => void
|
|
134
|
+
cb: (err: any, data?: DeleteAutomationRuleCommandOutput) => void,
|
|
138
135
|
): void;
|
|
139
136
|
disassociateAccounts(
|
|
140
137
|
args: DisassociateAccountsCommandInput,
|
|
141
|
-
options?: __HttpHandlerOptions
|
|
138
|
+
options?: __HttpHandlerOptions,
|
|
142
139
|
): Promise<DisassociateAccountsCommandOutput>;
|
|
143
140
|
disassociateAccounts(
|
|
144
141
|
args: DisassociateAccountsCommandInput,
|
|
145
|
-
cb: (err: any, data?: DisassociateAccountsCommandOutput) => void
|
|
142
|
+
cb: (err: any, data?: DisassociateAccountsCommandOutput) => void,
|
|
146
143
|
): void;
|
|
147
144
|
disassociateAccounts(
|
|
148
145
|
args: DisassociateAccountsCommandInput,
|
|
149
146
|
options: __HttpHandlerOptions,
|
|
150
|
-
cb: (err: any, data?: DisassociateAccountsCommandOutput) => void
|
|
147
|
+
cb: (err: any, data?: DisassociateAccountsCommandOutput) => void,
|
|
151
148
|
): void;
|
|
152
149
|
getAutomationEvent(
|
|
153
150
|
args: GetAutomationEventCommandInput,
|
|
154
|
-
options?: __HttpHandlerOptions
|
|
151
|
+
options?: __HttpHandlerOptions,
|
|
155
152
|
): Promise<GetAutomationEventCommandOutput>;
|
|
156
153
|
getAutomationEvent(
|
|
157
154
|
args: GetAutomationEventCommandInput,
|
|
158
|
-
cb: (err: any, data?: GetAutomationEventCommandOutput) => void
|
|
155
|
+
cb: (err: any, data?: GetAutomationEventCommandOutput) => void,
|
|
159
156
|
): void;
|
|
160
157
|
getAutomationEvent(
|
|
161
158
|
args: GetAutomationEventCommandInput,
|
|
162
159
|
options: __HttpHandlerOptions,
|
|
163
|
-
cb: (err: any, data?: GetAutomationEventCommandOutput) => void
|
|
160
|
+
cb: (err: any, data?: GetAutomationEventCommandOutput) => void,
|
|
164
161
|
): void;
|
|
165
162
|
getAutomationRule(
|
|
166
163
|
args: GetAutomationRuleCommandInput,
|
|
167
|
-
options?: __HttpHandlerOptions
|
|
164
|
+
options?: __HttpHandlerOptions,
|
|
168
165
|
): Promise<GetAutomationRuleCommandOutput>;
|
|
169
166
|
getAutomationRule(
|
|
170
167
|
args: GetAutomationRuleCommandInput,
|
|
171
|
-
cb: (err: any, data?: GetAutomationRuleCommandOutput) => void
|
|
168
|
+
cb: (err: any, data?: GetAutomationRuleCommandOutput) => void,
|
|
172
169
|
): void;
|
|
173
170
|
getAutomationRule(
|
|
174
171
|
args: GetAutomationRuleCommandInput,
|
|
175
172
|
options: __HttpHandlerOptions,
|
|
176
|
-
cb: (err: any, data?: GetAutomationRuleCommandOutput) => void
|
|
173
|
+
cb: (err: any, data?: GetAutomationRuleCommandOutput) => void,
|
|
177
174
|
): void;
|
|
178
175
|
getEnrollmentConfiguration(): Promise<GetEnrollmentConfigurationCommandOutput>;
|
|
179
176
|
getEnrollmentConfiguration(
|
|
180
177
|
args: GetEnrollmentConfigurationCommandInput,
|
|
181
|
-
options?: __HttpHandlerOptions
|
|
178
|
+
options?: __HttpHandlerOptions,
|
|
182
179
|
): Promise<GetEnrollmentConfigurationCommandOutput>;
|
|
183
180
|
getEnrollmentConfiguration(
|
|
184
181
|
args: GetEnrollmentConfigurationCommandInput,
|
|
185
|
-
cb: (err: any, data?: GetEnrollmentConfigurationCommandOutput) => void
|
|
182
|
+
cb: (err: any, data?: GetEnrollmentConfigurationCommandOutput) => void,
|
|
186
183
|
): void;
|
|
187
184
|
getEnrollmentConfiguration(
|
|
188
185
|
args: GetEnrollmentConfigurationCommandInput,
|
|
189
186
|
options: __HttpHandlerOptions,
|
|
190
|
-
cb: (err: any, data?: GetEnrollmentConfigurationCommandOutput) => void
|
|
187
|
+
cb: (err: any, data?: GetEnrollmentConfigurationCommandOutput) => void,
|
|
191
188
|
): void;
|
|
192
189
|
listAccounts(): Promise<ListAccountsCommandOutput>;
|
|
193
190
|
listAccounts(
|
|
194
191
|
args: ListAccountsCommandInput,
|
|
195
|
-
options?: __HttpHandlerOptions
|
|
192
|
+
options?: __HttpHandlerOptions,
|
|
196
193
|
): Promise<ListAccountsCommandOutput>;
|
|
197
194
|
listAccounts(
|
|
198
195
|
args: ListAccountsCommandInput,
|
|
199
|
-
cb: (err: any, data?: ListAccountsCommandOutput) => void
|
|
196
|
+
cb: (err: any, data?: ListAccountsCommandOutput) => void,
|
|
200
197
|
): void;
|
|
201
198
|
listAccounts(
|
|
202
199
|
args: ListAccountsCommandInput,
|
|
203
200
|
options: __HttpHandlerOptions,
|
|
204
|
-
cb: (err: any, data?: ListAccountsCommandOutput) => void
|
|
201
|
+
cb: (err: any, data?: ListAccountsCommandOutput) => void,
|
|
205
202
|
): void;
|
|
206
203
|
listAutomationEvents(): Promise<ListAutomationEventsCommandOutput>;
|
|
207
204
|
listAutomationEvents(
|
|
208
205
|
args: ListAutomationEventsCommandInput,
|
|
209
|
-
options?: __HttpHandlerOptions
|
|
206
|
+
options?: __HttpHandlerOptions,
|
|
210
207
|
): Promise<ListAutomationEventsCommandOutput>;
|
|
211
208
|
listAutomationEvents(
|
|
212
209
|
args: ListAutomationEventsCommandInput,
|
|
213
|
-
cb: (err: any, data?: ListAutomationEventsCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: ListAutomationEventsCommandOutput) => void,
|
|
214
211
|
): void;
|
|
215
212
|
listAutomationEvents(
|
|
216
213
|
args: ListAutomationEventsCommandInput,
|
|
217
214
|
options: __HttpHandlerOptions,
|
|
218
|
-
cb: (err: any, data?: ListAutomationEventsCommandOutput) => void
|
|
215
|
+
cb: (err: any, data?: ListAutomationEventsCommandOutput) => void,
|
|
219
216
|
): void;
|
|
220
217
|
listAutomationEventSteps(
|
|
221
218
|
args: ListAutomationEventStepsCommandInput,
|
|
222
|
-
options?: __HttpHandlerOptions
|
|
219
|
+
options?: __HttpHandlerOptions,
|
|
223
220
|
): Promise<ListAutomationEventStepsCommandOutput>;
|
|
224
221
|
listAutomationEventSteps(
|
|
225
222
|
args: ListAutomationEventStepsCommandInput,
|
|
226
|
-
cb: (err: any, data?: ListAutomationEventStepsCommandOutput) => void
|
|
223
|
+
cb: (err: any, data?: ListAutomationEventStepsCommandOutput) => void,
|
|
227
224
|
): void;
|
|
228
225
|
listAutomationEventSteps(
|
|
229
226
|
args: ListAutomationEventStepsCommandInput,
|
|
230
227
|
options: __HttpHandlerOptions,
|
|
231
|
-
cb: (err: any, data?: ListAutomationEventStepsCommandOutput) => void
|
|
228
|
+
cb: (err: any, data?: ListAutomationEventStepsCommandOutput) => void,
|
|
232
229
|
): void;
|
|
233
230
|
listAutomationEventSummaries(): Promise<ListAutomationEventSummariesCommandOutput>;
|
|
234
231
|
listAutomationEventSummaries(
|
|
235
232
|
args: ListAutomationEventSummariesCommandInput,
|
|
236
|
-
options?: __HttpHandlerOptions
|
|
233
|
+
options?: __HttpHandlerOptions,
|
|
237
234
|
): Promise<ListAutomationEventSummariesCommandOutput>;
|
|
238
235
|
listAutomationEventSummaries(
|
|
239
236
|
args: ListAutomationEventSummariesCommandInput,
|
|
240
|
-
cb: (err: any, data?: ListAutomationEventSummariesCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: ListAutomationEventSummariesCommandOutput) => void,
|
|
241
238
|
): void;
|
|
242
239
|
listAutomationEventSummaries(
|
|
243
240
|
args: ListAutomationEventSummariesCommandInput,
|
|
244
241
|
options: __HttpHandlerOptions,
|
|
245
|
-
cb: (err: any, data?: ListAutomationEventSummariesCommandOutput) => void
|
|
242
|
+
cb: (err: any, data?: ListAutomationEventSummariesCommandOutput) => void,
|
|
246
243
|
): void;
|
|
247
244
|
listAutomationRulePreview(
|
|
248
245
|
args: ListAutomationRulePreviewCommandInput,
|
|
249
|
-
options?: __HttpHandlerOptions
|
|
246
|
+
options?: __HttpHandlerOptions,
|
|
250
247
|
): Promise<ListAutomationRulePreviewCommandOutput>;
|
|
251
248
|
listAutomationRulePreview(
|
|
252
249
|
args: ListAutomationRulePreviewCommandInput,
|
|
253
|
-
cb: (err: any, data?: ListAutomationRulePreviewCommandOutput) => void
|
|
250
|
+
cb: (err: any, data?: ListAutomationRulePreviewCommandOutput) => void,
|
|
254
251
|
): void;
|
|
255
252
|
listAutomationRulePreview(
|
|
256
253
|
args: ListAutomationRulePreviewCommandInput,
|
|
257
254
|
options: __HttpHandlerOptions,
|
|
258
|
-
cb: (err: any, data?: ListAutomationRulePreviewCommandOutput) => void
|
|
255
|
+
cb: (err: any, data?: ListAutomationRulePreviewCommandOutput) => void,
|
|
259
256
|
): void;
|
|
260
257
|
listAutomationRulePreviewSummaries(
|
|
261
258
|
args: ListAutomationRulePreviewSummariesCommandInput,
|
|
262
|
-
options?: __HttpHandlerOptions
|
|
259
|
+
options?: __HttpHandlerOptions,
|
|
263
260
|
): Promise<ListAutomationRulePreviewSummariesCommandOutput>;
|
|
264
261
|
listAutomationRulePreviewSummaries(
|
|
265
262
|
args: ListAutomationRulePreviewSummariesCommandInput,
|
|
266
|
-
cb: (
|
|
267
|
-
err: any,
|
|
268
|
-
data?: ListAutomationRulePreviewSummariesCommandOutput
|
|
269
|
-
) => void
|
|
263
|
+
cb: (err: any, data?: ListAutomationRulePreviewSummariesCommandOutput) => void,
|
|
270
264
|
): void;
|
|
271
265
|
listAutomationRulePreviewSummaries(
|
|
272
266
|
args: ListAutomationRulePreviewSummariesCommandInput,
|
|
273
267
|
options: __HttpHandlerOptions,
|
|
274
|
-
cb: (
|
|
275
|
-
err: any,
|
|
276
|
-
data?: ListAutomationRulePreviewSummariesCommandOutput
|
|
277
|
-
) => void
|
|
268
|
+
cb: (err: any, data?: ListAutomationRulePreviewSummariesCommandOutput) => void,
|
|
278
269
|
): void;
|
|
279
270
|
listAutomationRules(): Promise<ListAutomationRulesCommandOutput>;
|
|
280
271
|
listAutomationRules(
|
|
281
272
|
args: ListAutomationRulesCommandInput,
|
|
282
|
-
options?: __HttpHandlerOptions
|
|
273
|
+
options?: __HttpHandlerOptions,
|
|
283
274
|
): Promise<ListAutomationRulesCommandOutput>;
|
|
284
275
|
listAutomationRules(
|
|
285
276
|
args: ListAutomationRulesCommandInput,
|
|
286
|
-
cb: (err: any, data?: ListAutomationRulesCommandOutput) => void
|
|
277
|
+
cb: (err: any, data?: ListAutomationRulesCommandOutput) => void,
|
|
287
278
|
): void;
|
|
288
279
|
listAutomationRules(
|
|
289
280
|
args: ListAutomationRulesCommandInput,
|
|
290
281
|
options: __HttpHandlerOptions,
|
|
291
|
-
cb: (err: any, data?: ListAutomationRulesCommandOutput) => void
|
|
282
|
+
cb: (err: any, data?: ListAutomationRulesCommandOutput) => void,
|
|
292
283
|
): void;
|
|
293
284
|
listRecommendedActions(): Promise<ListRecommendedActionsCommandOutput>;
|
|
294
285
|
listRecommendedActions(
|
|
295
286
|
args: ListRecommendedActionsCommandInput,
|
|
296
|
-
options?: __HttpHandlerOptions
|
|
287
|
+
options?: __HttpHandlerOptions,
|
|
297
288
|
): Promise<ListRecommendedActionsCommandOutput>;
|
|
298
289
|
listRecommendedActions(
|
|
299
290
|
args: ListRecommendedActionsCommandInput,
|
|
300
|
-
cb: (err: any, data?: ListRecommendedActionsCommandOutput) => void
|
|
291
|
+
cb: (err: any, data?: ListRecommendedActionsCommandOutput) => void,
|
|
301
292
|
): void;
|
|
302
293
|
listRecommendedActions(
|
|
303
294
|
args: ListRecommendedActionsCommandInput,
|
|
304
295
|
options: __HttpHandlerOptions,
|
|
305
|
-
cb: (err: any, data?: ListRecommendedActionsCommandOutput) => void
|
|
296
|
+
cb: (err: any, data?: ListRecommendedActionsCommandOutput) => void,
|
|
306
297
|
): void;
|
|
307
298
|
listRecommendedActionSummaries(): Promise<ListRecommendedActionSummariesCommandOutput>;
|
|
308
299
|
listRecommendedActionSummaries(
|
|
309
300
|
args: ListRecommendedActionSummariesCommandInput,
|
|
310
|
-
options?: __HttpHandlerOptions
|
|
301
|
+
options?: __HttpHandlerOptions,
|
|
311
302
|
): Promise<ListRecommendedActionSummariesCommandOutput>;
|
|
312
303
|
listRecommendedActionSummaries(
|
|
313
304
|
args: ListRecommendedActionSummariesCommandInput,
|
|
314
|
-
cb: (err: any, data?: ListRecommendedActionSummariesCommandOutput) => void
|
|
305
|
+
cb: (err: any, data?: ListRecommendedActionSummariesCommandOutput) => void,
|
|
315
306
|
): void;
|
|
316
307
|
listRecommendedActionSummaries(
|
|
317
308
|
args: ListRecommendedActionSummariesCommandInput,
|
|
318
309
|
options: __HttpHandlerOptions,
|
|
319
|
-
cb: (err: any, data?: ListRecommendedActionSummariesCommandOutput) => void
|
|
310
|
+
cb: (err: any, data?: ListRecommendedActionSummariesCommandOutput) => void,
|
|
320
311
|
): void;
|
|
321
312
|
listTagsForResource(
|
|
322
313
|
args: ListTagsForResourceCommandInput,
|
|
323
|
-
options?: __HttpHandlerOptions
|
|
314
|
+
options?: __HttpHandlerOptions,
|
|
324
315
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
325
316
|
listTagsForResource(
|
|
326
317
|
args: ListTagsForResourceCommandInput,
|
|
327
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
318
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
328
319
|
): void;
|
|
329
320
|
listTagsForResource(
|
|
330
321
|
args: ListTagsForResourceCommandInput,
|
|
331
322
|
options: __HttpHandlerOptions,
|
|
332
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
323
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
333
324
|
): void;
|
|
334
325
|
rollbackAutomationEvent(
|
|
335
326
|
args: RollbackAutomationEventCommandInput,
|
|
336
|
-
options?: __HttpHandlerOptions
|
|
327
|
+
options?: __HttpHandlerOptions,
|
|
337
328
|
): Promise<RollbackAutomationEventCommandOutput>;
|
|
338
329
|
rollbackAutomationEvent(
|
|
339
330
|
args: RollbackAutomationEventCommandInput,
|
|
340
|
-
cb: (err: any, data?: RollbackAutomationEventCommandOutput) => void
|
|
331
|
+
cb: (err: any, data?: RollbackAutomationEventCommandOutput) => void,
|
|
341
332
|
): void;
|
|
342
333
|
rollbackAutomationEvent(
|
|
343
334
|
args: RollbackAutomationEventCommandInput,
|
|
344
335
|
options: __HttpHandlerOptions,
|
|
345
|
-
cb: (err: any, data?: RollbackAutomationEventCommandOutput) => void
|
|
336
|
+
cb: (err: any, data?: RollbackAutomationEventCommandOutput) => void,
|
|
346
337
|
): void;
|
|
347
338
|
startAutomationEvent(
|
|
348
339
|
args: StartAutomationEventCommandInput,
|
|
349
|
-
options?: __HttpHandlerOptions
|
|
340
|
+
options?: __HttpHandlerOptions,
|
|
350
341
|
): Promise<StartAutomationEventCommandOutput>;
|
|
351
342
|
startAutomationEvent(
|
|
352
343
|
args: StartAutomationEventCommandInput,
|
|
353
|
-
cb: (err: any, data?: StartAutomationEventCommandOutput) => void
|
|
344
|
+
cb: (err: any, data?: StartAutomationEventCommandOutput) => void,
|
|
354
345
|
): void;
|
|
355
346
|
startAutomationEvent(
|
|
356
347
|
args: StartAutomationEventCommandInput,
|
|
357
348
|
options: __HttpHandlerOptions,
|
|
358
|
-
cb: (err: any, data?: StartAutomationEventCommandOutput) => void
|
|
349
|
+
cb: (err: any, data?: StartAutomationEventCommandOutput) => void,
|
|
359
350
|
): void;
|
|
360
351
|
tagResource(
|
|
361
352
|
args: TagResourceCommandInput,
|
|
362
|
-
options?: __HttpHandlerOptions
|
|
353
|
+
options?: __HttpHandlerOptions,
|
|
363
354
|
): Promise<TagResourceCommandOutput>;
|
|
364
355
|
tagResource(
|
|
365
356
|
args: TagResourceCommandInput,
|
|
366
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
357
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
367
358
|
): void;
|
|
368
359
|
tagResource(
|
|
369
360
|
args: TagResourceCommandInput,
|
|
370
361
|
options: __HttpHandlerOptions,
|
|
371
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
362
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
372
363
|
): void;
|
|
373
364
|
untagResource(
|
|
374
365
|
args: UntagResourceCommandInput,
|
|
375
|
-
options?: __HttpHandlerOptions
|
|
366
|
+
options?: __HttpHandlerOptions,
|
|
376
367
|
): Promise<UntagResourceCommandOutput>;
|
|
377
368
|
untagResource(
|
|
378
369
|
args: UntagResourceCommandInput,
|
|
379
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
370
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
380
371
|
): void;
|
|
381
372
|
untagResource(
|
|
382
373
|
args: UntagResourceCommandInput,
|
|
383
374
|
options: __HttpHandlerOptions,
|
|
384
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
375
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
385
376
|
): void;
|
|
386
377
|
updateAutomationRule(
|
|
387
378
|
args: UpdateAutomationRuleCommandInput,
|
|
388
|
-
options?: __HttpHandlerOptions
|
|
379
|
+
options?: __HttpHandlerOptions,
|
|
389
380
|
): Promise<UpdateAutomationRuleCommandOutput>;
|
|
390
381
|
updateAutomationRule(
|
|
391
382
|
args: UpdateAutomationRuleCommandInput,
|
|
392
|
-
cb: (err: any, data?: UpdateAutomationRuleCommandOutput) => void
|
|
383
|
+
cb: (err: any, data?: UpdateAutomationRuleCommandOutput) => void,
|
|
393
384
|
): void;
|
|
394
385
|
updateAutomationRule(
|
|
395
386
|
args: UpdateAutomationRuleCommandInput,
|
|
396
387
|
options: __HttpHandlerOptions,
|
|
397
|
-
cb: (err: any, data?: UpdateAutomationRuleCommandOutput) => void
|
|
388
|
+
cb: (err: any, data?: UpdateAutomationRuleCommandOutput) => void,
|
|
398
389
|
): void;
|
|
399
390
|
updateEnrollmentConfiguration(
|
|
400
391
|
args: UpdateEnrollmentConfigurationCommandInput,
|
|
401
|
-
options?: __HttpHandlerOptions
|
|
392
|
+
options?: __HttpHandlerOptions,
|
|
402
393
|
): Promise<UpdateEnrollmentConfigurationCommandOutput>;
|
|
403
394
|
updateEnrollmentConfiguration(
|
|
404
395
|
args: UpdateEnrollmentConfigurationCommandInput,
|
|
405
|
-
cb: (err: any, data?: UpdateEnrollmentConfigurationCommandOutput) => void
|
|
396
|
+
cb: (err: any, data?: UpdateEnrollmentConfigurationCommandOutput) => void,
|
|
406
397
|
): void;
|
|
407
398
|
updateEnrollmentConfiguration(
|
|
408
399
|
args: UpdateEnrollmentConfigurationCommandInput,
|
|
409
400
|
options: __HttpHandlerOptions,
|
|
410
|
-
cb: (err: any, data?: UpdateEnrollmentConfigurationCommandOutput) => void
|
|
401
|
+
cb: (err: any, data?: UpdateEnrollmentConfigurationCommandOutput) => void,
|
|
411
402
|
): void;
|
|
412
403
|
paginateListAccounts(
|
|
413
404
|
args?: ListAccountsCommandInput,
|
|
414
405
|
paginationConfig?: Pick<
|
|
415
406
|
PaginationConfiguration,
|
|
416
407
|
Exclude<keyof PaginationConfiguration, "client">
|
|
417
|
-
|
|
408
|
+
>,
|
|
418
409
|
): Paginator<ListAccountsCommandOutput>;
|
|
419
410
|
paginateListAutomationEvents(
|
|
420
411
|
args?: ListAutomationEventsCommandInput,
|
|
421
412
|
paginationConfig?: Pick<
|
|
422
413
|
PaginationConfiguration,
|
|
423
414
|
Exclude<keyof PaginationConfiguration, "client">
|
|
424
|
-
|
|
415
|
+
>,
|
|
425
416
|
): Paginator<ListAutomationEventsCommandOutput>;
|
|
426
417
|
paginateListAutomationEventSteps(
|
|
427
418
|
args: ListAutomationEventStepsCommandInput,
|
|
428
419
|
paginationConfig?: Pick<
|
|
429
420
|
PaginationConfiguration,
|
|
430
421
|
Exclude<keyof PaginationConfiguration, "client">
|
|
431
|
-
|
|
422
|
+
>,
|
|
432
423
|
): Paginator<ListAutomationEventStepsCommandOutput>;
|
|
433
424
|
paginateListAutomationEventSummaries(
|
|
434
425
|
args?: ListAutomationEventSummariesCommandInput,
|
|
435
426
|
paginationConfig?: Pick<
|
|
436
427
|
PaginationConfiguration,
|
|
437
428
|
Exclude<keyof PaginationConfiguration, "client">
|
|
438
|
-
|
|
429
|
+
>,
|
|
439
430
|
): Paginator<ListAutomationEventSummariesCommandOutput>;
|
|
440
431
|
paginateListAutomationRulePreview(
|
|
441
432
|
args: ListAutomationRulePreviewCommandInput,
|
|
442
433
|
paginationConfig?: Pick<
|
|
443
434
|
PaginationConfiguration,
|
|
444
435
|
Exclude<keyof PaginationConfiguration, "client">
|
|
445
|
-
|
|
436
|
+
>,
|
|
446
437
|
): Paginator<ListAutomationRulePreviewCommandOutput>;
|
|
447
438
|
paginateListAutomationRulePreviewSummaries(
|
|
448
439
|
args: ListAutomationRulePreviewSummariesCommandInput,
|
|
449
440
|
paginationConfig?: Pick<
|
|
450
441
|
PaginationConfiguration,
|
|
451
442
|
Exclude<keyof PaginationConfiguration, "client">
|
|
452
|
-
|
|
443
|
+
>,
|
|
453
444
|
): Paginator<ListAutomationRulePreviewSummariesCommandOutput>;
|
|
454
445
|
paginateListAutomationRules(
|
|
455
446
|
args?: ListAutomationRulesCommandInput,
|
|
456
447
|
paginationConfig?: Pick<
|
|
457
448
|
PaginationConfiguration,
|
|
458
449
|
Exclude<keyof PaginationConfiguration, "client">
|
|
459
|
-
|
|
450
|
+
>,
|
|
460
451
|
): Paginator<ListAutomationRulesCommandOutput>;
|
|
461
452
|
paginateListRecommendedActions(
|
|
462
453
|
args?: ListRecommendedActionsCommandInput,
|
|
463
454
|
paginationConfig?: Pick<
|
|
464
455
|
PaginationConfiguration,
|
|
465
456
|
Exclude<keyof PaginationConfiguration, "client">
|
|
466
|
-
|
|
457
|
+
>,
|
|
467
458
|
): Paginator<ListRecommendedActionsCommandOutput>;
|
|
468
459
|
paginateListRecommendedActionSummaries(
|
|
469
460
|
args?: ListRecommendedActionSummariesCommandInput,
|
|
470
461
|
paginationConfig?: Pick<
|
|
471
462
|
PaginationConfiguration,
|
|
472
463
|
Exclude<keyof PaginationConfiguration, "client">
|
|
473
|
-
|
|
464
|
+
>,
|
|
474
465
|
): Paginator<ListRecommendedActionSummariesCommandOutput>;
|
|
475
466
|
}
|
|
476
467
|
export declare class ComputeOptimizerAutomation
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -112,10 +109,7 @@ import {
|
|
|
112
109
|
StartAutomationEventCommandInput,
|
|
113
110
|
StartAutomationEventCommandOutput,
|
|
114
111
|
} from "./commands/StartAutomationEventCommand";
|
|
115
|
-
import {
|
|
116
|
-
TagResourceCommandInput,
|
|
117
|
-
TagResourceCommandOutput,
|
|
118
|
-
} from "./commands/TagResourceCommand";
|
|
112
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
119
113
|
import {
|
|
120
114
|
UntagResourceCommandInput,
|
|
121
115
|
UntagResourceCommandOutput,
|
|
@@ -183,8 +177,7 @@ export type ServiceOutputTypes =
|
|
|
183
177
|
| UntagResourceCommandOutput
|
|
184
178
|
| UpdateAutomationRuleCommandOutput
|
|
185
179
|
| UpdateEnrollmentConfigurationCommandOutput;
|
|
186
|
-
export interface ClientDefaults
|
|
187
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
180
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
188
181
|
requestHandler?: __HttpHandlerUserInput;
|
|
189
182
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
190
183
|
urlParser?: __UrlParser;
|
|
@@ -220,8 +213,7 @@ export type ComputeOptimizerAutomationClientConfigType = Partial<
|
|
|
220
213
|
EndpointInputConfig<EndpointParameters> &
|
|
221
214
|
HttpAuthSchemeInputConfig &
|
|
222
215
|
ClientInputEndpointParameters;
|
|
223
|
-
export interface ComputeOptimizerAutomationClientConfig
|
|
224
|
-
extends ComputeOptimizerAutomationClientConfigType {}
|
|
216
|
+
export interface ComputeOptimizerAutomationClientConfig extends ComputeOptimizerAutomationClientConfigType {}
|
|
225
217
|
export type ComputeOptimizerAutomationClientResolvedConfigType =
|
|
226
218
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
227
219
|
Required<ClientDefaults> &
|
|
@@ -233,8 +225,7 @@ export type ComputeOptimizerAutomationClientResolvedConfigType =
|
|
|
233
225
|
EndpointResolvedConfig<EndpointParameters> &
|
|
234
226
|
HttpAuthSchemeResolvedConfig &
|
|
235
227
|
ClientResolvedEndpointParameters;
|
|
236
|
-
export interface ComputeOptimizerAutomationClientResolvedConfig
|
|
237
|
-
extends ComputeOptimizerAutomationClientResolvedConfigType {}
|
|
228
|
+
export interface ComputeOptimizerAutomationClientResolvedConfig extends ComputeOptimizerAutomationClientResolvedConfigType {}
|
|
238
229
|
export declare class ComputeOptimizerAutomationClient extends __Client<
|
|
239
230
|
__HttpHandlerOptions,
|
|
240
231
|
ServiceInputTypes,
|
|
@@ -243,9 +234,7 @@ export declare class ComputeOptimizerAutomationClient extends __Client<
|
|
|
243
234
|
> {
|
|
244
235
|
readonly config: ComputeOptimizerAutomationClientResolvedConfig;
|
|
245
236
|
constructor(
|
|
246
|
-
...[
|
|
247
|
-
configuration,
|
|
248
|
-
]: __CheckOptionalClientConfig<ComputeOptimizerAutomationClientConfig>
|
|
237
|
+
...[configuration]: __CheckOptionalClientConfig<ComputeOptimizerAutomationClientConfig>
|
|
249
238
|
);
|
|
250
239
|
destroy(): void;
|
|
251
240
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: ComputeOptimizerAutomationHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: ComputeOptimizerAutomationHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): ComputeOptimizerAutomationHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ComputeOptimizerAutomationClientResolvedConfig } from "../ComputeOptimizerAutomationClient";
|
|
15
|
-
export interface ComputeOptimizerAutomationHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ComputeOptimizerAutomationHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ComputeOptimizerAutomationHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ComputeOptimizerAutomationHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ComputeOptimizerAutomationClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ComputeOptimizerAutomationHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultComputeOptimizerAutomationHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ComputeOptimizerAutomationClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ComputeOptimizerAutomationHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ComputeOptimizerAutomationHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ComputeOptimizerAutomationHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ComputeOptimizerAutomationHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ComputeOptimizerAutomationHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultComputeOptimizerAutomationHttpAuthSchemeProvider: ComputeOptimizerAutomationHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ComputeOptimizerAutomationHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: ComputeOptimizerAutomationHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./ComputeOptimizerAutomationClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
ComputeOptimizerAutomationClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|