@aws-sdk/client-devops-guru 3.296.0 → 3.297.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/DevOpsGuru.d.ts +32 -0
- package/dist-types/DevOpsGuruClient.d.ts +24 -4
- package/dist-types/commands/AddNotificationChannelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInsightCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountHealthCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAccountOverviewCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAnomalyCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEventSourcesConfigCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFeedbackCommand.d.ts +16 -0
- package/dist-types/commands/DescribeInsightCommand.d.ts +16 -0
- package/dist-types/commands/DescribeOrganizationHealthCommand.d.ts +16 -0
- package/dist-types/commands/DescribeOrganizationOverviewCommand.d.ts +16 -0
- package/dist-types/commands/DescribeOrganizationResourceCollectionHealthCommand.d.ts +16 -0
- package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServiceIntegrationCommand.d.ts +16 -0
- package/dist-types/commands/GetCostEstimationCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceCollectionCommand.d.ts +16 -0
- package/dist-types/commands/ListAnomaliesForInsightCommand.d.ts +16 -0
- package/dist-types/commands/ListAnomalousLogGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListEventsCommand.d.ts +16 -0
- package/dist-types/commands/ListInsightsCommand.d.ts +16 -0
- package/dist-types/commands/ListMonitoredResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListNotificationChannelsCommand.d.ts +16 -0
- package/dist-types/commands/ListOrganizationInsightsCommand.d.ts +16 -0
- package/dist-types/commands/ListRecommendationsCommand.d.ts +16 -0
- package/dist-types/commands/PutFeedbackCommand.d.ts +16 -0
- package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +16 -0
- package/dist-types/commands/SearchInsightsCommand.d.ts +16 -0
- package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +16 -0
- package/dist-types/commands/StartCostEstimationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceIntegrationCommand.d.ts +16 -0
- package/dist-types/models/DevOpsGuruServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +358 -0
- package/dist-types/pagination/DescribeOrganizationResourceCollectionHealthPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeResourceCollectionHealthPaginator.d.ts +3 -0
- package/dist-types/pagination/GetCostEstimationPaginator.d.ts +3 -0
- package/dist-types/pagination/GetResourceCollectionPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAnomaliesForInsightPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAnomalousLogGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEventsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListInsightsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMonitoredResourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNotificationChannelsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOrganizationInsightsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRecommendationsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchInsightsPaginator.d.ts +3 -0
- package/dist-types/pagination/SearchOrganizationInsightsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { DescribeFeedbackRequest, DescribeFeedbackResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeFeedbackCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeFeedbackCommandInput extends DescribeFeedbackRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeFeedbackCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeFeedbackCommandOutput extends DescribeFeedbackResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns the most recent feedback submitted in the current Amazon Web Services account and Region.
|
|
18
23
|
* </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeFeedbackCommandOutput extends DescribeFeedbackResponse,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeFeedbackCommandInput - {@link DescribeFeedbackCommandInput}
|
|
35
|
+
* @returns {@link DescribeFeedbackCommandOutput}
|
|
29
36
|
* @see {@link DescribeFeedbackCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeFeedbackCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DescribeFeedbackCommandOutput extends DescribeFeedbackResponse,
|
|
|
54
61
|
export declare class DescribeFeedbackCommand extends $Command<DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
55
62
|
readonly input: DescribeFeedbackCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DescribeFeedbackCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { DescribeInsightRequest, DescribeInsightResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeInsightCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeInsightCommandInput extends DescribeInsightRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeInsightCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeInsightCommandOutput extends DescribeInsightResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns details about an insight that you specify using its ID. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeInsightCommandOutput extends DescribeInsightResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeInsightCommandInput - {@link DescribeInsightCommandInput}
|
|
34
|
+
* @returns {@link DescribeInsightCommandOutput}
|
|
28
35
|
* @see {@link DescribeInsightCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeInsightCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DescribeInsightCommandOutput extends DescribeInsightResponse, _
|
|
|
53
60
|
export declare class DescribeInsightCommand extends $Command<DescribeInsightCommandInput, DescribeInsightCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
54
61
|
readonly input: DescribeInsightCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DescribeInsightCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeInsightCommandInput, DescribeInsightCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { DescribeOrganizationHealthRequest, DescribeOrganizationHealthResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeOrganizationHealthCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeOrganizationHealthCommandInput extends DescribeOrganizationHealthRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeOrganizationHealthCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeOrganizationHealthCommandOutput extends DescribeOrganizationHealthResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns active insights, predictive insights, and resource hours analyzed in last
|
|
18
23
|
* hour.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeOrganizationHealthCommandOutput extends DescribeOrganiz
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeOrganizationHealthCommandInput - {@link DescribeOrganizationHealthCommandInput}
|
|
35
|
+
* @returns {@link DescribeOrganizationHealthCommandOutput}
|
|
29
36
|
* @see {@link DescribeOrganizationHealthCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeOrganizationHealthCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribeOrganizationHealthCommandOutput extends DescribeOrganiz
|
|
|
51
58
|
export declare class DescribeOrganizationHealthCommand extends $Command<DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribeOrganizationHealthCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribeOrganizationHealthCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { DescribeOrganizationOverviewRequest, DescribeOrganizationOverviewResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeOrganizationOverviewCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeOrganizationOverviewCommandInput extends DescribeOrganizationOverviewRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeOrganizationOverviewCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeOrganizationOverviewCommandOutput extends DescribeOrganizationOverviewResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns an overview of your organization's history based on the specified time range.
|
|
18
23
|
* The overview includes the total reactive and proactive insights.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeOrganizationOverviewCommandOutput extends DescribeOrgan
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeOrganizationOverviewCommandInput - {@link DescribeOrganizationOverviewCommandInput}
|
|
35
|
+
* @returns {@link DescribeOrganizationOverviewCommandOutput}
|
|
29
36
|
* @see {@link DescribeOrganizationOverviewCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeOrganizationOverviewCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DescribeOrganizationOverviewCommandOutput extends DescribeOrgan
|
|
|
51
58
|
export declare class DescribeOrganizationOverviewCommand extends $Command<DescribeOrganizationOverviewCommandInput, DescribeOrganizationOverviewCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
52
59
|
readonly input: DescribeOrganizationOverviewCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DescribeOrganizationOverviewCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOrganizationOverviewCommandInput, DescribeOrganizationOverviewCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { DescribeOrganizationResourceCollectionHealthRequest, DescribeOrganizationResourceCollectionHealthResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeOrganizationResourceCollectionHealthCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeOrganizationResourceCollectionHealthCommandInput extends DescribeOrganizationResourceCollectionHealthRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeOrganizationResourceCollectionHealthCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeOrganizationResourceCollectionHealthCommandOutput extends DescribeOrganizationResourceCollectionHealthResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides an overview of your system's health. If additional member accounts are part
|
|
18
23
|
* of your organization, you can filter those accounts using the <code>AccountIds</code>
|
|
19
24
|
* field.</p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeOrganizationResourceCollectionHealthCommandOutput exten
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeOrganizationResourceCollectionHealthCommandInput - {@link DescribeOrganizationResourceCollectionHealthCommandInput}
|
|
36
|
+
* @returns {@link DescribeOrganizationResourceCollectionHealthCommandOutput}
|
|
30
37
|
* @see {@link DescribeOrganizationResourceCollectionHealthCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeOrganizationResourceCollectionHealthCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DescribeOrganizationResourceCollectionHealthCommandOutput exten
|
|
|
52
59
|
export declare class DescribeOrganizationResourceCollectionHealthCommand extends $Command<DescribeOrganizationResourceCollectionHealthCommandInput, DescribeOrganizationResourceCollectionHealthCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
53
60
|
readonly input: DescribeOrganizationResourceCollectionHealthCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DescribeOrganizationResourceCollectionHealthCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOrganizationResourceCollectionHealthCommandInput, DescribeOrganizationResourceCollectionHealthCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { DescribeResourceCollectionHealthRequest, DescribeResourceCollectionHealthResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeResourceCollectionHealthCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeResourceCollectionHealthCommandInput extends DescribeResourceCollectionHealthRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeResourceCollectionHealthCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeResourceCollectionHealthCommandOutput extends DescribeResourceCollectionHealthResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns the number of open proactive insights, open reactive insights, and the Mean Time to Recover (MTTR)
|
|
18
23
|
* for all closed insights in resource collections in your account. You specify the type of
|
|
19
24
|
* Amazon Web Services resources collection. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
@@ -29,6 +34,8 @@ export interface DescribeResourceCollectionHealthCommandOutput extends DescribeR
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DescribeResourceCollectionHealthCommandInput - {@link DescribeResourceCollectionHealthCommandInput}
|
|
38
|
+
* @returns {@link DescribeResourceCollectionHealthCommandOutput}
|
|
32
39
|
* @see {@link DescribeResourceCollectionHealthCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DescribeResourceCollectionHealthCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DescribeResourceCollectionHealthCommandOutput extends DescribeR
|
|
|
54
61
|
export declare class DescribeResourceCollectionHealthCommand extends $Command<DescribeResourceCollectionHealthCommandInput, DescribeResourceCollectionHealthCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
55
62
|
readonly input: DescribeResourceCollectionHealthCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DescribeResourceCollectionHealthCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeResourceCollectionHealthCommandInput, DescribeResourceCollectionHealthCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { DescribeServiceIntegrationRequest, DescribeServiceIntegrationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeServiceIntegrationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeServiceIntegrationCommandInput extends DescribeServiceIntegrationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeServiceIntegrationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeServiceIntegrationCommandOutput extends DescribeServiceIntegrationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns the integration status of services that are integrated with DevOps Guru.
|
|
18
23
|
* The one service that can be integrated with DevOps Guru
|
|
19
24
|
* is Amazon Web Services Systems Manager, which can be used to create an OpsItem for each generated insight. </p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeServiceIntegrationCommandOutput extends DescribeService
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeServiceIntegrationCommandInput - {@link DescribeServiceIntegrationCommandInput}
|
|
36
|
+
* @returns {@link DescribeServiceIntegrationCommandOutput}
|
|
30
37
|
* @see {@link DescribeServiceIntegrationCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeServiceIntegrationCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DescribeServiceIntegrationCommandOutput extends DescribeService
|
|
|
55
62
|
export declare class DescribeServiceIntegrationCommand extends $Command<DescribeServiceIntegrationCommandInput, DescribeServiceIntegrationCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
56
63
|
readonly input: DescribeServiceIntegrationCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DescribeServiceIntegrationCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeServiceIntegrationCommandInput, DescribeServiceIntegrationCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { GetCostEstimationRequest, GetCostEstimationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetCostEstimationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetCostEstimationCommandInput extends GetCostEstimationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetCostEstimationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetCostEstimationCommandOutput extends GetCostEstimationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns an estimate of the monthly cost for DevOps Guru to analyze your Amazon Web Services resources.
|
|
18
23
|
* For more information,
|
|
19
24
|
* see <a href="https://docs.aws.amazon.com/devops-guru/latest/userguide/cost-estimate.html">Estimate your
|
|
@@ -29,6 +34,8 @@ export interface GetCostEstimationCommandOutput extends GetCostEstimationRespons
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param GetCostEstimationCommandInput - {@link GetCostEstimationCommandInput}
|
|
38
|
+
* @returns {@link GetCostEstimationCommandOutput}
|
|
32
39
|
* @see {@link GetCostEstimationCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link GetCostEstimationCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface GetCostEstimationCommandOutput extends GetCostEstimationRespons
|
|
|
57
64
|
export declare class GetCostEstimationCommand extends $Command<GetCostEstimationCommandInput, GetCostEstimationCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
58
65
|
readonly input: GetCostEstimationCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: GetCostEstimationCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetCostEstimationCommandInput, GetCostEstimationCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { GetResourceCollectionRequest, GetResourceCollectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetResourceCollectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetResourceCollectionCommandInput extends GetResourceCollectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetResourceCollectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetResourceCollectionCommandOutput extends GetResourceCollectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns lists Amazon Web Services resources that are of the specified resource collection type.
|
|
18
23
|
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
19
24
|
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
@@ -28,6 +33,8 @@ export interface GetResourceCollectionCommandOutput extends GetResourceCollectio
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param GetResourceCollectionCommandInput - {@link GetResourceCollectionCommandInput}
|
|
37
|
+
* @returns {@link GetResourceCollectionCommandOutput}
|
|
31
38
|
* @see {@link GetResourceCollectionCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link GetResourceCollectionCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface GetResourceCollectionCommandOutput extends GetResourceCollectio
|
|
|
56
63
|
export declare class GetResourceCollectionCommand extends $Command<GetResourceCollectionCommandInput, GetResourceCollectionCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
57
64
|
readonly input: GetResourceCollectionCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: GetResourceCollectionCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceCollectionCommandInput, GetResourceCollectionCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { ListAnomaliesForInsightRequest, ListAnomaliesForInsightResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAnomaliesForInsightCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAnomaliesForInsightCommandInput extends ListAnomaliesForInsightRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAnomaliesForInsightCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAnomaliesForInsightCommandOutput extends ListAnomaliesForInsightResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns a list of the anomalies that belong to an insight that you specify using its
|
|
18
23
|
* ID. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListAnomaliesForInsightCommandOutput extends ListAnomaliesForIn
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListAnomaliesForInsightCommandInput - {@link ListAnomaliesForInsightCommandInput}
|
|
35
|
+
* @returns {@link ListAnomaliesForInsightCommandOutput}
|
|
29
36
|
* @see {@link ListAnomaliesForInsightCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListAnomaliesForInsightCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListAnomaliesForInsightCommandOutput extends ListAnomaliesForIn
|
|
|
54
61
|
export declare class ListAnomaliesForInsightCommand extends $Command<ListAnomaliesForInsightCommandInput, ListAnomaliesForInsightCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
55
62
|
readonly input: ListAnomaliesForInsightCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListAnomaliesForInsightCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAnomaliesForInsightCommandInput, ListAnomaliesForInsightCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { ListAnomalousLogGroupsRequest, ListAnomalousLogGroupsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListAnomalousLogGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListAnomalousLogGroupsCommandInput extends ListAnomalousLogGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListAnomalousLogGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListAnomalousLogGroupsCommandOutput extends ListAnomalousLogGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Returns the list of log groups that contain log anomalies.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface ListAnomalousLogGroupsCommandOutput extends ListAnomalousLogGro
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListAnomalousLogGroupsCommandInput - {@link ListAnomalousLogGroupsCommandInput}
|
|
36
|
+
* @returns {@link ListAnomalousLogGroupsCommandOutput}
|
|
30
37
|
* @see {@link ListAnomalousLogGroupsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListAnomalousLogGroupsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ListAnomalousLogGroupsCommandOutput extends ListAnomalousLogGro
|
|
|
55
62
|
export declare class ListAnomalousLogGroupsCommand extends $Command<ListAnomalousLogGroupsCommandInput, ListAnomalousLogGroupsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
56
63
|
readonly input: ListAnomalousLogGroupsCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ListAnomalousLogGroupsCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAnomalousLogGroupsCommandInput, ListAnomalousLogGroupsCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { ListEventsRequest, ListEventsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListEventsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListEventsCommandInput extends ListEventsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListEventsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListEventsCommandOutput extends ListEventsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns a list of the events emitted by the resources that are evaluated by DevOps Guru.
|
|
18
23
|
* You can use filters to specify which events are returned. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListEventsCommandOutput extends ListEventsResponse, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListEventsCommandInput - {@link ListEventsCommandInput}
|
|
35
|
+
* @returns {@link ListEventsCommandOutput}
|
|
29
36
|
* @see {@link ListEventsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListEventsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListEventsCommandOutput extends ListEventsResponse, __MetadataB
|
|
|
54
61
|
export declare class ListEventsCommand extends $Command<ListEventsCommandInput, ListEventsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
55
62
|
readonly input: ListEventsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListEventsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventsCommandInput, ListEventsCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|