@aws-sdk/client-devops-guru 3.170.0 → 3.178.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 (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  3. package/dist-types/runtimeConfig.d.ts +1 -1
  4. package/dist-types/runtimeConfig.native.d.ts +1 -1
  5. package/dist-types/ts3.4/DevOpsGuru.d.ts +0 -31
  6. package/dist-types/ts3.4/DevOpsGuruClient.d.ts +0 -25
  7. package/dist-types/ts3.4/commands/AddNotificationChannelCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/DeleteInsightCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/DescribeAccountHealthCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/DescribeAccountOverviewCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DescribeAnomalyCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DescribeEventSourcesConfigCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/DescribeFeedbackCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/DescribeInsightCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/DescribeOrganizationHealthCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/DescribeOrganizationOverviewCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/DescribeResourceCollectionHealthCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/DescribeServiceIntegrationCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/GetCostEstimationCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/GetResourceCollectionCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/ListAnomaliesForInsightCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/ListAnomalousLogGroupsCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/ListEventsCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/ListInsightsCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/ListMonitoredResourcesCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/ListNotificationChannelsCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/ListOrganizationInsightsCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/PutFeedbackCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/SearchInsightsCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/commands/SearchOrganizationInsightsCommand.d.ts +0 -2
  34. package/dist-types/ts3.4/commands/StartCostEstimationCommand.d.ts +0 -2
  35. package/dist-types/ts3.4/commands/UpdateEventSourcesConfigCommand.d.ts +0 -2
  36. package/dist-types/ts3.4/commands/UpdateResourceCollectionCommand.d.ts +0 -2
  37. package/dist-types/ts3.4/commands/UpdateServiceIntegrationCommand.d.ts +0 -2
  38. package/dist-types/ts3.4/models/DevOpsGuruServiceException.d.ts +0 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +0 -550
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  44. package/package.json +26 -26
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-devops-guru
9
+
10
+
11
+
12
+
13
+
14
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-devops-guru
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-devops-guru
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
30
30
  tls?: boolean | undefined;
31
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
32
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
34
34
  signingEscapePath?: boolean | undefined;
35
35
  systemClockOffset?: number | undefined;
36
36
  signingRegion?: string | undefined;
@@ -124,7 +124,6 @@ import {
124
124
  UpdateServiceIntegrationCommandOutput,
125
125
  } from "./commands/UpdateServiceIntegrationCommand";
126
126
  import { DevOpsGuruClient } from "./DevOpsGuruClient";
127
-
128
127
  export declare class DevOpsGuru extends DevOpsGuruClient {
129
128
  addNotificationChannel(
130
129
  args: AddNotificationChannelCommandInput,
@@ -139,7 +138,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
139
138
  options: __HttpHandlerOptions,
140
139
  cb: (err: any, data?: AddNotificationChannelCommandOutput) => void
141
140
  ): void;
142
-
143
141
  deleteInsight(
144
142
  args: DeleteInsightCommandInput,
145
143
  options?: __HttpHandlerOptions
@@ -153,7 +151,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
153
151
  options: __HttpHandlerOptions,
154
152
  cb: (err: any, data?: DeleteInsightCommandOutput) => void
155
153
  ): void;
156
-
157
154
  describeAccountHealth(
158
155
  args: DescribeAccountHealthCommandInput,
159
156
  options?: __HttpHandlerOptions
@@ -167,7 +164,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
167
164
  options: __HttpHandlerOptions,
168
165
  cb: (err: any, data?: DescribeAccountHealthCommandOutput) => void
169
166
  ): void;
170
-
171
167
  describeAccountOverview(
172
168
  args: DescribeAccountOverviewCommandInput,
173
169
  options?: __HttpHandlerOptions
@@ -181,7 +177,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
181
177
  options: __HttpHandlerOptions,
182
178
  cb: (err: any, data?: DescribeAccountOverviewCommandOutput) => void
183
179
  ): void;
184
-
185
180
  describeAnomaly(
186
181
  args: DescribeAnomalyCommandInput,
187
182
  options?: __HttpHandlerOptions
@@ -195,7 +190,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
195
190
  options: __HttpHandlerOptions,
196
191
  cb: (err: any, data?: DescribeAnomalyCommandOutput) => void
197
192
  ): void;
198
-
199
193
  describeEventSourcesConfig(
200
194
  args: DescribeEventSourcesConfigCommandInput,
201
195
  options?: __HttpHandlerOptions
@@ -209,7 +203,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
209
203
  options: __HttpHandlerOptions,
210
204
  cb: (err: any, data?: DescribeEventSourcesConfigCommandOutput) => void
211
205
  ): void;
212
-
213
206
  describeFeedback(
214
207
  args: DescribeFeedbackCommandInput,
215
208
  options?: __HttpHandlerOptions
@@ -223,7 +216,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
223
216
  options: __HttpHandlerOptions,
224
217
  cb: (err: any, data?: DescribeFeedbackCommandOutput) => void
225
218
  ): void;
226
-
227
219
  describeInsight(
228
220
  args: DescribeInsightCommandInput,
229
221
  options?: __HttpHandlerOptions
@@ -237,7 +229,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
237
229
  options: __HttpHandlerOptions,
238
230
  cb: (err: any, data?: DescribeInsightCommandOutput) => void
239
231
  ): void;
240
-
241
232
  describeOrganizationHealth(
242
233
  args: DescribeOrganizationHealthCommandInput,
243
234
  options?: __HttpHandlerOptions
@@ -251,7 +242,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
251
242
  options: __HttpHandlerOptions,
252
243
  cb: (err: any, data?: DescribeOrganizationHealthCommandOutput) => void
253
244
  ): void;
254
-
255
245
  describeOrganizationOverview(
256
246
  args: DescribeOrganizationOverviewCommandInput,
257
247
  options?: __HttpHandlerOptions
@@ -265,7 +255,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
265
255
  options: __HttpHandlerOptions,
266
256
  cb: (err: any, data?: DescribeOrganizationOverviewCommandOutput) => void
267
257
  ): void;
268
-
269
258
  describeOrganizationResourceCollectionHealth(
270
259
  args: DescribeOrganizationResourceCollectionHealthCommandInput,
271
260
  options?: __HttpHandlerOptions
@@ -285,7 +274,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
285
274
  data?: DescribeOrganizationResourceCollectionHealthCommandOutput
286
275
  ) => void
287
276
  ): void;
288
-
289
277
  describeResourceCollectionHealth(
290
278
  args: DescribeResourceCollectionHealthCommandInput,
291
279
  options?: __HttpHandlerOptions
@@ -299,7 +287,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
299
287
  options: __HttpHandlerOptions,
300
288
  cb: (err: any, data?: DescribeResourceCollectionHealthCommandOutput) => void
301
289
  ): void;
302
-
303
290
  describeServiceIntegration(
304
291
  args: DescribeServiceIntegrationCommandInput,
305
292
  options?: __HttpHandlerOptions
@@ -313,7 +300,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
313
300
  options: __HttpHandlerOptions,
314
301
  cb: (err: any, data?: DescribeServiceIntegrationCommandOutput) => void
315
302
  ): void;
316
-
317
303
  getCostEstimation(
318
304
  args: GetCostEstimationCommandInput,
319
305
  options?: __HttpHandlerOptions
@@ -327,7 +313,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
327
313
  options: __HttpHandlerOptions,
328
314
  cb: (err: any, data?: GetCostEstimationCommandOutput) => void
329
315
  ): void;
330
-
331
316
  getResourceCollection(
332
317
  args: GetResourceCollectionCommandInput,
333
318
  options?: __HttpHandlerOptions
@@ -341,7 +326,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
341
326
  options: __HttpHandlerOptions,
342
327
  cb: (err: any, data?: GetResourceCollectionCommandOutput) => void
343
328
  ): void;
344
-
345
329
  listAnomaliesForInsight(
346
330
  args: ListAnomaliesForInsightCommandInput,
347
331
  options?: __HttpHandlerOptions
@@ -355,7 +339,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
355
339
  options: __HttpHandlerOptions,
356
340
  cb: (err: any, data?: ListAnomaliesForInsightCommandOutput) => void
357
341
  ): void;
358
-
359
342
  listAnomalousLogGroups(
360
343
  args: ListAnomalousLogGroupsCommandInput,
361
344
  options?: __HttpHandlerOptions
@@ -369,7 +352,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
369
352
  options: __HttpHandlerOptions,
370
353
  cb: (err: any, data?: ListAnomalousLogGroupsCommandOutput) => void
371
354
  ): void;
372
-
373
355
  listEvents(
374
356
  args: ListEventsCommandInput,
375
357
  options?: __HttpHandlerOptions
@@ -383,7 +365,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
383
365
  options: __HttpHandlerOptions,
384
366
  cb: (err: any, data?: ListEventsCommandOutput) => void
385
367
  ): void;
386
-
387
368
  listInsights(
388
369
  args: ListInsightsCommandInput,
389
370
  options?: __HttpHandlerOptions
@@ -397,7 +378,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
397
378
  options: __HttpHandlerOptions,
398
379
  cb: (err: any, data?: ListInsightsCommandOutput) => void
399
380
  ): void;
400
-
401
381
  listMonitoredResources(
402
382
  args: ListMonitoredResourcesCommandInput,
403
383
  options?: __HttpHandlerOptions
@@ -411,7 +391,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
411
391
  options: __HttpHandlerOptions,
412
392
  cb: (err: any, data?: ListMonitoredResourcesCommandOutput) => void
413
393
  ): void;
414
-
415
394
  listNotificationChannels(
416
395
  args: ListNotificationChannelsCommandInput,
417
396
  options?: __HttpHandlerOptions
@@ -425,7 +404,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
425
404
  options: __HttpHandlerOptions,
426
405
  cb: (err: any, data?: ListNotificationChannelsCommandOutput) => void
427
406
  ): void;
428
-
429
407
  listOrganizationInsights(
430
408
  args: ListOrganizationInsightsCommandInput,
431
409
  options?: __HttpHandlerOptions
@@ -439,7 +417,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
439
417
  options: __HttpHandlerOptions,
440
418
  cb: (err: any, data?: ListOrganizationInsightsCommandOutput) => void
441
419
  ): void;
442
-
443
420
  listRecommendations(
444
421
  args: ListRecommendationsCommandInput,
445
422
  options?: __HttpHandlerOptions
@@ -453,7 +430,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
453
430
  options: __HttpHandlerOptions,
454
431
  cb: (err: any, data?: ListRecommendationsCommandOutput) => void
455
432
  ): void;
456
-
457
433
  putFeedback(
458
434
  args: PutFeedbackCommandInput,
459
435
  options?: __HttpHandlerOptions
@@ -467,7 +443,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
467
443
  options: __HttpHandlerOptions,
468
444
  cb: (err: any, data?: PutFeedbackCommandOutput) => void
469
445
  ): void;
470
-
471
446
  removeNotificationChannel(
472
447
  args: RemoveNotificationChannelCommandInput,
473
448
  options?: __HttpHandlerOptions
@@ -481,7 +456,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
481
456
  options: __HttpHandlerOptions,
482
457
  cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void
483
458
  ): void;
484
-
485
459
  searchInsights(
486
460
  args: SearchInsightsCommandInput,
487
461
  options?: __HttpHandlerOptions
@@ -495,7 +469,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
495
469
  options: __HttpHandlerOptions,
496
470
  cb: (err: any, data?: SearchInsightsCommandOutput) => void
497
471
  ): void;
498
-
499
472
  searchOrganizationInsights(
500
473
  args: SearchOrganizationInsightsCommandInput,
501
474
  options?: __HttpHandlerOptions
@@ -509,7 +482,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
509
482
  options: __HttpHandlerOptions,
510
483
  cb: (err: any, data?: SearchOrganizationInsightsCommandOutput) => void
511
484
  ): void;
512
-
513
485
  startCostEstimation(
514
486
  args: StartCostEstimationCommandInput,
515
487
  options?: __HttpHandlerOptions
@@ -523,7 +495,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
523
495
  options: __HttpHandlerOptions,
524
496
  cb: (err: any, data?: StartCostEstimationCommandOutput) => void
525
497
  ): void;
526
-
527
498
  updateEventSourcesConfig(
528
499
  args: UpdateEventSourcesConfigCommandInput,
529
500
  options?: __HttpHandlerOptions
@@ -537,7 +508,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
537
508
  options: __HttpHandlerOptions,
538
509
  cb: (err: any, data?: UpdateEventSourcesConfigCommandOutput) => void
539
510
  ): void;
540
-
541
511
  updateResourceCollection(
542
512
  args: UpdateResourceCollectionCommandInput,
543
513
  options?: __HttpHandlerOptions
@@ -551,7 +521,6 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
551
521
  options: __HttpHandlerOptions,
552
522
  cb: (err: any, data?: UpdateResourceCollectionCommandOutput) => void
553
523
  ): void;
554
-
555
524
  updateServiceIntegration(
556
525
  args: UpdateServiceIntegrationCommandInput,
557
526
  options?: __HttpHandlerOptions
@@ -233,47 +233,26 @@ export declare type ServiceOutputTypes =
233
233
  export interface ClientDefaults
234
234
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
235
235
  requestHandler?: __HttpHandler;
236
-
237
236
  sha256?: __HashConstructor;
238
-
239
237
  urlParser?: __UrlParser;
240
-
241
238
  bodyLengthChecker?: __BodyLengthCalculator;
242
-
243
239
  streamCollector?: __StreamCollector;
244
-
245
240
  base64Decoder?: __Decoder;
246
-
247
241
  base64Encoder?: __Encoder;
248
-
249
242
  utf8Decoder?: __Decoder;
250
-
251
243
  utf8Encoder?: __Encoder;
252
-
253
244
  runtime?: string;
254
-
255
245
  disableHostPrefix?: boolean;
256
-
257
246
  maxAttempts?: number | __Provider<number>;
258
-
259
247
  retryMode?: string | __Provider<string>;
260
-
261
248
  logger?: __Logger;
262
-
263
249
  useDualstackEndpoint?: boolean | __Provider<boolean>;
264
-
265
250
  useFipsEndpoint?: boolean | __Provider<boolean>;
266
-
267
251
  serviceId?: string;
268
-
269
252
  region?: string | __Provider<string>;
270
-
271
253
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
272
-
273
254
  regionInfoProvider?: RegionInfoProvider;
274
-
275
255
  defaultUserAgentProvider?: Provider<__UserAgent>;
276
-
277
256
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
278
257
  }
279
258
  declare type DevOpsGuruClientConfigType = Partial<
@@ -286,7 +265,6 @@ declare type DevOpsGuruClientConfigType = Partial<
286
265
  HostHeaderInputConfig &
287
266
  AwsAuthInputConfig &
288
267
  UserAgentInputConfig;
289
-
290
268
  export interface DevOpsGuruClientConfig extends DevOpsGuruClientConfigType {}
291
269
  declare type DevOpsGuruClientResolvedConfigType =
292
270
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
@@ -297,10 +275,8 @@ declare type DevOpsGuruClientResolvedConfigType =
297
275
  HostHeaderResolvedConfig &
298
276
  AwsAuthResolvedConfig &
299
277
  UserAgentResolvedConfig;
300
-
301
278
  export interface DevOpsGuruClientResolvedConfig
302
279
  extends DevOpsGuruClientResolvedConfigType {}
303
-
304
280
  export declare class DevOpsGuruClient extends __Client<
305
281
  __HttpHandlerOptions,
306
282
  ServiceInputTypes,
@@ -309,7 +285,6 @@ export declare class DevOpsGuruClient extends __Client<
309
285
  > {
310
286
  readonly config: DevOpsGuruClientResolvedConfig;
311
287
  constructor(configuration: DevOpsGuruClientConfig);
312
-
313
288
  destroy(): void;
314
289
  }
315
290
  export {};
@@ -19,7 +19,6 @@ export interface AddNotificationChannelCommandInput
19
19
  export interface AddNotificationChannelCommandOutput
20
20
  extends AddNotificationChannelResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class AddNotificationChannelCommand extends $Command<
24
23
  AddNotificationChannelCommandInput,
25
24
  AddNotificationChannelCommandOutput,
@@ -27,7 +26,6 @@ export declare class AddNotificationChannelCommand extends $Command<
27
26
  > {
28
27
  readonly input: AddNotificationChannelCommandInput;
29
28
  constructor(input: AddNotificationChannelCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface DeleteInsightCommandInput extends DeleteInsightRequest {}
18
18
  export interface DeleteInsightCommandOutput
19
19
  extends DeleteInsightResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class DeleteInsightCommand extends $Command<
23
22
  DeleteInsightCommandInput,
24
23
  DeleteInsightCommandOutput,
@@ -26,7 +25,6 @@ export declare class DeleteInsightCommand extends $Command<
26
25
  > {
27
26
  readonly input: DeleteInsightCommandInput;
28
27
  constructor(input: DeleteInsightCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeAccountHealthCommandInput
19
19
  export interface DescribeAccountHealthCommandOutput
20
20
  extends DescribeAccountHealthResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeAccountHealthCommand extends $Command<
24
23
  DescribeAccountHealthCommandInput,
25
24
  DescribeAccountHealthCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeAccountHealthCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeAccountHealthCommandInput;
29
28
  constructor(input: DescribeAccountHealthCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeAccountOverviewCommandInput
19
19
  export interface DescribeAccountOverviewCommandOutput
20
20
  extends DescribeAccountOverviewResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeAccountOverviewCommand extends $Command<
24
23
  DescribeAccountOverviewCommandInput,
25
24
  DescribeAccountOverviewCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeAccountOverviewCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeAccountOverviewCommandInput;
29
28
  constructor(input: DescribeAccountOverviewCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface DescribeAnomalyCommandInput extends DescribeAnomalyRequest {}
18
18
  export interface DescribeAnomalyCommandOutput
19
19
  extends DescribeAnomalyResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class DescribeAnomalyCommand extends $Command<
23
22
  DescribeAnomalyCommandInput,
24
23
  DescribeAnomalyCommandOutput,
@@ -26,7 +25,6 @@ export declare class DescribeAnomalyCommand extends $Command<
26
25
  > {
27
26
  readonly input: DescribeAnomalyCommandInput;
28
27
  constructor(input: DescribeAnomalyCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeEventSourcesConfigCommandInput
19
19
  export interface DescribeEventSourcesConfigCommandOutput
20
20
  extends DescribeEventSourcesConfigResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeEventSourcesConfigCommand extends $Command<
24
23
  DescribeEventSourcesConfigCommandInput,
25
24
  DescribeEventSourcesConfigCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeEventSourcesConfigCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeEventSourcesConfigCommandInput;
29
28
  constructor(input: DescribeEventSourcesConfigCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface DescribeFeedbackCommandInput extends DescribeFeedbackRequest {}
18
18
  export interface DescribeFeedbackCommandOutput
19
19
  extends DescribeFeedbackResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class DescribeFeedbackCommand extends $Command<
23
22
  DescribeFeedbackCommandInput,
24
23
  DescribeFeedbackCommandOutput,
@@ -26,7 +25,6 @@ export declare class DescribeFeedbackCommand extends $Command<
26
25
  > {
27
26
  readonly input: DescribeFeedbackCommandInput;
28
27
  constructor(input: DescribeFeedbackCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: DevOpsGuruClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface DescribeInsightCommandInput extends DescribeInsightRequest {}
18
18
  export interface DescribeInsightCommandOutput
19
19
  extends DescribeInsightResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class DescribeInsightCommand extends $Command<
23
22
  DescribeInsightCommandInput,
24
23
  DescribeInsightCommandOutput,
@@ -26,7 +25,6 @@ export declare class DescribeInsightCommand extends $Command<
26
25
  > {
27
26
  readonly input: DescribeInsightCommandInput;
28
27
  constructor(input: DescribeInsightCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeOrganizationHealthCommandInput
19
19
  export interface DescribeOrganizationHealthCommandOutput
20
20
  extends DescribeOrganizationHealthResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeOrganizationHealthCommand extends $Command<
24
23
  DescribeOrganizationHealthCommandInput,
25
24
  DescribeOrganizationHealthCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeOrganizationHealthCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeOrganizationHealthCommandInput;
29
28
  constructor(input: DescribeOrganizationHealthCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeOrganizationOverviewCommandInput
19
19
  export interface DescribeOrganizationOverviewCommandOutput
20
20
  extends DescribeOrganizationOverviewResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeOrganizationOverviewCommand extends $Command<
24
23
  DescribeOrganizationOverviewCommandInput,
25
24
  DescribeOrganizationOverviewCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeOrganizationOverviewCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeOrganizationOverviewCommandInput;
29
28
  constructor(input: DescribeOrganizationOverviewCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeOrganizationResourceCollectionHealthCommandInput
19
19
  export interface DescribeOrganizationResourceCollectionHealthCommandOutput
20
20
  extends DescribeOrganizationResourceCollectionHealthResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeOrganizationResourceCollectionHealthCommand extends $Command<
24
23
  DescribeOrganizationResourceCollectionHealthCommandInput,
25
24
  DescribeOrganizationResourceCollectionHealthCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeOrganizationResourceCollectionHealthCommand extends
27
26
  > {
28
27
  readonly input: DescribeOrganizationResourceCollectionHealthCommandInput;
29
28
  constructor(input: DescribeOrganizationResourceCollectionHealthCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeResourceCollectionHealthCommandInput
19
19
  export interface DescribeResourceCollectionHealthCommandOutput
20
20
  extends DescribeResourceCollectionHealthResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeResourceCollectionHealthCommand extends $Command<
24
23
  DescribeResourceCollectionHealthCommandInput,
25
24
  DescribeResourceCollectionHealthCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeResourceCollectionHealthCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeResourceCollectionHealthCommandInput;
29
28
  constructor(input: DescribeResourceCollectionHealthCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface DescribeServiceIntegrationCommandInput
19
19
  export interface DescribeServiceIntegrationCommandOutput
20
20
  extends DescribeServiceIntegrationResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeServiceIntegrationCommand extends $Command<
24
23
  DescribeServiceIntegrationCommandInput,
25
24
  DescribeServiceIntegrationCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeServiceIntegrationCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeServiceIntegrationCommandInput;
29
28
  constructor(input: DescribeServiceIntegrationCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface GetCostEstimationCommandInput
19
19
  export interface GetCostEstimationCommandOutput
20
20
  extends GetCostEstimationResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class GetCostEstimationCommand extends $Command<
24
23
  GetCostEstimationCommandInput,
25
24
  GetCostEstimationCommandOutput,
@@ -27,7 +26,6 @@ export declare class GetCostEstimationCommand extends $Command<
27
26
  > {
28
27
  readonly input: GetCostEstimationCommandInput;
29
28
  constructor(input: GetCostEstimationCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface GetResourceCollectionCommandInput
19
19
  export interface GetResourceCollectionCommandOutput
20
20
  extends GetResourceCollectionResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class GetResourceCollectionCommand extends $Command<
24
23
  GetResourceCollectionCommandInput,
25
24
  GetResourceCollectionCommandOutput,
@@ -27,7 +26,6 @@ export declare class GetResourceCollectionCommand extends $Command<
27
26
  > {
28
27
  readonly input: GetResourceCollectionCommandInput;
29
28
  constructor(input: GetResourceCollectionCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListAnomaliesForInsightCommandInput
19
19
  export interface ListAnomaliesForInsightCommandOutput
20
20
  extends ListAnomaliesForInsightResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListAnomaliesForInsightCommand extends $Command<
24
23
  ListAnomaliesForInsightCommandInput,
25
24
  ListAnomaliesForInsightCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListAnomaliesForInsightCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListAnomaliesForInsightCommandInput;
29
28
  constructor(input: ListAnomaliesForInsightCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListAnomalousLogGroupsCommandInput
19
19
  export interface ListAnomalousLogGroupsCommandOutput
20
20
  extends ListAnomalousLogGroupsResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListAnomalousLogGroupsCommand extends $Command<
24
23
  ListAnomalousLogGroupsCommandInput,
25
24
  ListAnomalousLogGroupsCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListAnomalousLogGroupsCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListAnomalousLogGroupsCommandInput;
29
28
  constructor(input: ListAnomalousLogGroupsCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: DevOpsGuruClientResolvedConfig,
@@ -15,7 +15,6 @@ export interface ListEventsCommandInput extends ListEventsRequest {}
15
15
  export interface ListEventsCommandOutput
16
16
  extends ListEventsResponse,
17
17
  __MetadataBearer {}
18
-
19
18
  export declare class ListEventsCommand extends $Command<
20
19
  ListEventsCommandInput,
21
20
  ListEventsCommandOutput,
@@ -23,7 +22,6 @@ export declare class ListEventsCommand extends $Command<
23
22
  > {
24
23
  readonly input: ListEventsCommandInput;
25
24
  constructor(input: ListEventsCommandInput);
26
-
27
25
  resolveMiddleware(
28
26
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
27
  configuration: DevOpsGuruClientResolvedConfig,