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