@aws-sdk/client-codeguruprofiler 3.169.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/CodeGuruProfiler.d.ts +418 -120
  3. package/dist-types/ts3.4/CodeGuruProfilerClient.d.ts +268 -96
  4. package/dist-types/ts3.4/commands/AddNotificationChannelsCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/BatchGetFrameMetricDataCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/ConfigureAgentCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateProfilingGroupCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteProfilingGroupCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/DescribeProfilingGroupCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/GetFindingsReportAccountSummaryCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/GetNotificationConfigurationCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/ListFindingsReportsCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/ListProfileTimesCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/ListProfilingGroupsCommand.d.ts +38 -17
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/PostAgentProfileCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/SubmitFeedbackCommand.d.ts +37 -17
  24. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  26. package/dist-types/ts3.4/commands/UpdateProfilingGroupCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/index.d.ts +23 -23
  28. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  29. package/dist-types/ts3.4/index.d.ts +6 -6
  30. package/dist-types/ts3.4/models/CodeGuruProfilerServiceException.d.ts +8 -6
  31. package/dist-types/ts3.4/models/index.d.ts +1 -1
  32. package/dist-types/ts3.4/models/models_0.d.ts +826 -776
  33. package/dist-types/ts3.4/pagination/GetFindingsReportAccountSummaryPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  35. package/dist-types/ts3.4/pagination/ListFindingsReportsPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListProfileTimesPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListProfilingGroupsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  39. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +281 -71
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  44. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-codeguruprofiler
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-codeguruprofiler
@@ -1,120 +1,418 @@
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
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CodeGuruProfilerClient } from "./CodeGuruProfilerClient";
3
+ import {
4
+ AddNotificationChannelsCommandInput,
5
+ AddNotificationChannelsCommandOutput,
6
+ } from "./commands/AddNotificationChannelsCommand";
7
+ import {
8
+ BatchGetFrameMetricDataCommandInput,
9
+ BatchGetFrameMetricDataCommandOutput,
10
+ } from "./commands/BatchGetFrameMetricDataCommand";
11
+ import {
12
+ ConfigureAgentCommandInput,
13
+ ConfigureAgentCommandOutput,
14
+ } from "./commands/ConfigureAgentCommand";
15
+ import {
16
+ CreateProfilingGroupCommandInput,
17
+ CreateProfilingGroupCommandOutput,
18
+ } from "./commands/CreateProfilingGroupCommand";
19
+ import {
20
+ DeleteProfilingGroupCommandInput,
21
+ DeleteProfilingGroupCommandOutput,
22
+ } from "./commands/DeleteProfilingGroupCommand";
23
+ import {
24
+ DescribeProfilingGroupCommandInput,
25
+ DescribeProfilingGroupCommandOutput,
26
+ } from "./commands/DescribeProfilingGroupCommand";
27
+ import {
28
+ GetFindingsReportAccountSummaryCommandInput,
29
+ GetFindingsReportAccountSummaryCommandOutput,
30
+ } from "./commands/GetFindingsReportAccountSummaryCommand";
31
+ import {
32
+ GetNotificationConfigurationCommandInput,
33
+ GetNotificationConfigurationCommandOutput,
34
+ } from "./commands/GetNotificationConfigurationCommand";
35
+ import {
36
+ GetPolicyCommandInput,
37
+ GetPolicyCommandOutput,
38
+ } from "./commands/GetPolicyCommand";
39
+ import {
40
+ GetProfileCommandInput,
41
+ GetProfileCommandOutput,
42
+ } from "./commands/GetProfileCommand";
43
+ import {
44
+ GetRecommendationsCommandInput,
45
+ GetRecommendationsCommandOutput,
46
+ } from "./commands/GetRecommendationsCommand";
47
+ import {
48
+ ListFindingsReportsCommandInput,
49
+ ListFindingsReportsCommandOutput,
50
+ } from "./commands/ListFindingsReportsCommand";
51
+ import {
52
+ ListProfileTimesCommandInput,
53
+ ListProfileTimesCommandOutput,
54
+ } from "./commands/ListProfileTimesCommand";
55
+ import {
56
+ ListProfilingGroupsCommandInput,
57
+ ListProfilingGroupsCommandOutput,
58
+ } from "./commands/ListProfilingGroupsCommand";
59
+ import {
60
+ ListTagsForResourceCommandInput,
61
+ ListTagsForResourceCommandOutput,
62
+ } from "./commands/ListTagsForResourceCommand";
63
+ import {
64
+ PostAgentProfileCommandInput,
65
+ PostAgentProfileCommandOutput,
66
+ } from "./commands/PostAgentProfileCommand";
67
+ import {
68
+ PutPermissionCommandInput,
69
+ PutPermissionCommandOutput,
70
+ } from "./commands/PutPermissionCommand";
71
+ import {
72
+ RemoveNotificationChannelCommandInput,
73
+ RemoveNotificationChannelCommandOutput,
74
+ } from "./commands/RemoveNotificationChannelCommand";
75
+ import {
76
+ RemovePermissionCommandInput,
77
+ RemovePermissionCommandOutput,
78
+ } from "./commands/RemovePermissionCommand";
79
+ import {
80
+ SubmitFeedbackCommandInput,
81
+ SubmitFeedbackCommandOutput,
82
+ } from "./commands/SubmitFeedbackCommand";
83
+ import {
84
+ TagResourceCommandInput,
85
+ TagResourceCommandOutput,
86
+ } from "./commands/TagResourceCommand";
87
+ import {
88
+ UntagResourceCommandInput,
89
+ UntagResourceCommandOutput,
90
+ } from "./commands/UntagResourceCommand";
91
+ import {
92
+ UpdateProfilingGroupCommandInput,
93
+ UpdateProfilingGroupCommandOutput,
94
+ } from "./commands/UpdateProfilingGroupCommand";
95
+
96
+ export declare class CodeGuruProfiler extends CodeGuruProfilerClient {
97
+ addNotificationChannels(
98
+ args: AddNotificationChannelsCommandInput,
99
+ options?: __HttpHandlerOptions
100
+ ): Promise<AddNotificationChannelsCommandOutput>;
101
+ addNotificationChannels(
102
+ args: AddNotificationChannelsCommandInput,
103
+ cb: (err: any, data?: AddNotificationChannelsCommandOutput) => void
104
+ ): void;
105
+ addNotificationChannels(
106
+ args: AddNotificationChannelsCommandInput,
107
+ options: __HttpHandlerOptions,
108
+ cb: (err: any, data?: AddNotificationChannelsCommandOutput) => void
109
+ ): void;
110
+
111
+ batchGetFrameMetricData(
112
+ args: BatchGetFrameMetricDataCommandInput,
113
+ options?: __HttpHandlerOptions
114
+ ): Promise<BatchGetFrameMetricDataCommandOutput>;
115
+ batchGetFrameMetricData(
116
+ args: BatchGetFrameMetricDataCommandInput,
117
+ cb: (err: any, data?: BatchGetFrameMetricDataCommandOutput) => void
118
+ ): void;
119
+ batchGetFrameMetricData(
120
+ args: BatchGetFrameMetricDataCommandInput,
121
+ options: __HttpHandlerOptions,
122
+ cb: (err: any, data?: BatchGetFrameMetricDataCommandOutput) => void
123
+ ): void;
124
+
125
+ configureAgent(
126
+ args: ConfigureAgentCommandInput,
127
+ options?: __HttpHandlerOptions
128
+ ): Promise<ConfigureAgentCommandOutput>;
129
+ configureAgent(
130
+ args: ConfigureAgentCommandInput,
131
+ cb: (err: any, data?: ConfigureAgentCommandOutput) => void
132
+ ): void;
133
+ configureAgent(
134
+ args: ConfigureAgentCommandInput,
135
+ options: __HttpHandlerOptions,
136
+ cb: (err: any, data?: ConfigureAgentCommandOutput) => void
137
+ ): void;
138
+
139
+ createProfilingGroup(
140
+ args: CreateProfilingGroupCommandInput,
141
+ options?: __HttpHandlerOptions
142
+ ): Promise<CreateProfilingGroupCommandOutput>;
143
+ createProfilingGroup(
144
+ args: CreateProfilingGroupCommandInput,
145
+ cb: (err: any, data?: CreateProfilingGroupCommandOutput) => void
146
+ ): void;
147
+ createProfilingGroup(
148
+ args: CreateProfilingGroupCommandInput,
149
+ options: __HttpHandlerOptions,
150
+ cb: (err: any, data?: CreateProfilingGroupCommandOutput) => void
151
+ ): void;
152
+
153
+ deleteProfilingGroup(
154
+ args: DeleteProfilingGroupCommandInput,
155
+ options?: __HttpHandlerOptions
156
+ ): Promise<DeleteProfilingGroupCommandOutput>;
157
+ deleteProfilingGroup(
158
+ args: DeleteProfilingGroupCommandInput,
159
+ cb: (err: any, data?: DeleteProfilingGroupCommandOutput) => void
160
+ ): void;
161
+ deleteProfilingGroup(
162
+ args: DeleteProfilingGroupCommandInput,
163
+ options: __HttpHandlerOptions,
164
+ cb: (err: any, data?: DeleteProfilingGroupCommandOutput) => void
165
+ ): void;
166
+
167
+ describeProfilingGroup(
168
+ args: DescribeProfilingGroupCommandInput,
169
+ options?: __HttpHandlerOptions
170
+ ): Promise<DescribeProfilingGroupCommandOutput>;
171
+ describeProfilingGroup(
172
+ args: DescribeProfilingGroupCommandInput,
173
+ cb: (err: any, data?: DescribeProfilingGroupCommandOutput) => void
174
+ ): void;
175
+ describeProfilingGroup(
176
+ args: DescribeProfilingGroupCommandInput,
177
+ options: __HttpHandlerOptions,
178
+ cb: (err: any, data?: DescribeProfilingGroupCommandOutput) => void
179
+ ): void;
180
+
181
+ getFindingsReportAccountSummary(
182
+ args: GetFindingsReportAccountSummaryCommandInput,
183
+ options?: __HttpHandlerOptions
184
+ ): Promise<GetFindingsReportAccountSummaryCommandOutput>;
185
+ getFindingsReportAccountSummary(
186
+ args: GetFindingsReportAccountSummaryCommandInput,
187
+ cb: (err: any, data?: GetFindingsReportAccountSummaryCommandOutput) => void
188
+ ): void;
189
+ getFindingsReportAccountSummary(
190
+ args: GetFindingsReportAccountSummaryCommandInput,
191
+ options: __HttpHandlerOptions,
192
+ cb: (err: any, data?: GetFindingsReportAccountSummaryCommandOutput) => void
193
+ ): void;
194
+
195
+ getNotificationConfiguration(
196
+ args: GetNotificationConfigurationCommandInput,
197
+ options?: __HttpHandlerOptions
198
+ ): Promise<GetNotificationConfigurationCommandOutput>;
199
+ getNotificationConfiguration(
200
+ args: GetNotificationConfigurationCommandInput,
201
+ cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void
202
+ ): void;
203
+ getNotificationConfiguration(
204
+ args: GetNotificationConfigurationCommandInput,
205
+ options: __HttpHandlerOptions,
206
+ cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void
207
+ ): void;
208
+
209
+ getPolicy(
210
+ args: GetPolicyCommandInput,
211
+ options?: __HttpHandlerOptions
212
+ ): Promise<GetPolicyCommandOutput>;
213
+ getPolicy(
214
+ args: GetPolicyCommandInput,
215
+ cb: (err: any, data?: GetPolicyCommandOutput) => void
216
+ ): void;
217
+ getPolicy(
218
+ args: GetPolicyCommandInput,
219
+ options: __HttpHandlerOptions,
220
+ cb: (err: any, data?: GetPolicyCommandOutput) => void
221
+ ): void;
222
+
223
+ getProfile(
224
+ args: GetProfileCommandInput,
225
+ options?: __HttpHandlerOptions
226
+ ): Promise<GetProfileCommandOutput>;
227
+ getProfile(
228
+ args: GetProfileCommandInput,
229
+ cb: (err: any, data?: GetProfileCommandOutput) => void
230
+ ): void;
231
+ getProfile(
232
+ args: GetProfileCommandInput,
233
+ options: __HttpHandlerOptions,
234
+ cb: (err: any, data?: GetProfileCommandOutput) => void
235
+ ): void;
236
+
237
+ getRecommendations(
238
+ args: GetRecommendationsCommandInput,
239
+ options?: __HttpHandlerOptions
240
+ ): Promise<GetRecommendationsCommandOutput>;
241
+ getRecommendations(
242
+ args: GetRecommendationsCommandInput,
243
+ cb: (err: any, data?: GetRecommendationsCommandOutput) => void
244
+ ): void;
245
+ getRecommendations(
246
+ args: GetRecommendationsCommandInput,
247
+ options: __HttpHandlerOptions,
248
+ cb: (err: any, data?: GetRecommendationsCommandOutput) => void
249
+ ): void;
250
+
251
+ listFindingsReports(
252
+ args: ListFindingsReportsCommandInput,
253
+ options?: __HttpHandlerOptions
254
+ ): Promise<ListFindingsReportsCommandOutput>;
255
+ listFindingsReports(
256
+ args: ListFindingsReportsCommandInput,
257
+ cb: (err: any, data?: ListFindingsReportsCommandOutput) => void
258
+ ): void;
259
+ listFindingsReports(
260
+ args: ListFindingsReportsCommandInput,
261
+ options: __HttpHandlerOptions,
262
+ cb: (err: any, data?: ListFindingsReportsCommandOutput) => void
263
+ ): void;
264
+
265
+ listProfileTimes(
266
+ args: ListProfileTimesCommandInput,
267
+ options?: __HttpHandlerOptions
268
+ ): Promise<ListProfileTimesCommandOutput>;
269
+ listProfileTimes(
270
+ args: ListProfileTimesCommandInput,
271
+ cb: (err: any, data?: ListProfileTimesCommandOutput) => void
272
+ ): void;
273
+ listProfileTimes(
274
+ args: ListProfileTimesCommandInput,
275
+ options: __HttpHandlerOptions,
276
+ cb: (err: any, data?: ListProfileTimesCommandOutput) => void
277
+ ): void;
278
+
279
+ listProfilingGroups(
280
+ args: ListProfilingGroupsCommandInput,
281
+ options?: __HttpHandlerOptions
282
+ ): Promise<ListProfilingGroupsCommandOutput>;
283
+ listProfilingGroups(
284
+ args: ListProfilingGroupsCommandInput,
285
+ cb: (err: any, data?: ListProfilingGroupsCommandOutput) => void
286
+ ): void;
287
+ listProfilingGroups(
288
+ args: ListProfilingGroupsCommandInput,
289
+ options: __HttpHandlerOptions,
290
+ cb: (err: any, data?: ListProfilingGroupsCommandOutput) => void
291
+ ): void;
292
+
293
+ listTagsForResource(
294
+ args: ListTagsForResourceCommandInput,
295
+ options?: __HttpHandlerOptions
296
+ ): Promise<ListTagsForResourceCommandOutput>;
297
+ listTagsForResource(
298
+ args: ListTagsForResourceCommandInput,
299
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
300
+ ): void;
301
+ listTagsForResource(
302
+ args: ListTagsForResourceCommandInput,
303
+ options: __HttpHandlerOptions,
304
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
305
+ ): void;
306
+
307
+ postAgentProfile(
308
+ args: PostAgentProfileCommandInput,
309
+ options?: __HttpHandlerOptions
310
+ ): Promise<PostAgentProfileCommandOutput>;
311
+ postAgentProfile(
312
+ args: PostAgentProfileCommandInput,
313
+ cb: (err: any, data?: PostAgentProfileCommandOutput) => void
314
+ ): void;
315
+ postAgentProfile(
316
+ args: PostAgentProfileCommandInput,
317
+ options: __HttpHandlerOptions,
318
+ cb: (err: any, data?: PostAgentProfileCommandOutput) => void
319
+ ): void;
320
+
321
+ putPermission(
322
+ args: PutPermissionCommandInput,
323
+ options?: __HttpHandlerOptions
324
+ ): Promise<PutPermissionCommandOutput>;
325
+ putPermission(
326
+ args: PutPermissionCommandInput,
327
+ cb: (err: any, data?: PutPermissionCommandOutput) => void
328
+ ): void;
329
+ putPermission(
330
+ args: PutPermissionCommandInput,
331
+ options: __HttpHandlerOptions,
332
+ cb: (err: any, data?: PutPermissionCommandOutput) => void
333
+ ): void;
334
+
335
+ removeNotificationChannel(
336
+ args: RemoveNotificationChannelCommandInput,
337
+ options?: __HttpHandlerOptions
338
+ ): Promise<RemoveNotificationChannelCommandOutput>;
339
+ removeNotificationChannel(
340
+ args: RemoveNotificationChannelCommandInput,
341
+ cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void
342
+ ): void;
343
+ removeNotificationChannel(
344
+ args: RemoveNotificationChannelCommandInput,
345
+ options: __HttpHandlerOptions,
346
+ cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void
347
+ ): void;
348
+
349
+ removePermission(
350
+ args: RemovePermissionCommandInput,
351
+ options?: __HttpHandlerOptions
352
+ ): Promise<RemovePermissionCommandOutput>;
353
+ removePermission(
354
+ args: RemovePermissionCommandInput,
355
+ cb: (err: any, data?: RemovePermissionCommandOutput) => void
356
+ ): void;
357
+ removePermission(
358
+ args: RemovePermissionCommandInput,
359
+ options: __HttpHandlerOptions,
360
+ cb: (err: any, data?: RemovePermissionCommandOutput) => void
361
+ ): void;
362
+
363
+ submitFeedback(
364
+ args: SubmitFeedbackCommandInput,
365
+ options?: __HttpHandlerOptions
366
+ ): Promise<SubmitFeedbackCommandOutput>;
367
+ submitFeedback(
368
+ args: SubmitFeedbackCommandInput,
369
+ cb: (err: any, data?: SubmitFeedbackCommandOutput) => void
370
+ ): void;
371
+ submitFeedback(
372
+ args: SubmitFeedbackCommandInput,
373
+ options: __HttpHandlerOptions,
374
+ cb: (err: any, data?: SubmitFeedbackCommandOutput) => void
375
+ ): void;
376
+
377
+ tagResource(
378
+ args: TagResourceCommandInput,
379
+ options?: __HttpHandlerOptions
380
+ ): Promise<TagResourceCommandOutput>;
381
+ tagResource(
382
+ args: TagResourceCommandInput,
383
+ cb: (err: any, data?: TagResourceCommandOutput) => void
384
+ ): void;
385
+ tagResource(
386
+ args: TagResourceCommandInput,
387
+ options: __HttpHandlerOptions,
388
+ cb: (err: any, data?: TagResourceCommandOutput) => void
389
+ ): void;
390
+
391
+ untagResource(
392
+ args: UntagResourceCommandInput,
393
+ options?: __HttpHandlerOptions
394
+ ): Promise<UntagResourceCommandOutput>;
395
+ untagResource(
396
+ args: UntagResourceCommandInput,
397
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
398
+ ): void;
399
+ untagResource(
400
+ args: UntagResourceCommandInput,
401
+ options: __HttpHandlerOptions,
402
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
403
+ ): void;
404
+
405
+ updateProfilingGroup(
406
+ args: UpdateProfilingGroupCommandInput,
407
+ options?: __HttpHandlerOptions
408
+ ): Promise<UpdateProfilingGroupCommandOutput>;
409
+ updateProfilingGroup(
410
+ args: UpdateProfilingGroupCommandInput,
411
+ cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void
412
+ ): void;
413
+ updateProfilingGroup(
414
+ args: UpdateProfilingGroupCommandInput,
415
+ options: __HttpHandlerOptions,
416
+ cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void
417
+ ): void;
418
+ }