@aws-sdk/client-codeguruprofiler 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CodeGuruProfilerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +84 -2
- package/dist-cjs/protocols/Aws_restJson1.js +258 -862
- package/dist-es/index.js +1 -0
- package/dist-es/models/CodeGuruProfilerServiceException.js +12 -0
- package/dist-es/models/models_0.js +77 -1
- package/dist-es/protocols/Aws_restJson1.js +523 -961
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CodeGuruProfilerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -25
- package/dist-types/ts3.4/CodeGuruProfiler.d.ts +120 -0
- package/dist-types/ts3.4/CodeGuruProfilerClient.d.ts +96 -0
- package/dist-types/ts3.4/commands/AddNotificationChannelsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/BatchGetFrameMetricDataCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ConfigureAgentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateProfilingGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteProfilingGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeProfilingGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetFindingsReportAccountSummaryCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetNotificationConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFindingsReportsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListProfileTimesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListProfilingGroupsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PostAgentProfileCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SubmitFeedbackCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateProfilingGroupCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +23 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/CodeGuruProfilerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +920 -0
- package/dist-types/ts3.4/pagination/GetFindingsReportAccountSummaryPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListFindingsReportsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListProfileTimesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListProfilingGroupsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +71 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from CodeGuruProfiler service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class CodeGuruProfilerServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException";
|
|
2
3
|
export declare enum ActionGroup {
|
|
3
4
|
/**
|
|
4
5
|
* Permission group type for Agent APIs - ConfigureAgent, PostAgentProfile
|
|
@@ -91,27 +92,36 @@ export declare namespace AddNotificationChannelsResponse {
|
|
|
91
92
|
* before retrying this request.
|
|
92
93
|
* </p>
|
|
93
94
|
*/
|
|
94
|
-
export
|
|
95
|
-
name: "ConflictException";
|
|
96
|
-
$fault: "client";
|
|
97
|
-
|
|
95
|
+
export declare class ConflictException extends __BaseException {
|
|
96
|
+
readonly name: "ConflictException";
|
|
97
|
+
readonly $fault: "client";
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
98
102
|
}
|
|
99
103
|
/**
|
|
100
104
|
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
101
105
|
*/
|
|
102
|
-
export
|
|
103
|
-
name: "InternalServerException";
|
|
104
|
-
$fault: "server";
|
|
106
|
+
export declare class InternalServerException extends __BaseException {
|
|
107
|
+
readonly name: "InternalServerException";
|
|
108
|
+
readonly $fault: "server";
|
|
105
109
|
$retryable: {};
|
|
106
|
-
|
|
110
|
+
/**
|
|
111
|
+
* @internal
|
|
112
|
+
*/
|
|
113
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
107
114
|
}
|
|
108
115
|
/**
|
|
109
116
|
* <p>The resource specified in the request does not exist.</p>
|
|
110
117
|
*/
|
|
111
|
-
export
|
|
112
|
-
name: "ResourceNotFoundException";
|
|
113
|
-
$fault: "client";
|
|
114
|
-
|
|
118
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
119
|
+
readonly name: "ResourceNotFoundException";
|
|
120
|
+
readonly $fault: "client";
|
|
121
|
+
/**
|
|
122
|
+
* @internal
|
|
123
|
+
*/
|
|
124
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
115
125
|
}
|
|
116
126
|
/**
|
|
117
127
|
* <p>You have exceeded your service quota. To perform the requested action,
|
|
@@ -119,28 +129,37 @@ export interface ResourceNotFoundException extends __SmithyException, $MetadataB
|
|
|
119
129
|
* service quota increase.
|
|
120
130
|
* </p>
|
|
121
131
|
*/
|
|
122
|
-
export
|
|
123
|
-
name: "ServiceQuotaExceededException";
|
|
124
|
-
$fault: "client";
|
|
132
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
133
|
+
readonly name: "ServiceQuotaExceededException";
|
|
134
|
+
readonly $fault: "client";
|
|
125
135
|
$retryable: {};
|
|
126
|
-
|
|
136
|
+
/**
|
|
137
|
+
* @internal
|
|
138
|
+
*/
|
|
139
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
127
140
|
}
|
|
128
141
|
/**
|
|
129
142
|
* <p>The request was denied due to request throttling.</p>
|
|
130
143
|
*/
|
|
131
|
-
export
|
|
132
|
-
name: "ThrottlingException";
|
|
133
|
-
$fault: "client";
|
|
144
|
+
export declare class ThrottlingException extends __BaseException {
|
|
145
|
+
readonly name: "ThrottlingException";
|
|
146
|
+
readonly $fault: "client";
|
|
134
147
|
$retryable: {};
|
|
135
|
-
|
|
148
|
+
/**
|
|
149
|
+
* @internal
|
|
150
|
+
*/
|
|
151
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
136
152
|
}
|
|
137
153
|
/**
|
|
138
154
|
* <p>The parameter is not valid.</p>
|
|
139
155
|
*/
|
|
140
|
-
export
|
|
141
|
-
name: "ValidationException";
|
|
142
|
-
$fault: "client";
|
|
143
|
-
|
|
156
|
+
export declare class ValidationException extends __BaseException {
|
|
157
|
+
readonly name: "ValidationException";
|
|
158
|
+
readonly $fault: "client";
|
|
159
|
+
/**
|
|
160
|
+
* @internal
|
|
161
|
+
*/
|
|
162
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
144
163
|
}
|
|
145
164
|
export declare enum AgentParameterField {
|
|
146
165
|
/**
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { CodeGuruProfilerClient } from "./CodeGuruProfilerClient";
|
|
3
|
+
import { AddNotificationChannelsCommandInput, AddNotificationChannelsCommandOutput } from "./commands/AddNotificationChannelsCommand";
|
|
4
|
+
import { BatchGetFrameMetricDataCommandInput, BatchGetFrameMetricDataCommandOutput } from "./commands/BatchGetFrameMetricDataCommand";
|
|
5
|
+
import { ConfigureAgentCommandInput, ConfigureAgentCommandOutput } from "./commands/ConfigureAgentCommand";
|
|
6
|
+
import { CreateProfilingGroupCommandInput, CreateProfilingGroupCommandOutput } from "./commands/CreateProfilingGroupCommand";
|
|
7
|
+
import { DeleteProfilingGroupCommandInput, DeleteProfilingGroupCommandOutput } from "./commands/DeleteProfilingGroupCommand";
|
|
8
|
+
import { DescribeProfilingGroupCommandInput, DescribeProfilingGroupCommandOutput } from "./commands/DescribeProfilingGroupCommand";
|
|
9
|
+
import { GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput } from "./commands/GetFindingsReportAccountSummaryCommand";
|
|
10
|
+
import { GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput } from "./commands/GetNotificationConfigurationCommand";
|
|
11
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
12
|
+
import { GetProfileCommandInput, GetProfileCommandOutput } from "./commands/GetProfileCommand";
|
|
13
|
+
import { GetRecommendationsCommandInput, GetRecommendationsCommandOutput } from "./commands/GetRecommendationsCommand";
|
|
14
|
+
import { ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput } from "./commands/ListFindingsReportsCommand";
|
|
15
|
+
import { ListProfileTimesCommandInput, ListProfileTimesCommandOutput } from "./commands/ListProfileTimesCommand";
|
|
16
|
+
import { ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput } from "./commands/ListProfilingGroupsCommand";
|
|
17
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
18
|
+
import { PostAgentProfileCommandInput, PostAgentProfileCommandOutput } from "./commands/PostAgentProfileCommand";
|
|
19
|
+
import { PutPermissionCommandInput, PutPermissionCommandOutput } from "./commands/PutPermissionCommand";
|
|
20
|
+
import { RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput } from "./commands/RemoveNotificationChannelCommand";
|
|
21
|
+
import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "./commands/RemovePermissionCommand";
|
|
22
|
+
import { SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput } from "./commands/SubmitFeedbackCommand";
|
|
23
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
24
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
25
|
+
import { UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput } from "./commands/UpdateProfilingGroupCommand";
|
|
26
|
+
|
|
27
|
+
export declare class CodeGuruProfiler extends CodeGuruProfilerClient {
|
|
28
|
+
|
|
29
|
+
addNotificationChannels(args: AddNotificationChannelsCommandInput, options?: __HttpHandlerOptions): Promise<AddNotificationChannelsCommandOutput>;
|
|
30
|
+
addNotificationChannels(args: AddNotificationChannelsCommandInput, cb: (err: any, data?: AddNotificationChannelsCommandOutput) => void): void;
|
|
31
|
+
addNotificationChannels(args: AddNotificationChannelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddNotificationChannelsCommandOutput) => void): void;
|
|
32
|
+
|
|
33
|
+
batchGetFrameMetricData(args: BatchGetFrameMetricDataCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetFrameMetricDataCommandOutput>;
|
|
34
|
+
batchGetFrameMetricData(args: BatchGetFrameMetricDataCommandInput, cb: (err: any, data?: BatchGetFrameMetricDataCommandOutput) => void): void;
|
|
35
|
+
batchGetFrameMetricData(args: BatchGetFrameMetricDataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetFrameMetricDataCommandOutput) => void): void;
|
|
36
|
+
|
|
37
|
+
configureAgent(args: ConfigureAgentCommandInput, options?: __HttpHandlerOptions): Promise<ConfigureAgentCommandOutput>;
|
|
38
|
+
configureAgent(args: ConfigureAgentCommandInput, cb: (err: any, data?: ConfigureAgentCommandOutput) => void): void;
|
|
39
|
+
configureAgent(args: ConfigureAgentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConfigureAgentCommandOutput) => void): void;
|
|
40
|
+
|
|
41
|
+
createProfilingGroup(args: CreateProfilingGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateProfilingGroupCommandOutput>;
|
|
42
|
+
createProfilingGroup(args: CreateProfilingGroupCommandInput, cb: (err: any, data?: CreateProfilingGroupCommandOutput) => void): void;
|
|
43
|
+
createProfilingGroup(args: CreateProfilingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProfilingGroupCommandOutput) => void): void;
|
|
44
|
+
|
|
45
|
+
deleteProfilingGroup(args: DeleteProfilingGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProfilingGroupCommandOutput>;
|
|
46
|
+
deleteProfilingGroup(args: DeleteProfilingGroupCommandInput, cb: (err: any, data?: DeleteProfilingGroupCommandOutput) => void): void;
|
|
47
|
+
deleteProfilingGroup(args: DeleteProfilingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProfilingGroupCommandOutput) => void): void;
|
|
48
|
+
|
|
49
|
+
describeProfilingGroup(args: DescribeProfilingGroupCommandInput, options?: __HttpHandlerOptions): Promise<DescribeProfilingGroupCommandOutput>;
|
|
50
|
+
describeProfilingGroup(args: DescribeProfilingGroupCommandInput, cb: (err: any, data?: DescribeProfilingGroupCommandOutput) => void): void;
|
|
51
|
+
describeProfilingGroup(args: DescribeProfilingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeProfilingGroupCommandOutput) => void): void;
|
|
52
|
+
|
|
53
|
+
getFindingsReportAccountSummary(args: GetFindingsReportAccountSummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetFindingsReportAccountSummaryCommandOutput>;
|
|
54
|
+
getFindingsReportAccountSummary(args: GetFindingsReportAccountSummaryCommandInput, cb: (err: any, data?: GetFindingsReportAccountSummaryCommandOutput) => void): void;
|
|
55
|
+
getFindingsReportAccountSummary(args: GetFindingsReportAccountSummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFindingsReportAccountSummaryCommandOutput) => void): void;
|
|
56
|
+
|
|
57
|
+
getNotificationConfiguration(args: GetNotificationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetNotificationConfigurationCommandOutput>;
|
|
58
|
+
getNotificationConfiguration(args: GetNotificationConfigurationCommandInput, cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void): void;
|
|
59
|
+
getNotificationConfiguration(args: GetNotificationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void): void;
|
|
60
|
+
|
|
61
|
+
getPolicy(args: GetPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetPolicyCommandOutput>;
|
|
62
|
+
getPolicy(args: GetPolicyCommandInput, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
63
|
+
getPolicy(args: GetPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPolicyCommandOutput) => void): void;
|
|
64
|
+
|
|
65
|
+
getProfile(args: GetProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetProfileCommandOutput>;
|
|
66
|
+
getProfile(args: GetProfileCommandInput, cb: (err: any, data?: GetProfileCommandOutput) => void): void;
|
|
67
|
+
getProfile(args: GetProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProfileCommandOutput) => void): void;
|
|
68
|
+
|
|
69
|
+
getRecommendations(args: GetRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetRecommendationsCommandOutput>;
|
|
70
|
+
getRecommendations(args: GetRecommendationsCommandInput, cb: (err: any, data?: GetRecommendationsCommandOutput) => void): void;
|
|
71
|
+
getRecommendations(args: GetRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecommendationsCommandOutput) => void): void;
|
|
72
|
+
|
|
73
|
+
listFindingsReports(args: ListFindingsReportsCommandInput, options?: __HttpHandlerOptions): Promise<ListFindingsReportsCommandOutput>;
|
|
74
|
+
listFindingsReports(args: ListFindingsReportsCommandInput, cb: (err: any, data?: ListFindingsReportsCommandOutput) => void): void;
|
|
75
|
+
listFindingsReports(args: ListFindingsReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFindingsReportsCommandOutput) => void): void;
|
|
76
|
+
|
|
77
|
+
listProfileTimes(args: ListProfileTimesCommandInput, options?: __HttpHandlerOptions): Promise<ListProfileTimesCommandOutput>;
|
|
78
|
+
listProfileTimes(args: ListProfileTimesCommandInput, cb: (err: any, data?: ListProfileTimesCommandOutput) => void): void;
|
|
79
|
+
listProfileTimes(args: ListProfileTimesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfileTimesCommandOutput) => void): void;
|
|
80
|
+
|
|
81
|
+
listProfilingGroups(args: ListProfilingGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListProfilingGroupsCommandOutput>;
|
|
82
|
+
listProfilingGroups(args: ListProfilingGroupsCommandInput, cb: (err: any, data?: ListProfilingGroupsCommandOutput) => void): void;
|
|
83
|
+
listProfilingGroups(args: ListProfilingGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfilingGroupsCommandOutput) => void): void;
|
|
84
|
+
|
|
85
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
86
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
87
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
88
|
+
|
|
89
|
+
postAgentProfile(args: PostAgentProfileCommandInput, options?: __HttpHandlerOptions): Promise<PostAgentProfileCommandOutput>;
|
|
90
|
+
postAgentProfile(args: PostAgentProfileCommandInput, cb: (err: any, data?: PostAgentProfileCommandOutput) => void): void;
|
|
91
|
+
postAgentProfile(args: PostAgentProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PostAgentProfileCommandOutput) => void): void;
|
|
92
|
+
|
|
93
|
+
putPermission(args: PutPermissionCommandInput, options?: __HttpHandlerOptions): Promise<PutPermissionCommandOutput>;
|
|
94
|
+
putPermission(args: PutPermissionCommandInput, cb: (err: any, data?: PutPermissionCommandOutput) => void): void;
|
|
95
|
+
putPermission(args: PutPermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutPermissionCommandOutput) => void): void;
|
|
96
|
+
|
|
97
|
+
removeNotificationChannel(args: RemoveNotificationChannelCommandInput, options?: __HttpHandlerOptions): Promise<RemoveNotificationChannelCommandOutput>;
|
|
98
|
+
removeNotificationChannel(args: RemoveNotificationChannelCommandInput, cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void): void;
|
|
99
|
+
removeNotificationChannel(args: RemoveNotificationChannelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void): void;
|
|
100
|
+
|
|
101
|
+
removePermission(args: RemovePermissionCommandInput, options?: __HttpHandlerOptions): Promise<RemovePermissionCommandOutput>;
|
|
102
|
+
removePermission(args: RemovePermissionCommandInput, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
|
|
103
|
+
removePermission(args: RemovePermissionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemovePermissionCommandOutput) => void): void;
|
|
104
|
+
|
|
105
|
+
submitFeedback(args: SubmitFeedbackCommandInput, options?: __HttpHandlerOptions): Promise<SubmitFeedbackCommandOutput>;
|
|
106
|
+
submitFeedback(args: SubmitFeedbackCommandInput, cb: (err: any, data?: SubmitFeedbackCommandOutput) => void): void;
|
|
107
|
+
submitFeedback(args: SubmitFeedbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SubmitFeedbackCommandOutput) => void): void;
|
|
108
|
+
|
|
109
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
110
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
111
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
112
|
+
|
|
113
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
114
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
115
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
116
|
+
|
|
117
|
+
updateProfilingGroup(args: UpdateProfilingGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProfilingGroupCommandOutput>;
|
|
118
|
+
updateProfilingGroup(args: UpdateProfilingGroupCommandInput, cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void): void;
|
|
119
|
+
updateProfilingGroup(args: UpdateProfilingGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void): void;
|
|
120
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { AddNotificationChannelsCommandInput, AddNotificationChannelsCommandOutput } from "./commands/AddNotificationChannelsCommand";
|
|
10
|
+
import { BatchGetFrameMetricDataCommandInput, BatchGetFrameMetricDataCommandOutput } from "./commands/BatchGetFrameMetricDataCommand";
|
|
11
|
+
import { ConfigureAgentCommandInput, ConfigureAgentCommandOutput } from "./commands/ConfigureAgentCommand";
|
|
12
|
+
import { CreateProfilingGroupCommandInput, CreateProfilingGroupCommandOutput } from "./commands/CreateProfilingGroupCommand";
|
|
13
|
+
import { DeleteProfilingGroupCommandInput, DeleteProfilingGroupCommandOutput } from "./commands/DeleteProfilingGroupCommand";
|
|
14
|
+
import { DescribeProfilingGroupCommandInput, DescribeProfilingGroupCommandOutput } from "./commands/DescribeProfilingGroupCommand";
|
|
15
|
+
import { GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput } from "./commands/GetFindingsReportAccountSummaryCommand";
|
|
16
|
+
import { GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput } from "./commands/GetNotificationConfigurationCommand";
|
|
17
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
18
|
+
import { GetProfileCommandInput, GetProfileCommandOutput } from "./commands/GetProfileCommand";
|
|
19
|
+
import { GetRecommendationsCommandInput, GetRecommendationsCommandOutput } from "./commands/GetRecommendationsCommand";
|
|
20
|
+
import { ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput } from "./commands/ListFindingsReportsCommand";
|
|
21
|
+
import { ListProfileTimesCommandInput, ListProfileTimesCommandOutput } from "./commands/ListProfileTimesCommand";
|
|
22
|
+
import { ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput } from "./commands/ListProfilingGroupsCommand";
|
|
23
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
24
|
+
import { PostAgentProfileCommandInput, PostAgentProfileCommandOutput } from "./commands/PostAgentProfileCommand";
|
|
25
|
+
import { PutPermissionCommandInput, PutPermissionCommandOutput } from "./commands/PutPermissionCommand";
|
|
26
|
+
import { RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput } from "./commands/RemoveNotificationChannelCommand";
|
|
27
|
+
import { RemovePermissionCommandInput, RemovePermissionCommandOutput } from "./commands/RemovePermissionCommand";
|
|
28
|
+
import { SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput } from "./commands/SubmitFeedbackCommand";
|
|
29
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
30
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
31
|
+
import { UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput } from "./commands/UpdateProfilingGroupCommand";
|
|
32
|
+
export declare type ServiceInputTypes = AddNotificationChannelsCommandInput | BatchGetFrameMetricDataCommandInput | ConfigureAgentCommandInput | CreateProfilingGroupCommandInput | DeleteProfilingGroupCommandInput | DescribeProfilingGroupCommandInput | GetFindingsReportAccountSummaryCommandInput | GetNotificationConfigurationCommandInput | GetPolicyCommandInput | GetProfileCommandInput | GetRecommendationsCommandInput | ListFindingsReportsCommandInput | ListProfileTimesCommandInput | ListProfilingGroupsCommandInput | ListTagsForResourceCommandInput | PostAgentProfileCommandInput | PutPermissionCommandInput | RemoveNotificationChannelCommandInput | RemovePermissionCommandInput | SubmitFeedbackCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateProfilingGroupCommandInput;
|
|
33
|
+
export declare type ServiceOutputTypes = AddNotificationChannelsCommandOutput | BatchGetFrameMetricDataCommandOutput | ConfigureAgentCommandOutput | CreateProfilingGroupCommandOutput | DeleteProfilingGroupCommandOutput | DescribeProfilingGroupCommandOutput | GetFindingsReportAccountSummaryCommandOutput | GetNotificationConfigurationCommandOutput | GetPolicyCommandOutput | GetProfileCommandOutput | GetRecommendationsCommandOutput | ListFindingsReportsCommandOutput | ListProfileTimesCommandOutput | ListProfilingGroupsCommandOutput | ListTagsForResourceCommandOutput | PostAgentProfileCommandOutput | PutPermissionCommandOutput | RemoveNotificationChannelCommandOutput | RemovePermissionCommandOutput | SubmitFeedbackCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateProfilingGroupCommandOutput;
|
|
34
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
35
|
+
|
|
36
|
+
requestHandler?: __HttpHandler;
|
|
37
|
+
|
|
38
|
+
sha256?: __HashConstructor;
|
|
39
|
+
|
|
40
|
+
urlParser?: __UrlParser;
|
|
41
|
+
|
|
42
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
43
|
+
|
|
44
|
+
streamCollector?: __StreamCollector;
|
|
45
|
+
|
|
46
|
+
base64Decoder?: __Decoder;
|
|
47
|
+
|
|
48
|
+
base64Encoder?: __Encoder;
|
|
49
|
+
|
|
50
|
+
utf8Decoder?: __Decoder;
|
|
51
|
+
|
|
52
|
+
utf8Encoder?: __Encoder;
|
|
53
|
+
|
|
54
|
+
runtime?: string;
|
|
55
|
+
|
|
56
|
+
disableHostPrefix?: boolean;
|
|
57
|
+
|
|
58
|
+
maxAttempts?: number | __Provider<number>;
|
|
59
|
+
|
|
60
|
+
retryMode?: string | __Provider<string>;
|
|
61
|
+
|
|
62
|
+
logger?: __Logger;
|
|
63
|
+
|
|
64
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
65
|
+
|
|
66
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
67
|
+
|
|
68
|
+
serviceId?: string;
|
|
69
|
+
|
|
70
|
+
region?: string | __Provider<string>;
|
|
71
|
+
|
|
72
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
73
|
+
|
|
74
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
75
|
+
|
|
76
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
77
|
+
|
|
78
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
79
|
+
}
|
|
80
|
+
declare type CodeGuruProfilerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
81
|
+
|
|
82
|
+
export interface CodeGuruProfilerClientConfig extends CodeGuruProfilerClientConfigType {
|
|
83
|
+
}
|
|
84
|
+
declare type CodeGuruProfilerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
85
|
+
|
|
86
|
+
export interface CodeGuruProfilerClientResolvedConfig extends CodeGuruProfilerClientResolvedConfigType {
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export declare class CodeGuruProfilerClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CodeGuruProfilerClientResolvedConfig> {
|
|
90
|
+
|
|
91
|
+
readonly config: CodeGuruProfilerClientResolvedConfig;
|
|
92
|
+
constructor(configuration: CodeGuruProfilerClientConfig);
|
|
93
|
+
|
|
94
|
+
destroy(): void;
|
|
95
|
+
}
|
|
96
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { AddNotificationChannelsRequest, AddNotificationChannelsResponse } from "../models/models_0";
|
|
5
|
+
export interface AddNotificationChannelsCommandInput extends AddNotificationChannelsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface AddNotificationChannelsCommandOutput extends AddNotificationChannelsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class AddNotificationChannelsCommand extends $Command<AddNotificationChannelsCommandInput, AddNotificationChannelsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: AddNotificationChannelsCommandInput;
|
|
12
|
+
constructor(input: AddNotificationChannelsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddNotificationChannelsCommandInput, AddNotificationChannelsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { BatchGetFrameMetricDataRequest, BatchGetFrameMetricDataResponse } from "../models/models_0";
|
|
5
|
+
export interface BatchGetFrameMetricDataCommandInput extends BatchGetFrameMetricDataRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface BatchGetFrameMetricDataCommandOutput extends BatchGetFrameMetricDataResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class BatchGetFrameMetricDataCommand extends $Command<BatchGetFrameMetricDataCommandInput, BatchGetFrameMetricDataCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: BatchGetFrameMetricDataCommandInput;
|
|
12
|
+
constructor(input: BatchGetFrameMetricDataCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetFrameMetricDataCommandInput, BatchGetFrameMetricDataCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { ConfigureAgentRequest, ConfigureAgentResponse } from "../models/models_0";
|
|
5
|
+
export interface ConfigureAgentCommandInput extends ConfigureAgentRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ConfigureAgentCommandOutput extends ConfigureAgentResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ConfigureAgentCommand extends $Command<ConfigureAgentCommandInput, ConfigureAgentCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: ConfigureAgentCommandInput;
|
|
12
|
+
constructor(input: ConfigureAgentCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ConfigureAgentCommandInput, ConfigureAgentCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { CreateProfilingGroupRequest, CreateProfilingGroupResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateProfilingGroupCommandInput extends CreateProfilingGroupRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateProfilingGroupCommandOutput extends CreateProfilingGroupResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateProfilingGroupCommand extends $Command<CreateProfilingGroupCommandInput, CreateProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateProfilingGroupCommandInput;
|
|
12
|
+
constructor(input: CreateProfilingGroupCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateProfilingGroupCommandInput, CreateProfilingGroupCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { DeleteProfilingGroupRequest, DeleteProfilingGroupResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteProfilingGroupCommandInput extends DeleteProfilingGroupRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteProfilingGroupCommandOutput extends DeleteProfilingGroupResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteProfilingGroupCommand extends $Command<DeleteProfilingGroupCommandInput, DeleteProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteProfilingGroupCommandInput;
|
|
12
|
+
constructor(input: DeleteProfilingGroupCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteProfilingGroupCommandInput, DeleteProfilingGroupCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { DescribeProfilingGroupRequest, DescribeProfilingGroupResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeProfilingGroupCommandInput extends DescribeProfilingGroupRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeProfilingGroupCommandOutput extends DescribeProfilingGroupResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeProfilingGroupCommand extends $Command<DescribeProfilingGroupCommandInput, DescribeProfilingGroupCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeProfilingGroupCommandInput;
|
|
12
|
+
constructor(input: DescribeProfilingGroupCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeProfilingGroupCommandInput, DescribeProfilingGroupCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { GetFindingsReportAccountSummaryRequest, GetFindingsReportAccountSummaryResponse } from "../models/models_0";
|
|
5
|
+
export interface GetFindingsReportAccountSummaryCommandInput extends GetFindingsReportAccountSummaryRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetFindingsReportAccountSummaryCommandOutput extends GetFindingsReportAccountSummaryResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetFindingsReportAccountSummaryCommand extends $Command<GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: GetFindingsReportAccountSummaryCommandInput;
|
|
12
|
+
constructor(input: GetFindingsReportAccountSummaryCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { GetNotificationConfigurationRequest, GetNotificationConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface GetNotificationConfigurationCommandInput extends GetNotificationConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetNotificationConfigurationCommandOutput extends GetNotificationConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetNotificationConfigurationCommand extends $Command<GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: GetNotificationConfigurationCommandInput;
|
|
12
|
+
constructor(input: GetNotificationConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { GetPolicyRequest, GetPolicyResponse } from "../models/models_0";
|
|
5
|
+
export interface GetPolicyCommandInput extends GetPolicyRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetPolicyCommandOutput extends GetPolicyResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetPolicyCommand extends $Command<GetPolicyCommandInput, GetPolicyCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: GetPolicyCommandInput;
|
|
12
|
+
constructor(input: GetPolicyCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPolicyCommandInput, GetPolicyCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { GetProfileRequest, GetProfileResponse } from "../models/models_0";
|
|
5
|
+
export interface GetProfileCommandInput extends GetProfileRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetProfileCommandOutput extends GetProfileResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetProfileCommand extends $Command<GetProfileCommandInput, GetProfileCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: GetProfileCommandInput;
|
|
12
|
+
constructor(input: GetProfileCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetProfileCommandInput, GetProfileCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { GetRecommendationsRequest, GetRecommendationsResponse } from "../models/models_0";
|
|
5
|
+
export interface GetRecommendationsCommandInput extends GetRecommendationsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface GetRecommendationsCommandOutput extends GetRecommendationsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class GetRecommendationsCommand extends $Command<GetRecommendationsCommandInput, GetRecommendationsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: GetRecommendationsCommandInput;
|
|
12
|
+
constructor(input: GetRecommendationsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRecommendationsCommandInput, GetRecommendationsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { ListFindingsReportsRequest, ListFindingsReportsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListFindingsReportsCommandInput extends ListFindingsReportsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListFindingsReportsCommandOutput extends ListFindingsReportsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListFindingsReportsCommand extends $Command<ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: ListFindingsReportsCommandInput;
|
|
12
|
+
constructor(input: ListFindingsReportsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { ListProfileTimesRequest, ListProfileTimesResponse } from "../models/models_0";
|
|
5
|
+
export interface ListProfileTimesCommandInput extends ListProfileTimesRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListProfileTimesCommandOutput extends ListProfileTimesResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListProfileTimesCommand extends $Command<ListProfileTimesCommandInput, ListProfileTimesCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: ListProfileTimesCommandInput;
|
|
12
|
+
constructor(input: ListProfileTimesCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProfileTimesCommandInput, ListProfileTimesCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { CodeGuruProfilerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodeGuruProfilerClient";
|
|
4
|
+
import { ListProfilingGroupsRequest, ListProfilingGroupsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListProfilingGroupsCommandInput extends ListProfilingGroupsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListProfilingGroupsCommandOutput extends ListProfilingGroupsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListProfilingGroupsCommand extends $Command<ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput, CodeGuruProfilerClientResolvedConfig> {
|
|
11
|
+
readonly input: ListProfilingGroupsCommandInput;
|
|
12
|
+
constructor(input: ListProfilingGroupsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodeGuruProfilerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|