@aws-sdk/client-application-insights 3.1087.0 → 3.1089.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/ApplicationInsights.d.ts +108 -120
- package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +7 -23
- 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/AddWorkloadCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateLogPatternCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteLogPatternCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeComponentConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeLogPatternCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeObservationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeProblemCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeProblemObservationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeWorkloadCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListConfigurationHistoryCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListLogPatternSetsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListLogPatternsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListProblemsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListWorkloadsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/RemoveWorkloadCommand.d.ts +4 -9
- 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/UpdateApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateComponentConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateLogPatternCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateProblemCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateWorkloadCommand.d.ts +4 -9
- 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 +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +8 -24
- 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/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -4,10 +4,7 @@ import {
|
|
|
4
4
|
Paginator,
|
|
5
5
|
} from "@smithy/types";
|
|
6
6
|
import { ApplicationInsightsClient } from "./ApplicationInsightsClient";
|
|
7
|
-
import {
|
|
8
|
-
AddWorkloadCommandInput,
|
|
9
|
-
AddWorkloadCommandOutput,
|
|
10
|
-
} from "./commands/AddWorkloadCommand";
|
|
7
|
+
import { AddWorkloadCommandInput, AddWorkloadCommandOutput } from "./commands/AddWorkloadCommand";
|
|
11
8
|
import {
|
|
12
9
|
CreateApplicationCommandInput,
|
|
13
10
|
CreateApplicationCommandOutput,
|
|
@@ -104,10 +101,7 @@ import {
|
|
|
104
101
|
RemoveWorkloadCommandInput,
|
|
105
102
|
RemoveWorkloadCommandOutput,
|
|
106
103
|
} from "./commands/RemoveWorkloadCommand";
|
|
107
|
-
import {
|
|
108
|
-
TagResourceCommandInput,
|
|
109
|
-
TagResourceCommandOutput,
|
|
110
|
-
} from "./commands/TagResourceCommand";
|
|
104
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
111
105
|
import {
|
|
112
106
|
UntagResourceCommandInput,
|
|
113
107
|
UntagResourceCommandOutput,
|
|
@@ -139,491 +133,485 @@ import {
|
|
|
139
133
|
export interface ApplicationInsights {
|
|
140
134
|
addWorkload(
|
|
141
135
|
args: AddWorkloadCommandInput,
|
|
142
|
-
options?: __HttpHandlerOptions
|
|
136
|
+
options?: __HttpHandlerOptions,
|
|
143
137
|
): Promise<AddWorkloadCommandOutput>;
|
|
144
138
|
addWorkload(
|
|
145
139
|
args: AddWorkloadCommandInput,
|
|
146
|
-
cb: (err: any, data?: AddWorkloadCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: AddWorkloadCommandOutput) => void,
|
|
147
141
|
): void;
|
|
148
142
|
addWorkload(
|
|
149
143
|
args: AddWorkloadCommandInput,
|
|
150
144
|
options: __HttpHandlerOptions,
|
|
151
|
-
cb: (err: any, data?: AddWorkloadCommandOutput) => void
|
|
145
|
+
cb: (err: any, data?: AddWorkloadCommandOutput) => void,
|
|
152
146
|
): void;
|
|
153
147
|
createApplication(): Promise<CreateApplicationCommandOutput>;
|
|
154
148
|
createApplication(
|
|
155
149
|
args: CreateApplicationCommandInput,
|
|
156
|
-
options?: __HttpHandlerOptions
|
|
150
|
+
options?: __HttpHandlerOptions,
|
|
157
151
|
): Promise<CreateApplicationCommandOutput>;
|
|
158
152
|
createApplication(
|
|
159
153
|
args: CreateApplicationCommandInput,
|
|
160
|
-
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
154
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
161
155
|
): void;
|
|
162
156
|
createApplication(
|
|
163
157
|
args: CreateApplicationCommandInput,
|
|
164
158
|
options: __HttpHandlerOptions,
|
|
165
|
-
cb: (err: any, data?: CreateApplicationCommandOutput) => void
|
|
159
|
+
cb: (err: any, data?: CreateApplicationCommandOutput) => void,
|
|
166
160
|
): void;
|
|
167
161
|
createComponent(
|
|
168
162
|
args: CreateComponentCommandInput,
|
|
169
|
-
options?: __HttpHandlerOptions
|
|
163
|
+
options?: __HttpHandlerOptions,
|
|
170
164
|
): Promise<CreateComponentCommandOutput>;
|
|
171
165
|
createComponent(
|
|
172
166
|
args: CreateComponentCommandInput,
|
|
173
|
-
cb: (err: any, data?: CreateComponentCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: CreateComponentCommandOutput) => void,
|
|
174
168
|
): void;
|
|
175
169
|
createComponent(
|
|
176
170
|
args: CreateComponentCommandInput,
|
|
177
171
|
options: __HttpHandlerOptions,
|
|
178
|
-
cb: (err: any, data?: CreateComponentCommandOutput) => void
|
|
172
|
+
cb: (err: any, data?: CreateComponentCommandOutput) => void,
|
|
179
173
|
): void;
|
|
180
174
|
createLogPattern(
|
|
181
175
|
args: CreateLogPatternCommandInput,
|
|
182
|
-
options?: __HttpHandlerOptions
|
|
176
|
+
options?: __HttpHandlerOptions,
|
|
183
177
|
): Promise<CreateLogPatternCommandOutput>;
|
|
184
178
|
createLogPattern(
|
|
185
179
|
args: CreateLogPatternCommandInput,
|
|
186
|
-
cb: (err: any, data?: CreateLogPatternCommandOutput) => void
|
|
180
|
+
cb: (err: any, data?: CreateLogPatternCommandOutput) => void,
|
|
187
181
|
): void;
|
|
188
182
|
createLogPattern(
|
|
189
183
|
args: CreateLogPatternCommandInput,
|
|
190
184
|
options: __HttpHandlerOptions,
|
|
191
|
-
cb: (err: any, data?: CreateLogPatternCommandOutput) => void
|
|
185
|
+
cb: (err: any, data?: CreateLogPatternCommandOutput) => void,
|
|
192
186
|
): void;
|
|
193
187
|
deleteApplication(
|
|
194
188
|
args: DeleteApplicationCommandInput,
|
|
195
|
-
options?: __HttpHandlerOptions
|
|
189
|
+
options?: __HttpHandlerOptions,
|
|
196
190
|
): Promise<DeleteApplicationCommandOutput>;
|
|
197
191
|
deleteApplication(
|
|
198
192
|
args: DeleteApplicationCommandInput,
|
|
199
|
-
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
200
194
|
): void;
|
|
201
195
|
deleteApplication(
|
|
202
196
|
args: DeleteApplicationCommandInput,
|
|
203
197
|
options: __HttpHandlerOptions,
|
|
204
|
-
cb: (err: any, data?: DeleteApplicationCommandOutput) => void
|
|
198
|
+
cb: (err: any, data?: DeleteApplicationCommandOutput) => void,
|
|
205
199
|
): void;
|
|
206
200
|
deleteComponent(
|
|
207
201
|
args: DeleteComponentCommandInput,
|
|
208
|
-
options?: __HttpHandlerOptions
|
|
202
|
+
options?: __HttpHandlerOptions,
|
|
209
203
|
): Promise<DeleteComponentCommandOutput>;
|
|
210
204
|
deleteComponent(
|
|
211
205
|
args: DeleteComponentCommandInput,
|
|
212
|
-
cb: (err: any, data?: DeleteComponentCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: DeleteComponentCommandOutput) => void,
|
|
213
207
|
): void;
|
|
214
208
|
deleteComponent(
|
|
215
209
|
args: DeleteComponentCommandInput,
|
|
216
210
|
options: __HttpHandlerOptions,
|
|
217
|
-
cb: (err: any, data?: DeleteComponentCommandOutput) => void
|
|
211
|
+
cb: (err: any, data?: DeleteComponentCommandOutput) => void,
|
|
218
212
|
): void;
|
|
219
213
|
deleteLogPattern(
|
|
220
214
|
args: DeleteLogPatternCommandInput,
|
|
221
|
-
options?: __HttpHandlerOptions
|
|
215
|
+
options?: __HttpHandlerOptions,
|
|
222
216
|
): Promise<DeleteLogPatternCommandOutput>;
|
|
223
217
|
deleteLogPattern(
|
|
224
218
|
args: DeleteLogPatternCommandInput,
|
|
225
|
-
cb: (err: any, data?: DeleteLogPatternCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: DeleteLogPatternCommandOutput) => void,
|
|
226
220
|
): void;
|
|
227
221
|
deleteLogPattern(
|
|
228
222
|
args: DeleteLogPatternCommandInput,
|
|
229
223
|
options: __HttpHandlerOptions,
|
|
230
|
-
cb: (err: any, data?: DeleteLogPatternCommandOutput) => void
|
|
224
|
+
cb: (err: any, data?: DeleteLogPatternCommandOutput) => void,
|
|
231
225
|
): void;
|
|
232
226
|
describeApplication(
|
|
233
227
|
args: DescribeApplicationCommandInput,
|
|
234
|
-
options?: __HttpHandlerOptions
|
|
228
|
+
options?: __HttpHandlerOptions,
|
|
235
229
|
): Promise<DescribeApplicationCommandOutput>;
|
|
236
230
|
describeApplication(
|
|
237
231
|
args: DescribeApplicationCommandInput,
|
|
238
|
-
cb: (err: any, data?: DescribeApplicationCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: DescribeApplicationCommandOutput) => void,
|
|
239
233
|
): void;
|
|
240
234
|
describeApplication(
|
|
241
235
|
args: DescribeApplicationCommandInput,
|
|
242
236
|
options: __HttpHandlerOptions,
|
|
243
|
-
cb: (err: any, data?: DescribeApplicationCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: DescribeApplicationCommandOutput) => void,
|
|
244
238
|
): void;
|
|
245
239
|
describeComponent(
|
|
246
240
|
args: DescribeComponentCommandInput,
|
|
247
|
-
options?: __HttpHandlerOptions
|
|
241
|
+
options?: __HttpHandlerOptions,
|
|
248
242
|
): Promise<DescribeComponentCommandOutput>;
|
|
249
243
|
describeComponent(
|
|
250
244
|
args: DescribeComponentCommandInput,
|
|
251
|
-
cb: (err: any, data?: DescribeComponentCommandOutput) => void
|
|
245
|
+
cb: (err: any, data?: DescribeComponentCommandOutput) => void,
|
|
252
246
|
): void;
|
|
253
247
|
describeComponent(
|
|
254
248
|
args: DescribeComponentCommandInput,
|
|
255
249
|
options: __HttpHandlerOptions,
|
|
256
|
-
cb: (err: any, data?: DescribeComponentCommandOutput) => void
|
|
250
|
+
cb: (err: any, data?: DescribeComponentCommandOutput) => void,
|
|
257
251
|
): void;
|
|
258
252
|
describeComponentConfiguration(
|
|
259
253
|
args: DescribeComponentConfigurationCommandInput,
|
|
260
|
-
options?: __HttpHandlerOptions
|
|
254
|
+
options?: __HttpHandlerOptions,
|
|
261
255
|
): Promise<DescribeComponentConfigurationCommandOutput>;
|
|
262
256
|
describeComponentConfiguration(
|
|
263
257
|
args: DescribeComponentConfigurationCommandInput,
|
|
264
|
-
cb: (err: any, data?: DescribeComponentConfigurationCommandOutput) => void
|
|
258
|
+
cb: (err: any, data?: DescribeComponentConfigurationCommandOutput) => void,
|
|
265
259
|
): void;
|
|
266
260
|
describeComponentConfiguration(
|
|
267
261
|
args: DescribeComponentConfigurationCommandInput,
|
|
268
262
|
options: __HttpHandlerOptions,
|
|
269
|
-
cb: (err: any, data?: DescribeComponentConfigurationCommandOutput) => void
|
|
263
|
+
cb: (err: any, data?: DescribeComponentConfigurationCommandOutput) => void,
|
|
270
264
|
): void;
|
|
271
265
|
describeComponentConfigurationRecommendation(
|
|
272
266
|
args: DescribeComponentConfigurationRecommendationCommandInput,
|
|
273
|
-
options?: __HttpHandlerOptions
|
|
267
|
+
options?: __HttpHandlerOptions,
|
|
274
268
|
): Promise<DescribeComponentConfigurationRecommendationCommandOutput>;
|
|
275
269
|
describeComponentConfigurationRecommendation(
|
|
276
270
|
args: DescribeComponentConfigurationRecommendationCommandInput,
|
|
277
|
-
cb: (
|
|
278
|
-
err: any,
|
|
279
|
-
data?: DescribeComponentConfigurationRecommendationCommandOutput
|
|
280
|
-
) => void
|
|
271
|
+
cb: (err: any, data?: DescribeComponentConfigurationRecommendationCommandOutput) => void,
|
|
281
272
|
): void;
|
|
282
273
|
describeComponentConfigurationRecommendation(
|
|
283
274
|
args: DescribeComponentConfigurationRecommendationCommandInput,
|
|
284
275
|
options: __HttpHandlerOptions,
|
|
285
|
-
cb: (
|
|
286
|
-
err: any,
|
|
287
|
-
data?: DescribeComponentConfigurationRecommendationCommandOutput
|
|
288
|
-
) => void
|
|
276
|
+
cb: (err: any, data?: DescribeComponentConfigurationRecommendationCommandOutput) => void,
|
|
289
277
|
): void;
|
|
290
278
|
describeLogPattern(
|
|
291
279
|
args: DescribeLogPatternCommandInput,
|
|
292
|
-
options?: __HttpHandlerOptions
|
|
280
|
+
options?: __HttpHandlerOptions,
|
|
293
281
|
): Promise<DescribeLogPatternCommandOutput>;
|
|
294
282
|
describeLogPattern(
|
|
295
283
|
args: DescribeLogPatternCommandInput,
|
|
296
|
-
cb: (err: any, data?: DescribeLogPatternCommandOutput) => void
|
|
284
|
+
cb: (err: any, data?: DescribeLogPatternCommandOutput) => void,
|
|
297
285
|
): void;
|
|
298
286
|
describeLogPattern(
|
|
299
287
|
args: DescribeLogPatternCommandInput,
|
|
300
288
|
options: __HttpHandlerOptions,
|
|
301
|
-
cb: (err: any, data?: DescribeLogPatternCommandOutput) => void
|
|
289
|
+
cb: (err: any, data?: DescribeLogPatternCommandOutput) => void,
|
|
302
290
|
): void;
|
|
303
291
|
describeObservation(
|
|
304
292
|
args: DescribeObservationCommandInput,
|
|
305
|
-
options?: __HttpHandlerOptions
|
|
293
|
+
options?: __HttpHandlerOptions,
|
|
306
294
|
): Promise<DescribeObservationCommandOutput>;
|
|
307
295
|
describeObservation(
|
|
308
296
|
args: DescribeObservationCommandInput,
|
|
309
|
-
cb: (err: any, data?: DescribeObservationCommandOutput) => void
|
|
297
|
+
cb: (err: any, data?: DescribeObservationCommandOutput) => void,
|
|
310
298
|
): void;
|
|
311
299
|
describeObservation(
|
|
312
300
|
args: DescribeObservationCommandInput,
|
|
313
301
|
options: __HttpHandlerOptions,
|
|
314
|
-
cb: (err: any, data?: DescribeObservationCommandOutput) => void
|
|
302
|
+
cb: (err: any, data?: DescribeObservationCommandOutput) => void,
|
|
315
303
|
): void;
|
|
316
304
|
describeProblem(
|
|
317
305
|
args: DescribeProblemCommandInput,
|
|
318
|
-
options?: __HttpHandlerOptions
|
|
306
|
+
options?: __HttpHandlerOptions,
|
|
319
307
|
): Promise<DescribeProblemCommandOutput>;
|
|
320
308
|
describeProblem(
|
|
321
309
|
args: DescribeProblemCommandInput,
|
|
322
|
-
cb: (err: any, data?: DescribeProblemCommandOutput) => void
|
|
310
|
+
cb: (err: any, data?: DescribeProblemCommandOutput) => void,
|
|
323
311
|
): void;
|
|
324
312
|
describeProblem(
|
|
325
313
|
args: DescribeProblemCommandInput,
|
|
326
314
|
options: __HttpHandlerOptions,
|
|
327
|
-
cb: (err: any, data?: DescribeProblemCommandOutput) => void
|
|
315
|
+
cb: (err: any, data?: DescribeProblemCommandOutput) => void,
|
|
328
316
|
): void;
|
|
329
317
|
describeProblemObservations(
|
|
330
318
|
args: DescribeProblemObservationsCommandInput,
|
|
331
|
-
options?: __HttpHandlerOptions
|
|
319
|
+
options?: __HttpHandlerOptions,
|
|
332
320
|
): Promise<DescribeProblemObservationsCommandOutput>;
|
|
333
321
|
describeProblemObservations(
|
|
334
322
|
args: DescribeProblemObservationsCommandInput,
|
|
335
|
-
cb: (err: any, data?: DescribeProblemObservationsCommandOutput) => void
|
|
323
|
+
cb: (err: any, data?: DescribeProblemObservationsCommandOutput) => void,
|
|
336
324
|
): void;
|
|
337
325
|
describeProblemObservations(
|
|
338
326
|
args: DescribeProblemObservationsCommandInput,
|
|
339
327
|
options: __HttpHandlerOptions,
|
|
340
|
-
cb: (err: any, data?: DescribeProblemObservationsCommandOutput) => void
|
|
328
|
+
cb: (err: any, data?: DescribeProblemObservationsCommandOutput) => void,
|
|
341
329
|
): void;
|
|
342
330
|
describeWorkload(
|
|
343
331
|
args: DescribeWorkloadCommandInput,
|
|
344
|
-
options?: __HttpHandlerOptions
|
|
332
|
+
options?: __HttpHandlerOptions,
|
|
345
333
|
): Promise<DescribeWorkloadCommandOutput>;
|
|
346
334
|
describeWorkload(
|
|
347
335
|
args: DescribeWorkloadCommandInput,
|
|
348
|
-
cb: (err: any, data?: DescribeWorkloadCommandOutput) => void
|
|
336
|
+
cb: (err: any, data?: DescribeWorkloadCommandOutput) => void,
|
|
349
337
|
): void;
|
|
350
338
|
describeWorkload(
|
|
351
339
|
args: DescribeWorkloadCommandInput,
|
|
352
340
|
options: __HttpHandlerOptions,
|
|
353
|
-
cb: (err: any, data?: DescribeWorkloadCommandOutput) => void
|
|
341
|
+
cb: (err: any, data?: DescribeWorkloadCommandOutput) => void,
|
|
354
342
|
): void;
|
|
355
343
|
listApplications(): Promise<ListApplicationsCommandOutput>;
|
|
356
344
|
listApplications(
|
|
357
345
|
args: ListApplicationsCommandInput,
|
|
358
|
-
options?: __HttpHandlerOptions
|
|
346
|
+
options?: __HttpHandlerOptions,
|
|
359
347
|
): Promise<ListApplicationsCommandOutput>;
|
|
360
348
|
listApplications(
|
|
361
349
|
args: ListApplicationsCommandInput,
|
|
362
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
350
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
363
351
|
): void;
|
|
364
352
|
listApplications(
|
|
365
353
|
args: ListApplicationsCommandInput,
|
|
366
354
|
options: __HttpHandlerOptions,
|
|
367
|
-
cb: (err: any, data?: ListApplicationsCommandOutput) => void
|
|
355
|
+
cb: (err: any, data?: ListApplicationsCommandOutput) => void,
|
|
368
356
|
): void;
|
|
369
357
|
listComponents(
|
|
370
358
|
args: ListComponentsCommandInput,
|
|
371
|
-
options?: __HttpHandlerOptions
|
|
359
|
+
options?: __HttpHandlerOptions,
|
|
372
360
|
): Promise<ListComponentsCommandOutput>;
|
|
373
361
|
listComponents(
|
|
374
362
|
args: ListComponentsCommandInput,
|
|
375
|
-
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
363
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void,
|
|
376
364
|
): void;
|
|
377
365
|
listComponents(
|
|
378
366
|
args: ListComponentsCommandInput,
|
|
379
367
|
options: __HttpHandlerOptions,
|
|
380
|
-
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
368
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void,
|
|
381
369
|
): void;
|
|
382
370
|
listConfigurationHistory(): Promise<ListConfigurationHistoryCommandOutput>;
|
|
383
371
|
listConfigurationHistory(
|
|
384
372
|
args: ListConfigurationHistoryCommandInput,
|
|
385
|
-
options?: __HttpHandlerOptions
|
|
373
|
+
options?: __HttpHandlerOptions,
|
|
386
374
|
): Promise<ListConfigurationHistoryCommandOutput>;
|
|
387
375
|
listConfigurationHistory(
|
|
388
376
|
args: ListConfigurationHistoryCommandInput,
|
|
389
|
-
cb: (err: any, data?: ListConfigurationHistoryCommandOutput) => void
|
|
377
|
+
cb: (err: any, data?: ListConfigurationHistoryCommandOutput) => void,
|
|
390
378
|
): void;
|
|
391
379
|
listConfigurationHistory(
|
|
392
380
|
args: ListConfigurationHistoryCommandInput,
|
|
393
381
|
options: __HttpHandlerOptions,
|
|
394
|
-
cb: (err: any, data?: ListConfigurationHistoryCommandOutput) => void
|
|
382
|
+
cb: (err: any, data?: ListConfigurationHistoryCommandOutput) => void,
|
|
395
383
|
): void;
|
|
396
384
|
listLogPatterns(
|
|
397
385
|
args: ListLogPatternsCommandInput,
|
|
398
|
-
options?: __HttpHandlerOptions
|
|
386
|
+
options?: __HttpHandlerOptions,
|
|
399
387
|
): Promise<ListLogPatternsCommandOutput>;
|
|
400
388
|
listLogPatterns(
|
|
401
389
|
args: ListLogPatternsCommandInput,
|
|
402
|
-
cb: (err: any, data?: ListLogPatternsCommandOutput) => void
|
|
390
|
+
cb: (err: any, data?: ListLogPatternsCommandOutput) => void,
|
|
403
391
|
): void;
|
|
404
392
|
listLogPatterns(
|
|
405
393
|
args: ListLogPatternsCommandInput,
|
|
406
394
|
options: __HttpHandlerOptions,
|
|
407
|
-
cb: (err: any, data?: ListLogPatternsCommandOutput) => void
|
|
395
|
+
cb: (err: any, data?: ListLogPatternsCommandOutput) => void,
|
|
408
396
|
): void;
|
|
409
397
|
listLogPatternSets(
|
|
410
398
|
args: ListLogPatternSetsCommandInput,
|
|
411
|
-
options?: __HttpHandlerOptions
|
|
399
|
+
options?: __HttpHandlerOptions,
|
|
412
400
|
): Promise<ListLogPatternSetsCommandOutput>;
|
|
413
401
|
listLogPatternSets(
|
|
414
402
|
args: ListLogPatternSetsCommandInput,
|
|
415
|
-
cb: (err: any, data?: ListLogPatternSetsCommandOutput) => void
|
|
403
|
+
cb: (err: any, data?: ListLogPatternSetsCommandOutput) => void,
|
|
416
404
|
): void;
|
|
417
405
|
listLogPatternSets(
|
|
418
406
|
args: ListLogPatternSetsCommandInput,
|
|
419
407
|
options: __HttpHandlerOptions,
|
|
420
|
-
cb: (err: any, data?: ListLogPatternSetsCommandOutput) => void
|
|
408
|
+
cb: (err: any, data?: ListLogPatternSetsCommandOutput) => void,
|
|
421
409
|
): void;
|
|
422
410
|
listProblems(): Promise<ListProblemsCommandOutput>;
|
|
423
411
|
listProblems(
|
|
424
412
|
args: ListProblemsCommandInput,
|
|
425
|
-
options?: __HttpHandlerOptions
|
|
413
|
+
options?: __HttpHandlerOptions,
|
|
426
414
|
): Promise<ListProblemsCommandOutput>;
|
|
427
415
|
listProblems(
|
|
428
416
|
args: ListProblemsCommandInput,
|
|
429
|
-
cb: (err: any, data?: ListProblemsCommandOutput) => void
|
|
417
|
+
cb: (err: any, data?: ListProblemsCommandOutput) => void,
|
|
430
418
|
): void;
|
|
431
419
|
listProblems(
|
|
432
420
|
args: ListProblemsCommandInput,
|
|
433
421
|
options: __HttpHandlerOptions,
|
|
434
|
-
cb: (err: any, data?: ListProblemsCommandOutput) => void
|
|
422
|
+
cb: (err: any, data?: ListProblemsCommandOutput) => void,
|
|
435
423
|
): void;
|
|
436
424
|
listTagsForResource(
|
|
437
425
|
args: ListTagsForResourceCommandInput,
|
|
438
|
-
options?: __HttpHandlerOptions
|
|
426
|
+
options?: __HttpHandlerOptions,
|
|
439
427
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
440
428
|
listTagsForResource(
|
|
441
429
|
args: ListTagsForResourceCommandInput,
|
|
442
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
430
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
443
431
|
): void;
|
|
444
432
|
listTagsForResource(
|
|
445
433
|
args: ListTagsForResourceCommandInput,
|
|
446
434
|
options: __HttpHandlerOptions,
|
|
447
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
435
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
448
436
|
): void;
|
|
449
437
|
listWorkloads(
|
|
450
438
|
args: ListWorkloadsCommandInput,
|
|
451
|
-
options?: __HttpHandlerOptions
|
|
439
|
+
options?: __HttpHandlerOptions,
|
|
452
440
|
): Promise<ListWorkloadsCommandOutput>;
|
|
453
441
|
listWorkloads(
|
|
454
442
|
args: ListWorkloadsCommandInput,
|
|
455
|
-
cb: (err: any, data?: ListWorkloadsCommandOutput) => void
|
|
443
|
+
cb: (err: any, data?: ListWorkloadsCommandOutput) => void,
|
|
456
444
|
): void;
|
|
457
445
|
listWorkloads(
|
|
458
446
|
args: ListWorkloadsCommandInput,
|
|
459
447
|
options: __HttpHandlerOptions,
|
|
460
|
-
cb: (err: any, data?: ListWorkloadsCommandOutput) => void
|
|
448
|
+
cb: (err: any, data?: ListWorkloadsCommandOutput) => void,
|
|
461
449
|
): void;
|
|
462
450
|
removeWorkload(
|
|
463
451
|
args: RemoveWorkloadCommandInput,
|
|
464
|
-
options?: __HttpHandlerOptions
|
|
452
|
+
options?: __HttpHandlerOptions,
|
|
465
453
|
): Promise<RemoveWorkloadCommandOutput>;
|
|
466
454
|
removeWorkload(
|
|
467
455
|
args: RemoveWorkloadCommandInput,
|
|
468
|
-
cb: (err: any, data?: RemoveWorkloadCommandOutput) => void
|
|
456
|
+
cb: (err: any, data?: RemoveWorkloadCommandOutput) => void,
|
|
469
457
|
): void;
|
|
470
458
|
removeWorkload(
|
|
471
459
|
args: RemoveWorkloadCommandInput,
|
|
472
460
|
options: __HttpHandlerOptions,
|
|
473
|
-
cb: (err: any, data?: RemoveWorkloadCommandOutput) => void
|
|
461
|
+
cb: (err: any, data?: RemoveWorkloadCommandOutput) => void,
|
|
474
462
|
): void;
|
|
475
463
|
tagResource(
|
|
476
464
|
args: TagResourceCommandInput,
|
|
477
|
-
options?: __HttpHandlerOptions
|
|
465
|
+
options?: __HttpHandlerOptions,
|
|
478
466
|
): Promise<TagResourceCommandOutput>;
|
|
479
467
|
tagResource(
|
|
480
468
|
args: TagResourceCommandInput,
|
|
481
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
469
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
482
470
|
): void;
|
|
483
471
|
tagResource(
|
|
484
472
|
args: TagResourceCommandInput,
|
|
485
473
|
options: __HttpHandlerOptions,
|
|
486
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
474
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
487
475
|
): void;
|
|
488
476
|
untagResource(
|
|
489
477
|
args: UntagResourceCommandInput,
|
|
490
|
-
options?: __HttpHandlerOptions
|
|
478
|
+
options?: __HttpHandlerOptions,
|
|
491
479
|
): Promise<UntagResourceCommandOutput>;
|
|
492
480
|
untagResource(
|
|
493
481
|
args: UntagResourceCommandInput,
|
|
494
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
482
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
495
483
|
): void;
|
|
496
484
|
untagResource(
|
|
497
485
|
args: UntagResourceCommandInput,
|
|
498
486
|
options: __HttpHandlerOptions,
|
|
499
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
487
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
500
488
|
): void;
|
|
501
489
|
updateApplication(
|
|
502
490
|
args: UpdateApplicationCommandInput,
|
|
503
|
-
options?: __HttpHandlerOptions
|
|
491
|
+
options?: __HttpHandlerOptions,
|
|
504
492
|
): Promise<UpdateApplicationCommandOutput>;
|
|
505
493
|
updateApplication(
|
|
506
494
|
args: UpdateApplicationCommandInput,
|
|
507
|
-
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
495
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
|
|
508
496
|
): void;
|
|
509
497
|
updateApplication(
|
|
510
498
|
args: UpdateApplicationCommandInput,
|
|
511
499
|
options: __HttpHandlerOptions,
|
|
512
|
-
cb: (err: any, data?: UpdateApplicationCommandOutput) => void
|
|
500
|
+
cb: (err: any, data?: UpdateApplicationCommandOutput) => void,
|
|
513
501
|
): void;
|
|
514
502
|
updateComponent(
|
|
515
503
|
args: UpdateComponentCommandInput,
|
|
516
|
-
options?: __HttpHandlerOptions
|
|
504
|
+
options?: __HttpHandlerOptions,
|
|
517
505
|
): Promise<UpdateComponentCommandOutput>;
|
|
518
506
|
updateComponent(
|
|
519
507
|
args: UpdateComponentCommandInput,
|
|
520
|
-
cb: (err: any, data?: UpdateComponentCommandOutput) => void
|
|
508
|
+
cb: (err: any, data?: UpdateComponentCommandOutput) => void,
|
|
521
509
|
): void;
|
|
522
510
|
updateComponent(
|
|
523
511
|
args: UpdateComponentCommandInput,
|
|
524
512
|
options: __HttpHandlerOptions,
|
|
525
|
-
cb: (err: any, data?: UpdateComponentCommandOutput) => void
|
|
513
|
+
cb: (err: any, data?: UpdateComponentCommandOutput) => void,
|
|
526
514
|
): void;
|
|
527
515
|
updateComponentConfiguration(
|
|
528
516
|
args: UpdateComponentConfigurationCommandInput,
|
|
529
|
-
options?: __HttpHandlerOptions
|
|
517
|
+
options?: __HttpHandlerOptions,
|
|
530
518
|
): Promise<UpdateComponentConfigurationCommandOutput>;
|
|
531
519
|
updateComponentConfiguration(
|
|
532
520
|
args: UpdateComponentConfigurationCommandInput,
|
|
533
|
-
cb: (err: any, data?: UpdateComponentConfigurationCommandOutput) => void
|
|
521
|
+
cb: (err: any, data?: UpdateComponentConfigurationCommandOutput) => void,
|
|
534
522
|
): void;
|
|
535
523
|
updateComponentConfiguration(
|
|
536
524
|
args: UpdateComponentConfigurationCommandInput,
|
|
537
525
|
options: __HttpHandlerOptions,
|
|
538
|
-
cb: (err: any, data?: UpdateComponentConfigurationCommandOutput) => void
|
|
526
|
+
cb: (err: any, data?: UpdateComponentConfigurationCommandOutput) => void,
|
|
539
527
|
): void;
|
|
540
528
|
updateLogPattern(
|
|
541
529
|
args: UpdateLogPatternCommandInput,
|
|
542
|
-
options?: __HttpHandlerOptions
|
|
530
|
+
options?: __HttpHandlerOptions,
|
|
543
531
|
): Promise<UpdateLogPatternCommandOutput>;
|
|
544
532
|
updateLogPattern(
|
|
545
533
|
args: UpdateLogPatternCommandInput,
|
|
546
|
-
cb: (err: any, data?: UpdateLogPatternCommandOutput) => void
|
|
534
|
+
cb: (err: any, data?: UpdateLogPatternCommandOutput) => void,
|
|
547
535
|
): void;
|
|
548
536
|
updateLogPattern(
|
|
549
537
|
args: UpdateLogPatternCommandInput,
|
|
550
538
|
options: __HttpHandlerOptions,
|
|
551
|
-
cb: (err: any, data?: UpdateLogPatternCommandOutput) => void
|
|
539
|
+
cb: (err: any, data?: UpdateLogPatternCommandOutput) => void,
|
|
552
540
|
): void;
|
|
553
541
|
updateProblem(
|
|
554
542
|
args: UpdateProblemCommandInput,
|
|
555
|
-
options?: __HttpHandlerOptions
|
|
543
|
+
options?: __HttpHandlerOptions,
|
|
556
544
|
): Promise<UpdateProblemCommandOutput>;
|
|
557
545
|
updateProblem(
|
|
558
546
|
args: UpdateProblemCommandInput,
|
|
559
|
-
cb: (err: any, data?: UpdateProblemCommandOutput) => void
|
|
547
|
+
cb: (err: any, data?: UpdateProblemCommandOutput) => void,
|
|
560
548
|
): void;
|
|
561
549
|
updateProblem(
|
|
562
550
|
args: UpdateProblemCommandInput,
|
|
563
551
|
options: __HttpHandlerOptions,
|
|
564
|
-
cb: (err: any, data?: UpdateProblemCommandOutput) => void
|
|
552
|
+
cb: (err: any, data?: UpdateProblemCommandOutput) => void,
|
|
565
553
|
): void;
|
|
566
554
|
updateWorkload(
|
|
567
555
|
args: UpdateWorkloadCommandInput,
|
|
568
|
-
options?: __HttpHandlerOptions
|
|
556
|
+
options?: __HttpHandlerOptions,
|
|
569
557
|
): Promise<UpdateWorkloadCommandOutput>;
|
|
570
558
|
updateWorkload(
|
|
571
559
|
args: UpdateWorkloadCommandInput,
|
|
572
|
-
cb: (err: any, data?: UpdateWorkloadCommandOutput) => void
|
|
560
|
+
cb: (err: any, data?: UpdateWorkloadCommandOutput) => void,
|
|
573
561
|
): void;
|
|
574
562
|
updateWorkload(
|
|
575
563
|
args: UpdateWorkloadCommandInput,
|
|
576
564
|
options: __HttpHandlerOptions,
|
|
577
|
-
cb: (err: any, data?: UpdateWorkloadCommandOutput) => void
|
|
565
|
+
cb: (err: any, data?: UpdateWorkloadCommandOutput) => void,
|
|
578
566
|
): void;
|
|
579
567
|
paginateListApplications(
|
|
580
568
|
args?: ListApplicationsCommandInput,
|
|
581
569
|
paginationConfig?: Pick<
|
|
582
570
|
PaginationConfiguration,
|
|
583
571
|
Exclude<keyof PaginationConfiguration, "client">
|
|
584
|
-
|
|
572
|
+
>,
|
|
585
573
|
): Paginator<ListApplicationsCommandOutput>;
|
|
586
574
|
paginateListComponents(
|
|
587
575
|
args: ListComponentsCommandInput,
|
|
588
576
|
paginationConfig?: Pick<
|
|
589
577
|
PaginationConfiguration,
|
|
590
578
|
Exclude<keyof PaginationConfiguration, "client">
|
|
591
|
-
|
|
579
|
+
>,
|
|
592
580
|
): Paginator<ListComponentsCommandOutput>;
|
|
593
581
|
paginateListConfigurationHistory(
|
|
594
582
|
args?: ListConfigurationHistoryCommandInput,
|
|
595
583
|
paginationConfig?: Pick<
|
|
596
584
|
PaginationConfiguration,
|
|
597
585
|
Exclude<keyof PaginationConfiguration, "client">
|
|
598
|
-
|
|
586
|
+
>,
|
|
599
587
|
): Paginator<ListConfigurationHistoryCommandOutput>;
|
|
600
588
|
paginateListLogPatterns(
|
|
601
589
|
args: ListLogPatternsCommandInput,
|
|
602
590
|
paginationConfig?: Pick<
|
|
603
591
|
PaginationConfiguration,
|
|
604
592
|
Exclude<keyof PaginationConfiguration, "client">
|
|
605
|
-
|
|
593
|
+
>,
|
|
606
594
|
): Paginator<ListLogPatternsCommandOutput>;
|
|
607
595
|
paginateListLogPatternSets(
|
|
608
596
|
args: ListLogPatternSetsCommandInput,
|
|
609
597
|
paginationConfig?: Pick<
|
|
610
598
|
PaginationConfiguration,
|
|
611
599
|
Exclude<keyof PaginationConfiguration, "client">
|
|
612
|
-
|
|
600
|
+
>,
|
|
613
601
|
): Paginator<ListLogPatternSetsCommandOutput>;
|
|
614
602
|
paginateListProblems(
|
|
615
603
|
args?: ListProblemsCommandInput,
|
|
616
604
|
paginationConfig?: Pick<
|
|
617
605
|
PaginationConfiguration,
|
|
618
606
|
Exclude<keyof PaginationConfiguration, "client">
|
|
619
|
-
|
|
607
|
+
>,
|
|
620
608
|
): Paginator<ListProblemsCommandOutput>;
|
|
621
609
|
paginateListWorkloads(
|
|
622
610
|
args: ListWorkloadsCommandInput,
|
|
623
611
|
paginationConfig?: Pick<
|
|
624
612
|
PaginationConfiguration,
|
|
625
613
|
Exclude<keyof PaginationConfiguration, "client">
|
|
626
|
-
|
|
614
|
+
>,
|
|
627
615
|
): Paginator<ListWorkloadsCommandOutput>;
|
|
628
616
|
}
|
|
629
617
|
export declare class ApplicationInsights
|