@aws-sdk/client-application-insights 3.379.1 → 3.382.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 (71) hide show
  1. package/README.md +55 -7
  2. package/dist-cjs/ApplicationInsights.js +12 -0
  3. package/dist-cjs/commands/AddWorkloadCommand.js +46 -0
  4. package/dist-cjs/commands/DescribeWorkloadCommand.js +46 -0
  5. package/dist-cjs/commands/ListWorkloadsCommand.js +46 -0
  6. package/dist-cjs/commands/RemoveWorkloadCommand.js +46 -0
  7. package/dist-cjs/commands/UpdateProblemCommand.js +46 -0
  8. package/dist-cjs/commands/UpdateWorkloadCommand.js +46 -0
  9. package/dist-cjs/commands/index.js +6 -0
  10. package/dist-cjs/endpoint/ruleset.js +3 -3
  11. package/dist-cjs/models/models_0.js +118 -31
  12. package/dist-cjs/pagination/ListWorkloadsPaginator.js +29 -0
  13. package/dist-cjs/pagination/index.js +1 -0
  14. package/dist-cjs/protocols/Aws_json1_1.js +290 -2
  15. package/dist-es/ApplicationInsights.js +12 -0
  16. package/dist-es/commands/AddWorkloadCommand.js +42 -0
  17. package/dist-es/commands/DescribeWorkloadCommand.js +42 -0
  18. package/dist-es/commands/ListWorkloadsCommand.js +42 -0
  19. package/dist-es/commands/RemoveWorkloadCommand.js +42 -0
  20. package/dist-es/commands/UpdateProblemCommand.js +42 -0
  21. package/dist-es/commands/UpdateWorkloadCommand.js +42 -0
  22. package/dist-es/commands/index.js +6 -0
  23. package/dist-es/endpoint/ruleset.js +3 -3
  24. package/dist-es/models/models_0.js +114 -27
  25. package/dist-es/pagination/ListWorkloadsPaginator.js +25 -0
  26. package/dist-es/pagination/index.js +1 -0
  27. package/dist-es/protocols/Aws_json1_1.js +276 -0
  28. package/dist-types/ApplicationInsights.d.ts +42 -0
  29. package/dist-types/ApplicationInsightsClient.d.ts +8 -2
  30. package/dist-types/commands/AddWorkloadCommand.d.ts +96 -0
  31. package/dist-types/commands/CreateApplicationCommand.d.ts +3 -2
  32. package/dist-types/commands/DescribeApplicationCommand.d.ts +3 -1
  33. package/dist-types/commands/DescribeComponentCommand.d.ts +3 -2
  34. package/dist-types/commands/DescribeComponentConfigurationCommand.d.ts +2 -1
  35. package/dist-types/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +2 -1
  36. package/dist-types/commands/DescribeLogPatternCommand.d.ts +2 -0
  37. package/dist-types/commands/DescribeObservationCommand.d.ts +3 -2
  38. package/dist-types/commands/DescribeProblemCommand.d.ts +7 -3
  39. package/dist-types/commands/DescribeProblemObservationsCommand.d.ts +3 -2
  40. package/dist-types/commands/DescribeWorkloadCommand.d.ts +91 -0
  41. package/dist-types/commands/ListApplicationsCommand.d.ts +3 -1
  42. package/dist-types/commands/ListComponentsCommand.d.ts +3 -2
  43. package/dist-types/commands/ListConfigurationHistoryCommand.d.ts +6 -3
  44. package/dist-types/commands/ListLogPatternSetsCommand.d.ts +2 -0
  45. package/dist-types/commands/ListLogPatternsCommand.d.ts +2 -0
  46. package/dist-types/commands/ListProblemsCommand.d.ts +9 -3
  47. package/dist-types/commands/ListWorkloadsCommand.d.ts +95 -0
  48. package/dist-types/commands/RemoveWorkloadCommand.d.ts +82 -0
  49. package/dist-types/commands/UpdateApplicationCommand.d.ts +2 -1
  50. package/dist-types/commands/UpdateComponentConfigurationCommand.d.ts +1 -1
  51. package/dist-types/commands/UpdateProblemCommand.d.ts +83 -0
  52. package/dist-types/commands/UpdateWorkloadCommand.d.ts +94 -0
  53. package/dist-types/commands/index.d.ts +6 -0
  54. package/dist-types/models/models_0.d.ts +830 -67
  55. package/dist-types/pagination/ListWorkloadsPaginator.d.ts +7 -0
  56. package/dist-types/pagination/index.d.ts +1 -0
  57. package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
  58. package/dist-types/ts3.4/ApplicationInsights.d.ts +102 -0
  59. package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +38 -2
  60. package/dist-types/ts3.4/commands/AddWorkloadCommand.d.ts +35 -0
  61. package/dist-types/ts3.4/commands/DescribeWorkloadCommand.d.ts +38 -0
  62. package/dist-types/ts3.4/commands/ListWorkloadsCommand.d.ts +38 -0
  63. package/dist-types/ts3.4/commands/RemoveWorkloadCommand.d.ts +38 -0
  64. package/dist-types/ts3.4/commands/UpdateProblemCommand.d.ts +38 -0
  65. package/dist-types/ts3.4/commands/UpdateWorkloadCommand.d.ts +38 -0
  66. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  67. package/dist-types/ts3.4/models/models_0.d.ts +227 -63
  68. package/dist-types/ts3.4/pagination/ListWorkloadsPaginator.d.ts +11 -0
  69. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  70. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
  71. package/package.json +5 -5
@@ -15,12 +15,155 @@ export declare class AccessDeniedException extends __BaseException {
15
15
  }
16
16
  /**
17
17
  * @public
18
+ * @enum
19
+ */
20
+ export declare const Tier: {
21
+ readonly ACTIVE_DIRECTORY: "ACTIVE_DIRECTORY";
22
+ readonly CUSTOM: "CUSTOM";
23
+ readonly DEFAULT: "DEFAULT";
24
+ readonly DOT_NET_CORE: "DOT_NET_CORE";
25
+ readonly DOT_NET_WEB: "DOT_NET_WEB";
26
+ readonly DOT_NET_WEB_TIER: "DOT_NET_WEB_TIER";
27
+ readonly DOT_NET_WORKER: "DOT_NET_WORKER";
28
+ readonly JAVA_JMX: "JAVA_JMX";
29
+ readonly MYSQL: "MYSQL";
30
+ readonly ORACLE: "ORACLE";
31
+ readonly POSTGRESQL: "POSTGRESQL";
32
+ readonly SAP_HANA_HIGH_AVAILABILITY: "SAP_HANA_HIGH_AVAILABILITY";
33
+ readonly SAP_HANA_MULTI_NODE: "SAP_HANA_MULTI_NODE";
34
+ readonly SAP_HANA_SINGLE_NODE: "SAP_HANA_SINGLE_NODE";
35
+ readonly SAP_NETWEAVER_DISTRIBUTED: "SAP_NETWEAVER_DISTRIBUTED";
36
+ readonly SAP_NETWEAVER_HIGH_AVAILABILITY: "SAP_NETWEAVER_HIGH_AVAILABILITY";
37
+ readonly SAP_NETWEAVER_STANDARD: "SAP_NETWEAVER_STANDARD";
38
+ readonly SHAREPOINT: "SHAREPOINT";
39
+ readonly SQL_SERVER: "SQL_SERVER";
40
+ readonly SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP: "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP";
41
+ readonly SQL_SERVER_FAILOVER_CLUSTER_INSTANCE: "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE";
42
+ };
43
+ /**
44
+ * @public
45
+ */
46
+ export type Tier = (typeof Tier)[keyof typeof Tier];
47
+ /**
48
+ * @public
49
+ * <p>The configuration of the workload.</p>
50
+ */
51
+ export interface WorkloadConfiguration {
52
+ /**
53
+ * @public
54
+ * <p>The name of the workload.</p>
55
+ */
56
+ WorkloadName?: string;
57
+ /**
58
+ * @public
59
+ * <p>The configuration of the workload tier.</p>
60
+ */
61
+ Tier?: Tier | string;
62
+ /**
63
+ * @public
64
+ * <p>The configuration settings of the workload.</p>
65
+ */
66
+ Configuration?: string;
67
+ }
68
+ /**
69
+ * @public
70
+ */
71
+ export interface AddWorkloadRequest {
72
+ /**
73
+ * @public
74
+ * <p>The name of the resource group.</p>
75
+ */
76
+ ResourceGroupName: string | undefined;
77
+ /**
78
+ * @public
79
+ * <p>The name of the component.</p>
80
+ */
81
+ ComponentName: string | undefined;
82
+ /**
83
+ * @public
84
+ * <p>The configuration settings of the workload. The value is the escaped JSON of the configuration.</p>
85
+ */
86
+ WorkloadConfiguration: WorkloadConfiguration | undefined;
87
+ }
88
+ /**
89
+ * @public
90
+ */
91
+ export interface AddWorkloadResponse {
92
+ /**
93
+ * @public
94
+ * <p>The ID of the workload.</p>
95
+ */
96
+ WorkloadId?: string;
97
+ /**
98
+ * @public
99
+ * <p>The configuration settings of the workload. The value is the escaped JSON of the configuration.</p>
100
+ */
101
+ WorkloadConfiguration?: WorkloadConfiguration;
102
+ }
103
+ /**
104
+ * @public
105
+ * <p>The server encountered an internal error and is unable to complete the request.</p>
106
+ */
107
+ export declare class InternalServerException extends __BaseException {
108
+ readonly name: "InternalServerException";
109
+ readonly $fault: "server";
110
+ Message?: string;
111
+ /**
112
+ * @internal
113
+ */
114
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
115
+ }
116
+ /**
117
+ * @public
118
+ * <p>The resource is already created or in use.</p>
18
119
  */
19
- export 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";
120
+ export declare class ResourceInUseException extends __BaseException {
121
+ readonly name: "ResourceInUseException";
122
+ readonly $fault: "client";
123
+ Message?: string;
124
+ /**
125
+ * @internal
126
+ */
127
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
128
+ }
20
129
  /**
21
130
  * @public
131
+ * <p>The resource does not exist in the customer account.</p>
22
132
  */
23
- export type OsType = "LINUX" | "WINDOWS";
133
+ export declare class ResourceNotFoundException extends __BaseException {
134
+ readonly name: "ResourceNotFoundException";
135
+ readonly $fault: "client";
136
+ Message?: string;
137
+ /**
138
+ * @internal
139
+ */
140
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
141
+ }
142
+ /**
143
+ * @public
144
+ * <p>The parameter is not valid.</p>
145
+ */
146
+ export declare class ValidationException extends __BaseException {
147
+ readonly name: "ValidationException";
148
+ readonly $fault: "client";
149
+ Message?: string;
150
+ /**
151
+ * @internal
152
+ */
153
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
154
+ }
155
+ /**
156
+ * @public
157
+ * @enum
158
+ */
159
+ export declare const OsType: {
160
+ readonly LINUX: "LINUX";
161
+ readonly WINDOWS: "WINDOWS";
162
+ };
163
+ /**
164
+ * @public
165
+ */
166
+ export type OsType = (typeof OsType)[keyof typeof OsType];
24
167
  /**
25
168
  * @public
26
169
  * <p>Describes a standalone resource or similarly grouped resources that the application is
@@ -28,32 +171,39 @@ export type OsType = "LINUX" | "WINDOWS";
28
171
  */
29
172
  export interface ApplicationComponent {
30
173
  /**
174
+ * @public
31
175
  * <p>The name of the component.</p>
32
176
  */
33
177
  ComponentName?: string;
34
178
  /**
179
+ * @public
35
180
  * <p> If logging is supported for the resource type, indicates whether the component has
36
181
  * configured logs to be monitored. </p>
37
182
  */
38
183
  ComponentRemarks?: string;
39
184
  /**
185
+ * @public
40
186
  * <p>The resource type. Supported resource types include EC2 instances, Auto Scaling group,
41
187
  * Classic ELB, Application ELB, and SQS Queue.</p>
42
188
  */
43
189
  ResourceType?: string;
44
190
  /**
191
+ * @public
45
192
  * <p> The operating system of the component. </p>
46
193
  */
47
194
  OsType?: OsType | string;
48
195
  /**
196
+ * @public
49
197
  * <p>The stack tier of the application component.</p>
50
198
  */
51
199
  Tier?: Tier | string;
52
200
  /**
201
+ * @public
53
202
  * <p>Indicates whether the application component is monitored. </p>
54
203
  */
55
204
  Monitor?: boolean;
56
205
  /**
206
+ * @public
57
207
  * <p> Workloads detected in the application component. </p>
58
208
  */
59
209
  DetectedWorkload?: Record<string, Record<string, string>>;
@@ -76,30 +226,41 @@ export type DiscoveryType = (typeof DiscoveryType)[keyof typeof DiscoveryType];
76
226
  */
77
227
  export interface ApplicationInfo {
78
228
  /**
229
+ * @public
230
+ * <p>The AWS account ID for the owner of the application.</p>
231
+ */
232
+ AccountId?: string;
233
+ /**
234
+ * @public
79
235
  * <p>The name of the resource group used for the application.</p>
80
236
  */
81
237
  ResourceGroupName?: string;
82
238
  /**
239
+ * @public
83
240
  * <p>The lifecycle of the application. </p>
84
241
  */
85
242
  LifeCycle?: string;
86
243
  /**
244
+ * @public
87
245
  * <p> The SNS topic provided to Application Insights that is associated to the created
88
246
  * opsItems to receive SNS notifications for opsItem updates. </p>
89
247
  */
90
248
  OpsItemSNSTopicArn?: string;
91
249
  /**
250
+ * @public
92
251
  * <p> Indicates whether Application Insights will create opsItems for any problem detected by
93
252
  * Application Insights for an application. </p>
94
253
  */
95
254
  OpsCenterEnabled?: boolean;
96
255
  /**
256
+ * @public
97
257
  * <p> Indicates whether Application Insights can listen to CloudWatch events for the
98
258
  * application resources, such as <code>instance terminated</code>, <code>failed
99
259
  * deployment</code>, and others. </p>
100
260
  */
101
261
  CWEMonitorEnabled?: boolean;
102
262
  /**
263
+ * @public
103
264
  * <p>The issues on the user side that block Application Insights from successfully monitoring
104
265
  * an application. Example remarks include:</p>
105
266
  * <ul>
@@ -113,13 +274,13 @@ export interface ApplicationInfo {
113
274
  */
114
275
  Remarks?: string;
115
276
  /**
277
+ * @public
116
278
  * <p> Indicates whether auto-configuration is turned on for this application. </p>
117
279
  */
118
280
  AutoConfigEnabled?: boolean;
119
281
  /**
120
- * <p>
121
- * The method used by Application Insights to onboard your resources.
122
- * </p>
282
+ * @public
283
+ * <p> The method used by Application Insights to onboard your resources. </p>
123
284
  */
124
285
  DiscoveryType?: DiscoveryType | string;
125
286
  }
@@ -138,44 +299,89 @@ export declare class BadRequestException extends __BaseException {
138
299
  }
139
300
  /**
140
301
  * @public
302
+ * @enum
141
303
  */
142
- export type CloudWatchEventSource = "CODE_DEPLOY" | "EC2" | "HEALTH" | "RDS";
304
+ export declare const CloudWatchEventSource: {
305
+ readonly CODE_DEPLOY: "CODE_DEPLOY";
306
+ readonly EC2: "EC2";
307
+ readonly HEALTH: "HEALTH";
308
+ readonly RDS: "RDS";
309
+ };
143
310
  /**
144
311
  * @public
145
312
  */
146
- export type ConfigurationEventResourceType = "CLOUDFORMATION" | "CLOUDWATCH_ALARM" | "CLOUDWATCH_LOG" | "SSM_ASSOCIATION";
313
+ export type CloudWatchEventSource = (typeof CloudWatchEventSource)[keyof typeof CloudWatchEventSource];
147
314
  /**
148
315
  * @public
316
+ * @enum
149
317
  */
150
- export type ConfigurationEventStatus = "ERROR" | "INFO" | "WARN";
318
+ export declare const ConfigurationEventResourceType: {
319
+ readonly CLOUDFORMATION: "CLOUDFORMATION";
320
+ readonly CLOUDWATCH_ALARM: "CLOUDWATCH_ALARM";
321
+ readonly CLOUDWATCH_LOG: "CLOUDWATCH_LOG";
322
+ readonly SSM_ASSOCIATION: "SSM_ASSOCIATION";
323
+ };
324
+ /**
325
+ * @public
326
+ */
327
+ export type ConfigurationEventResourceType = (typeof ConfigurationEventResourceType)[keyof typeof ConfigurationEventResourceType];
328
+ /**
329
+ * @public
330
+ * @enum
331
+ */
332
+ export declare const ConfigurationEventStatus: {
333
+ readonly ERROR: "ERROR";
334
+ readonly INFO: "INFO";
335
+ readonly WARN: "WARN";
336
+ };
337
+ /**
338
+ * @public
339
+ */
340
+ export type ConfigurationEventStatus = (typeof ConfigurationEventStatus)[keyof typeof ConfigurationEventStatus];
151
341
  /**
152
342
  * @public
153
343
  * <p> The event information. </p>
154
344
  */
155
345
  export interface ConfigurationEvent {
156
346
  /**
347
+ * @public
348
+ * <p>The name of the resource group of the application to which the configuration event belongs.</p>
349
+ */
350
+ ResourceGroupName?: string;
351
+ /**
352
+ * @public
353
+ * <p>The AWS account ID for the owner of the application to which the configuration event belongs.</p>
354
+ */
355
+ AccountId?: string;
356
+ /**
357
+ * @public
157
358
  * <p> The resource monitored by Application Insights. </p>
158
359
  */
159
360
  MonitoredResourceARN?: string;
160
361
  /**
362
+ * @public
161
363
  * <p> The status of the configuration update event. Possible values include INFO, WARN, and
162
364
  * ERROR. </p>
163
365
  */
164
366
  EventStatus?: ConfigurationEventStatus | string;
165
367
  /**
368
+ * @public
166
369
  * <p> The resource type that Application Insights attempted to configure, for example,
167
370
  * CLOUDWATCH_ALARM. </p>
168
371
  */
169
372
  EventResourceType?: ConfigurationEventResourceType | string;
170
373
  /**
374
+ * @public
171
375
  * <p> The timestamp of the event. </p>
172
376
  */
173
377
  EventTime?: Date;
174
378
  /**
379
+ * @public
175
380
  * <p> The details of the event in plain text. </p>
176
381
  */
177
382
  EventDetail?: string;
178
383
  /**
384
+ * @public
179
385
  * <p> The name of the resource Application Insights attempted to configure. </p>
180
386
  */
181
387
  EventResourceName?: string;
@@ -221,11 +427,13 @@ export type GroupingType = (typeof GroupingType)[keyof typeof GroupingType];
221
427
  */
222
428
  export interface Tag {
223
429
  /**
430
+ * @public
224
431
  * <p>One part of a key-value pair that defines a tag. The maximum length of a tag key is 128
225
432
  * characters. The minimum length is 1 character.</p>
226
433
  */
227
434
  Key: string | undefined;
228
435
  /**
436
+ * @public
229
437
  * <p>The optional part of a key-value pair that defines a tag. The maximum length of a tag
230
438
  * value is 256 characters. The minimum length is 0 characters. If you don't want an
231
439
  * application to have a specific tag value, don't specify a value for this parameter.</p>
@@ -237,45 +445,53 @@ export interface Tag {
237
445
  */
238
446
  export interface CreateApplicationRequest {
239
447
  /**
448
+ * @public
240
449
  * <p>The name of the resource group.</p>
241
450
  */
242
451
  ResourceGroupName?: string;
243
452
  /**
453
+ * @public
244
454
  * <p> When set to <code>true</code>, creates opsItems for any problems detected on an
245
455
  * application. </p>
246
456
  */
247
457
  OpsCenterEnabled?: boolean;
248
458
  /**
459
+ * @public
249
460
  * <p> Indicates whether Application Insights can listen to CloudWatch events for the
250
461
  * application resources, such as <code>instance terminated</code>, <code>failed
251
462
  * deployment</code>, and others. </p>
252
463
  */
253
464
  CWEMonitorEnabled?: boolean;
254
465
  /**
466
+ * @public
255
467
  * <p> The SNS topic provided to Application Insights that is associated to the created
256
468
  * opsItem. Allows you to receive notifications for updates to the opsItem. </p>
257
469
  */
258
470
  OpsItemSNSTopicArn?: string;
259
471
  /**
472
+ * @public
260
473
  * <p>List of tags to add to the application. tag key (<code>Key</code>) and an associated tag
261
474
  * value (<code>Value</code>). The maximum length of a tag key is 128 characters. The maximum
262
475
  * length of a tag value is 256 characters.</p>
263
476
  */
264
477
  Tags?: Tag[];
265
478
  /**
479
+ * @public
266
480
  * <p> Indicates whether Application Insights automatically configures unmonitored resources
267
481
  * in the resource group. </p>
268
482
  */
269
483
  AutoConfigEnabled?: boolean;
270
484
  /**
485
+ * @public
271
486
  * <p> Configures all of the resources in the resource group by applying the recommended
272
487
  * configurations. </p>
273
488
  */
274
489
  AutoCreate?: boolean;
275
490
  /**
491
+ * @public
276
492
  * <p>Application Insights can create applications based on a resource group or on an account.
277
- * To create an account-based application using all of the resources in the account, set this parameter to <code>ACCOUNT_BASED</code>.
278
- * </p>
493
+ * To create an account-based application using all of the resources in the account, set this
494
+ * parameter to <code>ACCOUNT_BASED</code>. </p>
279
495
  */
280
496
  GroupingType?: GroupingType | string;
281
497
  }
@@ -284,49 +500,11 @@ export interface CreateApplicationRequest {
284
500
  */
285
501
  export interface CreateApplicationResponse {
286
502
  /**
503
+ * @public
287
504
  * <p>Information about the application.</p>
288
505
  */
289
506
  ApplicationInfo?: ApplicationInfo;
290
507
  }
291
- /**
292
- * @public
293
- * <p>The server encountered an internal error and is unable to complete the request.</p>
294
- */
295
- export declare class InternalServerException extends __BaseException {
296
- readonly name: "InternalServerException";
297
- readonly $fault: "server";
298
- Message?: string;
299
- /**
300
- * @internal
301
- */
302
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
303
- }
304
- /**
305
- * @public
306
- * <p>The resource is already created or in use.</p>
307
- */
308
- export declare class ResourceInUseException extends __BaseException {
309
- readonly name: "ResourceInUseException";
310
- readonly $fault: "client";
311
- Message?: string;
312
- /**
313
- * @internal
314
- */
315
- constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
316
- }
317
- /**
318
- * @public
319
- * <p>The resource does not exist in the customer account.</p>
320
- */
321
- export declare class ResourceNotFoundException extends __BaseException {
322
- readonly name: "ResourceNotFoundException";
323
- readonly $fault: "client";
324
- Message?: string;
325
- /**
326
- * @internal
327
- */
328
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
329
- }
330
508
  /**
331
509
  * @public
332
510
  * <p>Tags are already registered for the specified application ARN.</p>
@@ -340,32 +518,22 @@ export declare class TagsAlreadyExistException extends __BaseException {
340
518
  */
341
519
  constructor(opts: __ExceptionOptionType<TagsAlreadyExistException, __BaseException>);
342
520
  }
343
- /**
344
- * @public
345
- * <p>The parameter is not valid.</p>
346
- */
347
- export declare class ValidationException extends __BaseException {
348
- readonly name: "ValidationException";
349
- readonly $fault: "client";
350
- Message?: string;
351
- /**
352
- * @internal
353
- */
354
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
355
- }
356
521
  /**
357
522
  * @public
358
523
  */
359
524
  export interface CreateComponentRequest {
360
525
  /**
526
+ * @public
361
527
  * <p>The name of the resource group.</p>
362
528
  */
363
529
  ResourceGroupName: string | undefined;
364
530
  /**
531
+ * @public
365
532
  * <p>The name of the component.</p>
366
533
  */
367
534
  ComponentName: string | undefined;
368
535
  /**
536
+ * @public
369
537
  * <p>The list of resource ARNs that belong to the component.</p>
370
538
  */
371
539
  ResourceList: string[] | undefined;
@@ -380,23 +548,28 @@ export interface CreateComponentResponse {
380
548
  */
381
549
  export interface CreateLogPatternRequest {
382
550
  /**
551
+ * @public
383
552
  * <p>The name of the resource group.</p>
384
553
  */
385
554
  ResourceGroupName: string | undefined;
386
555
  /**
556
+ * @public
387
557
  * <p>The name of the log pattern set.</p>
388
558
  */
389
559
  PatternSetName: string | undefined;
390
560
  /**
561
+ * @public
391
562
  * <p>The name of the log pattern.</p>
392
563
  */
393
564
  PatternName: string | undefined;
394
565
  /**
566
+ * @public
395
567
  * <p>The log pattern. The pattern must be DFA compatible. Patterns that utilize forward
396
568
  * lookahead or backreference constructions are not supported.</p>
397
569
  */
398
570
  Pattern: string | undefined;
399
571
  /**
572
+ * @public
400
573
  * <p>Rank of the log pattern. Must be a value between <code>1</code> and
401
574
  * <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set
402
575
  * your highest priority patterns with the lowest rank. A pattern of rank <code>1</code> will
@@ -417,24 +590,28 @@ export interface CreateLogPatternRequest {
417
590
  */
418
591
  export interface LogPattern {
419
592
  /**
593
+ * @public
420
594
  * <p>The name of the log pattern. A log pattern name can contain as many as 30 characters,
421
595
  * and it cannot be empty. The characters can be Unicode letters, digits, or one of the
422
596
  * following symbols: period, dash, underscore.</p>
423
597
  */
424
598
  PatternSetName?: string;
425
599
  /**
600
+ * @public
426
601
  * <p>The name of the log pattern. A log pattern name can contain as many as 50 characters,
427
602
  * and it cannot be empty. The characters can be Unicode letters, digits, or one of the
428
603
  * following symbols: period, dash, underscore.</p>
429
604
  */
430
605
  PatternName?: string;
431
606
  /**
607
+ * @public
432
608
  * <p>A regular expression that defines the log pattern. A log pattern can contain as many as
433
609
  * 50 characters, and it cannot be empty. The pattern must be DFA compatible. Patterns that
434
610
  * utilize forward lookahead or backreference constructions are not supported.</p>
435
611
  */
436
612
  Pattern?: string;
437
613
  /**
614
+ * @public
438
615
  * <p>Rank of the log pattern. Must be a value between <code>1</code> and
439
616
  * <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set
440
617
  * your highest priority patterns with the lowest rank. A pattern of rank <code>1</code> will
@@ -453,10 +630,12 @@ export interface LogPattern {
453
630
  */
454
631
  export interface CreateLogPatternResponse {
455
632
  /**
633
+ * @public
456
634
  * <p>The successfully created log pattern.</p>
457
635
  */
458
636
  LogPattern?: LogPattern;
459
637
  /**
638
+ * @public
460
639
  * <p>The name of the resource group.</p>
461
640
  */
462
641
  ResourceGroupName?: string;
@@ -466,6 +645,7 @@ export interface CreateLogPatternResponse {
466
645
  */
467
646
  export interface DeleteApplicationRequest {
468
647
  /**
648
+ * @public
469
649
  * <p>The name of the resource group.</p>
470
650
  */
471
651
  ResourceGroupName: string | undefined;
@@ -480,10 +660,12 @@ export interface DeleteApplicationResponse {
480
660
  */
481
661
  export interface DeleteComponentRequest {
482
662
  /**
663
+ * @public
483
664
  * <p>The name of the resource group.</p>
484
665
  */
485
666
  ResourceGroupName: string | undefined;
486
667
  /**
668
+ * @public
487
669
  * <p>The name of the component.</p>
488
670
  */
489
671
  ComponentName: string | undefined;
@@ -498,14 +680,17 @@ export interface DeleteComponentResponse {
498
680
  */
499
681
  export interface DeleteLogPatternRequest {
500
682
  /**
683
+ * @public
501
684
  * <p>The name of the resource group.</p>
502
685
  */
503
686
  ResourceGroupName: string | undefined;
504
687
  /**
688
+ * @public
505
689
  * <p>The name of the log pattern set.</p>
506
690
  */
507
691
  PatternSetName: string | undefined;
508
692
  /**
693
+ * @public
509
694
  * <p>The name of the log pattern.</p>
510
695
  */
511
696
  PatternName: string | undefined;
@@ -520,15 +705,22 @@ export interface DeleteLogPatternResponse {
520
705
  */
521
706
  export interface DescribeApplicationRequest {
522
707
  /**
708
+ * @public
523
709
  * <p>The name of the resource group.</p>
524
710
  */
525
711
  ResourceGroupName: string | undefined;
712
+ /**
713
+ * @public
714
+ * <p>The AWS account ID for the resource group owner.</p>
715
+ */
716
+ AccountId?: string;
526
717
  }
527
718
  /**
528
719
  * @public
529
720
  */
530
721
  export interface DescribeApplicationResponse {
531
722
  /**
723
+ * @public
532
724
  * <p>Information about the application.</p>
533
725
  */
534
726
  ApplicationInfo?: ApplicationInfo;
@@ -538,24 +730,33 @@ export interface DescribeApplicationResponse {
538
730
  */
539
731
  export interface DescribeComponentRequest {
540
732
  /**
733
+ * @public
541
734
  * <p>The name of the resource group.</p>
542
735
  */
543
736
  ResourceGroupName: string | undefined;
544
737
  /**
738
+ * @public
545
739
  * <p>The name of the component.</p>
546
740
  */
547
741
  ComponentName: string | undefined;
742
+ /**
743
+ * @public
744
+ * <p>The AWS account ID for the resource group owner.</p>
745
+ */
746
+ AccountId?: string;
548
747
  }
549
748
  /**
550
749
  * @public
551
750
  */
552
751
  export interface DescribeComponentResponse {
553
752
  /**
753
+ * @public
554
754
  * <p>Describes a standalone resource or similarly grouped resources that the application is
555
755
  * made up of.</p>
556
756
  */
557
757
  ApplicationComponent?: ApplicationComponent;
558
758
  /**
759
+ * @public
559
760
  * <p>The list of resource ARNs that belong to the component.</p>
560
761
  */
561
762
  ResourceList?: string[];
@@ -565,23 +766,32 @@ export interface DescribeComponentResponse {
565
766
  */
566
767
  export interface DescribeComponentConfigurationRequest {
567
768
  /**
769
+ * @public
568
770
  * <p>The name of the resource group.</p>
569
771
  */
570
772
  ResourceGroupName: string | undefined;
571
773
  /**
774
+ * @public
572
775
  * <p>The name of the component.</p>
573
776
  */
574
777
  ComponentName: string | undefined;
778
+ /**
779
+ * @public
780
+ * <p>The AWS account ID for the resource group owner.</p>
781
+ */
782
+ AccountId?: string;
575
783
  }
576
784
  /**
577
785
  * @public
578
786
  */
579
787
  export interface DescribeComponentConfigurationResponse {
580
788
  /**
789
+ * @public
581
790
  * <p>Indicates whether the application component is monitored.</p>
582
791
  */
583
792
  Monitor?: boolean;
584
793
  /**
794
+ * @public
585
795
  * <p>The tier of the application component. Supported tiers include
586
796
  * <code>DOT_NET_CORE</code>, <code>DOT_NET_WORKER</code>, <code>DOT_NET_WEB</code>,
587
797
  * <code>SQL_SERVER</code>, and <code>DEFAULT</code>
@@ -589,33 +799,56 @@ export interface DescribeComponentConfigurationResponse {
589
799
  */
590
800
  Tier?: Tier | string;
591
801
  /**
802
+ * @public
592
803
  * <p>The configuration settings of the component. The value is the escaped JSON of the
593
804
  * configuration.</p>
594
805
  */
595
806
  ComponentConfiguration?: string;
596
807
  }
808
+ /**
809
+ * @public
810
+ * @enum
811
+ */
812
+ export declare const RecommendationType: {
813
+ readonly ALL: "ALL";
814
+ readonly INFRA_ONLY: "INFRA_ONLY";
815
+ readonly WORKLOAD_ONLY: "WORKLOAD_ONLY";
816
+ };
817
+ /**
818
+ * @public
819
+ */
820
+ export type RecommendationType = (typeof RecommendationType)[keyof typeof RecommendationType];
597
821
  /**
598
822
  * @public
599
823
  */
600
824
  export interface DescribeComponentConfigurationRecommendationRequest {
601
825
  /**
826
+ * @public
602
827
  * <p>The name of the resource group.</p>
603
828
  */
604
829
  ResourceGroupName: string | undefined;
605
830
  /**
831
+ * @public
606
832
  * <p>The name of the component.</p>
607
833
  */
608
834
  ComponentName: string | undefined;
609
835
  /**
836
+ * @public
610
837
  * <p>The tier of the application component.</p>
611
838
  */
612
839
  Tier: Tier | string | undefined;
840
+ /**
841
+ * @public
842
+ * <p>The recommended configuration type.</p>
843
+ */
844
+ RecommendationType?: RecommendationType | string;
613
845
  }
614
846
  /**
615
847
  * @public
616
848
  */
617
849
  export interface DescribeComponentConfigurationRecommendationResponse {
618
850
  /**
851
+ * @public
619
852
  * <p>The recommended configuration settings of the component. The value is the escaped JSON
620
853
  * of the configuration.</p>
621
854
  */
@@ -626,27 +859,42 @@ export interface DescribeComponentConfigurationRecommendationResponse {
626
859
  */
627
860
  export interface DescribeLogPatternRequest {
628
861
  /**
862
+ * @public
629
863
  * <p>The name of the resource group.</p>
630
864
  */
631
865
  ResourceGroupName: string | undefined;
632
866
  /**
867
+ * @public
633
868
  * <p>The name of the log pattern set.</p>
634
869
  */
635
870
  PatternSetName: string | undefined;
636
871
  /**
872
+ * @public
637
873
  * <p>The name of the log pattern.</p>
638
874
  */
639
875
  PatternName: string | undefined;
876
+ /**
877
+ * @public
878
+ * <p>The AWS account ID for the resource group owner.</p>
879
+ */
880
+ AccountId?: string;
640
881
  }
641
882
  /**
642
883
  * @public
643
884
  */
644
885
  export interface DescribeLogPatternResponse {
645
886
  /**
887
+ * @public
646
888
  * <p>The name of the resource group.</p>
647
889
  */
648
890
  ResourceGroupName?: string;
649
891
  /**
892
+ * @public
893
+ * <p>The AWS account ID for the resource group owner.</p>
894
+ */
895
+ AccountId?: string;
896
+ /**
897
+ * @public
650
898
  * <p>The successfully created log pattern.</p>
651
899
  */
652
900
  LogPattern?: LogPattern;
@@ -656,207 +904,267 @@ export interface DescribeLogPatternResponse {
656
904
  */
657
905
  export interface DescribeObservationRequest {
658
906
  /**
907
+ * @public
659
908
  * <p>The ID of the observation.</p>
660
909
  */
661
910
  ObservationId: string | undefined;
911
+ /**
912
+ * @public
913
+ * <p>The AWS account ID for the resource group owner.</p>
914
+ */
915
+ AccountId?: string;
662
916
  }
917
+ /**
918
+ * @public
919
+ * @enum
920
+ */
921
+ export declare const LogFilter: {
922
+ readonly ERROR: "ERROR";
923
+ readonly INFO: "INFO";
924
+ readonly WARN: "WARN";
925
+ };
663
926
  /**
664
927
  * @public
665
928
  */
666
- export type LogFilter = "ERROR" | "INFO" | "WARN";
929
+ export type LogFilter = (typeof LogFilter)[keyof typeof LogFilter];
667
930
  /**
668
931
  * @public
669
932
  * <p>Describes an anomaly or error with the application.</p>
670
933
  */
671
934
  export interface Observation {
672
935
  /**
936
+ * @public
673
937
  * <p>The ID of the observation type.</p>
674
938
  */
675
939
  Id?: string;
676
940
  /**
941
+ * @public
677
942
  * <p>The time when the observation was first detected, in epoch seconds.</p>
678
943
  */
679
944
  StartTime?: Date;
680
945
  /**
946
+ * @public
681
947
  * <p>The time when the observation ended, in epoch seconds.</p>
682
948
  */
683
949
  EndTime?: Date;
684
950
  /**
951
+ * @public
685
952
  * <p>The source type of the observation.</p>
686
953
  */
687
954
  SourceType?: string;
688
955
  /**
956
+ * @public
689
957
  * <p>The source resource ARN of the observation.</p>
690
958
  */
691
959
  SourceARN?: string;
692
960
  /**
961
+ * @public
693
962
  * <p>The log group name.</p>
694
963
  */
695
964
  LogGroup?: string;
696
965
  /**
966
+ * @public
697
967
  * <p>The timestamp in the CloudWatch Logs that specifies when the matched line
698
968
  * occurred.</p>
699
969
  */
700
970
  LineTime?: Date;
701
971
  /**
972
+ * @public
702
973
  * <p>The log text of the observation.</p>
703
974
  */
704
975
  LogText?: string;
705
976
  /**
977
+ * @public
706
978
  * <p>The log filter of the observation.</p>
707
979
  */
708
980
  LogFilter?: LogFilter | string;
709
981
  /**
982
+ * @public
710
983
  * <p>The namespace of the observation metric.</p>
711
984
  */
712
985
  MetricNamespace?: string;
713
986
  /**
987
+ * @public
714
988
  * <p>The name of the observation metric.</p>
715
989
  */
716
990
  MetricName?: string;
717
991
  /**
992
+ * @public
718
993
  * <p>The unit of the source observation metric.</p>
719
994
  */
720
995
  Unit?: string;
721
996
  /**
997
+ * @public
722
998
  * <p>The value of the source observation metric.</p>
723
999
  */
724
1000
  Value?: number;
725
1001
  /**
1002
+ * @public
726
1003
  * <p> The ID of the CloudWatch Event-based observation related to the detected problem.
727
1004
  * </p>
728
1005
  */
729
1006
  CloudWatchEventId?: string;
730
1007
  /**
1008
+ * @public
731
1009
  * <p> The source of the CloudWatch Event. </p>
732
1010
  */
733
1011
  CloudWatchEventSource?: CloudWatchEventSource | string;
734
1012
  /**
1013
+ * @public
735
1014
  * <p> The detail type of the CloudWatch Event-based observation, for example, <code>EC2
736
1015
  * Instance State-change Notification</code>. </p>
737
1016
  */
738
1017
  CloudWatchEventDetailType?: string;
739
1018
  /**
1019
+ * @public
740
1020
  * <p> The Amazon Resource Name (ARN) of the AWS Health Event-based observation.</p>
741
1021
  */
742
1022
  HealthEventArn?: string;
743
1023
  /**
1024
+ * @public
744
1025
  * <p> The service to which the AWS Health Event belongs, such as EC2. </p>
745
1026
  */
746
1027
  HealthService?: string;
747
1028
  /**
1029
+ * @public
748
1030
  * <p> The type of the AWS Health event, for example,
749
1031
  * <code>AWS_EC2_POWER_CONNECTIVITY_ISSUE</code>. </p>
750
1032
  */
751
1033
  HealthEventTypeCode?: string;
752
1034
  /**
1035
+ * @public
753
1036
  * <p> The category of the AWS Health event, such as <code>issue</code>. </p>
754
1037
  */
755
1038
  HealthEventTypeCategory?: string;
756
1039
  /**
1040
+ * @public
757
1041
  * <p> The description of the AWS Health event provided by the service, such as Amazon EC2.
758
1042
  * </p>
759
1043
  */
760
1044
  HealthEventDescription?: string;
761
1045
  /**
1046
+ * @public
762
1047
  * <p> The deployment ID of the CodeDeploy-based observation related to the detected problem.
763
1048
  * </p>
764
1049
  */
765
1050
  CodeDeployDeploymentId?: string;
766
1051
  /**
1052
+ * @public
767
1053
  * <p> The deployment group to which the CodeDeploy deployment belongs. </p>
768
1054
  */
769
1055
  CodeDeployDeploymentGroup?: string;
770
1056
  /**
1057
+ * @public
771
1058
  * <p> The status of the CodeDeploy deployment, for example <code>SUCCESS</code> or <code>
772
1059
  * FAILURE</code>. </p>
773
1060
  */
774
1061
  CodeDeployState?: string;
775
1062
  /**
1063
+ * @public
776
1064
  * <p> The CodeDeploy application to which the deployment belongs. </p>
777
1065
  */
778
1066
  CodeDeployApplication?: string;
779
1067
  /**
1068
+ * @public
780
1069
  * <p> The instance group to which the CodeDeploy instance belongs. </p>
781
1070
  */
782
1071
  CodeDeployInstanceGroupId?: string;
783
1072
  /**
1073
+ * @public
784
1074
  * <p> The state of the instance, such as <code>STOPPING</code> or <code>TERMINATING</code>.
785
1075
  * </p>
786
1076
  */
787
1077
  Ec2State?: string;
788
1078
  /**
1079
+ * @public
789
1080
  * <p> The category of an RDS event. </p>
790
1081
  */
791
1082
  RdsEventCategories?: string;
792
1083
  /**
1084
+ * @public
793
1085
  * <p> The message of an RDS event. </p>
794
1086
  */
795
1087
  RdsEventMessage?: string;
796
1088
  /**
1089
+ * @public
797
1090
  * <p> The name of the S3 CloudWatch Event-based observation. </p>
798
1091
  */
799
1092
  S3EventName?: string;
800
1093
  /**
1094
+ * @public
801
1095
  * <p> The Amazon Resource Name (ARN) of the step function execution-based observation.
802
1096
  * </p>
803
1097
  */
804
1098
  StatesExecutionArn?: string;
805
1099
  /**
1100
+ * @public
806
1101
  * <p> The Amazon Resource Name (ARN) of the step function-based observation. </p>
807
1102
  */
808
1103
  StatesArn?: string;
809
1104
  /**
1105
+ * @public
810
1106
  * <p> The status of the step function-related observation. </p>
811
1107
  */
812
1108
  StatesStatus?: string;
813
1109
  /**
1110
+ * @public
814
1111
  * <p> The input to the step function-based observation. </p>
815
1112
  */
816
1113
  StatesInput?: string;
817
1114
  /**
1115
+ * @public
818
1116
  * <p> The type of EBS CloudWatch event, such as <code>createVolume</code>,
819
1117
  * <code>deleteVolume</code> or <code>attachVolume</code>. </p>
820
1118
  */
821
1119
  EbsEvent?: string;
822
1120
  /**
1121
+ * @public
823
1122
  * <p> The result of an EBS CloudWatch event, such as <code>failed</code> or
824
1123
  * <code>succeeded</code>. </p>
825
1124
  */
826
1125
  EbsResult?: string;
827
1126
  /**
1127
+ * @public
828
1128
  * <p> The cause of an EBS CloudWatch event. </p>
829
1129
  */
830
1130
  EbsCause?: string;
831
1131
  /**
1132
+ * @public
832
1133
  * <p> The request ID of an EBS CloudWatch event. </p>
833
1134
  */
834
1135
  EbsRequestId?: string;
835
1136
  /**
1137
+ * @public
836
1138
  * <p> The X-Ray request fault percentage for this node. </p>
837
1139
  */
838
1140
  XRayFaultPercent?: number;
839
1141
  /**
1142
+ * @public
840
1143
  * <p> The X-Ray request throttle percentage for this node. </p>
841
1144
  */
842
1145
  XRayThrottlePercent?: number;
843
1146
  /**
1147
+ * @public
844
1148
  * <p> The X-Ray request error percentage for this node. </p>
845
1149
  */
846
1150
  XRayErrorPercent?: number;
847
1151
  /**
1152
+ * @public
848
1153
  * <p> The X-Ray request count for this node. </p>
849
1154
  */
850
1155
  XRayRequestCount?: number;
851
1156
  /**
1157
+ * @public
852
1158
  * <p> The X-Ray node request average latency for this node. </p>
853
1159
  */
854
1160
  XRayRequestAverageLatency?: number;
855
1161
  /**
1162
+ * @public
856
1163
  * <p> The name of the X-Ray node. </p>
857
1164
  */
858
1165
  XRayNodeName?: string;
859
1166
  /**
1167
+ * @public
860
1168
  * <p> The type of the X-Ray node. </p>
861
1169
  */
862
1170
  XRayNodeType?: string;
@@ -866,6 +1174,7 @@ export interface Observation {
866
1174
  */
867
1175
  export interface DescribeObservationResponse {
868
1176
  /**
1177
+ * @public
869
1178
  * <p>Information about the observation.</p>
870
1179
  */
871
1180
  Observation?: Observation;
@@ -875,86 +1184,185 @@ export interface DescribeObservationResponse {
875
1184
  */
876
1185
  export interface DescribeProblemRequest {
877
1186
  /**
1187
+ * @public
878
1188
  * <p>The ID of the problem.</p>
879
1189
  */
880
1190
  ProblemId: string | undefined;
1191
+ /**
1192
+ * @public
1193
+ * <p>The AWS account ID for the owner of the resource group affected by the problem.</p>
1194
+ */
1195
+ AccountId?: string;
881
1196
  }
882
1197
  /**
883
1198
  * @public
1199
+ * @enum
884
1200
  */
885
- export type FeedbackKey = "INSIGHTS_FEEDBACK";
1201
+ export declare const FeedbackKey: {
1202
+ readonly INSIGHTS_FEEDBACK: "INSIGHTS_FEEDBACK";
1203
+ };
886
1204
  /**
887
1205
  * @public
888
1206
  */
889
- export type FeedbackValue = "NOT_SPECIFIED" | "NOT_USEFUL" | "USEFUL";
1207
+ export type FeedbackKey = (typeof FeedbackKey)[keyof typeof FeedbackKey];
890
1208
  /**
891
1209
  * @public
1210
+ * @enum
892
1211
  */
893
- export type SeverityLevel = "High" | "Informative" | "Low" | "Medium";
1212
+ export declare const FeedbackValue: {
1213
+ readonly NOT_SPECIFIED: "NOT_SPECIFIED";
1214
+ readonly NOT_USEFUL: "NOT_USEFUL";
1215
+ readonly USEFUL: "USEFUL";
1216
+ };
1217
+ /**
1218
+ * @public
1219
+ */
1220
+ export type FeedbackValue = (typeof FeedbackValue)[keyof typeof FeedbackValue];
1221
+ /**
1222
+ * @public
1223
+ * @enum
1224
+ */
1225
+ export declare const ResolutionMethod: {
1226
+ readonly AUTOMATIC: "AUTOMATIC";
1227
+ readonly MANUAL: "MANUAL";
1228
+ readonly UNRESOLVED: "UNRESOLVED";
1229
+ };
1230
+ /**
1231
+ * @public
1232
+ */
1233
+ export type ResolutionMethod = (typeof ResolutionMethod)[keyof typeof ResolutionMethod];
1234
+ /**
1235
+ * @public
1236
+ * @enum
1237
+ */
1238
+ export declare const SeverityLevel: {
1239
+ readonly High: "High";
1240
+ readonly Informative: "Informative";
1241
+ readonly Low: "Low";
1242
+ readonly Medium: "Medium";
1243
+ };
894
1244
  /**
895
1245
  * @public
896
1246
  */
897
- export type Status = "IGNORE" | "PENDING" | "RECURRING" | "RESOLVED";
1247
+ export type SeverityLevel = (typeof SeverityLevel)[keyof typeof SeverityLevel];
1248
+ /**
1249
+ * @public
1250
+ * @enum
1251
+ */
1252
+ export declare const Status: {
1253
+ readonly IGNORE: "IGNORE";
1254
+ readonly PENDING: "PENDING";
1255
+ readonly RECOVERING: "RECOVERING";
1256
+ readonly RECURRING: "RECURRING";
1257
+ readonly RESOLVED: "RESOLVED";
1258
+ };
1259
+ /**
1260
+ * @public
1261
+ */
1262
+ export type Status = (typeof Status)[keyof typeof Status];
1263
+ /**
1264
+ * @public
1265
+ * @enum
1266
+ */
1267
+ export declare const Visibility: {
1268
+ readonly IGNORED: "IGNORED";
1269
+ readonly VISIBLE: "VISIBLE";
1270
+ };
1271
+ /**
1272
+ * @public
1273
+ */
1274
+ export type Visibility = (typeof Visibility)[keyof typeof Visibility];
898
1275
  /**
899
1276
  * @public
900
1277
  * <p>Describes a problem that is detected by correlating observations.</p>
901
1278
  */
902
1279
  export interface Problem {
903
1280
  /**
1281
+ * @public
904
1282
  * <p>The ID of the problem.</p>
905
1283
  */
906
1284
  Id?: string;
907
1285
  /**
1286
+ * @public
908
1287
  * <p>The name of the problem.</p>
909
1288
  */
910
1289
  Title?: string;
911
1290
  /**
1291
+ * @public
912
1292
  * <p>A detailed analysis of the problem using machine learning.</p>
913
1293
  */
914
1294
  Insights?: string;
915
1295
  /**
1296
+ * @public
916
1297
  * <p>The status of the problem.</p>
917
1298
  */
918
1299
  Status?: Status | string;
919
1300
  /**
1301
+ * @public
920
1302
  * <p>The resource affected by the problem.</p>
921
1303
  */
922
1304
  AffectedResource?: string;
923
1305
  /**
1306
+ * @public
924
1307
  * <p>The time when the problem started, in epoch seconds.</p>
925
1308
  */
926
1309
  StartTime?: Date;
927
1310
  /**
1311
+ * @public
928
1312
  * <p>The time when the problem ended, in epoch seconds.</p>
929
1313
  */
930
1314
  EndTime?: Date;
931
1315
  /**
1316
+ * @public
932
1317
  * <p>A measure of the level of impact of the problem.</p>
933
1318
  */
934
1319
  SeverityLevel?: SeverityLevel | string;
935
1320
  /**
1321
+ * @public
1322
+ * <p>The AWS account ID for the owner of the resource group affected by the problem.</p>
1323
+ */
1324
+ AccountId?: string;
1325
+ /**
1326
+ * @public
936
1327
  * <p>The name of the resource group affected by the problem.</p>
937
1328
  */
938
1329
  ResourceGroupName?: string;
939
1330
  /**
1331
+ * @public
940
1332
  * <p>Feedback provided by the user about the problem.</p>
941
1333
  */
942
1334
  Feedback?: Record<string, FeedbackValue | string>;
943
1335
  /**
1336
+ * @public
944
1337
  * <p> The number of times that the same problem reoccurred after the first time it was
945
1338
  * resolved. </p>
946
1339
  */
947
1340
  RecurringCount?: number;
948
1341
  /**
1342
+ * @public
949
1343
  * <p> The last time that the problem reoccurred after its last resolution. </p>
950
1344
  */
951
1345
  LastRecurrenceTime?: Date;
1346
+ /**
1347
+ * @public
1348
+ * <p>Specifies whether or not you can view the problem. Updates to ignored problems do not
1349
+ * generate notifications.</p>
1350
+ */
1351
+ Visibility?: Visibility | string;
1352
+ /**
1353
+ * @public
1354
+ * <p>Specifies how the problem was resolved. If the value is <code>AUTOMATIC</code>, the
1355
+ * system resolved the problem. If the value is <code>MANUAL</code>, the user resolved the
1356
+ * problem. If the value is <code>UNRESOLVED</code>, then the problem is not resolved.</p>
1357
+ */
1358
+ ResolutionMethod?: ResolutionMethod | string;
952
1359
  }
953
1360
  /**
954
1361
  * @public
955
1362
  */
956
1363
  export interface DescribeProblemResponse {
957
1364
  /**
1365
+ * @public
958
1366
  * <p>Information about the problem. </p>
959
1367
  */
960
1368
  Problem?: Problem;
@@ -964,9 +1372,15 @@ export interface DescribeProblemResponse {
964
1372
  */
965
1373
  export interface DescribeProblemObservationsRequest {
966
1374
  /**
1375
+ * @public
967
1376
  * <p>The ID of the problem.</p>
968
1377
  */
969
1378
  ProblemId: string | undefined;
1379
+ /**
1380
+ * @public
1381
+ * <p>The AWS account ID for the resource group owner.</p>
1382
+ */
1383
+ AccountId?: string;
970
1384
  }
971
1385
  /**
972
1386
  * @public
@@ -974,6 +1388,7 @@ export interface DescribeProblemObservationsRequest {
974
1388
  */
975
1389
  export interface RelatedObservations {
976
1390
  /**
1391
+ * @public
977
1392
  * <p>The list of observations related to the problem.</p>
978
1393
  */
979
1394
  ObservationList?: Observation[];
@@ -983,33 +1398,88 @@ export interface RelatedObservations {
983
1398
  */
984
1399
  export interface DescribeProblemObservationsResponse {
985
1400
  /**
1401
+ * @public
986
1402
  * <p>Observations related to the problem.</p>
987
1403
  */
988
1404
  RelatedObservations?: RelatedObservations;
989
1405
  }
1406
+ /**
1407
+ * @public
1408
+ */
1409
+ export interface DescribeWorkloadRequest {
1410
+ /**
1411
+ * @public
1412
+ * <p>The name of the resource group.</p>
1413
+ */
1414
+ ResourceGroupName: string | undefined;
1415
+ /**
1416
+ * @public
1417
+ * <p>The name of the component.</p>
1418
+ */
1419
+ ComponentName: string | undefined;
1420
+ /**
1421
+ * @public
1422
+ * <p>The ID of the workload.</p>
1423
+ */
1424
+ WorkloadId: string | undefined;
1425
+ /**
1426
+ * @public
1427
+ * <p>The AWS account ID for the workload owner.</p>
1428
+ */
1429
+ AccountId?: string;
1430
+ }
1431
+ /**
1432
+ * @public
1433
+ */
1434
+ export interface DescribeWorkloadResponse {
1435
+ /**
1436
+ * @public
1437
+ * <p>The ID of the workload.</p>
1438
+ */
1439
+ WorkloadId?: string;
1440
+ /**
1441
+ * @public
1442
+ * <p>If logging is supported for the resource type, shows whether the component has configured logs to be monitored.</p>
1443
+ */
1444
+ WorkloadRemarks?: string;
1445
+ /**
1446
+ * @public
1447
+ * <p>The configuration settings of the workload. The value is the escaped JSON of the configuration.</p>
1448
+ */
1449
+ WorkloadConfiguration?: WorkloadConfiguration;
1450
+ }
990
1451
  /**
991
1452
  * @public
992
1453
  */
993
1454
  export interface ListApplicationsRequest {
994
1455
  /**
1456
+ * @public
995
1457
  * <p>The maximum number of results to return in a single call. To retrieve the remaining
996
1458
  * results, make another call with the returned <code>NextToken</code> value.</p>
997
1459
  */
998
1460
  MaxResults?: number;
999
1461
  /**
1462
+ * @public
1000
1463
  * <p>The token to request the next page of results.</p>
1001
1464
  */
1002
1465
  NextToken?: string;
1466
+ /**
1467
+ * @public
1468
+ * <p>The AWS account ID for the resource group owner.</p>
1469
+ */
1470
+ AccountId?: string;
1003
1471
  }
1004
1472
  /**
1005
1473
  * @public
1006
1474
  */
1007
1475
  export interface ListApplicationsResponse {
1008
1476
  /**
1477
+ * @public
1009
1478
  * <p>The list of applications.</p>
1010
1479
  */
1011
1480
  ApplicationInfoList?: ApplicationInfo[];
1012
1481
  /**
1482
+ * @public
1013
1483
  * <p>The token used to retrieve the next page of results. This value is <code>null</code>
1014
1484
  * when there are no more results to return. </p>
1015
1485
  */
@@ -1020,28 +1490,38 @@ export interface ListApplicationsResponse {
1020
1490
  */
1021
1491
  export interface ListComponentsRequest {
1022
1492
  /**
1493
+ * @public
1023
1494
  * <p>The name of the resource group.</p>
1024
1495
  */
1025
1496
  ResourceGroupName: string | undefined;
1026
1497
  /**
1498
+ * @public
1027
1499
  * <p>The maximum number of results to return in a single call. To retrieve the remaining
1028
1500
  * results, make another call with the returned <code>NextToken</code> value.</p>
1029
1501
  */
1030
1502
  MaxResults?: number;
1031
1503
  /**
1504
+ * @public
1032
1505
  * <p>The token to request the next page of results.</p>
1033
1506
  */
1034
1507
  NextToken?: string;
1508
+ /**
1509
+ * @public
1510
+ * <p>The AWS account ID for the resource group owner.</p>
1511
+ */
1512
+ AccountId?: string;
1035
1513
  }
1036
1514
  /**
1037
1515
  * @public
1038
1516
  */
1039
1517
  export interface ListComponentsResponse {
1040
1518
  /**
1519
+ * @public
1041
1520
  * <p>The list of application components.</p>
1042
1521
  */
1043
1522
  ApplicationComponentList?: ApplicationComponent[];
1044
1523
  /**
1524
+ * @public
1045
1525
  * <p>The token to request the next page of results.</p>
1046
1526
  */
1047
1527
  NextToken?: string;
@@ -1051,23 +1531,28 @@ export interface ListComponentsResponse {
1051
1531
  */
1052
1532
  export interface ListConfigurationHistoryRequest {
1053
1533
  /**
1534
+ * @public
1054
1535
  * <p>Resource group to which the application belongs. </p>
1055
1536
  */
1056
1537
  ResourceGroupName?: string;
1057
1538
  /**
1539
+ * @public
1058
1540
  * <p>The start time of the event. </p>
1059
1541
  */
1060
1542
  StartTime?: Date;
1061
1543
  /**
1544
+ * @public
1062
1545
  * <p>The end time of the event.</p>
1063
1546
  */
1064
1547
  EndTime?: Date;
1065
1548
  /**
1549
+ * @public
1066
1550
  * <p>The status of the configuration update event. Possible values include INFO, WARN, and
1067
1551
  * ERROR.</p>
1068
1552
  */
1069
1553
  EventStatus?: ConfigurationEventStatus | string;
1070
1554
  /**
1555
+ * @public
1071
1556
  * <p> The maximum number of results returned by <code>ListConfigurationHistory</code> in
1072
1557
  * paginated output. When this parameter is used, <code>ListConfigurationHistory</code>
1073
1558
  * returns only <code>MaxResults</code> in a single page along with a <code>NextToken</code>
@@ -1078,6 +1563,7 @@ export interface ListConfigurationHistoryRequest {
1078
1563
  */
1079
1564
  MaxResults?: number;
1080
1565
  /**
1566
+ * @public
1081
1567
  * <p>The <code>NextToken</code> value returned from a previous paginated
1082
1568
  * <code>ListConfigurationHistory</code> request where <code>MaxResults</code> was used and
1083
1569
  * the results exceeded the value of that parameter. Pagination continues from the end of the
@@ -1085,16 +1571,23 @@ export interface ListConfigurationHistoryRequest {
1085
1571
  * <code>null</code> when there are no more results to return.</p>
1086
1572
  */
1087
1573
  NextToken?: string;
1574
+ /**
1575
+ * @public
1576
+ * <p>The AWS account ID for the resource group owner.</p>
1577
+ */
1578
+ AccountId?: string;
1088
1579
  }
1089
1580
  /**
1090
1581
  * @public
1091
1582
  */
1092
1583
  export interface ListConfigurationHistoryResponse {
1093
1584
  /**
1585
+ * @public
1094
1586
  * <p> The list of configuration events and their corresponding details. </p>
1095
1587
  */
1096
1588
  EventList?: ConfigurationEvent[];
1097
1589
  /**
1590
+ * @public
1098
1591
  * <p>The <code>NextToken</code> value to include in a future
1099
1592
  * <code>ListConfigurationHistory</code> request. When the results of a
1100
1593
  * <code>ListConfigurationHistory</code> request exceed <code>MaxResults</code>, this value
@@ -1108,36 +1601,53 @@ export interface ListConfigurationHistoryResponse {
1108
1601
  */
1109
1602
  export interface ListLogPatternsRequest {
1110
1603
  /**
1604
+ * @public
1111
1605
  * <p>The name of the resource group.</p>
1112
1606
  */
1113
1607
  ResourceGroupName: string | undefined;
1114
1608
  /**
1609
+ * @public
1115
1610
  * <p>The name of the log pattern set.</p>
1116
1611
  */
1117
1612
  PatternSetName?: string;
1118
1613
  /**
1614
+ * @public
1119
1615
  * <p>The maximum number of results to return in a single call. To retrieve the remaining
1120
1616
  * results, make another call with the returned <code>NextToken</code> value.</p>
1121
1617
  */
1122
1618
  MaxResults?: number;
1123
1619
  /**
1620
+ * @public
1124
1621
  * <p>The token to request the next page of results.</p>
1125
1622
  */
1126
1623
  NextToken?: string;
1624
+ /**
1625
+ * @public
1626
+ * <p>The AWS account ID for the resource group owner.</p>
1627
+ */
1628
+ AccountId?: string;
1127
1629
  }
1128
1630
  /**
1129
1631
  * @public
1130
1632
  */
1131
1633
  export interface ListLogPatternsResponse {
1132
1634
  /**
1635
+ * @public
1133
1636
  * <p>The name of the resource group.</p>
1134
1637
  */
1135
1638
  ResourceGroupName?: string;
1136
1639
  /**
1640
+ * @public
1641
+ * <p>The AWS account ID for the resource group owner.</p>
1642
+ */
1643
+ AccountId?: string;
1644
+ /**
1645
+ * @public
1137
1646
  * <p>The list of log patterns.</p>
1138
1647
  */
1139
1648
  LogPatterns?: LogPattern[];
1140
1649
  /**
1650
+ * @public
1141
1651
  * <p>The token used to retrieve the next page of results. This value is <code>null</code>
1142
1652
  * when there are no more results to return. </p>
1143
1653
  */
@@ -1148,32 +1658,48 @@ export interface ListLogPatternsResponse {
1148
1658
  */
1149
1659
  export interface ListLogPatternSetsRequest {
1150
1660
  /**
1661
+ * @public
1151
1662
  * <p>The name of the resource group.</p>
1152
1663
  */
1153
1664
  ResourceGroupName: string | undefined;
1154
1665
  /**
1666
+ * @public
1155
1667
  * <p>The maximum number of results to return in a single call. To retrieve the remaining
1156
1668
  * results, make another call with the returned <code>NextToken</code> value.</p>
1157
1669
  */
1158
1670
  MaxResults?: number;
1159
1671
  /**
1672
+ * @public
1160
1673
  * <p>The token to request the next page of results.</p>
1161
1674
  */
1162
1675
  NextToken?: string;
1676
+ /**
1677
+ * @public
1678
+ * <p>The AWS account ID for the resource group owner.</p>
1679
+ */
1680
+ AccountId?: string;
1163
1681
  }
1164
1682
  /**
1165
1683
  * @public
1166
1684
  */
1167
1685
  export interface ListLogPatternSetsResponse {
1168
1686
  /**
1687
+ * @public
1169
1688
  * <p>The name of the resource group.</p>
1170
1689
  */
1171
1690
  ResourceGroupName?: string;
1172
1691
  /**
1692
+ * @public
1693
+ * <p>The AWS account ID for the resource group owner.</p>
1694
+ */
1695
+ AccountId?: string;
1696
+ /**
1697
+ * @public
1173
1698
  * <p>The list of log pattern sets.</p>
1174
1699
  */
1175
1700
  LogPatternSets?: string[];
1176
1701
  /**
1702
+ * @public
1177
1703
  * <p>The token used to retrieve the next page of results. This value is <code>null</code>
1178
1704
  * when there are no more results to return. </p>
1179
1705
  */
@@ -1184,56 +1710,82 @@ export interface ListLogPatternSetsResponse {
1184
1710
  */
1185
1711
  export interface ListProblemsRequest {
1186
1712
  /**
1713
+ * @public
1714
+ * <p>The AWS account ID for the resource group owner.</p>
1715
+ */
1716
+ AccountId?: string;
1717
+ /**
1718
+ * @public
1187
1719
  * <p>The name of the resource group.</p>
1188
1720
  */
1189
1721
  ResourceGroupName?: string;
1190
1722
  /**
1723
+ * @public
1191
1724
  * <p>The time when the problem was detected, in epoch seconds. If you don't specify a time
1192
1725
  * frame for the request, problems within the past seven days are returned.</p>
1193
1726
  */
1194
1727
  StartTime?: Date;
1195
1728
  /**
1729
+ * @public
1196
1730
  * <p>The time when the problem ended, in epoch seconds. If not specified, problems within the
1197
1731
  * past seven days are returned.</p>
1198
1732
  */
1199
1733
  EndTime?: Date;
1200
1734
  /**
1735
+ * @public
1201
1736
  * <p>The maximum number of results to return in a single call. To retrieve the remaining
1202
1737
  * results, make another call with the returned <code>NextToken</code> value.</p>
1203
1738
  */
1204
1739
  MaxResults?: number;
1205
1740
  /**
1741
+ * @public
1206
1742
  * <p>The token to request the next page of results.</p>
1207
1743
  */
1208
1744
  NextToken?: string;
1209
1745
  /**
1746
+ * @public
1210
1747
  * <p> The name of the component. </p>
1211
1748
  */
1212
1749
  ComponentName?: string;
1750
+ /**
1751
+ * @public
1752
+ * <p>Specifies whether or not you can view the problem. If not specified, visible and
1753
+ * ignored problems are returned.</p>
1754
+ */
1755
+ Visibility?: Visibility | string;
1213
1756
  }
1214
1757
  /**
1215
1758
  * @public
1216
1759
  */
1217
1760
  export interface ListProblemsResponse {
1218
1761
  /**
1762
+ * @public
1219
1763
  * <p>The list of problems. </p>
1220
1764
  */
1221
1765
  ProblemList?: Problem[];
1222
1766
  /**
1767
+ * @public
1223
1768
  * <p>The token used to retrieve the next page of results. This value is <code>null</code>
1224
1769
  * when there are no more results to return. </p>
1225
1770
  */
1226
1771
  NextToken?: string;
1227
1772
  /**
1773
+ * @public
1228
1774
  * <p> The name of the resource group. </p>
1229
1775
  */
1230
1776
  ResourceGroupName?: string;
1777
+ /**
1778
+ * @public
1779
+ * <p>The AWS account ID for the resource group owner.</p>
1780
+ */
1781
+ AccountId?: string;
1231
1782
  }
1232
1783
  /**
1233
1784
  * @public
1234
1785
  */
1235
1786
  export interface ListTagsForResourceRequest {
1236
1787
  /**
1788
+ * @public
1237
1789
  * <p>The Amazon Resource Name (ARN) of the application that you want to retrieve tag
1238
1790
  * information for.</p>
1239
1791
  */
@@ -1244,22 +1796,127 @@ export interface ListTagsForResourceRequest {
1244
1796
  */
1245
1797
  export interface ListTagsForResourceResponse {
1246
1798
  /**
1799
+ * @public
1247
1800
  * <p>An array that lists all the tags that are associated with the application. Each tag
1248
1801
  * consists of a required tag key (<code>Key</code>) and an associated tag value
1249
1802
  * (<code>Value</code>).</p>
1250
1803
  */
1251
1804
  Tags?: Tag[];
1252
1805
  }
1806
+ /**
1807
+ * @public
1808
+ */
1809
+ export interface ListWorkloadsRequest {
1810
+ /**
1811
+ * @public
1812
+ * <p>The name of the resource group.</p>
1813
+ */
1814
+ ResourceGroupName: string | undefined;
1815
+ /**
1816
+ * @public
1817
+ * <p>The name of the component.</p>
1818
+ */
1819
+ ComponentName: string | undefined;
1820
+ /**
1821
+ * @public
1822
+ * <p>The maximum number of results to return in a single call. To retrieve the remaining
1823
+ * results, make another call with the returned <code>NextToken</code> value.</p>
1824
+ */
1825
+ MaxResults?: number;
1826
+ /**
1827
+ * @public
1828
+ * <p>The token to request the next page of results.</p>
1829
+ */
1830
+ NextToken?: string;
1831
+ /**
1832
+ * @public
1833
+ * <p>The AWS account ID of the owner of the workload.</p>
1834
+ */
1835
+ AccountId?: string;
1836
+ }
1837
+ /**
1838
+ * @public
1839
+ * <p>Describes the workloads on a component.</p>
1840
+ */
1841
+ export interface Workload {
1842
+ /**
1843
+ * @public
1844
+ * <p>The ID of the workload.</p>
1845
+ */
1846
+ WorkloadId?: string;
1847
+ /**
1848
+ * @public
1849
+ * <p>The name of the component.</p>
1850
+ */
1851
+ ComponentName?: string;
1852
+ /**
1853
+ * @public
1854
+ * <p>The name of the workload.</p>
1855
+ */
1856
+ WorkloadName?: string;
1857
+ /**
1858
+ * @public
1859
+ * <p>The tier of the workload.</p>
1860
+ */
1861
+ Tier?: Tier | string;
1862
+ /**
1863
+ * @public
1864
+ * <p>If logging is supported for the resource type, shows whether the component has configured logs to be monitored.</p>
1865
+ */
1866
+ WorkloadRemarks?: string;
1867
+ }
1868
+ /**
1869
+ * @public
1870
+ */
1871
+ export interface ListWorkloadsResponse {
1872
+ /**
1873
+ * @public
1874
+ * <p>The list of workloads.</p>
1875
+ */
1876
+ WorkloadList?: Workload[];
1877
+ /**
1878
+ * @public
1879
+ * <p>The token to request the next page of results.</p>
1880
+ */
1881
+ NextToken?: string;
1882
+ }
1883
+ /**
1884
+ * @public
1885
+ */
1886
+ export interface RemoveWorkloadRequest {
1887
+ /**
1888
+ * @public
1889
+ * <p>The name of the resource group.</p>
1890
+ */
1891
+ ResourceGroupName: string | undefined;
1892
+ /**
1893
+ * @public
1894
+ * <p>The name of the component.</p>
1895
+ */
1896
+ ComponentName: string | undefined;
1897
+ /**
1898
+ * @public
1899
+ * <p>The ID of the workload.</p>
1900
+ */
1901
+ WorkloadId: string | undefined;
1902
+ }
1903
+ /**
1904
+ * @public
1905
+ */
1906
+ export interface RemoveWorkloadResponse {
1907
+ }
1253
1908
  /**
1254
1909
  * @public
1255
1910
  */
1256
1911
  export interface TagResourceRequest {
1257
1912
  /**
1913
+ * @public
1258
1914
  * <p>The Amazon Resource Name (ARN) of the application that you want to add one or more tags
1259
1915
  * to.</p>
1260
1916
  */
1261
1917
  ResourceARN: string | undefined;
1262
1918
  /**
1919
+ * @public
1263
1920
  * <p>A list of tags that to add to the application. A tag consists of a required tag key
1264
1921
  * (<code>Key</code>) and an associated tag value (<code>Value</code>). The maximum length
1265
1922
  * of a tag key is 128 characters. The maximum length of a tag value is 256 characters.</p>
@@ -1281,6 +1938,7 @@ export declare class TooManyTagsException extends __BaseException {
1281
1938
  readonly $fault: "client";
1282
1939
  Message?: string;
1283
1940
  /**
1941
+ * @public
1284
1942
  * <p>The name of the resource with too many tags.</p>
1285
1943
  */
1286
1944
  ResourceName?: string;
@@ -1294,11 +1952,13 @@ export declare class TooManyTagsException extends __BaseException {
1294
1952
  */
1295
1953
  export interface UntagResourceRequest {
1296
1954
  /**
1955
+ * @public
1297
1956
  * <p>The Amazon Resource Name (ARN) of the application that you want to remove one or more
1298
1957
  * tags from.</p>
1299
1958
  */
1300
1959
  ResourceARN: string | undefined;
1301
1960
  /**
1961
+ * @public
1302
1962
  * <p>The tags (tag keys) that you want to remove from the resource. When you specify a tag
1303
1963
  * key, the action removes both that key and its associated tag value.</p>
1304
1964
  * <p>To remove more than one tag from the application, append the <code>TagKeys</code>
@@ -1317,30 +1977,36 @@ export interface UntagResourceResponse {
1317
1977
  */
1318
1978
  export interface UpdateApplicationRequest {
1319
1979
  /**
1980
+ * @public
1320
1981
  * <p>The name of the resource group.</p>
1321
1982
  */
1322
1983
  ResourceGroupName: string | undefined;
1323
1984
  /**
1985
+ * @public
1324
1986
  * <p> When set to <code>true</code>, creates opsItems for any problems detected on an
1325
1987
  * application. </p>
1326
1988
  */
1327
1989
  OpsCenterEnabled?: boolean;
1328
1990
  /**
1991
+ * @public
1329
1992
  * <p> Indicates whether Application Insights can listen to CloudWatch events for the
1330
1993
  * application resources, such as <code>instance terminated</code>, <code>failed
1331
1994
  * deployment</code>, and others. </p>
1332
1995
  */
1333
1996
  CWEMonitorEnabled?: boolean;
1334
1997
  /**
1998
+ * @public
1335
1999
  * <p> The SNS topic provided to Application Insights that is associated to the created
1336
2000
  * opsItem. Allows you to receive notifications for updates to the opsItem.</p>
1337
2001
  */
1338
2002
  OpsItemSNSTopicArn?: string;
1339
2003
  /**
2004
+ * @public
1340
2005
  * <p> Disassociates the SNS topic from the opsItem created for detected problems.</p>
1341
2006
  */
1342
2007
  RemoveSNSTopic?: boolean;
1343
2008
  /**
2009
+ * @public
1344
2010
  * <p> Turns auto-configuration on or off. </p>
1345
2011
  */
1346
2012
  AutoConfigEnabled?: boolean;
@@ -1350,6 +2016,7 @@ export interface UpdateApplicationRequest {
1350
2016
  */
1351
2017
  export interface UpdateApplicationResponse {
1352
2018
  /**
2019
+ * @public
1353
2020
  * <p>Information about the application. </p>
1354
2021
  */
1355
2022
  ApplicationInfo?: ApplicationInfo;
@@ -1359,18 +2026,22 @@ export interface UpdateApplicationResponse {
1359
2026
  */
1360
2027
  export interface UpdateComponentRequest {
1361
2028
  /**
2029
+ * @public
1362
2030
  * <p>The name of the resource group.</p>
1363
2031
  */
1364
2032
  ResourceGroupName: string | undefined;
1365
2033
  /**
2034
+ * @public
1366
2035
  * <p>The name of the component.</p>
1367
2036
  */
1368
2037
  ComponentName: string | undefined;
1369
2038
  /**
2039
+ * @public
1370
2040
  * <p>The new name of the component.</p>
1371
2041
  */
1372
2042
  NewComponentName?: string;
1373
2043
  /**
2044
+ * @public
1374
2045
  * <p>The list of resource ARNs that belong to the component.</p>
1375
2046
  */
1376
2047
  ResourceList?: string[];
@@ -1385,22 +2056,27 @@ export interface UpdateComponentResponse {
1385
2056
  */
1386
2057
  export interface UpdateComponentConfigurationRequest {
1387
2058
  /**
2059
+ * @public
1388
2060
  * <p>The name of the resource group.</p>
1389
2061
  */
1390
2062
  ResourceGroupName: string | undefined;
1391
2063
  /**
2064
+ * @public
1392
2065
  * <p>The name of the component.</p>
1393
2066
  */
1394
2067
  ComponentName: string | undefined;
1395
2068
  /**
2069
+ * @public
1396
2070
  * <p>Indicates whether the application component is monitored.</p>
1397
2071
  */
1398
2072
  Monitor?: boolean;
1399
2073
  /**
2074
+ * @public
1400
2075
  * <p>The tier of the application component.</p>
1401
2076
  */
1402
2077
  Tier?: Tier | string;
1403
2078
  /**
2079
+ * @public
1404
2080
  * <p>The configuration settings of the component. The value is the escaped JSON of the
1405
2081
  * configuration. For more information about the JSON format, see <a href="https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/working-with-json.html">Working with JSON</a>. You can send a request to
1406
2082
  * <code>DescribeComponentConfigurationRecommendation</code> to see the recommended
@@ -1409,6 +2085,7 @@ export interface UpdateComponentConfigurationRequest {
1409
2085
  */
1410
2086
  ComponentConfiguration?: string;
1411
2087
  /**
2088
+ * @public
1412
2089
  * <p> Automatically configures the component by applying the recommended configurations.
1413
2090
  * </p>
1414
2091
  */
@@ -1424,23 +2101,28 @@ export interface UpdateComponentConfigurationResponse {
1424
2101
  */
1425
2102
  export interface UpdateLogPatternRequest {
1426
2103
  /**
2104
+ * @public
1427
2105
  * <p>The name of the resource group.</p>
1428
2106
  */
1429
2107
  ResourceGroupName: string | undefined;
1430
2108
  /**
2109
+ * @public
1431
2110
  * <p>The name of the log pattern set.</p>
1432
2111
  */
1433
2112
  PatternSetName: string | undefined;
1434
2113
  /**
2114
+ * @public
1435
2115
  * <p>The name of the log pattern.</p>
1436
2116
  */
1437
2117
  PatternName: string | undefined;
1438
2118
  /**
2119
+ * @public
1439
2120
  * <p>The log pattern. The pattern must be DFA compatible. Patterns that utilize forward
1440
2121
  * lookahead or backreference constructions are not supported.</p>
1441
2122
  */
1442
2123
  Pattern?: string;
1443
2124
  /**
2125
+ * @public
1444
2126
  * <p>Rank of the log pattern. Must be a value between <code>1</code> and
1445
2127
  * <code>1,000,000</code>. The patterns are sorted by rank, so we recommend that you set
1446
2128
  * your highest priority patterns with the lowest rank. A pattern of rank <code>1</code> will
@@ -1459,11 +2141,92 @@ export interface UpdateLogPatternRequest {
1459
2141
  */
1460
2142
  export interface UpdateLogPatternResponse {
1461
2143
  /**
2144
+ * @public
1462
2145
  * <p>The name of the resource group.</p>
1463
2146
  */
1464
2147
  ResourceGroupName?: string;
1465
2148
  /**
2149
+ * @public
1466
2150
  * <p>The successfully created log pattern.</p>
1467
2151
  */
1468
2152
  LogPattern?: LogPattern;
1469
2153
  }
2154
+ /**
2155
+ * @public
2156
+ * @enum
2157
+ */
2158
+ export declare const UpdateStatus: {
2159
+ readonly RESOLVED: "RESOLVED";
2160
+ };
2161
+ /**
2162
+ * @public
2163
+ */
2164
+ export type UpdateStatus = (typeof UpdateStatus)[keyof typeof UpdateStatus];
2165
+ /**
2166
+ * @public
2167
+ */
2168
+ export interface UpdateProblemRequest {
2169
+ /**
2170
+ * @public
2171
+ * <p>The ID of the problem.</p>
2172
+ */
2173
+ ProblemId: string | undefined;
2174
+ /**
2175
+ * @public
2176
+ * <p>The status of the problem. Arguments can be passed for only problems that show a status
2177
+ * of <code>RECOVERING</code>.</p>
2178
+ */
2179
+ UpdateStatus?: UpdateStatus | string;
2180
+ /**
2181
+ * @public
2182
+ * <p>The visibility of a problem. When you pass a value of <code>IGNORED</code>, the problem
2183
+ * is removed from the default view, and all notifications for the problem are suspended. When
2184
+ * <code>VISIBLE</code> is passed, the <code>IGNORED</code> action is reversed.</p>
2185
+ */
2186
+ Visibility?: Visibility | string;
2187
+ }
2188
+ /**
2189
+ * @public
2190
+ */
2191
+ export interface UpdateProblemResponse {
2192
+ }
2193
+ /**
2194
+ * @public
2195
+ */
2196
+ export interface UpdateWorkloadRequest {
2197
+ /**
2198
+ * @public
2199
+ * <p>The name of the resource group.</p>
2200
+ */
2201
+ ResourceGroupName: string | undefined;
2202
+ /**
2203
+ * @public
2204
+ * <p> The name of the component. </p>
2205
+ */
2206
+ ComponentName: string | undefined;
2207
+ /**
2208
+ * @public
2209
+ * <p>The ID of the workload.</p>
2210
+ */
2211
+ WorkloadId?: string;
2212
+ /**
2213
+ * @public
2214
+ * <p>The configuration settings of the workload. The value is the escaped JSON of the configuration.</p>
2215
+ */
2216
+ WorkloadConfiguration: WorkloadConfiguration | undefined;
2217
+ }
2218
+ /**
2219
+ * @public
2220
+ */
2221
+ export interface UpdateWorkloadResponse {
2222
+ /**
2223
+ * @public
2224
+ * <p>The ID of the workload.</p>
2225
+ */
2226
+ WorkloadId?: string;
2227
+ /**
2228
+ * @public
2229
+ * <p>The configuration settings of the workload. The value is the escaped JSON of the configuration.</p>
2230
+ */
2231
+ WorkloadConfiguration?: WorkloadConfiguration;
2232
+ }