@aws-sdk/client-application-insights 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +227 -227
- package/dist-types/ts3.4/models/models_0.d.ts +227 -227
- package/package.json +7 -7
|
@@ -3,7 +3,7 @@ import { ApplicationInsightsServiceException as __BaseException } from "./Applic
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
@@ -35,9 +35,9 @@ export declare const Tier: {
|
|
|
35
35
|
};
|
|
36
36
|
export type Tier = (typeof Tier)[keyof typeof Tier];
|
|
37
37
|
export interface WorkloadConfiguration {
|
|
38
|
-
WorkloadName?: string;
|
|
39
|
-
Tier?: Tier;
|
|
40
|
-
Configuration?: string;
|
|
38
|
+
WorkloadName?: string | undefined;
|
|
39
|
+
Tier?: Tier | undefined;
|
|
40
|
+
Configuration?: string | undefined;
|
|
41
41
|
}
|
|
42
42
|
export interface AddWorkloadRequest {
|
|
43
43
|
ResourceGroupName: string | undefined;
|
|
@@ -45,13 +45,13 @@ export interface AddWorkloadRequest {
|
|
|
45
45
|
WorkloadConfiguration: WorkloadConfiguration | undefined;
|
|
46
46
|
}
|
|
47
47
|
export interface AddWorkloadResponse {
|
|
48
|
-
WorkloadId?: string;
|
|
49
|
-
WorkloadConfiguration?: WorkloadConfiguration;
|
|
48
|
+
WorkloadId?: string | undefined;
|
|
49
|
+
WorkloadConfiguration?: WorkloadConfiguration | undefined;
|
|
50
50
|
}
|
|
51
51
|
export declare class InternalServerException extends __BaseException {
|
|
52
52
|
readonly name: "InternalServerException";
|
|
53
53
|
readonly $fault: "server";
|
|
54
|
-
Message?: string;
|
|
54
|
+
Message?: string | undefined;
|
|
55
55
|
constructor(
|
|
56
56
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
57
57
|
);
|
|
@@ -59,7 +59,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
59
59
|
export declare class ResourceInUseException extends __BaseException {
|
|
60
60
|
readonly name: "ResourceInUseException";
|
|
61
61
|
readonly $fault: "client";
|
|
62
|
-
Message?: string;
|
|
62
|
+
Message?: string | undefined;
|
|
63
63
|
constructor(
|
|
64
64
|
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
65
65
|
);
|
|
@@ -67,7 +67,7 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
67
67
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
68
68
|
readonly name: "ResourceNotFoundException";
|
|
69
69
|
readonly $fault: "client";
|
|
70
|
-
Message?: string;
|
|
70
|
+
Message?: string | undefined;
|
|
71
71
|
constructor(
|
|
72
72
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
73
73
|
);
|
|
@@ -75,7 +75,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
75
75
|
export declare class ValidationException extends __BaseException {
|
|
76
76
|
readonly name: "ValidationException";
|
|
77
77
|
readonly $fault: "client";
|
|
78
|
-
Message?: string;
|
|
78
|
+
Message?: string | undefined;
|
|
79
79
|
constructor(
|
|
80
80
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
81
81
|
);
|
|
@@ -86,13 +86,13 @@ export declare const OsType: {
|
|
|
86
86
|
};
|
|
87
87
|
export type OsType = (typeof OsType)[keyof typeof OsType];
|
|
88
88
|
export interface ApplicationComponent {
|
|
89
|
-
ComponentName?: string;
|
|
90
|
-
ComponentRemarks?: string;
|
|
91
|
-
ResourceType?: string;
|
|
92
|
-
OsType?: OsType;
|
|
93
|
-
Tier?: Tier;
|
|
94
|
-
Monitor?: boolean;
|
|
95
|
-
DetectedWorkload?: Partial<Record<Tier, Record<string, string
|
|
89
|
+
ComponentName?: string | undefined;
|
|
90
|
+
ComponentRemarks?: string | undefined;
|
|
91
|
+
ResourceType?: string | undefined;
|
|
92
|
+
OsType?: OsType | undefined;
|
|
93
|
+
Tier?: Tier | undefined;
|
|
94
|
+
Monitor?: boolean | undefined;
|
|
95
|
+
DetectedWorkload?: Partial<Record<Tier, Record<string, string>>> | undefined;
|
|
96
96
|
}
|
|
97
97
|
export declare const DiscoveryType: {
|
|
98
98
|
readonly ACCOUNT_BASED: "ACCOUNT_BASED";
|
|
@@ -100,22 +100,22 @@ export declare const DiscoveryType: {
|
|
|
100
100
|
};
|
|
101
101
|
export type DiscoveryType = (typeof DiscoveryType)[keyof typeof DiscoveryType];
|
|
102
102
|
export interface ApplicationInfo {
|
|
103
|
-
AccountId?: string;
|
|
104
|
-
ResourceGroupName?: string;
|
|
105
|
-
LifeCycle?: string;
|
|
106
|
-
OpsItemSNSTopicArn?: string;
|
|
107
|
-
SNSNotificationArn?: string;
|
|
108
|
-
OpsCenterEnabled?: boolean;
|
|
109
|
-
CWEMonitorEnabled?: boolean;
|
|
110
|
-
Remarks?: string;
|
|
111
|
-
AutoConfigEnabled?: boolean;
|
|
112
|
-
DiscoveryType?: DiscoveryType;
|
|
113
|
-
AttachMissingPermission?: boolean;
|
|
103
|
+
AccountId?: string | undefined;
|
|
104
|
+
ResourceGroupName?: string | undefined;
|
|
105
|
+
LifeCycle?: string | undefined;
|
|
106
|
+
OpsItemSNSTopicArn?: string | undefined;
|
|
107
|
+
SNSNotificationArn?: string | undefined;
|
|
108
|
+
OpsCenterEnabled?: boolean | undefined;
|
|
109
|
+
CWEMonitorEnabled?: boolean | undefined;
|
|
110
|
+
Remarks?: string | undefined;
|
|
111
|
+
AutoConfigEnabled?: boolean | undefined;
|
|
112
|
+
DiscoveryType?: DiscoveryType | undefined;
|
|
113
|
+
AttachMissingPermission?: boolean | undefined;
|
|
114
114
|
}
|
|
115
115
|
export declare class BadRequestException extends __BaseException {
|
|
116
116
|
readonly name: "BadRequestException";
|
|
117
117
|
readonly $fault: "client";
|
|
118
|
-
Message?: string;
|
|
118
|
+
Message?: string | undefined;
|
|
119
119
|
constructor(
|
|
120
120
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
121
121
|
);
|
|
@@ -144,14 +144,14 @@ export declare const ConfigurationEventStatus: {
|
|
|
144
144
|
export type ConfigurationEventStatus =
|
|
145
145
|
(typeof ConfigurationEventStatus)[keyof typeof ConfigurationEventStatus];
|
|
146
146
|
export interface ConfigurationEvent {
|
|
147
|
-
ResourceGroupName?: string;
|
|
148
|
-
AccountId?: string;
|
|
149
|
-
MonitoredResourceARN?: string;
|
|
150
|
-
EventStatus?: ConfigurationEventStatus;
|
|
151
|
-
EventResourceType?: ConfigurationEventResourceType;
|
|
152
|
-
EventTime?: Date;
|
|
153
|
-
EventDetail?: string;
|
|
154
|
-
EventResourceName?: string;
|
|
147
|
+
ResourceGroupName?: string | undefined;
|
|
148
|
+
AccountId?: string | undefined;
|
|
149
|
+
MonitoredResourceARN?: string | undefined;
|
|
150
|
+
EventStatus?: ConfigurationEventStatus | undefined;
|
|
151
|
+
EventResourceType?: ConfigurationEventResourceType | undefined;
|
|
152
|
+
EventTime?: Date | undefined;
|
|
153
|
+
EventDetail?: string | undefined;
|
|
154
|
+
EventResourceName?: string | undefined;
|
|
155
155
|
}
|
|
156
156
|
export declare const GroupingType: {
|
|
157
157
|
readonly ACCOUNT_BASED: "ACCOUNT_BASED";
|
|
@@ -162,24 +162,24 @@ export interface Tag {
|
|
|
162
162
|
Value: string | undefined;
|
|
163
163
|
}
|
|
164
164
|
export interface CreateApplicationRequest {
|
|
165
|
-
ResourceGroupName?: string;
|
|
166
|
-
OpsCenterEnabled?: boolean;
|
|
167
|
-
CWEMonitorEnabled?: boolean;
|
|
168
|
-
OpsItemSNSTopicArn?: string;
|
|
169
|
-
SNSNotificationArn?: string;
|
|
170
|
-
Tags?: Tag[];
|
|
171
|
-
AutoConfigEnabled?: boolean;
|
|
172
|
-
AutoCreate?: boolean;
|
|
173
|
-
GroupingType?: GroupingType;
|
|
174
|
-
AttachMissingPermission?: boolean;
|
|
165
|
+
ResourceGroupName?: string | undefined;
|
|
166
|
+
OpsCenterEnabled?: boolean | undefined;
|
|
167
|
+
CWEMonitorEnabled?: boolean | undefined;
|
|
168
|
+
OpsItemSNSTopicArn?: string | undefined;
|
|
169
|
+
SNSNotificationArn?: string | undefined;
|
|
170
|
+
Tags?: Tag[] | undefined;
|
|
171
|
+
AutoConfigEnabled?: boolean | undefined;
|
|
172
|
+
AutoCreate?: boolean | undefined;
|
|
173
|
+
GroupingType?: GroupingType | undefined;
|
|
174
|
+
AttachMissingPermission?: boolean | undefined;
|
|
175
175
|
}
|
|
176
176
|
export interface CreateApplicationResponse {
|
|
177
|
-
ApplicationInfo?: ApplicationInfo;
|
|
177
|
+
ApplicationInfo?: ApplicationInfo | undefined;
|
|
178
178
|
}
|
|
179
179
|
export declare class TagsAlreadyExistException extends __BaseException {
|
|
180
180
|
readonly name: "TagsAlreadyExistException";
|
|
181
181
|
readonly $fault: "client";
|
|
182
|
-
Message?: string;
|
|
182
|
+
Message?: string | undefined;
|
|
183
183
|
constructor(
|
|
184
184
|
opts: __ExceptionOptionType<TagsAlreadyExistException, __BaseException>
|
|
185
185
|
);
|
|
@@ -198,14 +198,14 @@ export interface CreateLogPatternRequest {
|
|
|
198
198
|
Rank: number | undefined;
|
|
199
199
|
}
|
|
200
200
|
export interface LogPattern {
|
|
201
|
-
PatternSetName?: string;
|
|
202
|
-
PatternName?: string;
|
|
203
|
-
Pattern?: string;
|
|
204
|
-
Rank?: number;
|
|
201
|
+
PatternSetName?: string | undefined;
|
|
202
|
+
PatternName?: string | undefined;
|
|
203
|
+
Pattern?: string | undefined;
|
|
204
|
+
Rank?: number | undefined;
|
|
205
205
|
}
|
|
206
206
|
export interface CreateLogPatternResponse {
|
|
207
|
-
LogPattern?: LogPattern;
|
|
208
|
-
ResourceGroupName?: string;
|
|
207
|
+
LogPattern?: LogPattern | undefined;
|
|
208
|
+
ResourceGroupName?: string | undefined;
|
|
209
209
|
}
|
|
210
210
|
export interface DeleteApplicationRequest {
|
|
211
211
|
ResourceGroupName: string | undefined;
|
|
@@ -224,29 +224,29 @@ export interface DeleteLogPatternRequest {
|
|
|
224
224
|
export interface DeleteLogPatternResponse {}
|
|
225
225
|
export interface DescribeApplicationRequest {
|
|
226
226
|
ResourceGroupName: string | undefined;
|
|
227
|
-
AccountId?: string;
|
|
227
|
+
AccountId?: string | undefined;
|
|
228
228
|
}
|
|
229
229
|
export interface DescribeApplicationResponse {
|
|
230
|
-
ApplicationInfo?: ApplicationInfo;
|
|
230
|
+
ApplicationInfo?: ApplicationInfo | undefined;
|
|
231
231
|
}
|
|
232
232
|
export interface DescribeComponentRequest {
|
|
233
233
|
ResourceGroupName: string | undefined;
|
|
234
234
|
ComponentName: string | undefined;
|
|
235
|
-
AccountId?: string;
|
|
235
|
+
AccountId?: string | undefined;
|
|
236
236
|
}
|
|
237
237
|
export interface DescribeComponentResponse {
|
|
238
|
-
ApplicationComponent?: ApplicationComponent;
|
|
239
|
-
ResourceList?: string[];
|
|
238
|
+
ApplicationComponent?: ApplicationComponent | undefined;
|
|
239
|
+
ResourceList?: string[] | undefined;
|
|
240
240
|
}
|
|
241
241
|
export interface DescribeComponentConfigurationRequest {
|
|
242
242
|
ResourceGroupName: string | undefined;
|
|
243
243
|
ComponentName: string | undefined;
|
|
244
|
-
AccountId?: string;
|
|
244
|
+
AccountId?: string | undefined;
|
|
245
245
|
}
|
|
246
246
|
export interface DescribeComponentConfigurationResponse {
|
|
247
|
-
Monitor?: boolean;
|
|
248
|
-
Tier?: Tier;
|
|
249
|
-
ComponentConfiguration?: string;
|
|
247
|
+
Monitor?: boolean | undefined;
|
|
248
|
+
Tier?: Tier | undefined;
|
|
249
|
+
ComponentConfiguration?: string | undefined;
|
|
250
250
|
}
|
|
251
251
|
export declare const RecommendationType: {
|
|
252
252
|
readonly ALL: "ALL";
|
|
@@ -259,26 +259,26 @@ export interface DescribeComponentConfigurationRecommendationRequest {
|
|
|
259
259
|
ResourceGroupName: string | undefined;
|
|
260
260
|
ComponentName: string | undefined;
|
|
261
261
|
Tier: Tier | undefined;
|
|
262
|
-
WorkloadName?: string;
|
|
263
|
-
RecommendationType?: RecommendationType;
|
|
262
|
+
WorkloadName?: string | undefined;
|
|
263
|
+
RecommendationType?: RecommendationType | undefined;
|
|
264
264
|
}
|
|
265
265
|
export interface DescribeComponentConfigurationRecommendationResponse {
|
|
266
|
-
ComponentConfiguration?: string;
|
|
266
|
+
ComponentConfiguration?: string | undefined;
|
|
267
267
|
}
|
|
268
268
|
export interface DescribeLogPatternRequest {
|
|
269
269
|
ResourceGroupName: string | undefined;
|
|
270
270
|
PatternSetName: string | undefined;
|
|
271
271
|
PatternName: string | undefined;
|
|
272
|
-
AccountId?: string;
|
|
272
|
+
AccountId?: string | undefined;
|
|
273
273
|
}
|
|
274
274
|
export interface DescribeLogPatternResponse {
|
|
275
|
-
ResourceGroupName?: string;
|
|
276
|
-
AccountId?: string;
|
|
277
|
-
LogPattern?: LogPattern;
|
|
275
|
+
ResourceGroupName?: string | undefined;
|
|
276
|
+
AccountId?: string | undefined;
|
|
277
|
+
LogPattern?: LogPattern | undefined;
|
|
278
278
|
}
|
|
279
279
|
export interface DescribeObservationRequest {
|
|
280
280
|
ObservationId: string | undefined;
|
|
281
|
-
AccountId?: string;
|
|
281
|
+
AccountId?: string | undefined;
|
|
282
282
|
}
|
|
283
283
|
export declare const LogFilter: {
|
|
284
284
|
readonly ERROR: "ERROR";
|
|
@@ -287,58 +287,58 @@ export declare const LogFilter: {
|
|
|
287
287
|
};
|
|
288
288
|
export type LogFilter = (typeof LogFilter)[keyof typeof LogFilter];
|
|
289
289
|
export interface Observation {
|
|
290
|
-
Id?: string;
|
|
291
|
-
StartTime?: Date;
|
|
292
|
-
EndTime?: Date;
|
|
293
|
-
SourceType?: string;
|
|
294
|
-
SourceARN?: string;
|
|
295
|
-
LogGroup?: string;
|
|
296
|
-
LineTime?: Date;
|
|
297
|
-
LogText?: string;
|
|
298
|
-
LogFilter?: LogFilter;
|
|
299
|
-
MetricNamespace?: string;
|
|
300
|
-
MetricName?: string;
|
|
301
|
-
Unit?: string;
|
|
302
|
-
Value?: number;
|
|
303
|
-
CloudWatchEventId?: string;
|
|
304
|
-
CloudWatchEventSource?: CloudWatchEventSource;
|
|
305
|
-
CloudWatchEventDetailType?: string;
|
|
306
|
-
HealthEventArn?: string;
|
|
307
|
-
HealthService?: string;
|
|
308
|
-
HealthEventTypeCode?: string;
|
|
309
|
-
HealthEventTypeCategory?: string;
|
|
310
|
-
HealthEventDescription?: string;
|
|
311
|
-
CodeDeployDeploymentId?: string;
|
|
312
|
-
CodeDeployDeploymentGroup?: string;
|
|
313
|
-
CodeDeployState?: string;
|
|
314
|
-
CodeDeployApplication?: string;
|
|
315
|
-
CodeDeployInstanceGroupId?: string;
|
|
316
|
-
Ec2State?: string;
|
|
317
|
-
RdsEventCategories?: string;
|
|
318
|
-
RdsEventMessage?: string;
|
|
319
|
-
S3EventName?: string;
|
|
320
|
-
StatesExecutionArn?: string;
|
|
321
|
-
StatesArn?: string;
|
|
322
|
-
StatesStatus?: string;
|
|
323
|
-
StatesInput?: string;
|
|
324
|
-
EbsEvent?: string;
|
|
325
|
-
EbsResult?: string;
|
|
326
|
-
EbsCause?: string;
|
|
327
|
-
EbsRequestId?: string;
|
|
328
|
-
XRayFaultPercent?: number;
|
|
329
|
-
XRayThrottlePercent?: number;
|
|
330
|
-
XRayErrorPercent?: number;
|
|
331
|
-
XRayRequestCount?: number;
|
|
332
|
-
XRayRequestAverageLatency?: number;
|
|
333
|
-
XRayNodeName?: string;
|
|
334
|
-
XRayNodeType?: string;
|
|
290
|
+
Id?: string | undefined;
|
|
291
|
+
StartTime?: Date | undefined;
|
|
292
|
+
EndTime?: Date | undefined;
|
|
293
|
+
SourceType?: string | undefined;
|
|
294
|
+
SourceARN?: string | undefined;
|
|
295
|
+
LogGroup?: string | undefined;
|
|
296
|
+
LineTime?: Date | undefined;
|
|
297
|
+
LogText?: string | undefined;
|
|
298
|
+
LogFilter?: LogFilter | undefined;
|
|
299
|
+
MetricNamespace?: string | undefined;
|
|
300
|
+
MetricName?: string | undefined;
|
|
301
|
+
Unit?: string | undefined;
|
|
302
|
+
Value?: number | undefined;
|
|
303
|
+
CloudWatchEventId?: string | undefined;
|
|
304
|
+
CloudWatchEventSource?: CloudWatchEventSource | undefined;
|
|
305
|
+
CloudWatchEventDetailType?: string | undefined;
|
|
306
|
+
HealthEventArn?: string | undefined;
|
|
307
|
+
HealthService?: string | undefined;
|
|
308
|
+
HealthEventTypeCode?: string | undefined;
|
|
309
|
+
HealthEventTypeCategory?: string | undefined;
|
|
310
|
+
HealthEventDescription?: string | undefined;
|
|
311
|
+
CodeDeployDeploymentId?: string | undefined;
|
|
312
|
+
CodeDeployDeploymentGroup?: string | undefined;
|
|
313
|
+
CodeDeployState?: string | undefined;
|
|
314
|
+
CodeDeployApplication?: string | undefined;
|
|
315
|
+
CodeDeployInstanceGroupId?: string | undefined;
|
|
316
|
+
Ec2State?: string | undefined;
|
|
317
|
+
RdsEventCategories?: string | undefined;
|
|
318
|
+
RdsEventMessage?: string | undefined;
|
|
319
|
+
S3EventName?: string | undefined;
|
|
320
|
+
StatesExecutionArn?: string | undefined;
|
|
321
|
+
StatesArn?: string | undefined;
|
|
322
|
+
StatesStatus?: string | undefined;
|
|
323
|
+
StatesInput?: string | undefined;
|
|
324
|
+
EbsEvent?: string | undefined;
|
|
325
|
+
EbsResult?: string | undefined;
|
|
326
|
+
EbsCause?: string | undefined;
|
|
327
|
+
EbsRequestId?: string | undefined;
|
|
328
|
+
XRayFaultPercent?: number | undefined;
|
|
329
|
+
XRayThrottlePercent?: number | undefined;
|
|
330
|
+
XRayErrorPercent?: number | undefined;
|
|
331
|
+
XRayRequestCount?: number | undefined;
|
|
332
|
+
XRayRequestAverageLatency?: number | undefined;
|
|
333
|
+
XRayNodeName?: string | undefined;
|
|
334
|
+
XRayNodeType?: string | undefined;
|
|
335
335
|
}
|
|
336
336
|
export interface DescribeObservationResponse {
|
|
337
|
-
Observation?: Observation;
|
|
337
|
+
Observation?: Observation | undefined;
|
|
338
338
|
}
|
|
339
339
|
export interface DescribeProblemRequest {
|
|
340
340
|
ProblemId: string | undefined;
|
|
341
|
-
AccountId?: string;
|
|
341
|
+
AccountId?: string | undefined;
|
|
342
342
|
}
|
|
343
343
|
export declare const FeedbackKey: {
|
|
344
344
|
readonly INSIGHTS_FEEDBACK: "INSIGHTS_FEEDBACK";
|
|
@@ -378,145 +378,145 @@ export declare const Visibility: {
|
|
|
378
378
|
};
|
|
379
379
|
export type Visibility = (typeof Visibility)[keyof typeof Visibility];
|
|
380
380
|
export interface Problem {
|
|
381
|
-
Id?: string;
|
|
382
|
-
Title?: string;
|
|
383
|
-
ShortName?: string;
|
|
384
|
-
Insights?: string;
|
|
385
|
-
Status?: Status;
|
|
386
|
-
AffectedResource?: string;
|
|
387
|
-
StartTime?: Date;
|
|
388
|
-
EndTime?: Date;
|
|
389
|
-
SeverityLevel?: SeverityLevel;
|
|
390
|
-
AccountId?: string;
|
|
391
|
-
ResourceGroupName?: string;
|
|
392
|
-
Feedback?: Partial<Record<FeedbackKey, FeedbackValue
|
|
393
|
-
RecurringCount?: number;
|
|
394
|
-
LastRecurrenceTime?: Date;
|
|
395
|
-
Visibility?: Visibility;
|
|
396
|
-
ResolutionMethod?: ResolutionMethod;
|
|
381
|
+
Id?: string | undefined;
|
|
382
|
+
Title?: string | undefined;
|
|
383
|
+
ShortName?: string | undefined;
|
|
384
|
+
Insights?: string | undefined;
|
|
385
|
+
Status?: Status | undefined;
|
|
386
|
+
AffectedResource?: string | undefined;
|
|
387
|
+
StartTime?: Date | undefined;
|
|
388
|
+
EndTime?: Date | undefined;
|
|
389
|
+
SeverityLevel?: SeverityLevel | undefined;
|
|
390
|
+
AccountId?: string | undefined;
|
|
391
|
+
ResourceGroupName?: string | undefined;
|
|
392
|
+
Feedback?: Partial<Record<FeedbackKey, FeedbackValue>> | undefined;
|
|
393
|
+
RecurringCount?: number | undefined;
|
|
394
|
+
LastRecurrenceTime?: Date | undefined;
|
|
395
|
+
Visibility?: Visibility | undefined;
|
|
396
|
+
ResolutionMethod?: ResolutionMethod | undefined;
|
|
397
397
|
}
|
|
398
398
|
export interface DescribeProblemResponse {
|
|
399
|
-
Problem?: Problem;
|
|
400
|
-
SNSNotificationArn?: string;
|
|
399
|
+
Problem?: Problem | undefined;
|
|
400
|
+
SNSNotificationArn?: string | undefined;
|
|
401
401
|
}
|
|
402
402
|
export interface DescribeProblemObservationsRequest {
|
|
403
403
|
ProblemId: string | undefined;
|
|
404
|
-
AccountId?: string;
|
|
404
|
+
AccountId?: string | undefined;
|
|
405
405
|
}
|
|
406
406
|
export interface RelatedObservations {
|
|
407
|
-
ObservationList?: Observation[];
|
|
407
|
+
ObservationList?: Observation[] | undefined;
|
|
408
408
|
}
|
|
409
409
|
export interface DescribeProblemObservationsResponse {
|
|
410
|
-
RelatedObservations?: RelatedObservations;
|
|
410
|
+
RelatedObservations?: RelatedObservations | undefined;
|
|
411
411
|
}
|
|
412
412
|
export interface DescribeWorkloadRequest {
|
|
413
413
|
ResourceGroupName: string | undefined;
|
|
414
414
|
ComponentName: string | undefined;
|
|
415
415
|
WorkloadId: string | undefined;
|
|
416
|
-
AccountId?: string;
|
|
416
|
+
AccountId?: string | undefined;
|
|
417
417
|
}
|
|
418
418
|
export interface DescribeWorkloadResponse {
|
|
419
|
-
WorkloadId?: string;
|
|
420
|
-
WorkloadRemarks?: string;
|
|
421
|
-
WorkloadConfiguration?: WorkloadConfiguration;
|
|
419
|
+
WorkloadId?: string | undefined;
|
|
420
|
+
WorkloadRemarks?: string | undefined;
|
|
421
|
+
WorkloadConfiguration?: WorkloadConfiguration | undefined;
|
|
422
422
|
}
|
|
423
423
|
export interface ListApplicationsRequest {
|
|
424
|
-
MaxResults?: number;
|
|
425
|
-
NextToken?: string;
|
|
426
|
-
AccountId?: string;
|
|
424
|
+
MaxResults?: number | undefined;
|
|
425
|
+
NextToken?: string | undefined;
|
|
426
|
+
AccountId?: string | undefined;
|
|
427
427
|
}
|
|
428
428
|
export interface ListApplicationsResponse {
|
|
429
|
-
ApplicationInfoList?: ApplicationInfo[];
|
|
430
|
-
NextToken?: string;
|
|
429
|
+
ApplicationInfoList?: ApplicationInfo[] | undefined;
|
|
430
|
+
NextToken?: string | undefined;
|
|
431
431
|
}
|
|
432
432
|
export interface ListComponentsRequest {
|
|
433
433
|
ResourceGroupName: string | undefined;
|
|
434
|
-
MaxResults?: number;
|
|
435
|
-
NextToken?: string;
|
|
436
|
-
AccountId?: string;
|
|
434
|
+
MaxResults?: number | undefined;
|
|
435
|
+
NextToken?: string | undefined;
|
|
436
|
+
AccountId?: string | undefined;
|
|
437
437
|
}
|
|
438
438
|
export interface ListComponentsResponse {
|
|
439
|
-
ApplicationComponentList?: ApplicationComponent[];
|
|
440
|
-
NextToken?: string;
|
|
439
|
+
ApplicationComponentList?: ApplicationComponent[] | undefined;
|
|
440
|
+
NextToken?: string | undefined;
|
|
441
441
|
}
|
|
442
442
|
export interface ListConfigurationHistoryRequest {
|
|
443
|
-
ResourceGroupName?: string;
|
|
444
|
-
StartTime?: Date;
|
|
445
|
-
EndTime?: Date;
|
|
446
|
-
EventStatus?: ConfigurationEventStatus;
|
|
447
|
-
MaxResults?: number;
|
|
448
|
-
NextToken?: string;
|
|
449
|
-
AccountId?: string;
|
|
443
|
+
ResourceGroupName?: string | undefined;
|
|
444
|
+
StartTime?: Date | undefined;
|
|
445
|
+
EndTime?: Date | undefined;
|
|
446
|
+
EventStatus?: ConfigurationEventStatus | undefined;
|
|
447
|
+
MaxResults?: number | undefined;
|
|
448
|
+
NextToken?: string | undefined;
|
|
449
|
+
AccountId?: string | undefined;
|
|
450
450
|
}
|
|
451
451
|
export interface ListConfigurationHistoryResponse {
|
|
452
|
-
EventList?: ConfigurationEvent[];
|
|
453
|
-
NextToken?: string;
|
|
452
|
+
EventList?: ConfigurationEvent[] | undefined;
|
|
453
|
+
NextToken?: string | undefined;
|
|
454
454
|
}
|
|
455
455
|
export interface ListLogPatternsRequest {
|
|
456
456
|
ResourceGroupName: string | undefined;
|
|
457
|
-
PatternSetName?: string;
|
|
458
|
-
MaxResults?: number;
|
|
459
|
-
NextToken?: string;
|
|
460
|
-
AccountId?: string;
|
|
457
|
+
PatternSetName?: string | undefined;
|
|
458
|
+
MaxResults?: number | undefined;
|
|
459
|
+
NextToken?: string | undefined;
|
|
460
|
+
AccountId?: string | undefined;
|
|
461
461
|
}
|
|
462
462
|
export interface ListLogPatternsResponse {
|
|
463
|
-
ResourceGroupName?: string;
|
|
464
|
-
AccountId?: string;
|
|
465
|
-
LogPatterns?: LogPattern[];
|
|
466
|
-
NextToken?: string;
|
|
463
|
+
ResourceGroupName?: string | undefined;
|
|
464
|
+
AccountId?: string | undefined;
|
|
465
|
+
LogPatterns?: LogPattern[] | undefined;
|
|
466
|
+
NextToken?: string | undefined;
|
|
467
467
|
}
|
|
468
468
|
export interface ListLogPatternSetsRequest {
|
|
469
469
|
ResourceGroupName: string | undefined;
|
|
470
|
-
MaxResults?: number;
|
|
471
|
-
NextToken?: string;
|
|
472
|
-
AccountId?: string;
|
|
470
|
+
MaxResults?: number | undefined;
|
|
471
|
+
NextToken?: string | undefined;
|
|
472
|
+
AccountId?: string | undefined;
|
|
473
473
|
}
|
|
474
474
|
export interface ListLogPatternSetsResponse {
|
|
475
|
-
ResourceGroupName?: string;
|
|
476
|
-
AccountId?: string;
|
|
477
|
-
LogPatternSets?: string[];
|
|
478
|
-
NextToken?: string;
|
|
475
|
+
ResourceGroupName?: string | undefined;
|
|
476
|
+
AccountId?: string | undefined;
|
|
477
|
+
LogPatternSets?: string[] | undefined;
|
|
478
|
+
NextToken?: string | undefined;
|
|
479
479
|
}
|
|
480
480
|
export interface ListProblemsRequest {
|
|
481
|
-
AccountId?: string;
|
|
482
|
-
ResourceGroupName?: string;
|
|
483
|
-
StartTime?: Date;
|
|
484
|
-
EndTime?: Date;
|
|
485
|
-
MaxResults?: number;
|
|
486
|
-
NextToken?: string;
|
|
487
|
-
ComponentName?: string;
|
|
488
|
-
Visibility?: Visibility;
|
|
481
|
+
AccountId?: string | undefined;
|
|
482
|
+
ResourceGroupName?: string | undefined;
|
|
483
|
+
StartTime?: Date | undefined;
|
|
484
|
+
EndTime?: Date | undefined;
|
|
485
|
+
MaxResults?: number | undefined;
|
|
486
|
+
NextToken?: string | undefined;
|
|
487
|
+
ComponentName?: string | undefined;
|
|
488
|
+
Visibility?: Visibility | undefined;
|
|
489
489
|
}
|
|
490
490
|
export interface ListProblemsResponse {
|
|
491
|
-
ProblemList?: Problem[];
|
|
492
|
-
NextToken?: string;
|
|
493
|
-
ResourceGroupName?: string;
|
|
494
|
-
AccountId?: string;
|
|
491
|
+
ProblemList?: Problem[] | undefined;
|
|
492
|
+
NextToken?: string | undefined;
|
|
493
|
+
ResourceGroupName?: string | undefined;
|
|
494
|
+
AccountId?: string | undefined;
|
|
495
495
|
}
|
|
496
496
|
export interface ListTagsForResourceRequest {
|
|
497
497
|
ResourceARN: string | undefined;
|
|
498
498
|
}
|
|
499
499
|
export interface ListTagsForResourceResponse {
|
|
500
|
-
Tags?: Tag[];
|
|
500
|
+
Tags?: Tag[] | undefined;
|
|
501
501
|
}
|
|
502
502
|
export interface ListWorkloadsRequest {
|
|
503
503
|
ResourceGroupName: string | undefined;
|
|
504
504
|
ComponentName: string | undefined;
|
|
505
|
-
MaxResults?: number;
|
|
506
|
-
NextToken?: string;
|
|
507
|
-
AccountId?: string;
|
|
505
|
+
MaxResults?: number | undefined;
|
|
506
|
+
NextToken?: string | undefined;
|
|
507
|
+
AccountId?: string | undefined;
|
|
508
508
|
}
|
|
509
509
|
export interface Workload {
|
|
510
|
-
WorkloadId?: string;
|
|
511
|
-
ComponentName?: string;
|
|
512
|
-
WorkloadName?: string;
|
|
513
|
-
Tier?: Tier;
|
|
514
|
-
WorkloadRemarks?: string;
|
|
515
|
-
MissingWorkloadConfig?: boolean;
|
|
510
|
+
WorkloadId?: string | undefined;
|
|
511
|
+
ComponentName?: string | undefined;
|
|
512
|
+
WorkloadName?: string | undefined;
|
|
513
|
+
Tier?: Tier | undefined;
|
|
514
|
+
WorkloadRemarks?: string | undefined;
|
|
515
|
+
MissingWorkloadConfig?: boolean | undefined;
|
|
516
516
|
}
|
|
517
517
|
export interface ListWorkloadsResponse {
|
|
518
|
-
WorkloadList?: Workload[];
|
|
519
|
-
NextToken?: string;
|
|
518
|
+
WorkloadList?: Workload[] | undefined;
|
|
519
|
+
NextToken?: string | undefined;
|
|
520
520
|
}
|
|
521
521
|
export interface RemoveWorkloadRequest {
|
|
522
522
|
ResourceGroupName: string | undefined;
|
|
@@ -532,8 +532,8 @@ export interface TagResourceResponse {}
|
|
|
532
532
|
export declare class TooManyTagsException extends __BaseException {
|
|
533
533
|
readonly name: "TooManyTagsException";
|
|
534
534
|
readonly $fault: "client";
|
|
535
|
-
Message?: string;
|
|
536
|
-
ResourceName?: string;
|
|
535
|
+
Message?: string | undefined;
|
|
536
|
+
ResourceName?: string | undefined;
|
|
537
537
|
constructor(
|
|
538
538
|
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
539
539
|
);
|
|
@@ -545,43 +545,43 @@ export interface UntagResourceRequest {
|
|
|
545
545
|
export interface UntagResourceResponse {}
|
|
546
546
|
export interface UpdateApplicationRequest {
|
|
547
547
|
ResourceGroupName: string | undefined;
|
|
548
|
-
OpsCenterEnabled?: boolean;
|
|
549
|
-
CWEMonitorEnabled?: boolean;
|
|
550
|
-
OpsItemSNSTopicArn?: string;
|
|
551
|
-
SNSNotificationArn?: string;
|
|
552
|
-
RemoveSNSTopic?: boolean;
|
|
553
|
-
AutoConfigEnabled?: boolean;
|
|
554
|
-
AttachMissingPermission?: boolean;
|
|
548
|
+
OpsCenterEnabled?: boolean | undefined;
|
|
549
|
+
CWEMonitorEnabled?: boolean | undefined;
|
|
550
|
+
OpsItemSNSTopicArn?: string | undefined;
|
|
551
|
+
SNSNotificationArn?: string | undefined;
|
|
552
|
+
RemoveSNSTopic?: boolean | undefined;
|
|
553
|
+
AutoConfigEnabled?: boolean | undefined;
|
|
554
|
+
AttachMissingPermission?: boolean | undefined;
|
|
555
555
|
}
|
|
556
556
|
export interface UpdateApplicationResponse {
|
|
557
|
-
ApplicationInfo?: ApplicationInfo;
|
|
557
|
+
ApplicationInfo?: ApplicationInfo | undefined;
|
|
558
558
|
}
|
|
559
559
|
export interface UpdateComponentRequest {
|
|
560
560
|
ResourceGroupName: string | undefined;
|
|
561
561
|
ComponentName: string | undefined;
|
|
562
|
-
NewComponentName?: string;
|
|
563
|
-
ResourceList?: string[];
|
|
562
|
+
NewComponentName?: string | undefined;
|
|
563
|
+
ResourceList?: string[] | undefined;
|
|
564
564
|
}
|
|
565
565
|
export interface UpdateComponentResponse {}
|
|
566
566
|
export interface UpdateComponentConfigurationRequest {
|
|
567
567
|
ResourceGroupName: string | undefined;
|
|
568
568
|
ComponentName: string | undefined;
|
|
569
|
-
Monitor?: boolean;
|
|
570
|
-
Tier?: Tier;
|
|
571
|
-
ComponentConfiguration?: string;
|
|
572
|
-
AutoConfigEnabled?: boolean;
|
|
569
|
+
Monitor?: boolean | undefined;
|
|
570
|
+
Tier?: Tier | undefined;
|
|
571
|
+
ComponentConfiguration?: string | undefined;
|
|
572
|
+
AutoConfigEnabled?: boolean | undefined;
|
|
573
573
|
}
|
|
574
574
|
export interface UpdateComponentConfigurationResponse {}
|
|
575
575
|
export interface UpdateLogPatternRequest {
|
|
576
576
|
ResourceGroupName: string | undefined;
|
|
577
577
|
PatternSetName: string | undefined;
|
|
578
578
|
PatternName: string | undefined;
|
|
579
|
-
Pattern?: string;
|
|
580
|
-
Rank?: number;
|
|
579
|
+
Pattern?: string | undefined;
|
|
580
|
+
Rank?: number | undefined;
|
|
581
581
|
}
|
|
582
582
|
export interface UpdateLogPatternResponse {
|
|
583
|
-
ResourceGroupName?: string;
|
|
584
|
-
LogPattern?: LogPattern;
|
|
583
|
+
ResourceGroupName?: string | undefined;
|
|
584
|
+
LogPattern?: LogPattern | undefined;
|
|
585
585
|
}
|
|
586
586
|
export declare const UpdateStatus: {
|
|
587
587
|
readonly RESOLVED: "RESOLVED";
|
|
@@ -589,17 +589,17 @@ export declare const UpdateStatus: {
|
|
|
589
589
|
export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
|
|
590
590
|
export interface UpdateProblemRequest {
|
|
591
591
|
ProblemId: string | undefined;
|
|
592
|
-
UpdateStatus?: UpdateStatus;
|
|
593
|
-
Visibility?: Visibility;
|
|
592
|
+
UpdateStatus?: UpdateStatus | undefined;
|
|
593
|
+
Visibility?: Visibility | undefined;
|
|
594
594
|
}
|
|
595
595
|
export interface UpdateProblemResponse {}
|
|
596
596
|
export interface UpdateWorkloadRequest {
|
|
597
597
|
ResourceGroupName: string | undefined;
|
|
598
598
|
ComponentName: string | undefined;
|
|
599
|
-
WorkloadId?: string;
|
|
599
|
+
WorkloadId?: string | undefined;
|
|
600
600
|
WorkloadConfiguration: WorkloadConfiguration | undefined;
|
|
601
601
|
}
|
|
602
602
|
export interface UpdateWorkloadResponse {
|
|
603
|
-
WorkloadId?: string;
|
|
604
|
-
WorkloadConfiguration?: WorkloadConfiguration;
|
|
603
|
+
WorkloadId?: string | undefined;
|
|
604
|
+
WorkloadConfiguration?: WorkloadConfiguration | undefined;
|
|
605
605
|
}
|