@aws-sdk/client-devops-guru 3.325.0 → 3.326.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 (32) hide show
  1. package/dist-types/commands/AddNotificationChannelCommand.d.ts +6 -0
  2. package/dist-types/commands/DeleteInsightCommand.d.ts +4 -0
  3. package/dist-types/commands/DescribeAccountHealthCommand.d.ts +10 -0
  4. package/dist-types/commands/DescribeAccountOverviewCommand.d.ts +8 -0
  5. package/dist-types/commands/DescribeAnomalyCommand.d.ts +255 -0
  6. package/dist-types/commands/DescribeEventSourcesConfigCommand.d.ts +10 -0
  7. package/dist-types/commands/DescribeFeedbackCommand.d.ts +9 -0
  8. package/dist-types/commands/DescribeInsightCommand.d.ts +63 -0
  9. package/dist-types/commands/DescribeOrganizationHealthCommand.d.ts +9 -0
  10. package/dist-types/commands/DescribeOrganizationOverviewCommand.d.ts +7 -0
  11. package/dist-types/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +48 -0
  12. package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +39 -0
  13. package/dist-types/commands/DescribeServiceIntegrationCommand.d.ts +13 -0
  14. package/dist-types/commands/GetCostEstimationCommand.d.ts +36 -0
  15. package/dist-types/commands/GetResourceCollectionCommand.d.ts +21 -0
  16. package/dist-types/commands/ListAnomaliesForInsightCommand.d.ts +260 -0
  17. package/dist-types/commands/ListAnomalousLogGroupsCommand.d.ts +30 -0
  18. package/dist-types/commands/ListEventsCommand.d.ts +38 -0
  19. package/dist-types/commands/ListInsightsCommand.d.ts +80 -0
  20. package/dist-types/commands/ListMonitoredResourcesCommand.d.ts +29 -0
  21. package/dist-types/commands/ListNotificationChannelsCommand.d.ts +24 -0
  22. package/dist-types/commands/ListOrganizationInsightsCommand.d.ts +78 -0
  23. package/dist-types/commands/ListRecommendationsCommand.d.ts +47 -0
  24. package/dist-types/commands/PutFeedbackCommand.d.ts +4 -0
  25. package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +4 -0
  26. package/dist-types/commands/SearchInsightsCommand.d.ts +80 -0
  27. package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +80 -0
  28. package/dist-types/commands/StartCostEstimationCommand.d.ts +4 -0
  29. package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +4 -0
  30. package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +4 -0
  31. package/dist-types/commands/UpdateServiceIntegrationCommand.d.ts +4 -0
  32. package/package.json +3 -3
@@ -52,6 +52,10 @@ export interface AddNotificationChannelCommandOutput extends AddNotificationChan
52
52
  * };
53
53
  * const command = new AddNotificationChannelCommand(input);
54
54
  * const response = await client.send(command);
55
+ * // { // AddNotificationChannelResponse
56
+ * // Id: "STRING_VALUE", // required
57
+ * // };
58
+ *
55
59
  * ```
56
60
  *
57
61
  * @param AddNotificationChannelCommandInput - {@link AddNotificationChannelCommandInput}
@@ -85,6 +89,8 @@ export interface AddNotificationChannelCommandOutput extends AddNotificationChan
85
89
  * <p> Contains information about data passed in to a field during a request that is not
86
90
  * valid. </p>
87
91
  *
92
+ * @throws {@link DevOpsGuruServiceException}
93
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
88
94
  *
89
95
  */
90
96
  export declare class AddNotificationChannelCommand extends $Command<AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteInsightCommandOutput extends DeleteInsightResponse, __Met
31
31
  * };
32
32
  * const command = new DeleteInsightCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteInsightCommandInput - {@link DeleteInsightCommandInput}
@@ -61,6 +63,8 @@ export interface DeleteInsightCommandOutput extends DeleteInsightResponse, __Met
61
63
  * <p> Contains information about data passed in to a field during a request that is not
62
64
  * valid. </p>
63
65
  *
66
+ * @throws {@link DevOpsGuruServiceException}
67
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
64
68
  *
65
69
  */
66
70
  export declare class DeleteInsightCommand extends $Command<DeleteInsightCommandInput, DeleteInsightCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -31,6 +31,14 @@ export interface DescribeAccountHealthCommandOutput extends DescribeAccountHealt
31
31
  * const input = {};
32
32
  * const command = new DescribeAccountHealthCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeAccountHealthResponse
35
+ * // OpenReactiveInsights: Number("int"), // required
36
+ * // OpenProactiveInsights: Number("int"), // required
37
+ * // MetricsAnalyzed: Number("int"), // required
38
+ * // ResourceHours: Number("long"), // required
39
+ * // AnalyzedResourceCount: Number("long"),
40
+ * // };
41
+ *
34
42
  * ```
35
43
  *
36
44
  * @param DescribeAccountHealthCommandInput - {@link DescribeAccountHealthCommandInput}
@@ -55,6 +63,8 @@ export interface DescribeAccountHealthCommandOutput extends DescribeAccountHealt
55
63
  * <p> Contains information about data passed in to a field during a request that is not
56
64
  * valid. </p>
57
65
  *
66
+ * @throws {@link DevOpsGuruServiceException}
67
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
58
68
  *
59
69
  */
60
70
  export declare class DescribeAccountHealthCommand extends $Command<DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -34,6 +34,12 @@ export interface DescribeAccountOverviewCommandOutput extends DescribeAccountOve
34
34
  * };
35
35
  * const command = new DescribeAccountOverviewCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeAccountOverviewResponse
38
+ * // ReactiveInsights: Number("int"), // required
39
+ * // ProactiveInsights: Number("int"), // required
40
+ * // MeanTimeToRecoverInMilliseconds: Number("long"), // required
41
+ * // };
42
+ *
37
43
  * ```
38
44
  *
39
45
  * @param DescribeAccountOverviewCommandInput - {@link DescribeAccountOverviewCommandInput}
@@ -58,6 +64,8 @@ export interface DescribeAccountOverviewCommandOutput extends DescribeAccountOve
58
64
  * <p> Contains information about data passed in to a field during a request that is not
59
65
  * valid. </p>
60
66
  *
67
+ * @throws {@link DevOpsGuruServiceException}
68
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
61
69
  *
62
70
  */
63
71
  export declare class DescribeAccountOverviewCommand extends $Command<DescribeAccountOverviewCommandInput, DescribeAccountOverviewCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -32,6 +32,259 @@ export interface DescribeAnomalyCommandOutput extends DescribeAnomalyResponse, _
32
32
  * };
33
33
  * const command = new DescribeAnomalyCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeAnomalyResponse
36
+ * // ProactiveAnomaly: { // ProactiveAnomaly
37
+ * // Id: "STRING_VALUE",
38
+ * // Severity: "LOW" || "MEDIUM" || "HIGH",
39
+ * // Status: "ONGOING" || "CLOSED",
40
+ * // UpdateTime: new Date("TIMESTAMP"),
41
+ * // AnomalyTimeRange: { // AnomalyTimeRange
42
+ * // StartTime: new Date("TIMESTAMP"), // required
43
+ * // EndTime: new Date("TIMESTAMP"),
44
+ * // },
45
+ * // AnomalyReportedTimeRange: { // AnomalyReportedTimeRange
46
+ * // OpenTime: new Date("TIMESTAMP"), // required
47
+ * // CloseTime: new Date("TIMESTAMP"),
48
+ * // },
49
+ * // PredictionTimeRange: { // PredictionTimeRange
50
+ * // StartTime: new Date("TIMESTAMP"), // required
51
+ * // EndTime: new Date("TIMESTAMP"),
52
+ * // },
53
+ * // SourceDetails: { // AnomalySourceDetails
54
+ * // CloudWatchMetrics: [ // CloudWatchMetricsDetails
55
+ * // { // CloudWatchMetricsDetail
56
+ * // MetricName: "STRING_VALUE",
57
+ * // Namespace: "STRING_VALUE",
58
+ * // Dimensions: [ // CloudWatchMetricsDimensions
59
+ * // { // CloudWatchMetricsDimension
60
+ * // Name: "STRING_VALUE",
61
+ * // Value: "STRING_VALUE",
62
+ * // },
63
+ * // ],
64
+ * // Stat: "Sum" || "Average" || "SampleCount" || "Minimum" || "Maximum" || "p99" || "p90" || "p50",
65
+ * // Unit: "STRING_VALUE",
66
+ * // Period: Number("int"),
67
+ * // MetricDataSummary: { // CloudWatchMetricsDataSummary
68
+ * // TimestampMetricValuePairList: [ // TimestampMetricValuePairList
69
+ * // { // TimestampMetricValuePair
70
+ * // Timestamp: new Date("TIMESTAMP"),
71
+ * // MetricValue: Number("double"),
72
+ * // },
73
+ * // ],
74
+ * // StatusCode: "Complete" || "InternalError" || "PartialData",
75
+ * // },
76
+ * // },
77
+ * // ],
78
+ * // PerformanceInsightsMetrics: [ // PerformanceInsightsMetricsDetails
79
+ * // { // PerformanceInsightsMetricsDetail
80
+ * // MetricDisplayName: "STRING_VALUE",
81
+ * // Unit: "STRING_VALUE",
82
+ * // MetricQuery: { // PerformanceInsightsMetricQuery
83
+ * // Metric: "STRING_VALUE",
84
+ * // GroupBy: { // PerformanceInsightsMetricDimensionGroup
85
+ * // Group: "STRING_VALUE",
86
+ * // Dimensions: [ // PerformanceInsightsMetricDimensions
87
+ * // "STRING_VALUE",
88
+ * // ],
89
+ * // Limit: Number("int"),
90
+ * // },
91
+ * // Filter: { // PerformanceInsightsMetricFilterMap
92
+ * // "<keys>": "STRING_VALUE",
93
+ * // },
94
+ * // },
95
+ * // ReferenceData: [ // PerformanceInsightsReferenceDataList
96
+ * // { // PerformanceInsightsReferenceData
97
+ * // Name: "STRING_VALUE",
98
+ * // ComparisonValues: { // PerformanceInsightsReferenceComparisonValues
99
+ * // ReferenceScalar: { // PerformanceInsightsReferenceScalar
100
+ * // Value: Number("double"),
101
+ * // },
102
+ * // ReferenceMetric: { // PerformanceInsightsReferenceMetric
103
+ * // MetricQuery: {
104
+ * // Metric: "STRING_VALUE",
105
+ * // GroupBy: {
106
+ * // Group: "STRING_VALUE",
107
+ * // Dimensions: [
108
+ * // "STRING_VALUE",
109
+ * // ],
110
+ * // Limit: Number("int"),
111
+ * // },
112
+ * // Filter: {
113
+ * // "<keys>": "STRING_VALUE",
114
+ * // },
115
+ * // },
116
+ * // },
117
+ * // },
118
+ * // },
119
+ * // ],
120
+ * // StatsAtAnomaly: [ // PerformanceInsightsStats
121
+ * // { // PerformanceInsightsStat
122
+ * // Type: "STRING_VALUE",
123
+ * // Value: Number("double"),
124
+ * // },
125
+ * // ],
126
+ * // StatsAtBaseline: [
127
+ * // {
128
+ * // Type: "STRING_VALUE",
129
+ * // Value: Number("double"),
130
+ * // },
131
+ * // ],
132
+ * // },
133
+ * // ],
134
+ * // },
135
+ * // AssociatedInsightId: "STRING_VALUE",
136
+ * // ResourceCollection: { // ResourceCollection
137
+ * // CloudFormation: { // CloudFormationCollection
138
+ * // StackNames: [ // StackNames
139
+ * // "STRING_VALUE",
140
+ * // ],
141
+ * // },
142
+ * // Tags: [ // TagCollections
143
+ * // { // TagCollection
144
+ * // AppBoundaryKey: "STRING_VALUE", // required
145
+ * // TagValues: [ // TagValues // required
146
+ * // "STRING_VALUE",
147
+ * // ],
148
+ * // },
149
+ * // ],
150
+ * // },
151
+ * // Limit: Number("double"),
152
+ * // SourceMetadata: { // AnomalySourceMetadata
153
+ * // Source: "STRING_VALUE",
154
+ * // SourceResourceName: "STRING_VALUE",
155
+ * // SourceResourceType: "STRING_VALUE",
156
+ * // },
157
+ * // AnomalyResources: [ // AnomalyResources
158
+ * // { // AnomalyResource
159
+ * // Name: "STRING_VALUE",
160
+ * // Type: "STRING_VALUE",
161
+ * // },
162
+ * // ],
163
+ * // Description: "STRING_VALUE",
164
+ * // },
165
+ * // ReactiveAnomaly: { // ReactiveAnomaly
166
+ * // Id: "STRING_VALUE",
167
+ * // Severity: "LOW" || "MEDIUM" || "HIGH",
168
+ * // Status: "ONGOING" || "CLOSED",
169
+ * // AnomalyTimeRange: {
170
+ * // StartTime: new Date("TIMESTAMP"), // required
171
+ * // EndTime: new Date("TIMESTAMP"),
172
+ * // },
173
+ * // AnomalyReportedTimeRange: {
174
+ * // OpenTime: new Date("TIMESTAMP"), // required
175
+ * // CloseTime: new Date("TIMESTAMP"),
176
+ * // },
177
+ * // SourceDetails: {
178
+ * // CloudWatchMetrics: [
179
+ * // {
180
+ * // MetricName: "STRING_VALUE",
181
+ * // Namespace: "STRING_VALUE",
182
+ * // Dimensions: [
183
+ * // {
184
+ * // Name: "STRING_VALUE",
185
+ * // Value: "STRING_VALUE",
186
+ * // },
187
+ * // ],
188
+ * // Stat: "Sum" || "Average" || "SampleCount" || "Minimum" || "Maximum" || "p99" || "p90" || "p50",
189
+ * // Unit: "STRING_VALUE",
190
+ * // Period: Number("int"),
191
+ * // MetricDataSummary: {
192
+ * // TimestampMetricValuePairList: [
193
+ * // {
194
+ * // Timestamp: new Date("TIMESTAMP"),
195
+ * // MetricValue: Number("double"),
196
+ * // },
197
+ * // ],
198
+ * // StatusCode: "Complete" || "InternalError" || "PartialData",
199
+ * // },
200
+ * // },
201
+ * // ],
202
+ * // PerformanceInsightsMetrics: [
203
+ * // {
204
+ * // MetricDisplayName: "STRING_VALUE",
205
+ * // Unit: "STRING_VALUE",
206
+ * // MetricQuery: {
207
+ * // Metric: "STRING_VALUE",
208
+ * // GroupBy: {
209
+ * // Group: "STRING_VALUE",
210
+ * // Dimensions: [
211
+ * // "STRING_VALUE",
212
+ * // ],
213
+ * // Limit: Number("int"),
214
+ * // },
215
+ * // Filter: {
216
+ * // "<keys>": "STRING_VALUE",
217
+ * // },
218
+ * // },
219
+ * // ReferenceData: [
220
+ * // {
221
+ * // Name: "STRING_VALUE",
222
+ * // ComparisonValues: {
223
+ * // ReferenceScalar: {
224
+ * // Value: Number("double"),
225
+ * // },
226
+ * // ReferenceMetric: {
227
+ * // MetricQuery: {
228
+ * // Metric: "STRING_VALUE",
229
+ * // GroupBy: {
230
+ * // Group: "STRING_VALUE",
231
+ * // Dimensions: [
232
+ * // "STRING_VALUE",
233
+ * // ],
234
+ * // Limit: Number("int"),
235
+ * // },
236
+ * // Filter: {
237
+ * // "<keys>": "STRING_VALUE",
238
+ * // },
239
+ * // },
240
+ * // },
241
+ * // },
242
+ * // },
243
+ * // ],
244
+ * // StatsAtAnomaly: [
245
+ * // {
246
+ * // Type: "STRING_VALUE",
247
+ * // Value: Number("double"),
248
+ * // },
249
+ * // ],
250
+ * // StatsAtBaseline: [
251
+ * // {
252
+ * // Type: "STRING_VALUE",
253
+ * // Value: Number("double"),
254
+ * // },
255
+ * // ],
256
+ * // },
257
+ * // ],
258
+ * // },
259
+ * // AssociatedInsightId: "STRING_VALUE",
260
+ * // ResourceCollection: {
261
+ * // CloudFormation: {
262
+ * // StackNames: [
263
+ * // "STRING_VALUE",
264
+ * // ],
265
+ * // },
266
+ * // Tags: [
267
+ * // {
268
+ * // AppBoundaryKey: "STRING_VALUE", // required
269
+ * // TagValues: [ // required
270
+ * // "STRING_VALUE",
271
+ * // ],
272
+ * // },
273
+ * // ],
274
+ * // },
275
+ * // Type: "CAUSAL" || "CONTEXTUAL",
276
+ * // Name: "STRING_VALUE",
277
+ * // Description: "STRING_VALUE",
278
+ * // CausalAnomalyId: "STRING_VALUE",
279
+ * // AnomalyResources: [
280
+ * // {
281
+ * // Name: "STRING_VALUE",
282
+ * // Type: "STRING_VALUE",
283
+ * // },
284
+ * // ],
285
+ * // },
286
+ * // };
287
+ *
35
288
  * ```
36
289
  *
37
290
  * @param DescribeAnomalyCommandInput - {@link DescribeAnomalyCommandInput}
@@ -59,6 +312,8 @@ export interface DescribeAnomalyCommandOutput extends DescribeAnomalyResponse, _
59
312
  * <p> Contains information about data passed in to a field during a request that is not
60
313
  * valid. </p>
61
314
  *
315
+ * @throws {@link DevOpsGuruServiceException}
316
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
62
317
  *
63
318
  */
64
319
  export declare class DescribeAnomalyCommand extends $Command<DescribeAnomalyCommandInput, DescribeAnomalyCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -32,6 +32,14 @@ export interface DescribeEventSourcesConfigCommandOutput extends DescribeEventSo
32
32
  * const input = {};
33
33
  * const command = new DescribeEventSourcesConfigCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeEventSourcesConfigResponse
36
+ * // EventSources: { // EventSourcesConfig
37
+ * // AmazonCodeGuruProfiler: { // AmazonCodeGuruProfilerIntegration
38
+ * // Status: "ENABLED" || "DISABLED",
39
+ * // },
40
+ * // },
41
+ * // };
42
+ *
35
43
  * ```
36
44
  *
37
45
  * @param DescribeEventSourcesConfigCommandInput - {@link DescribeEventSourcesConfigCommandInput}
@@ -56,6 +64,8 @@ export interface DescribeEventSourcesConfigCommandOutput extends DescribeEventSo
56
64
  * <p> Contains information about data passed in to a field during a request that is not
57
65
  * valid. </p>
58
66
  *
67
+ * @throws {@link DevOpsGuruServiceException}
68
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
59
69
  *
60
70
  */
61
71
  export declare class DescribeEventSourcesConfigCommand extends $Command<DescribeEventSourcesConfigCommandInput, DescribeEventSourcesConfigCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -32,6 +32,13 @@ export interface DescribeFeedbackCommandOutput extends DescribeFeedbackResponse,
32
32
  * };
33
33
  * const command = new DescribeFeedbackCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeFeedbackResponse
36
+ * // InsightFeedback: { // InsightFeedback
37
+ * // Id: "STRING_VALUE",
38
+ * // Feedback: "VALID_COLLECTION" || "RECOMMENDATION_USEFUL" || "ALERT_TOO_SENSITIVE" || "DATA_NOISY_ANOMALY" || "DATA_INCORRECT",
39
+ * // },
40
+ * // };
41
+ *
35
42
  * ```
36
43
  *
37
44
  * @param DescribeFeedbackCommandInput - {@link DescribeFeedbackCommandInput}
@@ -59,6 +66,8 @@ export interface DescribeFeedbackCommandOutput extends DescribeFeedbackResponse,
59
66
  * <p> Contains information about data passed in to a field during a request that is not
60
67
  * valid. </p>
61
68
  *
69
+ * @throws {@link DevOpsGuruServiceException}
70
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
62
71
  *
63
72
  */
64
73
  export declare class DescribeFeedbackCommand extends $Command<DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -32,6 +32,67 @@ export interface DescribeInsightCommandOutput extends DescribeInsightResponse, _
32
32
  * };
33
33
  * const command = new DescribeInsightCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeInsightResponse
36
+ * // ProactiveInsight: { // ProactiveInsight
37
+ * // Id: "STRING_VALUE",
38
+ * // Name: "STRING_VALUE",
39
+ * // Severity: "LOW" || "MEDIUM" || "HIGH",
40
+ * // Status: "ONGOING" || "CLOSED",
41
+ * // InsightTimeRange: { // InsightTimeRange
42
+ * // StartTime: new Date("TIMESTAMP"), // required
43
+ * // EndTime: new Date("TIMESTAMP"),
44
+ * // },
45
+ * // PredictionTimeRange: { // PredictionTimeRange
46
+ * // StartTime: new Date("TIMESTAMP"), // required
47
+ * // EndTime: new Date("TIMESTAMP"),
48
+ * // },
49
+ * // ResourceCollection: { // ResourceCollection
50
+ * // CloudFormation: { // CloudFormationCollection
51
+ * // StackNames: [ // StackNames
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // },
55
+ * // Tags: [ // TagCollections
56
+ * // { // TagCollection
57
+ * // AppBoundaryKey: "STRING_VALUE", // required
58
+ * // TagValues: [ // TagValues // required
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // },
62
+ * // ],
63
+ * // },
64
+ * // SsmOpsItemId: "STRING_VALUE",
65
+ * // Description: "STRING_VALUE",
66
+ * // },
67
+ * // ReactiveInsight: { // ReactiveInsight
68
+ * // Id: "STRING_VALUE",
69
+ * // Name: "STRING_VALUE",
70
+ * // Severity: "LOW" || "MEDIUM" || "HIGH",
71
+ * // Status: "ONGOING" || "CLOSED",
72
+ * // InsightTimeRange: {
73
+ * // StartTime: new Date("TIMESTAMP"), // required
74
+ * // EndTime: new Date("TIMESTAMP"),
75
+ * // },
76
+ * // ResourceCollection: {
77
+ * // CloudFormation: {
78
+ * // StackNames: [
79
+ * // "STRING_VALUE",
80
+ * // ],
81
+ * // },
82
+ * // Tags: [
83
+ * // {
84
+ * // AppBoundaryKey: "STRING_VALUE", // required
85
+ * // TagValues: [ // required
86
+ * // "STRING_VALUE",
87
+ * // ],
88
+ * // },
89
+ * // ],
90
+ * // },
91
+ * // SsmOpsItemId: "STRING_VALUE",
92
+ * // Description: "STRING_VALUE",
93
+ * // },
94
+ * // };
95
+ *
35
96
  * ```
36
97
  *
37
98
  * @param DescribeInsightCommandInput - {@link DescribeInsightCommandInput}
@@ -59,6 +120,8 @@ export interface DescribeInsightCommandOutput extends DescribeInsightResponse, _
59
120
  * <p> Contains information about data passed in to a field during a request that is not
60
121
  * valid. </p>
61
122
  *
123
+ * @throws {@link DevOpsGuruServiceException}
124
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
62
125
  *
63
126
  */
64
127
  export declare class DescribeInsightCommand extends $Command<DescribeInsightCommandInput, DescribeInsightCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -37,6 +37,13 @@ export interface DescribeOrganizationHealthCommandOutput extends DescribeOrganiz
37
37
  * };
38
38
  * const command = new DescribeOrganizationHealthCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // DescribeOrganizationHealthResponse
41
+ * // OpenReactiveInsights: Number("int"), // required
42
+ * // OpenProactiveInsights: Number("int"), // required
43
+ * // MetricsAnalyzed: Number("int"), // required
44
+ * // ResourceHours: Number("long"), // required
45
+ * // };
46
+ *
40
47
  * ```
41
48
  *
42
49
  * @param DescribeOrganizationHealthCommandInput - {@link DescribeOrganizationHealthCommandInput}
@@ -61,6 +68,8 @@ export interface DescribeOrganizationHealthCommandOutput extends DescribeOrganiz
61
68
  * <p> Contains information about data passed in to a field during a request that is not
62
69
  * valid. </p>
63
70
  *
71
+ * @throws {@link DevOpsGuruServiceException}
72
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
64
73
  *
65
74
  */
66
75
  export declare class DescribeOrganizationHealthCommand extends $Command<DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -39,6 +39,11 @@ export interface DescribeOrganizationOverviewCommandOutput extends DescribeOrgan
39
39
  * };
40
40
  * const command = new DescribeOrganizationOverviewCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // DescribeOrganizationOverviewResponse
43
+ * // ReactiveInsights: Number("int"), // required
44
+ * // ProactiveInsights: Number("int"), // required
45
+ * // };
46
+ *
42
47
  * ```
43
48
  *
44
49
  * @param DescribeOrganizationOverviewCommandInput - {@link DescribeOrganizationOverviewCommandInput}
@@ -63,6 +68,8 @@ export interface DescribeOrganizationOverviewCommandOutput extends DescribeOrgan
63
68
  * <p> Contains information about data passed in to a field during a request that is not
64
69
  * valid. </p>
65
70
  *
71
+ * @throws {@link DevOpsGuruServiceException}
72
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
66
73
  *
67
74
  */
68
75
  export declare class DescribeOrganizationOverviewCommand extends $Command<DescribeOrganizationOverviewCommandInput, DescribeOrganizationOverviewCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -41,6 +41,52 @@ export interface DescribeOrganizationResourceCollectionHealthCommandOutput exten
41
41
  * };
42
42
  * const command = new DescribeOrganizationResourceCollectionHealthCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // DescribeOrganizationResourceCollectionHealthResponse
45
+ * // CloudFormation: [ // CloudFormationHealths
46
+ * // { // CloudFormationHealth
47
+ * // StackName: "STRING_VALUE",
48
+ * // Insight: { // InsightHealth
49
+ * // OpenProactiveInsights: Number("int"),
50
+ * // OpenReactiveInsights: Number("int"),
51
+ * // MeanTimeToRecoverInMilliseconds: Number("long"),
52
+ * // },
53
+ * // AnalyzedResourceCount: Number("long"),
54
+ * // },
55
+ * // ],
56
+ * // Service: [ // ServiceHealths
57
+ * // { // ServiceHealth
58
+ * // ServiceName: "API_GATEWAY" || "APPLICATION_ELB" || "AUTO_SCALING_GROUP" || "CLOUD_FRONT" || "DYNAMO_DB" || "EC2" || "ECS" || "EKS" || "ELASTIC_BEANSTALK" || "ELASTI_CACHE" || "ELB" || "ES" || "KINESIS" || "LAMBDA" || "NAT_GATEWAY" || "NETWORK_ELB" || "RDS" || "REDSHIFT" || "ROUTE_53" || "S3" || "SAGE_MAKER" || "SNS" || "SQS" || "STEP_FUNCTIONS" || "SWF",
59
+ * // Insight: { // ServiceInsightHealth
60
+ * // OpenProactiveInsights: Number("int"),
61
+ * // OpenReactiveInsights: Number("int"),
62
+ * // },
63
+ * // AnalyzedResourceCount: Number("long"),
64
+ * // },
65
+ * // ],
66
+ * // Account: [ // AccountHealths
67
+ * // { // AccountHealth
68
+ * // AccountId: "STRING_VALUE",
69
+ * // Insight: { // AccountInsightHealth
70
+ * // OpenProactiveInsights: Number("int"),
71
+ * // OpenReactiveInsights: Number("int"),
72
+ * // },
73
+ * // },
74
+ * // ],
75
+ * // NextToken: "STRING_VALUE",
76
+ * // Tags: [ // TagHealths
77
+ * // { // TagHealth
78
+ * // AppBoundaryKey: "STRING_VALUE",
79
+ * // TagValue: "STRING_VALUE",
80
+ * // Insight: {
81
+ * // OpenProactiveInsights: Number("int"),
82
+ * // OpenReactiveInsights: Number("int"),
83
+ * // MeanTimeToRecoverInMilliseconds: Number("long"),
84
+ * // },
85
+ * // AnalyzedResourceCount: Number("long"),
86
+ * // },
87
+ * // ],
88
+ * // };
89
+ *
44
90
  * ```
45
91
  *
46
92
  * @param DescribeOrganizationResourceCollectionHealthCommandInput - {@link DescribeOrganizationResourceCollectionHealthCommandInput}
@@ -65,6 +111,8 @@ export interface DescribeOrganizationResourceCollectionHealthCommandOutput exten
65
111
  * <p> Contains information about data passed in to a field during a request that is not
66
112
  * valid. </p>
67
113
  *
114
+ * @throws {@link DevOpsGuruServiceException}
115
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
68
116
  *
69
117
  */
70
118
  export declare class DescribeOrganizationResourceCollectionHealthCommand extends $Command<DescribeOrganizationResourceCollectionHealthCommandInput, DescribeOrganizationResourceCollectionHealthCommandOutput, DevOpsGuruClientResolvedConfig> {
@@ -36,6 +36,43 @@ export interface DescribeResourceCollectionHealthCommandOutput extends DescribeR
36
36
  * };
37
37
  * const command = new DescribeResourceCollectionHealthCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // DescribeResourceCollectionHealthResponse
40
+ * // CloudFormation: [ // CloudFormationHealths
41
+ * // { // CloudFormationHealth
42
+ * // StackName: "STRING_VALUE",
43
+ * // Insight: { // InsightHealth
44
+ * // OpenProactiveInsights: Number("int"),
45
+ * // OpenReactiveInsights: Number("int"),
46
+ * // MeanTimeToRecoverInMilliseconds: Number("long"),
47
+ * // },
48
+ * // AnalyzedResourceCount: Number("long"),
49
+ * // },
50
+ * // ],
51
+ * // Service: [ // ServiceHealths
52
+ * // { // ServiceHealth
53
+ * // ServiceName: "API_GATEWAY" || "APPLICATION_ELB" || "AUTO_SCALING_GROUP" || "CLOUD_FRONT" || "DYNAMO_DB" || "EC2" || "ECS" || "EKS" || "ELASTIC_BEANSTALK" || "ELASTI_CACHE" || "ELB" || "ES" || "KINESIS" || "LAMBDA" || "NAT_GATEWAY" || "NETWORK_ELB" || "RDS" || "REDSHIFT" || "ROUTE_53" || "S3" || "SAGE_MAKER" || "SNS" || "SQS" || "STEP_FUNCTIONS" || "SWF",
54
+ * // Insight: { // ServiceInsightHealth
55
+ * // OpenProactiveInsights: Number("int"),
56
+ * // OpenReactiveInsights: Number("int"),
57
+ * // },
58
+ * // AnalyzedResourceCount: Number("long"),
59
+ * // },
60
+ * // ],
61
+ * // NextToken: "STRING_VALUE",
62
+ * // Tags: [ // TagHealths
63
+ * // { // TagHealth
64
+ * // AppBoundaryKey: "STRING_VALUE",
65
+ * // TagValue: "STRING_VALUE",
66
+ * // Insight: {
67
+ * // OpenProactiveInsights: Number("int"),
68
+ * // OpenReactiveInsights: Number("int"),
69
+ * // MeanTimeToRecoverInMilliseconds: Number("long"),
70
+ * // },
71
+ * // AnalyzedResourceCount: Number("long"),
72
+ * // },
73
+ * // ],
74
+ * // };
75
+ *
39
76
  * ```
40
77
  *
41
78
  * @param DescribeResourceCollectionHealthCommandInput - {@link DescribeResourceCollectionHealthCommandInput}
@@ -60,6 +97,8 @@ export interface DescribeResourceCollectionHealthCommandOutput extends DescribeR
60
97
  * <p> Contains information about data passed in to a field during a request that is not
61
98
  * valid. </p>
62
99
  *
100
+ * @throws {@link DevOpsGuruServiceException}
101
+ * <p>Base exception class for all service exceptions from DevOpsGuru service.</p>
63
102
  *
64
103
  */
65
104
  export declare class DescribeResourceCollectionHealthCommand extends $Command<DescribeResourceCollectionHealthCommandInput, DescribeResourceCollectionHealthCommandOutput, DevOpsGuruClientResolvedConfig> {