@aws-sdk/client-application-insights 3.169.0 → 3.171.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 (50) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ApplicationInsights.d.ts +469 -140
  3. package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +267 -100
  4. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateLogPatternCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteLogPatternCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/DescribeComponentConfigurationCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DescribeLogPatternCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/DescribeObservationCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/DescribeProblemCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/DescribeProblemObservationsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/ListConfigurationHistoryCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/ListLogPatternSetsCommand.d.ts +36 -17
  22. package/dist-types/ts3.4/commands/ListLogPatternsCommand.d.ts +35 -17
  23. package/dist-types/ts3.4/commands/ListProblemsCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
  28. package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +35 -17
  29. package/dist-types/ts3.4/commands/UpdateComponentConfigurationCommand.d.ts +39 -17
  30. package/dist-types/ts3.4/commands/UpdateLogPatternCommand.d.ts +35 -17
  31. package/dist-types/ts3.4/commands/index.d.ts +27 -27
  32. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  33. package/dist-types/ts3.4/index.d.ts +6 -6
  34. package/dist-types/ts3.4/models/ApplicationInsightsServiceException.d.ts +7 -6
  35. package/dist-types/ts3.4/models/index.d.ts +1 -1
  36. package/dist-types/ts3.4/models/models_0.d.ts +609 -751
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListConfigurationHistoryPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListLogPatternSetsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListLogPatternsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListProblemsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  45. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +329 -83
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  50. package/package.json +34 -34
@@ -1,751 +1,609 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ApplicationInsightsServiceException as __BaseException } from "./ApplicationInsightsServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message?: string;
8
-
9
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
- }
11
- export declare type Tier = "ACTIVE_DIRECTORY" | "CUSTOM" | "DEFAULT" | "DOT_NET_CORE" | "DOT_NET_WEB" | "DOT_NET_WEB_TIER" | "DOT_NET_WORKER" | "JAVA_JMX" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "SAP_HANA_HIGH_AVAILABILITY" | "SAP_HANA_MULTI_NODE" | "SAP_HANA_SINGLE_NODE" | "SHAREPOINT" | "SQL_SERVER" | "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP" | "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE";
12
- export declare type OsType = "LINUX" | "WINDOWS";
13
-
14
- export interface ApplicationComponent {
15
-
16
- ComponentName?: string;
17
-
18
- ComponentRemarks?: string;
19
-
20
- ResourceType?: string;
21
-
22
- OsType?: OsType | string;
23
-
24
- Tier?: Tier | string;
25
-
26
- Monitor?: boolean;
27
-
28
- DetectedWorkload?: Record<string, Record<string, string>>;
29
- }
30
- export declare enum DiscoveryType {
31
- ACCOUNT_BASED = "ACCOUNT_BASED",
32
- RESOURCE_GROUP_BASED = "RESOURCE_GROUP_BASED"
33
- }
34
-
35
- export interface ApplicationInfo {
36
-
37
- ResourceGroupName?: string;
38
-
39
- LifeCycle?: string;
40
-
41
- OpsItemSNSTopicArn?: string;
42
-
43
- OpsCenterEnabled?: boolean;
44
-
45
- CWEMonitorEnabled?: boolean;
46
-
47
- Remarks?: string;
48
-
49
- AutoConfigEnabled?: boolean;
50
-
51
- DiscoveryType?: DiscoveryType | string;
52
- }
53
-
54
- export declare class BadRequestException extends __BaseException {
55
- readonly name: "BadRequestException";
56
- readonly $fault: "client";
57
- Message?: string;
58
-
59
- constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
60
- }
61
- export declare type CloudWatchEventSource = "CODE_DEPLOY" | "EC2" | "HEALTH" | "RDS";
62
- export declare type ConfigurationEventResourceType = "CLOUDFORMATION" | "CLOUDWATCH_ALARM" | "CLOUDWATCH_LOG" | "SSM_ASSOCIATION";
63
- export declare type ConfigurationEventStatus = "ERROR" | "INFO" | "WARN";
64
-
65
- export interface ConfigurationEvent {
66
-
67
- MonitoredResourceARN?: string;
68
-
69
- EventStatus?: ConfigurationEventStatus | string;
70
-
71
- EventResourceType?: ConfigurationEventResourceType | string;
72
-
73
- EventTime?: Date;
74
-
75
- EventDetail?: string;
76
-
77
- EventResourceName?: string;
78
- }
79
- export declare enum GroupingType {
80
- ACCOUNT_BASED = "ACCOUNT_BASED"
81
- }
82
-
83
- export interface Tag {
84
-
85
- Key: string | undefined;
86
-
87
- Value: string | undefined;
88
- }
89
- export interface CreateApplicationRequest {
90
-
91
- ResourceGroupName?: string;
92
-
93
- OpsCenterEnabled?: boolean;
94
-
95
- CWEMonitorEnabled?: boolean;
96
-
97
- OpsItemSNSTopicArn?: string;
98
-
99
- Tags?: Tag[];
100
-
101
- AutoConfigEnabled?: boolean;
102
-
103
- AutoCreate?: boolean;
104
-
105
- GroupingType?: GroupingType | string;
106
- }
107
- export interface CreateApplicationResponse {
108
-
109
- ApplicationInfo?: ApplicationInfo;
110
- }
111
-
112
- export declare class InternalServerException extends __BaseException {
113
- readonly name: "InternalServerException";
114
- readonly $fault: "server";
115
- Message?: string;
116
-
117
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
118
- }
119
-
120
- export declare class ResourceInUseException extends __BaseException {
121
- readonly name: "ResourceInUseException";
122
- readonly $fault: "client";
123
- Message?: string;
124
-
125
- constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
126
- }
127
-
128
- export declare class ResourceNotFoundException extends __BaseException {
129
- readonly name: "ResourceNotFoundException";
130
- readonly $fault: "client";
131
- Message?: string;
132
-
133
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
134
- }
135
-
136
- export declare class TagsAlreadyExistException extends __BaseException {
137
- readonly name: "TagsAlreadyExistException";
138
- readonly $fault: "client";
139
- Message?: string;
140
-
141
- constructor(opts: __ExceptionOptionType<TagsAlreadyExistException, __BaseException>);
142
- }
143
-
144
- export declare class ValidationException extends __BaseException {
145
- readonly name: "ValidationException";
146
- readonly $fault: "client";
147
- Message?: string;
148
-
149
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
150
- }
151
- export interface CreateComponentRequest {
152
-
153
- ResourceGroupName: string | undefined;
154
-
155
- ComponentName: string | undefined;
156
-
157
- ResourceList: string[] | undefined;
158
- }
159
- export interface CreateComponentResponse {
160
- }
161
- export interface CreateLogPatternRequest {
162
-
163
- ResourceGroupName: string | undefined;
164
-
165
- PatternSetName: string | undefined;
166
-
167
- PatternName: string | undefined;
168
-
169
- Pattern: string | undefined;
170
-
171
- Rank: number | undefined;
172
- }
173
-
174
- export interface LogPattern {
175
-
176
- PatternSetName?: string;
177
-
178
- PatternName?: string;
179
-
180
- Pattern?: string;
181
-
182
- Rank?: number;
183
- }
184
- export interface CreateLogPatternResponse {
185
-
186
- LogPattern?: LogPattern;
187
-
188
- ResourceGroupName?: string;
189
- }
190
- export interface DeleteApplicationRequest {
191
-
192
- ResourceGroupName: string | undefined;
193
- }
194
- export interface DeleteApplicationResponse {
195
- }
196
- export interface DeleteComponentRequest {
197
-
198
- ResourceGroupName: string | undefined;
199
-
200
- ComponentName: string | undefined;
201
- }
202
- export interface DeleteComponentResponse {
203
- }
204
- export interface DeleteLogPatternRequest {
205
-
206
- ResourceGroupName: string | undefined;
207
-
208
- PatternSetName: string | undefined;
209
-
210
- PatternName: string | undefined;
211
- }
212
- export interface DeleteLogPatternResponse {
213
- }
214
- export interface DescribeApplicationRequest {
215
-
216
- ResourceGroupName: string | undefined;
217
- }
218
- export interface DescribeApplicationResponse {
219
-
220
- ApplicationInfo?: ApplicationInfo;
221
- }
222
- export interface DescribeComponentRequest {
223
-
224
- ResourceGroupName: string | undefined;
225
-
226
- ComponentName: string | undefined;
227
- }
228
- export interface DescribeComponentResponse {
229
-
230
- ApplicationComponent?: ApplicationComponent;
231
-
232
- ResourceList?: string[];
233
- }
234
- export interface DescribeComponentConfigurationRequest {
235
-
236
- ResourceGroupName: string | undefined;
237
-
238
- ComponentName: string | undefined;
239
- }
240
- export interface DescribeComponentConfigurationResponse {
241
-
242
- Monitor?: boolean;
243
-
244
- Tier?: Tier | string;
245
-
246
- ComponentConfiguration?: string;
247
- }
248
- export interface DescribeComponentConfigurationRecommendationRequest {
249
-
250
- ResourceGroupName: string | undefined;
251
-
252
- ComponentName: string | undefined;
253
-
254
- Tier: Tier | string | undefined;
255
- }
256
- export interface DescribeComponentConfigurationRecommendationResponse {
257
-
258
- ComponentConfiguration?: string;
259
- }
260
- export interface DescribeLogPatternRequest {
261
-
262
- ResourceGroupName: string | undefined;
263
-
264
- PatternSetName: string | undefined;
265
-
266
- PatternName: string | undefined;
267
- }
268
- export interface DescribeLogPatternResponse {
269
-
270
- ResourceGroupName?: string;
271
-
272
- LogPattern?: LogPattern;
273
- }
274
- export interface DescribeObservationRequest {
275
-
276
- ObservationId: string | undefined;
277
- }
278
- export declare type LogFilter = "ERROR" | "INFO" | "WARN";
279
-
280
- export interface Observation {
281
-
282
- Id?: string;
283
-
284
- StartTime?: Date;
285
-
286
- EndTime?: Date;
287
-
288
- SourceType?: string;
289
-
290
- SourceARN?: string;
291
-
292
- LogGroup?: string;
293
-
294
- LineTime?: Date;
295
-
296
- LogText?: string;
297
-
298
- LogFilter?: LogFilter | string;
299
-
300
- MetricNamespace?: string;
301
-
302
- MetricName?: string;
303
-
304
- Unit?: string;
305
-
306
- Value?: number;
307
-
308
- CloudWatchEventId?: string;
309
-
310
- CloudWatchEventSource?: CloudWatchEventSource | string;
311
-
312
- CloudWatchEventDetailType?: string;
313
-
314
- HealthEventArn?: string;
315
-
316
- HealthService?: string;
317
-
318
- HealthEventTypeCode?: string;
319
-
320
- HealthEventTypeCategory?: string;
321
-
322
- HealthEventDescription?: string;
323
-
324
- CodeDeployDeploymentId?: string;
325
-
326
- CodeDeployDeploymentGroup?: string;
327
-
328
- CodeDeployState?: string;
329
-
330
- CodeDeployApplication?: string;
331
-
332
- CodeDeployInstanceGroupId?: string;
333
-
334
- Ec2State?: string;
335
-
336
- RdsEventCategories?: string;
337
-
338
- RdsEventMessage?: string;
339
-
340
- S3EventName?: string;
341
-
342
- StatesExecutionArn?: string;
343
-
344
- StatesArn?: string;
345
-
346
- StatesStatus?: string;
347
-
348
- StatesInput?: string;
349
-
350
- EbsEvent?: string;
351
-
352
- EbsResult?: string;
353
-
354
- EbsCause?: string;
355
-
356
- EbsRequestId?: string;
357
-
358
- XRayFaultPercent?: number;
359
-
360
- XRayThrottlePercent?: number;
361
-
362
- XRayErrorPercent?: number;
363
-
364
- XRayRequestCount?: number;
365
-
366
- XRayRequestAverageLatency?: number;
367
-
368
- XRayNodeName?: string;
369
-
370
- XRayNodeType?: string;
371
- }
372
- export interface DescribeObservationResponse {
373
-
374
- Observation?: Observation;
375
- }
376
- export interface DescribeProblemRequest {
377
-
378
- ProblemId: string | undefined;
379
- }
380
- export declare type FeedbackKey = "INSIGHTS_FEEDBACK";
381
- export declare type FeedbackValue = "NOT_SPECIFIED" | "NOT_USEFUL" | "USEFUL";
382
- export declare type SeverityLevel = "High" | "Informative" | "Low" | "Medium";
383
- export declare type Status = "IGNORE" | "PENDING" | "RECURRING" | "RESOLVED";
384
-
385
- export interface Problem {
386
-
387
- Id?: string;
388
-
389
- Title?: string;
390
-
391
- Insights?: string;
392
-
393
- Status?: Status | string;
394
-
395
- AffectedResource?: string;
396
-
397
- StartTime?: Date;
398
-
399
- EndTime?: Date;
400
-
401
- SeverityLevel?: SeverityLevel | string;
402
-
403
- ResourceGroupName?: string;
404
-
405
- Feedback?: Record<string, FeedbackValue | string>;
406
-
407
- RecurringCount?: number;
408
-
409
- LastRecurrenceTime?: Date;
410
- }
411
- export interface DescribeProblemResponse {
412
-
413
- Problem?: Problem;
414
- }
415
- export interface DescribeProblemObservationsRequest {
416
-
417
- ProblemId: string | undefined;
418
- }
419
-
420
- export interface RelatedObservations {
421
-
422
- ObservationList?: Observation[];
423
- }
424
- export interface DescribeProblemObservationsResponse {
425
-
426
- RelatedObservations?: RelatedObservations;
427
- }
428
- export interface ListApplicationsRequest {
429
-
430
- MaxResults?: number;
431
-
432
- NextToken?: string;
433
- }
434
- export interface ListApplicationsResponse {
435
-
436
- ApplicationInfoList?: ApplicationInfo[];
437
-
438
- NextToken?: string;
439
- }
440
- export interface ListComponentsRequest {
441
-
442
- ResourceGroupName: string | undefined;
443
-
444
- MaxResults?: number;
445
-
446
- NextToken?: string;
447
- }
448
- export interface ListComponentsResponse {
449
-
450
- ApplicationComponentList?: ApplicationComponent[];
451
-
452
- NextToken?: string;
453
- }
454
- export interface ListConfigurationHistoryRequest {
455
-
456
- ResourceGroupName?: string;
457
-
458
- StartTime?: Date;
459
-
460
- EndTime?: Date;
461
-
462
- EventStatus?: ConfigurationEventStatus | string;
463
-
464
- MaxResults?: number;
465
-
466
- NextToken?: string;
467
- }
468
- export interface ListConfigurationHistoryResponse {
469
-
470
- EventList?: ConfigurationEvent[];
471
-
472
- NextToken?: string;
473
- }
474
- export interface ListLogPatternsRequest {
475
-
476
- ResourceGroupName: string | undefined;
477
-
478
- PatternSetName?: string;
479
-
480
- MaxResults?: number;
481
-
482
- NextToken?: string;
483
- }
484
- export interface ListLogPatternsResponse {
485
-
486
- ResourceGroupName?: string;
487
-
488
- LogPatterns?: LogPattern[];
489
-
490
- NextToken?: string;
491
- }
492
- export interface ListLogPatternSetsRequest {
493
-
494
- ResourceGroupName: string | undefined;
495
-
496
- MaxResults?: number;
497
-
498
- NextToken?: string;
499
- }
500
- export interface ListLogPatternSetsResponse {
501
-
502
- ResourceGroupName?: string;
503
-
504
- LogPatternSets?: string[];
505
-
506
- NextToken?: string;
507
- }
508
- export interface ListProblemsRequest {
509
-
510
- ResourceGroupName?: string;
511
-
512
- StartTime?: Date;
513
-
514
- EndTime?: Date;
515
-
516
- MaxResults?: number;
517
-
518
- NextToken?: string;
519
-
520
- ComponentName?: string;
521
- }
522
- export interface ListProblemsResponse {
523
-
524
- ProblemList?: Problem[];
525
-
526
- NextToken?: string;
527
-
528
- ResourceGroupName?: string;
529
- }
530
- export interface ListTagsForResourceRequest {
531
-
532
- ResourceARN: string | undefined;
533
- }
534
- export interface ListTagsForResourceResponse {
535
-
536
- Tags?: Tag[];
537
- }
538
- export interface TagResourceRequest {
539
-
540
- ResourceARN: string | undefined;
541
-
542
- Tags: Tag[] | undefined;
543
- }
544
- export interface TagResourceResponse {
545
- }
546
-
547
- export declare class TooManyTagsException extends __BaseException {
548
- readonly name: "TooManyTagsException";
549
- readonly $fault: "client";
550
- Message?: string;
551
-
552
- ResourceName?: string;
553
-
554
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
555
- }
556
- export interface UntagResourceRequest {
557
-
558
- ResourceARN: string | undefined;
559
-
560
- TagKeys: string[] | undefined;
561
- }
562
- export interface UntagResourceResponse {
563
- }
564
- export interface UpdateApplicationRequest {
565
-
566
- ResourceGroupName: string | undefined;
567
-
568
- OpsCenterEnabled?: boolean;
569
-
570
- CWEMonitorEnabled?: boolean;
571
-
572
- OpsItemSNSTopicArn?: string;
573
-
574
- RemoveSNSTopic?: boolean;
575
-
576
- AutoConfigEnabled?: boolean;
577
- }
578
- export interface UpdateApplicationResponse {
579
-
580
- ApplicationInfo?: ApplicationInfo;
581
- }
582
- export interface UpdateComponentRequest {
583
-
584
- ResourceGroupName: string | undefined;
585
-
586
- ComponentName: string | undefined;
587
-
588
- NewComponentName?: string;
589
-
590
- ResourceList?: string[];
591
- }
592
- export interface UpdateComponentResponse {
593
- }
594
- export interface UpdateComponentConfigurationRequest {
595
-
596
- ResourceGroupName: string | undefined;
597
-
598
- ComponentName: string | undefined;
599
-
600
- Monitor?: boolean;
601
-
602
- Tier?: Tier | string;
603
-
604
- ComponentConfiguration?: string;
605
-
606
- AutoConfigEnabled?: boolean;
607
- }
608
- export interface UpdateComponentConfigurationResponse {
609
- }
610
- export interface UpdateLogPatternRequest {
611
-
612
- ResourceGroupName: string | undefined;
613
-
614
- PatternSetName: string | undefined;
615
-
616
- PatternName: string | undefined;
617
-
618
- Pattern?: string;
619
-
620
- Rank?: number;
621
- }
622
- export interface UpdateLogPatternResponse {
623
-
624
- ResourceGroupName?: string;
625
-
626
- LogPattern?: LogPattern;
627
- }
628
-
629
- export declare const ApplicationComponentFilterSensitiveLog: (obj: ApplicationComponent) => any;
630
-
631
- export declare const ApplicationInfoFilterSensitiveLog: (obj: ApplicationInfo) => any;
632
-
633
- export declare const ConfigurationEventFilterSensitiveLog: (obj: ConfigurationEvent) => any;
634
-
635
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
636
-
637
- export declare const CreateApplicationRequestFilterSensitiveLog: (obj: CreateApplicationRequest) => any;
638
-
639
- export declare const CreateApplicationResponseFilterSensitiveLog: (obj: CreateApplicationResponse) => any;
640
-
641
- export declare const CreateComponentRequestFilterSensitiveLog: (obj: CreateComponentRequest) => any;
642
-
643
- export declare const CreateComponentResponseFilterSensitiveLog: (obj: CreateComponentResponse) => any;
644
-
645
- export declare const CreateLogPatternRequestFilterSensitiveLog: (obj: CreateLogPatternRequest) => any;
646
-
647
- export declare const LogPatternFilterSensitiveLog: (obj: LogPattern) => any;
648
-
649
- export declare const CreateLogPatternResponseFilterSensitiveLog: (obj: CreateLogPatternResponse) => any;
650
-
651
- export declare const DeleteApplicationRequestFilterSensitiveLog: (obj: DeleteApplicationRequest) => any;
652
-
653
- export declare const DeleteApplicationResponseFilterSensitiveLog: (obj: DeleteApplicationResponse) => any;
654
-
655
- export declare const DeleteComponentRequestFilterSensitiveLog: (obj: DeleteComponentRequest) => any;
656
-
657
- export declare const DeleteComponentResponseFilterSensitiveLog: (obj: DeleteComponentResponse) => any;
658
-
659
- export declare const DeleteLogPatternRequestFilterSensitiveLog: (obj: DeleteLogPatternRequest) => any;
660
-
661
- export declare const DeleteLogPatternResponseFilterSensitiveLog: (obj: DeleteLogPatternResponse) => any;
662
-
663
- export declare const DescribeApplicationRequestFilterSensitiveLog: (obj: DescribeApplicationRequest) => any;
664
-
665
- export declare const DescribeApplicationResponseFilterSensitiveLog: (obj: DescribeApplicationResponse) => any;
666
-
667
- export declare const DescribeComponentRequestFilterSensitiveLog: (obj: DescribeComponentRequest) => any;
668
-
669
- export declare const DescribeComponentResponseFilterSensitiveLog: (obj: DescribeComponentResponse) => any;
670
-
671
- export declare const DescribeComponentConfigurationRequestFilterSensitiveLog: (obj: DescribeComponentConfigurationRequest) => any;
672
-
673
- export declare const DescribeComponentConfigurationResponseFilterSensitiveLog: (obj: DescribeComponentConfigurationResponse) => any;
674
-
675
- export declare const DescribeComponentConfigurationRecommendationRequestFilterSensitiveLog: (obj: DescribeComponentConfigurationRecommendationRequest) => any;
676
-
677
- export declare const DescribeComponentConfigurationRecommendationResponseFilterSensitiveLog: (obj: DescribeComponentConfigurationRecommendationResponse) => any;
678
-
679
- export declare const DescribeLogPatternRequestFilterSensitiveLog: (obj: DescribeLogPatternRequest) => any;
680
-
681
- export declare const DescribeLogPatternResponseFilterSensitiveLog: (obj: DescribeLogPatternResponse) => any;
682
-
683
- export declare const DescribeObservationRequestFilterSensitiveLog: (obj: DescribeObservationRequest) => any;
684
-
685
- export declare const ObservationFilterSensitiveLog: (obj: Observation) => any;
686
-
687
- export declare const DescribeObservationResponseFilterSensitiveLog: (obj: DescribeObservationResponse) => any;
688
-
689
- export declare const DescribeProblemRequestFilterSensitiveLog: (obj: DescribeProblemRequest) => any;
690
-
691
- export declare const ProblemFilterSensitiveLog: (obj: Problem) => any;
692
-
693
- export declare const DescribeProblemResponseFilterSensitiveLog: (obj: DescribeProblemResponse) => any;
694
-
695
- export declare const DescribeProblemObservationsRequestFilterSensitiveLog: (obj: DescribeProblemObservationsRequest) => any;
696
-
697
- export declare const RelatedObservationsFilterSensitiveLog: (obj: RelatedObservations) => any;
698
-
699
- export declare const DescribeProblemObservationsResponseFilterSensitiveLog: (obj: DescribeProblemObservationsResponse) => any;
700
-
701
- export declare const ListApplicationsRequestFilterSensitiveLog: (obj: ListApplicationsRequest) => any;
702
-
703
- export declare const ListApplicationsResponseFilterSensitiveLog: (obj: ListApplicationsResponse) => any;
704
-
705
- export declare const ListComponentsRequestFilterSensitiveLog: (obj: ListComponentsRequest) => any;
706
-
707
- export declare const ListComponentsResponseFilterSensitiveLog: (obj: ListComponentsResponse) => any;
708
-
709
- export declare const ListConfigurationHistoryRequestFilterSensitiveLog: (obj: ListConfigurationHistoryRequest) => any;
710
-
711
- export declare const ListConfigurationHistoryResponseFilterSensitiveLog: (obj: ListConfigurationHistoryResponse) => any;
712
-
713
- export declare const ListLogPatternsRequestFilterSensitiveLog: (obj: ListLogPatternsRequest) => any;
714
-
715
- export declare const ListLogPatternsResponseFilterSensitiveLog: (obj: ListLogPatternsResponse) => any;
716
-
717
- export declare const ListLogPatternSetsRequestFilterSensitiveLog: (obj: ListLogPatternSetsRequest) => any;
718
-
719
- export declare const ListLogPatternSetsResponseFilterSensitiveLog: (obj: ListLogPatternSetsResponse) => any;
720
-
721
- export declare const ListProblemsRequestFilterSensitiveLog: (obj: ListProblemsRequest) => any;
722
-
723
- export declare const ListProblemsResponseFilterSensitiveLog: (obj: ListProblemsResponse) => any;
724
-
725
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
726
-
727
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
728
-
729
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
730
-
731
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
732
-
733
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
734
-
735
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
736
-
737
- export declare const UpdateApplicationRequestFilterSensitiveLog: (obj: UpdateApplicationRequest) => any;
738
-
739
- export declare const UpdateApplicationResponseFilterSensitiveLog: (obj: UpdateApplicationResponse) => any;
740
-
741
- export declare const UpdateComponentRequestFilterSensitiveLog: (obj: UpdateComponentRequest) => any;
742
-
743
- export declare const UpdateComponentResponseFilterSensitiveLog: (obj: UpdateComponentResponse) => any;
744
-
745
- export declare const UpdateComponentConfigurationRequestFilterSensitiveLog: (obj: UpdateComponentConfigurationRequest) => any;
746
-
747
- export declare const UpdateComponentConfigurationResponseFilterSensitiveLog: (obj: UpdateComponentConfigurationResponse) => any;
748
-
749
- export declare const UpdateLogPatternRequestFilterSensitiveLog: (obj: UpdateLogPatternRequest) => any;
750
-
751
- export declare const UpdateLogPatternResponseFilterSensitiveLog: (obj: UpdateLogPatternResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ApplicationInsightsServiceException as __BaseException } from "./ApplicationInsightsServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare type Tier =
12
+ | "ACTIVE_DIRECTORY"
13
+ | "CUSTOM"
14
+ | "DEFAULT"
15
+ | "DOT_NET_CORE"
16
+ | "DOT_NET_WEB"
17
+ | "DOT_NET_WEB_TIER"
18
+ | "DOT_NET_WORKER"
19
+ | "JAVA_JMX"
20
+ | "MYSQL"
21
+ | "ORACLE"
22
+ | "POSTGRESQL"
23
+ | "SAP_HANA_HIGH_AVAILABILITY"
24
+ | "SAP_HANA_MULTI_NODE"
25
+ | "SAP_HANA_SINGLE_NODE"
26
+ | "SHAREPOINT"
27
+ | "SQL_SERVER"
28
+ | "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP"
29
+ | "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE";
30
+ export declare type OsType = "LINUX" | "WINDOWS";
31
+ export interface ApplicationComponent {
32
+ ComponentName?: string;
33
+ ComponentRemarks?: string;
34
+ ResourceType?: string;
35
+ OsType?: OsType | string;
36
+ Tier?: Tier | string;
37
+ Monitor?: boolean;
38
+ DetectedWorkload?: Record<string, Record<string, string>>;
39
+ }
40
+ export declare enum DiscoveryType {
41
+ ACCOUNT_BASED = "ACCOUNT_BASED",
42
+ RESOURCE_GROUP_BASED = "RESOURCE_GROUP_BASED",
43
+ }
44
+ export interface ApplicationInfo {
45
+ ResourceGroupName?: string;
46
+ LifeCycle?: string;
47
+ OpsItemSNSTopicArn?: string;
48
+ OpsCenterEnabled?: boolean;
49
+ CWEMonitorEnabled?: boolean;
50
+ Remarks?: string;
51
+ AutoConfigEnabled?: boolean;
52
+ DiscoveryType?: DiscoveryType | string;
53
+ }
54
+ export declare class BadRequestException extends __BaseException {
55
+ readonly name: "BadRequestException";
56
+ readonly $fault: "client";
57
+ Message?: string;
58
+ constructor(
59
+ opts: __ExceptionOptionType<BadRequestException, __BaseException>
60
+ );
61
+ }
62
+ export declare type CloudWatchEventSource =
63
+ | "CODE_DEPLOY"
64
+ | "EC2"
65
+ | "HEALTH"
66
+ | "RDS";
67
+ export declare type ConfigurationEventResourceType =
68
+ | "CLOUDFORMATION"
69
+ | "CLOUDWATCH_ALARM"
70
+ | "CLOUDWATCH_LOG"
71
+ | "SSM_ASSOCIATION";
72
+ export declare type ConfigurationEventStatus = "ERROR" | "INFO" | "WARN";
73
+ export interface ConfigurationEvent {
74
+ MonitoredResourceARN?: string;
75
+ EventStatus?: ConfigurationEventStatus | string;
76
+ EventResourceType?: ConfigurationEventResourceType | string;
77
+ EventTime?: Date;
78
+ EventDetail?: string;
79
+ EventResourceName?: string;
80
+ }
81
+ export declare enum GroupingType {
82
+ ACCOUNT_BASED = "ACCOUNT_BASED",
83
+ }
84
+ export interface Tag {
85
+ Key: string | undefined;
86
+ Value: string | undefined;
87
+ }
88
+ export interface CreateApplicationRequest {
89
+ ResourceGroupName?: string;
90
+ OpsCenterEnabled?: boolean;
91
+ CWEMonitorEnabled?: boolean;
92
+ OpsItemSNSTopicArn?: string;
93
+ Tags?: Tag[];
94
+ AutoConfigEnabled?: boolean;
95
+ AutoCreate?: boolean;
96
+ GroupingType?: GroupingType | string;
97
+ }
98
+ export interface CreateApplicationResponse {
99
+ ApplicationInfo?: ApplicationInfo;
100
+ }
101
+ export declare class InternalServerException extends __BaseException {
102
+ readonly name: "InternalServerException";
103
+ readonly $fault: "server";
104
+ Message?: string;
105
+ constructor(
106
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
107
+ );
108
+ }
109
+ export declare class ResourceInUseException extends __BaseException {
110
+ readonly name: "ResourceInUseException";
111
+ readonly $fault: "client";
112
+ Message?: string;
113
+ constructor(
114
+ opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
115
+ );
116
+ }
117
+ export declare class ResourceNotFoundException extends __BaseException {
118
+ readonly name: "ResourceNotFoundException";
119
+ readonly $fault: "client";
120
+ Message?: string;
121
+ constructor(
122
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
123
+ );
124
+ }
125
+ export declare class TagsAlreadyExistException extends __BaseException {
126
+ readonly name: "TagsAlreadyExistException";
127
+ readonly $fault: "client";
128
+ Message?: string;
129
+ constructor(
130
+ opts: __ExceptionOptionType<TagsAlreadyExistException, __BaseException>
131
+ );
132
+ }
133
+ export declare class ValidationException extends __BaseException {
134
+ readonly name: "ValidationException";
135
+ readonly $fault: "client";
136
+ Message?: string;
137
+ constructor(
138
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
139
+ );
140
+ }
141
+ export interface CreateComponentRequest {
142
+ ResourceGroupName: string | undefined;
143
+ ComponentName: string | undefined;
144
+ ResourceList: string[] | undefined;
145
+ }
146
+ export interface CreateComponentResponse {}
147
+ export interface CreateLogPatternRequest {
148
+ ResourceGroupName: string | undefined;
149
+ PatternSetName: string | undefined;
150
+ PatternName: string | undefined;
151
+ Pattern: string | undefined;
152
+ Rank: number | undefined;
153
+ }
154
+ export interface LogPattern {
155
+ PatternSetName?: string;
156
+ PatternName?: string;
157
+ Pattern?: string;
158
+ Rank?: number;
159
+ }
160
+ export interface CreateLogPatternResponse {
161
+ LogPattern?: LogPattern;
162
+ ResourceGroupName?: string;
163
+ }
164
+ export interface DeleteApplicationRequest {
165
+ ResourceGroupName: string | undefined;
166
+ }
167
+ export interface DeleteApplicationResponse {}
168
+ export interface DeleteComponentRequest {
169
+ ResourceGroupName: string | undefined;
170
+ ComponentName: string | undefined;
171
+ }
172
+ export interface DeleteComponentResponse {}
173
+ export interface DeleteLogPatternRequest {
174
+ ResourceGroupName: string | undefined;
175
+ PatternSetName: string | undefined;
176
+ PatternName: string | undefined;
177
+ }
178
+ export interface DeleteLogPatternResponse {}
179
+ export interface DescribeApplicationRequest {
180
+ ResourceGroupName: string | undefined;
181
+ }
182
+ export interface DescribeApplicationResponse {
183
+ ApplicationInfo?: ApplicationInfo;
184
+ }
185
+ export interface DescribeComponentRequest {
186
+ ResourceGroupName: string | undefined;
187
+ ComponentName: string | undefined;
188
+ }
189
+ export interface DescribeComponentResponse {
190
+ ApplicationComponent?: ApplicationComponent;
191
+ ResourceList?: string[];
192
+ }
193
+ export interface DescribeComponentConfigurationRequest {
194
+ ResourceGroupName: string | undefined;
195
+ ComponentName: string | undefined;
196
+ }
197
+ export interface DescribeComponentConfigurationResponse {
198
+ Monitor?: boolean;
199
+ Tier?: Tier | string;
200
+ ComponentConfiguration?: string;
201
+ }
202
+ export interface DescribeComponentConfigurationRecommendationRequest {
203
+ ResourceGroupName: string | undefined;
204
+ ComponentName: string | undefined;
205
+ Tier: Tier | string | undefined;
206
+ }
207
+ export interface DescribeComponentConfigurationRecommendationResponse {
208
+ ComponentConfiguration?: string;
209
+ }
210
+ export interface DescribeLogPatternRequest {
211
+ ResourceGroupName: string | undefined;
212
+ PatternSetName: string | undefined;
213
+ PatternName: string | undefined;
214
+ }
215
+ export interface DescribeLogPatternResponse {
216
+ ResourceGroupName?: string;
217
+ LogPattern?: LogPattern;
218
+ }
219
+ export interface DescribeObservationRequest {
220
+ ObservationId: string | undefined;
221
+ }
222
+ export declare type LogFilter = "ERROR" | "INFO" | "WARN";
223
+ export interface Observation {
224
+ Id?: string;
225
+ StartTime?: Date;
226
+ EndTime?: Date;
227
+ SourceType?: string;
228
+ SourceARN?: string;
229
+ LogGroup?: string;
230
+ LineTime?: Date;
231
+ LogText?: string;
232
+ LogFilter?: LogFilter | string;
233
+ MetricNamespace?: string;
234
+ MetricName?: string;
235
+ Unit?: string;
236
+ Value?: number;
237
+ CloudWatchEventId?: string;
238
+ CloudWatchEventSource?: CloudWatchEventSource | string;
239
+ CloudWatchEventDetailType?: string;
240
+ HealthEventArn?: string;
241
+ HealthService?: string;
242
+ HealthEventTypeCode?: string;
243
+ HealthEventTypeCategory?: string;
244
+ HealthEventDescription?: string;
245
+ CodeDeployDeploymentId?: string;
246
+ CodeDeployDeploymentGroup?: string;
247
+ CodeDeployState?: string;
248
+ CodeDeployApplication?: string;
249
+ CodeDeployInstanceGroupId?: string;
250
+ Ec2State?: string;
251
+ RdsEventCategories?: string;
252
+ RdsEventMessage?: string;
253
+ S3EventName?: string;
254
+ StatesExecutionArn?: string;
255
+ StatesArn?: string;
256
+ StatesStatus?: string;
257
+ StatesInput?: string;
258
+ EbsEvent?: string;
259
+ EbsResult?: string;
260
+ EbsCause?: string;
261
+ EbsRequestId?: string;
262
+ XRayFaultPercent?: number;
263
+ XRayThrottlePercent?: number;
264
+ XRayErrorPercent?: number;
265
+ XRayRequestCount?: number;
266
+ XRayRequestAverageLatency?: number;
267
+ XRayNodeName?: string;
268
+ XRayNodeType?: string;
269
+ }
270
+ export interface DescribeObservationResponse {
271
+ Observation?: Observation;
272
+ }
273
+ export interface DescribeProblemRequest {
274
+ ProblemId: string | undefined;
275
+ }
276
+ export declare type FeedbackKey = "INSIGHTS_FEEDBACK";
277
+ export declare type FeedbackValue = "NOT_SPECIFIED" | "NOT_USEFUL" | "USEFUL";
278
+ export declare type SeverityLevel = "High" | "Informative" | "Low" | "Medium";
279
+ export declare type Status = "IGNORE" | "PENDING" | "RECURRING" | "RESOLVED";
280
+ export interface Problem {
281
+ Id?: string;
282
+ Title?: string;
283
+ Insights?: string;
284
+ Status?: Status | string;
285
+ AffectedResource?: string;
286
+ StartTime?: Date;
287
+ EndTime?: Date;
288
+ SeverityLevel?: SeverityLevel | string;
289
+ ResourceGroupName?: string;
290
+ Feedback?: Record<string, FeedbackValue | string>;
291
+ RecurringCount?: number;
292
+ LastRecurrenceTime?: Date;
293
+ }
294
+ export interface DescribeProblemResponse {
295
+ Problem?: Problem;
296
+ }
297
+ export interface DescribeProblemObservationsRequest {
298
+ ProblemId: string | undefined;
299
+ }
300
+ export interface RelatedObservations {
301
+ ObservationList?: Observation[];
302
+ }
303
+ export interface DescribeProblemObservationsResponse {
304
+ RelatedObservations?: RelatedObservations;
305
+ }
306
+ export interface ListApplicationsRequest {
307
+ MaxResults?: number;
308
+ NextToken?: string;
309
+ }
310
+ export interface ListApplicationsResponse {
311
+ ApplicationInfoList?: ApplicationInfo[];
312
+ NextToken?: string;
313
+ }
314
+ export interface ListComponentsRequest {
315
+ ResourceGroupName: string | undefined;
316
+ MaxResults?: number;
317
+ NextToken?: string;
318
+ }
319
+ export interface ListComponentsResponse {
320
+ ApplicationComponentList?: ApplicationComponent[];
321
+ NextToken?: string;
322
+ }
323
+ export interface ListConfigurationHistoryRequest {
324
+ ResourceGroupName?: string;
325
+ StartTime?: Date;
326
+ EndTime?: Date;
327
+ EventStatus?: ConfigurationEventStatus | string;
328
+ MaxResults?: number;
329
+ NextToken?: string;
330
+ }
331
+ export interface ListConfigurationHistoryResponse {
332
+ EventList?: ConfigurationEvent[];
333
+ NextToken?: string;
334
+ }
335
+ export interface ListLogPatternsRequest {
336
+ ResourceGroupName: string | undefined;
337
+ PatternSetName?: string;
338
+ MaxResults?: number;
339
+ NextToken?: string;
340
+ }
341
+ export interface ListLogPatternsResponse {
342
+ ResourceGroupName?: string;
343
+ LogPatterns?: LogPattern[];
344
+ NextToken?: string;
345
+ }
346
+ export interface ListLogPatternSetsRequest {
347
+ ResourceGroupName: string | undefined;
348
+ MaxResults?: number;
349
+ NextToken?: string;
350
+ }
351
+ export interface ListLogPatternSetsResponse {
352
+ ResourceGroupName?: string;
353
+ LogPatternSets?: string[];
354
+ NextToken?: string;
355
+ }
356
+ export interface ListProblemsRequest {
357
+ ResourceGroupName?: string;
358
+ StartTime?: Date;
359
+ EndTime?: Date;
360
+ MaxResults?: number;
361
+ NextToken?: string;
362
+ ComponentName?: string;
363
+ }
364
+ export interface ListProblemsResponse {
365
+ ProblemList?: Problem[];
366
+ NextToken?: string;
367
+ ResourceGroupName?: string;
368
+ }
369
+ export interface ListTagsForResourceRequest {
370
+ ResourceARN: string | undefined;
371
+ }
372
+ export interface ListTagsForResourceResponse {
373
+ Tags?: Tag[];
374
+ }
375
+ export interface TagResourceRequest {
376
+ ResourceARN: string | undefined;
377
+ Tags: Tag[] | undefined;
378
+ }
379
+ export interface TagResourceResponse {}
380
+ export declare class TooManyTagsException extends __BaseException {
381
+ readonly name: "TooManyTagsException";
382
+ readonly $fault: "client";
383
+ Message?: string;
384
+ ResourceName?: string;
385
+ constructor(
386
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
387
+ );
388
+ }
389
+ export interface UntagResourceRequest {
390
+ ResourceARN: string | undefined;
391
+ TagKeys: string[] | undefined;
392
+ }
393
+ export interface UntagResourceResponse {}
394
+ export interface UpdateApplicationRequest {
395
+ ResourceGroupName: string | undefined;
396
+ OpsCenterEnabled?: boolean;
397
+ CWEMonitorEnabled?: boolean;
398
+ OpsItemSNSTopicArn?: string;
399
+ RemoveSNSTopic?: boolean;
400
+ AutoConfigEnabled?: boolean;
401
+ }
402
+ export interface UpdateApplicationResponse {
403
+ ApplicationInfo?: ApplicationInfo;
404
+ }
405
+ export interface UpdateComponentRequest {
406
+ ResourceGroupName: string | undefined;
407
+ ComponentName: string | undefined;
408
+ NewComponentName?: string;
409
+ ResourceList?: string[];
410
+ }
411
+ export interface UpdateComponentResponse {}
412
+ export interface UpdateComponentConfigurationRequest {
413
+ ResourceGroupName: string | undefined;
414
+ ComponentName: string | undefined;
415
+ Monitor?: boolean;
416
+ Tier?: Tier | string;
417
+ ComponentConfiguration?: string;
418
+ AutoConfigEnabled?: boolean;
419
+ }
420
+ export interface UpdateComponentConfigurationResponse {}
421
+ export interface UpdateLogPatternRequest {
422
+ ResourceGroupName: string | undefined;
423
+ PatternSetName: string | undefined;
424
+ PatternName: string | undefined;
425
+ Pattern?: string;
426
+ Rank?: number;
427
+ }
428
+ export interface UpdateLogPatternResponse {
429
+ ResourceGroupName?: string;
430
+ LogPattern?: LogPattern;
431
+ }
432
+ export declare const ApplicationComponentFilterSensitiveLog: (
433
+ obj: ApplicationComponent
434
+ ) => any;
435
+ export declare const ApplicationInfoFilterSensitiveLog: (
436
+ obj: ApplicationInfo
437
+ ) => any;
438
+ export declare const ConfigurationEventFilterSensitiveLog: (
439
+ obj: ConfigurationEvent
440
+ ) => any;
441
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
442
+ export declare const CreateApplicationRequestFilterSensitiveLog: (
443
+ obj: CreateApplicationRequest
444
+ ) => any;
445
+ export declare const CreateApplicationResponseFilterSensitiveLog: (
446
+ obj: CreateApplicationResponse
447
+ ) => any;
448
+ export declare const CreateComponentRequestFilterSensitiveLog: (
449
+ obj: CreateComponentRequest
450
+ ) => any;
451
+ export declare const CreateComponentResponseFilterSensitiveLog: (
452
+ obj: CreateComponentResponse
453
+ ) => any;
454
+ export declare const CreateLogPatternRequestFilterSensitiveLog: (
455
+ obj: CreateLogPatternRequest
456
+ ) => any;
457
+ export declare const LogPatternFilterSensitiveLog: (obj: LogPattern) => any;
458
+ export declare const CreateLogPatternResponseFilterSensitiveLog: (
459
+ obj: CreateLogPatternResponse
460
+ ) => any;
461
+ export declare const DeleteApplicationRequestFilterSensitiveLog: (
462
+ obj: DeleteApplicationRequest
463
+ ) => any;
464
+ export declare const DeleteApplicationResponseFilterSensitiveLog: (
465
+ obj: DeleteApplicationResponse
466
+ ) => any;
467
+ export declare const DeleteComponentRequestFilterSensitiveLog: (
468
+ obj: DeleteComponentRequest
469
+ ) => any;
470
+ export declare const DeleteComponentResponseFilterSensitiveLog: (
471
+ obj: DeleteComponentResponse
472
+ ) => any;
473
+ export declare const DeleteLogPatternRequestFilterSensitiveLog: (
474
+ obj: DeleteLogPatternRequest
475
+ ) => any;
476
+ export declare const DeleteLogPatternResponseFilterSensitiveLog: (
477
+ obj: DeleteLogPatternResponse
478
+ ) => any;
479
+ export declare const DescribeApplicationRequestFilterSensitiveLog: (
480
+ obj: DescribeApplicationRequest
481
+ ) => any;
482
+ export declare const DescribeApplicationResponseFilterSensitiveLog: (
483
+ obj: DescribeApplicationResponse
484
+ ) => any;
485
+ export declare const DescribeComponentRequestFilterSensitiveLog: (
486
+ obj: DescribeComponentRequest
487
+ ) => any;
488
+ export declare const DescribeComponentResponseFilterSensitiveLog: (
489
+ obj: DescribeComponentResponse
490
+ ) => any;
491
+ export declare const DescribeComponentConfigurationRequestFilterSensitiveLog: (
492
+ obj: DescribeComponentConfigurationRequest
493
+ ) => any;
494
+ export declare const DescribeComponentConfigurationResponseFilterSensitiveLog: (
495
+ obj: DescribeComponentConfigurationResponse
496
+ ) => any;
497
+ export declare const DescribeComponentConfigurationRecommendationRequestFilterSensitiveLog: (
498
+ obj: DescribeComponentConfigurationRecommendationRequest
499
+ ) => any;
500
+ export declare const DescribeComponentConfigurationRecommendationResponseFilterSensitiveLog: (
501
+ obj: DescribeComponentConfigurationRecommendationResponse
502
+ ) => any;
503
+ export declare const DescribeLogPatternRequestFilterSensitiveLog: (
504
+ obj: DescribeLogPatternRequest
505
+ ) => any;
506
+ export declare const DescribeLogPatternResponseFilterSensitiveLog: (
507
+ obj: DescribeLogPatternResponse
508
+ ) => any;
509
+ export declare const DescribeObservationRequestFilterSensitiveLog: (
510
+ obj: DescribeObservationRequest
511
+ ) => any;
512
+ export declare const ObservationFilterSensitiveLog: (obj: Observation) => any;
513
+ export declare const DescribeObservationResponseFilterSensitiveLog: (
514
+ obj: DescribeObservationResponse
515
+ ) => any;
516
+ export declare const DescribeProblemRequestFilterSensitiveLog: (
517
+ obj: DescribeProblemRequest
518
+ ) => any;
519
+ export declare const ProblemFilterSensitiveLog: (obj: Problem) => any;
520
+ export declare const DescribeProblemResponseFilterSensitiveLog: (
521
+ obj: DescribeProblemResponse
522
+ ) => any;
523
+ export declare const DescribeProblemObservationsRequestFilterSensitiveLog: (
524
+ obj: DescribeProblemObservationsRequest
525
+ ) => any;
526
+ export declare const RelatedObservationsFilterSensitiveLog: (
527
+ obj: RelatedObservations
528
+ ) => any;
529
+ export declare const DescribeProblemObservationsResponseFilterSensitiveLog: (
530
+ obj: DescribeProblemObservationsResponse
531
+ ) => any;
532
+ export declare const ListApplicationsRequestFilterSensitiveLog: (
533
+ obj: ListApplicationsRequest
534
+ ) => any;
535
+ export declare const ListApplicationsResponseFilterSensitiveLog: (
536
+ obj: ListApplicationsResponse
537
+ ) => any;
538
+ export declare const ListComponentsRequestFilterSensitiveLog: (
539
+ obj: ListComponentsRequest
540
+ ) => any;
541
+ export declare const ListComponentsResponseFilterSensitiveLog: (
542
+ obj: ListComponentsResponse
543
+ ) => any;
544
+ export declare const ListConfigurationHistoryRequestFilterSensitiveLog: (
545
+ obj: ListConfigurationHistoryRequest
546
+ ) => any;
547
+ export declare const ListConfigurationHistoryResponseFilterSensitiveLog: (
548
+ obj: ListConfigurationHistoryResponse
549
+ ) => any;
550
+ export declare const ListLogPatternsRequestFilterSensitiveLog: (
551
+ obj: ListLogPatternsRequest
552
+ ) => any;
553
+ export declare const ListLogPatternsResponseFilterSensitiveLog: (
554
+ obj: ListLogPatternsResponse
555
+ ) => any;
556
+ export declare const ListLogPatternSetsRequestFilterSensitiveLog: (
557
+ obj: ListLogPatternSetsRequest
558
+ ) => any;
559
+ export declare const ListLogPatternSetsResponseFilterSensitiveLog: (
560
+ obj: ListLogPatternSetsResponse
561
+ ) => any;
562
+ export declare const ListProblemsRequestFilterSensitiveLog: (
563
+ obj: ListProblemsRequest
564
+ ) => any;
565
+ export declare const ListProblemsResponseFilterSensitiveLog: (
566
+ obj: ListProblemsResponse
567
+ ) => any;
568
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
569
+ obj: ListTagsForResourceRequest
570
+ ) => any;
571
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
572
+ obj: ListTagsForResourceResponse
573
+ ) => any;
574
+ export declare const TagResourceRequestFilterSensitiveLog: (
575
+ obj: TagResourceRequest
576
+ ) => any;
577
+ export declare const TagResourceResponseFilterSensitiveLog: (
578
+ obj: TagResourceResponse
579
+ ) => any;
580
+ export declare const UntagResourceRequestFilterSensitiveLog: (
581
+ obj: UntagResourceRequest
582
+ ) => any;
583
+ export declare const UntagResourceResponseFilterSensitiveLog: (
584
+ obj: UntagResourceResponse
585
+ ) => any;
586
+ export declare const UpdateApplicationRequestFilterSensitiveLog: (
587
+ obj: UpdateApplicationRequest
588
+ ) => any;
589
+ export declare const UpdateApplicationResponseFilterSensitiveLog: (
590
+ obj: UpdateApplicationResponse
591
+ ) => any;
592
+ export declare const UpdateComponentRequestFilterSensitiveLog: (
593
+ obj: UpdateComponentRequest
594
+ ) => any;
595
+ export declare const UpdateComponentResponseFilterSensitiveLog: (
596
+ obj: UpdateComponentResponse
597
+ ) => any;
598
+ export declare const UpdateComponentConfigurationRequestFilterSensitiveLog: (
599
+ obj: UpdateComponentConfigurationRequest
600
+ ) => any;
601
+ export declare const UpdateComponentConfigurationResponseFilterSensitiveLog: (
602
+ obj: UpdateComponentConfigurationResponse
603
+ ) => any;
604
+ export declare const UpdateLogPatternRequestFilterSensitiveLog: (
605
+ obj: UpdateLogPatternRequest
606
+ ) => any;
607
+ export declare const UpdateLogPatternResponseFilterSensitiveLog: (
608
+ obj: UpdateLogPatternResponse
609
+ ) => any;