@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 { ListInsightsRequest, ListInsightsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListInsightsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListInsightsCommandInput extends ListInsightsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListInsightsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListInsightsCommandOutput extends ListInsightsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns a list of insights in your Amazon Web Services account. You can specify which insights are
|
|
18
23
|
* returned by their start time and status (<code>ONGOING</code>, <code>CLOSED</code>, or
|
|
19
24
|
* <code>ANY</code>). </p>
|
|
@@ -27,6 +32,8 @@ export interface ListInsightsCommandOutput extends ListInsightsResponse, __Metad
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListInsightsCommandInput - {@link ListInsightsCommandInput}
|
|
36
|
+
* @returns {@link ListInsightsCommandOutput}
|
|
30
37
|
* @see {@link ListInsightsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListInsightsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface ListInsightsCommandOutput extends ListInsightsResponse, __Metad
|
|
|
52
59
|
export declare class ListInsightsCommand extends $Command<ListInsightsCommandInput, ListInsightsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
53
60
|
readonly input: ListInsightsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: ListInsightsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInsightsCommandInput, ListInsightsCommandOutput>;
|
|
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 { ListMonitoredResourcesRequest, ListMonitoredResourcesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListMonitoredResourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListMonitoredResourcesCommandInput extends ListMonitoredResourcesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListMonitoredResourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListMonitoredResourcesCommandOutput extends ListMonitoredResourcesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Returns the list of all log groups that are being monitored and tagged by DevOps Guru.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface ListMonitoredResourcesCommandOutput extends ListMonitoredResour
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListMonitoredResourcesCommandInput - {@link ListMonitoredResourcesCommandInput}
|
|
36
|
+
* @returns {@link ListMonitoredResourcesCommandOutput}
|
|
30
37
|
* @see {@link ListMonitoredResourcesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListMonitoredResourcesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListMonitoredResourcesCommandOutput extends ListMonitoredResour
|
|
|
49
56
|
export declare class ListMonitoredResourcesCommand extends $Command<ListMonitoredResourcesCommandInput, ListMonitoredResourcesCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
50
57
|
readonly input: ListMonitoredResourcesCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListMonitoredResourcesCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMonitoredResourcesCommandInput, ListMonitoredResourcesCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { ListNotificationChannelsRequest, ListNotificationChannelsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListNotificationChannelsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListNotificationChannelsCommandInput extends ListNotificationChannelsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListNotificationChannelsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListNotificationChannelsCommandOutput extends ListNotificationChannelsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns a list of notification channels configured for DevOps Guru. Each notification
|
|
18
23
|
* channel is used to notify you when DevOps Guru generates an insight that contains information
|
|
19
24
|
* about how to improve your operations. The one
|
|
@@ -28,6 +33,8 @@ export interface ListNotificationChannelsCommandOutput extends ListNotificationC
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListNotificationChannelsCommandInput - {@link ListNotificationChannelsCommandInput}
|
|
37
|
+
* @returns {@link ListNotificationChannelsCommandOutput}
|
|
31
38
|
* @see {@link ListNotificationChannelsCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListNotificationChannelsCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ListNotificationChannelsCommandOutput extends ListNotificationC
|
|
|
53
60
|
export declare class ListNotificationChannelsCommand extends $Command<ListNotificationChannelsCommandInput, ListNotificationChannelsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
54
61
|
readonly input: ListNotificationChannelsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ListNotificationChannelsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListNotificationChannelsCommandInput, ListNotificationChannelsCommandOutput>;
|
|
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 { ListOrganizationInsightsRequest, ListOrganizationInsightsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListOrganizationInsightsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListOrganizationInsightsCommandInput extends ListOrganizationInsightsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListOrganizationInsightsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListOrganizationInsightsCommandOutput extends ListOrganizationInsightsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of insights associated with the account or OU 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 ListOrganizationInsightsCommandOutput extends ListOrganizationI
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListOrganizationInsightsCommandInput - {@link ListOrganizationInsightsCommandInput}
|
|
34
|
+
* @returns {@link ListOrganizationInsightsCommandOutput}
|
|
28
35
|
* @see {@link ListOrganizationInsightsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListOrganizationInsightsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface ListOrganizationInsightsCommandOutput extends ListOrganizationI
|
|
|
50
57
|
export declare class ListOrganizationInsightsCommand extends $Command<ListOrganizationInsightsCommandInput, ListOrganizationInsightsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
51
58
|
readonly input: ListOrganizationInsightsCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: ListOrganizationInsightsCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOrganizationInsightsCommandInput, ListOrganizationInsightsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { ListRecommendationsRequest, ListRecommendationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListRecommendationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListRecommendationsCommandInput extends ListRecommendationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListRecommendationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListRecommendationsCommandOutput extends ListRecommendationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns a list of a specified insight's recommendations. Each recommendation includes
|
|
18
23
|
* a list of related metrics and a list of related events. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListRecommendationsCommandInput - {@link ListRecommendationsCommandInput}
|
|
35
|
+
* @returns {@link ListRecommendationsCommandOutput}
|
|
29
36
|
* @see {@link ListRecommendationsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListRecommendationsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface ListRecommendationsCommandOutput extends ListRecommendationsRes
|
|
|
54
61
|
export declare class ListRecommendationsCommand extends $Command<ListRecommendationsCommandInput, ListRecommendationsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
55
62
|
readonly input: ListRecommendationsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: ListRecommendationsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRecommendationsCommandInput, ListRecommendationsCommandOutput>;
|
|
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 { PutFeedbackRequest, PutFeedbackResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutFeedbackCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutFeedbackCommandInput extends PutFeedbackRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutFeedbackCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Collects customer feedback about the specified insight. </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 PutFeedbackCommandOutput extends PutFeedbackResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param PutFeedbackCommandInput - {@link PutFeedbackCommandInput}
|
|
34
|
+
* @returns {@link PutFeedbackCommandOutput}
|
|
28
35
|
* @see {@link PutFeedbackCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link PutFeedbackCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface PutFeedbackCommandOutput extends PutFeedbackResponse, __Metadat
|
|
|
56
63
|
export declare class PutFeedbackCommand extends $Command<PutFeedbackCommandInput, PutFeedbackCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
57
64
|
readonly input: PutFeedbackCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: PutFeedbackCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutFeedbackCommandInput, PutFeedbackCommandOutput>;
|
|
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 { RemoveNotificationChannelRequest, RemoveNotificationChannelResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RemoveNotificationChannelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RemoveNotificationChannelCommandInput extends RemoveNotificationChannelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RemoveNotificationChannelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RemoveNotificationChannelCommandOutput extends RemoveNotificationChannelResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Removes a notification channel from DevOps Guru. A notification channel is used to notify
|
|
18
23
|
* you when DevOps Guru generates an insight that contains information about how to improve your
|
|
19
24
|
* operations. </p>
|
|
@@ -27,6 +32,8 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param RemoveNotificationChannelCommandInput - {@link RemoveNotificationChannelCommandInput}
|
|
36
|
+
* @returns {@link RemoveNotificationChannelCommandOutput}
|
|
30
37
|
* @see {@link RemoveNotificationChannelCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link RemoveNotificationChannelCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
|
|
|
58
65
|
export declare class RemoveNotificationChannelCommand extends $Command<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
59
66
|
readonly input: RemoveNotificationChannelCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: RemoveNotificationChannelCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
5
5
|
import { SearchInsightsRequest, SearchInsightsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SearchInsightsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SearchInsightsCommandInput extends SearchInsightsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SearchInsightsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SearchInsightsCommandOutput extends SearchInsightsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns a list of insights in your Amazon Web Services account. You can specify which insights are
|
|
18
23
|
* returned by their start time, one or more statuses (<code>ONGOING</code> or <code>CLOSED</code>), one or more severities
|
|
19
24
|
* (<code>LOW</code>, <code>MEDIUM</code>, and <code>HIGH</code>), and type
|
|
@@ -31,6 +36,8 @@ export interface SearchInsightsCommandOutput extends SearchInsightsResponse, __M
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param SearchInsightsCommandInput - {@link SearchInsightsCommandInput}
|
|
40
|
+
* @returns {@link SearchInsightsCommandOutput}
|
|
34
41
|
* @see {@link SearchInsightsCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link SearchInsightsCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface SearchInsightsCommandOutput extends SearchInsightsResponse, __M
|
|
|
56
63
|
export declare class SearchInsightsCommand extends $Command<SearchInsightsCommandInput, SearchInsightsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
57
64
|
readonly input: SearchInsightsCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: SearchInsightsCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchInsightsCommandInput, SearchInsightsCommandOutput>;
|
|
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 { SearchOrganizationInsightsRequest, SearchOrganizationInsightsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SearchOrganizationInsightsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SearchOrganizationInsightsCommandInput extends SearchOrganizationInsightsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SearchOrganizationInsightsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SearchOrganizationInsightsCommandOutput extends SearchOrganizationInsightsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Returns a list of insights in your organization. You can specify which insights are
|
|
18
23
|
* returned by their start time, one or more statuses (<code>ONGOING</code>,
|
|
19
24
|
* <code>CLOSED</code>, and <code>CLOSED</code>), one or more severities
|
|
@@ -32,6 +37,8 @@ export interface SearchOrganizationInsightsCommandOutput extends SearchOrganizat
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param SearchOrganizationInsightsCommandInput - {@link SearchOrganizationInsightsCommandInput}
|
|
41
|
+
* @returns {@link SearchOrganizationInsightsCommandOutput}
|
|
35
42
|
* @see {@link SearchOrganizationInsightsCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link SearchOrganizationInsightsCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface SearchOrganizationInsightsCommandOutput extends SearchOrganizat
|
|
|
57
64
|
export declare class SearchOrganizationInsightsCommand extends $Command<SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
58
65
|
readonly input: SearchOrganizationInsightsCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: SearchOrganizationInsightsCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput>;
|
|
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 { StartCostEstimationRequest, StartCostEstimationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartCostEstimationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartCostEstimationCommandInput extends StartCostEstimationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartCostEstimationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartCostEstimationCommandOutput extends StartCostEstimationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts the creation of an estimate of the monthly cost to analyze your Amazon Web Services
|
|
18
23
|
* resources.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface StartCostEstimationCommandOutput extends StartCostEstimationRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param StartCostEstimationCommandInput - {@link StartCostEstimationCommandInput}
|
|
35
|
+
* @returns {@link StartCostEstimationCommandOutput}
|
|
29
36
|
* @see {@link StartCostEstimationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link StartCostEstimationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface StartCostEstimationCommandOutput extends StartCostEstimationRes
|
|
|
57
64
|
export declare class StartCostEstimationCommand extends $Command<StartCostEstimationCommandInput, StartCostEstimationCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
58
65
|
readonly input: StartCostEstimationCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: StartCostEstimationCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartCostEstimationCommandInput, StartCostEstimationCommandOutput>;
|
|
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 { UpdateEventSourcesConfigRequest, UpdateEventSourcesConfigResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateEventSourcesConfigCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateEventSourcesConfigCommandInput extends UpdateEventSourcesConfigRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateEventSourcesConfigCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateEventSourcesConfigCommandOutput extends UpdateEventSourcesConfigResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Enables or disables integration with a service that can be integrated with DevOps Guru. The
|
|
18
23
|
* one service that can be integrated with DevOps Guru is Amazon CodeGuru Profiler, which
|
|
19
24
|
* can produce proactive recommendations which can be stored and viewed in DevOps Guru.</p>
|
|
@@ -27,6 +32,8 @@ export interface UpdateEventSourcesConfigCommandOutput extends UpdateEventSource
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param UpdateEventSourcesConfigCommandInput - {@link UpdateEventSourcesConfigCommandInput}
|
|
36
|
+
* @returns {@link UpdateEventSourcesConfigCommandOutput}
|
|
30
37
|
* @see {@link UpdateEventSourcesConfigCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link UpdateEventSourcesConfigCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface UpdateEventSourcesConfigCommandOutput extends UpdateEventSource
|
|
|
52
59
|
export declare class UpdateEventSourcesConfigCommand extends $Command<UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
53
60
|
readonly input: UpdateEventSourcesConfigCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: UpdateEventSourcesConfigCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput>;
|
|
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 { UpdateResourceCollectionRequest, UpdateResourceCollectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateResourceCollectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateResourceCollectionCommandInput extends UpdateResourceCollectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateResourceCollectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateResourceCollectionCommandOutput extends UpdateResourceCollectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Updates the collection of resources that DevOps Guru analyzes.
|
|
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
|
|
@@ -29,6 +34,8 @@ export interface UpdateResourceCollectionCommandOutput extends UpdateResourceCol
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param UpdateResourceCollectionCommandInput - {@link UpdateResourceCollectionCommandInput}
|
|
38
|
+
* @returns {@link UpdateResourceCollectionCommandOutput}
|
|
32
39
|
* @see {@link UpdateResourceCollectionCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link UpdateResourceCollectionCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface UpdateResourceCollectionCommandOutput extends UpdateResourceCol
|
|
|
57
64
|
export declare class UpdateResourceCollectionCommand extends $Command<UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
58
65
|
readonly input: UpdateResourceCollectionCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: UpdateResourceCollectionCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|