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