@aws-sdk/client-codeguruprofiler 3.295.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/CodeGuruProfiler.d.ts +24 -0
- package/dist-types/CodeGuruProfilerClient.d.ts +24 -4
- package/dist-types/commands/AddNotificationChannelsCommand.d.ts +16 -0
- package/dist-types/commands/BatchGetFrameMetricDataCommand.d.ts +16 -0
- package/dist-types/commands/ConfigureAgentCommand.d.ts +16 -0
- package/dist-types/commands/CreateProfilingGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteProfilingGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeProfilingGroupCommand.d.ts +16 -0
- package/dist-types/commands/GetFindingsReportAccountSummaryCommand.d.ts +16 -0
- package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetProfileCommand.d.ts +16 -0
- package/dist-types/commands/GetRecommendationsCommand.d.ts +16 -0
- package/dist-types/commands/ListFindingsReportsCommand.d.ts +16 -0
- package/dist-types/commands/ListProfileTimesCommand.d.ts +16 -0
- package/dist-types/commands/ListProfilingGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PostAgentProfileCommand.d.ts +16 -0
- package/dist-types/commands/PutPermissionCommand.d.ts +16 -0
- package/dist-types/commands/RemoveNotificationChannelCommand.d.ts +16 -0
- package/dist-types/commands/RemovePermissionCommand.d.ts +16 -0
- package/dist-types/commands/SubmitFeedbackCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateProfilingGroupCommand.d.ts +16 -0
- package/dist-types/models/CodeGuruProfilerServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +110 -0
- package/dist-types/pagination/GetFindingsReportAccountSummaryPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListFindingsReportsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProfileTimesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListProfilingGroupsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { GetNotificationConfigurationRequest, GetNotificationConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetNotificationConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetNotificationConfigurationCommandInput extends GetNotificationConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetNotificationConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetNotificationConfigurationCommandOutput extends GetNotificationConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Get the current configuration for anomaly notifications for a profiling group.</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 GetNotificationConfigurationCommandOutput extends GetNotificati
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetNotificationConfigurationCommandInput - {@link GetNotificationConfigurationCommandInput}
|
|
34
|
+
* @returns {@link GetNotificationConfigurationCommandOutput}
|
|
28
35
|
* @see {@link GetNotificationConfigurationCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetNotificationConfigurationCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetNotificationConfigurationCommandOutput extends GetNotificati
|
|
|
46
53
|
export declare class GetNotificationConfigurationCommand extends $Command<GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
47
54
|
readonly input: GetNotificationConfigurationCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetNotificationConfigurationCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPolicyCommandInput extends GetPolicyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Returns the JSON-formatted resource-based policy on a profiling group.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetPolicyCommandInput - {@link GetPolicyCommandInput}
|
|
36
|
+
* @returns {@link GetPolicyCommandOutput}
|
|
30
37
|
* @see {@link GetPolicyCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetPolicyCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBea
|
|
|
45
52
|
export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
46
53
|
readonly input: GetPolicyCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: GetPolicyCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { GetProfileRequest, GetProfileResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetProfileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetProfileCommandInput extends GetProfileRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetProfileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Gets the aggregated profile of a profiling group for a specified time range.
|
|
19
24
|
* Amazon CodeGuru Profiler collects posted agent profiles for a profiling group
|
|
@@ -96,6 +101,8 @@ export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataB
|
|
|
96
101
|
* const response = await client.send(command);
|
|
97
102
|
* ```
|
|
98
103
|
*
|
|
104
|
+
* @param GetProfileCommandInput - {@link GetProfileCommandInput}
|
|
105
|
+
* @returns {@link GetProfileCommandOutput}
|
|
99
106
|
* @see {@link GetProfileCommandInput} for command's `input` shape.
|
|
100
107
|
* @see {@link GetProfileCommandOutput} for command's `response` shape.
|
|
101
108
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -117,11 +124,20 @@ export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataB
|
|
|
117
124
|
export declare class GetProfileCommand extends $Command<GetProfileCommandInput, GetProfileCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
118
125
|
readonly input: GetProfileCommandInput;
|
|
119
126
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
120
130
|
constructor(input: GetProfileCommandInput);
|
|
121
131
|
/**
|
|
122
132
|
* @internal
|
|
123
133
|
*/
|
|
124
134
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProfileCommandInput, GetProfileCommandOutput>;
|
|
135
|
+
/**
|
|
136
|
+
* @internal
|
|
137
|
+
*/
|
|
125
138
|
private serialize;
|
|
139
|
+
/**
|
|
140
|
+
* @internal
|
|
141
|
+
*/
|
|
126
142
|
private deserialize;
|
|
127
143
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRecommendationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRecommendationsCommandInput extends GetRecommendationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRecommendationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRecommendationsCommandOutput extends GetRecommendationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Returns a list of
|
|
19
24
|
* <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_Recommendation.html">
|
|
@@ -36,6 +41,8 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param GetRecommendationsCommandInput - {@link GetRecommendationsCommandInput}
|
|
45
|
+
* @returns {@link GetRecommendationsCommandOutput}
|
|
39
46
|
* @see {@link GetRecommendationsCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link GetRecommendationsCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface GetRecommendationsCommandOutput extends GetRecommendationsRespo
|
|
|
57
64
|
export declare class GetRecommendationsCommand extends $Command<GetRecommendationsCommandInput, GetRecommendationsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
58
65
|
readonly input: GetRecommendationsCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: GetRecommendationsCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRecommendationsCommandInput, GetRecommendationsCommandOutput>;
|
|
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 { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { ListFindingsReportsRequest, ListFindingsReportsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListFindingsReportsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListFindingsReportsCommandInput extends ListFindingsReportsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListFindingsReportsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListFindingsReportsCommandOutput extends ListFindingsReportsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List the available reports for a given profiling group and time range.</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 ListFindingsReportsCommandOutput extends ListFindingsReportsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListFindingsReportsCommandInput - {@link ListFindingsReportsCommandInput}
|
|
34
|
+
* @returns {@link ListFindingsReportsCommandOutput}
|
|
28
35
|
* @see {@link ListFindingsReportsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListFindingsReportsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListFindingsReportsCommandOutput extends ListFindingsReportsRes
|
|
|
46
53
|
export declare class ListFindingsReportsCommand extends $Command<ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
47
54
|
readonly input: ListFindingsReportsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListFindingsReportsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { ListProfileTimesRequest, ListProfileTimesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListProfileTimesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListProfileTimesCommandInput extends ListProfileTimesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListProfileTimesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the start times of the available aggregated profiles of a profiling group
|
|
18
23
|
* for an aggregation period within the specified time range.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListProfileTimesCommandInput - {@link ListProfileTimesCommandInput}
|
|
35
|
+
* @returns {@link ListProfileTimesCommandOutput}
|
|
29
36
|
* @see {@link ListProfileTimesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListProfileTimesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse,
|
|
|
47
54
|
export declare class ListProfileTimesCommand extends $Command<ListProfileTimesCommandInput, ListProfileTimesCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
48
55
|
readonly input: ListProfileTimesCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListProfileTimesCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProfileTimesCommandInput, ListProfileTimesCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { ListProfilingGroupsRequest, ListProfilingGroupsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListProfilingGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListProfilingGroupsCommandInput extends ListProfilingGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListProfilingGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Returns a list of profiling groups. The profiling groups are returned as
|
|
19
24
|
* <a href="https://docs.aws.amazon.com/codeguru/latest/profiler-api/API_ProfilingGroupDescription.html">
|
|
@@ -31,6 +36,8 @@ export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsRes
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param ListProfilingGroupsCommandInput - {@link ListProfilingGroupsCommandInput}
|
|
40
|
+
* @returns {@link ListProfilingGroupsCommandOutput}
|
|
34
41
|
* @see {@link ListProfilingGroupsCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link ListProfilingGroupsCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsRes
|
|
|
46
53
|
export declare class ListProfilingGroupsCommand extends $Command<ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
47
54
|
readonly input: ListProfilingGroupsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListProfilingGroupsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Returns a list of the tags that are assigned to a specified resource.
|
|
19
24
|
* </p>
|
|
@@ -27,6 +32,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
36
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
30
37
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
45
52
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
46
53
|
readonly input: ListTagsForResourceCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: ListTagsForResourceCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { PostAgentProfileRequest, PostAgentProfileResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PostAgentProfileCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PostAgentProfileCommandInput extends PostAgentProfileRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PostAgentProfileCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PostAgentProfileCommandOutput extends PostAgentProfileResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Submits profiling data to an aggregated profile of a profiling group. To get an
|
|
19
24
|
* aggregated profile that is created with this profiling data, use
|
|
@@ -31,6 +36,8 @@ export interface PostAgentProfileCommandOutput extends PostAgentProfileResponse,
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param PostAgentProfileCommandInput - {@link PostAgentProfileCommandInput}
|
|
40
|
+
* @returns {@link PostAgentProfileCommandOutput}
|
|
34
41
|
* @see {@link PostAgentProfileCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link PostAgentProfileCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface PostAgentProfileCommandOutput extends PostAgentProfileResponse,
|
|
|
52
59
|
export declare class PostAgentProfileCommand extends $Command<PostAgentProfileCommandInput, PostAgentProfileCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
53
60
|
readonly input: PostAgentProfileCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: PostAgentProfileCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PostAgentProfileCommandInput, PostAgentProfileCommandOutput>;
|
|
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 { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { PutPermissionRequest, PutPermissionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link PutPermissionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface PutPermissionCommandInput extends PutPermissionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link PutPermissionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface PutPermissionCommandOutput extends PutPermissionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* Adds permissions to a profiling group's resource-based policy
|
|
19
24
|
* that are provided using an action group. If a profiling group doesn't have
|
|
@@ -50,6 +55,8 @@ export interface PutPermissionCommandOutput extends PutPermissionResponse, __Met
|
|
|
50
55
|
* const response = await client.send(command);
|
|
51
56
|
* ```
|
|
52
57
|
*
|
|
58
|
+
* @param PutPermissionCommandInput - {@link PutPermissionCommandInput}
|
|
59
|
+
* @returns {@link PutPermissionCommandOutput}
|
|
53
60
|
* @see {@link PutPermissionCommandInput} for command's `input` shape.
|
|
54
61
|
* @see {@link PutPermissionCommandOutput} for command's `response` shape.
|
|
55
62
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -77,11 +84,20 @@ export interface PutPermissionCommandOutput extends PutPermissionResponse, __Met
|
|
|
77
84
|
export declare class PutPermissionCommand extends $Command<PutPermissionCommandInput, PutPermissionCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
78
85
|
readonly input: PutPermissionCommandInput;
|
|
79
86
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
80
90
|
constructor(input: PutPermissionCommandInput);
|
|
81
91
|
/**
|
|
82
92
|
* @internal
|
|
83
93
|
*/
|
|
84
94
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutPermissionCommandInput, PutPermissionCommandOutput>;
|
|
95
|
+
/**
|
|
96
|
+
* @internal
|
|
97
|
+
*/
|
|
85
98
|
private serialize;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
86
102
|
private deserialize;
|
|
87
103
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
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>Remove one anomaly notifications channel for a profiling group.</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 RemoveNotificationChannelCommandOutput extends RemoveNotificati
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RemoveNotificationChannelCommandInput - {@link RemoveNotificationChannelCommandInput}
|
|
34
|
+
* @returns {@link RemoveNotificationChannelCommandOutput}
|
|
28
35
|
* @see {@link RemoveNotificationChannelCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RemoveNotificationChannelCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificati
|
|
|
46
53
|
export declare class RemoveNotificationChannelCommand extends $Command<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
47
54
|
readonly input: RemoveNotificationChannelCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: RemoveNotificationChannelCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { RemovePermissionRequest, RemovePermissionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RemovePermissionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RemovePermissionCommandInput extends RemovePermissionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RemovePermissionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RemovePermissionCommandOutput extends RemovePermissionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p> Removes permissions from a profiling group's resource-based policy that are provided
|
|
18
23
|
* using an action group. The one supported action group that can be removed is
|
|
19
24
|
* <code>agentPermission</code> which grants <code>ConfigureAgent</code> and
|
|
@@ -33,6 +38,8 @@ export interface RemovePermissionCommandOutput extends RemovePermissionResponse,
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param RemovePermissionCommandInput - {@link RemovePermissionCommandInput}
|
|
42
|
+
* @returns {@link RemovePermissionCommandOutput}
|
|
36
43
|
* @see {@link RemovePermissionCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link RemovePermissionCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface RemovePermissionCommandOutput extends RemovePermissionResponse,
|
|
|
60
67
|
export declare class RemovePermissionCommand extends $Command<RemovePermissionCommandInput, RemovePermissionCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
61
68
|
readonly input: RemovePermissionCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: RemovePermissionCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemovePermissionCommandInput, RemovePermissionCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
5
5
|
import { SubmitFeedbackRequest, SubmitFeedbackResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link SubmitFeedbackCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface SubmitFeedbackCommandInput extends SubmitFeedbackRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link SubmitFeedbackCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface SubmitFeedbackCommandOutput extends SubmitFeedbackResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Sends feedback to CodeGuru Profiler about whether the anomaly detected by the analysis is
|
|
18
23
|
* useful or not.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface SubmitFeedbackCommandOutput extends SubmitFeedbackResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param SubmitFeedbackCommandInput - {@link SubmitFeedbackCommandInput}
|
|
35
|
+
* @returns {@link SubmitFeedbackCommandOutput}
|
|
29
36
|
* @see {@link SubmitFeedbackCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link SubmitFeedbackCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface SubmitFeedbackCommandOutput extends SubmitFeedbackResponse, __M
|
|
|
47
54
|
export declare class SubmitFeedbackCommand extends $Command<SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
48
55
|
readonly input: SubmitFeedbackCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: SubmitFeedbackCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|