@aws-sdk/client-codeguruprofiler 3.1087.0 → 3.1089.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/CodeGuruProfiler.d.ts +77 -88
- package/dist-types/ts3.4/CodeGuruProfilerClient.d.ts +8 -27
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AddNotificationChannelsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchGetFrameMetricDataCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ConfigureAgentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateProfilingGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteProfilingGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeProfilingGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetFindingsReportAccountSummaryCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetNotificationConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetPolicyCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetRecommendationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListFindingsReportsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListProfileTimesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListProfilingGroupsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PostAgentProfileCommand.d.ts +6 -15
- package/dist-types/ts3.4/commands/PutPermissionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/RemoveNotificationChannelCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SubmitFeedbackCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateProfilingGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -36,14 +36,8 @@ import {
|
|
|
36
36
|
GetNotificationConfigurationCommandInput,
|
|
37
37
|
GetNotificationConfigurationCommandOutput,
|
|
38
38
|
} from "./commands/GetNotificationConfigurationCommand";
|
|
39
|
-
import {
|
|
40
|
-
|
|
41
|
-
GetPolicyCommandOutput,
|
|
42
|
-
} from "./commands/GetPolicyCommand";
|
|
43
|
-
import {
|
|
44
|
-
GetProfileCommandInput,
|
|
45
|
-
GetProfileCommandOutput,
|
|
46
|
-
} from "./commands/GetProfileCommand";
|
|
39
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
40
|
+
import { GetProfileCommandInput, GetProfileCommandOutput } from "./commands/GetProfileCommand";
|
|
47
41
|
import {
|
|
48
42
|
GetRecommendationsCommandInput,
|
|
49
43
|
GetRecommendationsCommandOutput,
|
|
@@ -84,10 +78,7 @@ import {
|
|
|
84
78
|
SubmitFeedbackCommandInput,
|
|
85
79
|
SubmitFeedbackCommandOutput,
|
|
86
80
|
} from "./commands/SubmitFeedbackCommand";
|
|
87
|
-
import {
|
|
88
|
-
TagResourceCommandInput,
|
|
89
|
-
TagResourceCommandOutput,
|
|
90
|
-
} from "./commands/TagResourceCommand";
|
|
81
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
91
82
|
import {
|
|
92
83
|
UntagResourceCommandInput,
|
|
93
84
|
UntagResourceCommandOutput,
|
|
@@ -99,334 +90,332 @@ import {
|
|
|
99
90
|
export interface CodeGuruProfiler {
|
|
100
91
|
addNotificationChannels(
|
|
101
92
|
args: AddNotificationChannelsCommandInput,
|
|
102
|
-
options?: __HttpHandlerOptions
|
|
93
|
+
options?: __HttpHandlerOptions,
|
|
103
94
|
): Promise<AddNotificationChannelsCommandOutput>;
|
|
104
95
|
addNotificationChannels(
|
|
105
96
|
args: AddNotificationChannelsCommandInput,
|
|
106
|
-
cb: (err: any, data?: AddNotificationChannelsCommandOutput) => void
|
|
97
|
+
cb: (err: any, data?: AddNotificationChannelsCommandOutput) => void,
|
|
107
98
|
): void;
|
|
108
99
|
addNotificationChannels(
|
|
109
100
|
args: AddNotificationChannelsCommandInput,
|
|
110
101
|
options: __HttpHandlerOptions,
|
|
111
|
-
cb: (err: any, data?: AddNotificationChannelsCommandOutput) => void
|
|
102
|
+
cb: (err: any, data?: AddNotificationChannelsCommandOutput) => void,
|
|
112
103
|
): void;
|
|
113
104
|
batchGetFrameMetricData(
|
|
114
105
|
args: BatchGetFrameMetricDataCommandInput,
|
|
115
|
-
options?: __HttpHandlerOptions
|
|
106
|
+
options?: __HttpHandlerOptions,
|
|
116
107
|
): Promise<BatchGetFrameMetricDataCommandOutput>;
|
|
117
108
|
batchGetFrameMetricData(
|
|
118
109
|
args: BatchGetFrameMetricDataCommandInput,
|
|
119
|
-
cb: (err: any, data?: BatchGetFrameMetricDataCommandOutput) => void
|
|
110
|
+
cb: (err: any, data?: BatchGetFrameMetricDataCommandOutput) => void,
|
|
120
111
|
): void;
|
|
121
112
|
batchGetFrameMetricData(
|
|
122
113
|
args: BatchGetFrameMetricDataCommandInput,
|
|
123
114
|
options: __HttpHandlerOptions,
|
|
124
|
-
cb: (err: any, data?: BatchGetFrameMetricDataCommandOutput) => void
|
|
115
|
+
cb: (err: any, data?: BatchGetFrameMetricDataCommandOutput) => void,
|
|
125
116
|
): void;
|
|
126
117
|
configureAgent(
|
|
127
118
|
args: ConfigureAgentCommandInput,
|
|
128
|
-
options?: __HttpHandlerOptions
|
|
119
|
+
options?: __HttpHandlerOptions,
|
|
129
120
|
): Promise<ConfigureAgentCommandOutput>;
|
|
130
121
|
configureAgent(
|
|
131
122
|
args: ConfigureAgentCommandInput,
|
|
132
|
-
cb: (err: any, data?: ConfigureAgentCommandOutput) => void
|
|
123
|
+
cb: (err: any, data?: ConfigureAgentCommandOutput) => void,
|
|
133
124
|
): void;
|
|
134
125
|
configureAgent(
|
|
135
126
|
args: ConfigureAgentCommandInput,
|
|
136
127
|
options: __HttpHandlerOptions,
|
|
137
|
-
cb: (err: any, data?: ConfigureAgentCommandOutput) => void
|
|
128
|
+
cb: (err: any, data?: ConfigureAgentCommandOutput) => void,
|
|
138
129
|
): void;
|
|
139
130
|
createProfilingGroup(
|
|
140
131
|
args: CreateProfilingGroupCommandInput,
|
|
141
|
-
options?: __HttpHandlerOptions
|
|
132
|
+
options?: __HttpHandlerOptions,
|
|
142
133
|
): Promise<CreateProfilingGroupCommandOutput>;
|
|
143
134
|
createProfilingGroup(
|
|
144
135
|
args: CreateProfilingGroupCommandInput,
|
|
145
|
-
cb: (err: any, data?: CreateProfilingGroupCommandOutput) => void
|
|
136
|
+
cb: (err: any, data?: CreateProfilingGroupCommandOutput) => void,
|
|
146
137
|
): void;
|
|
147
138
|
createProfilingGroup(
|
|
148
139
|
args: CreateProfilingGroupCommandInput,
|
|
149
140
|
options: __HttpHandlerOptions,
|
|
150
|
-
cb: (err: any, data?: CreateProfilingGroupCommandOutput) => void
|
|
141
|
+
cb: (err: any, data?: CreateProfilingGroupCommandOutput) => void,
|
|
151
142
|
): void;
|
|
152
143
|
deleteProfilingGroup(
|
|
153
144
|
args: DeleteProfilingGroupCommandInput,
|
|
154
|
-
options?: __HttpHandlerOptions
|
|
145
|
+
options?: __HttpHandlerOptions,
|
|
155
146
|
): Promise<DeleteProfilingGroupCommandOutput>;
|
|
156
147
|
deleteProfilingGroup(
|
|
157
148
|
args: DeleteProfilingGroupCommandInput,
|
|
158
|
-
cb: (err: any, data?: DeleteProfilingGroupCommandOutput) => void
|
|
149
|
+
cb: (err: any, data?: DeleteProfilingGroupCommandOutput) => void,
|
|
159
150
|
): void;
|
|
160
151
|
deleteProfilingGroup(
|
|
161
152
|
args: DeleteProfilingGroupCommandInput,
|
|
162
153
|
options: __HttpHandlerOptions,
|
|
163
|
-
cb: (err: any, data?: DeleteProfilingGroupCommandOutput) => void
|
|
154
|
+
cb: (err: any, data?: DeleteProfilingGroupCommandOutput) => void,
|
|
164
155
|
): void;
|
|
165
156
|
describeProfilingGroup(
|
|
166
157
|
args: DescribeProfilingGroupCommandInput,
|
|
167
|
-
options?: __HttpHandlerOptions
|
|
158
|
+
options?: __HttpHandlerOptions,
|
|
168
159
|
): Promise<DescribeProfilingGroupCommandOutput>;
|
|
169
160
|
describeProfilingGroup(
|
|
170
161
|
args: DescribeProfilingGroupCommandInput,
|
|
171
|
-
cb: (err: any, data?: DescribeProfilingGroupCommandOutput) => void
|
|
162
|
+
cb: (err: any, data?: DescribeProfilingGroupCommandOutput) => void,
|
|
172
163
|
): void;
|
|
173
164
|
describeProfilingGroup(
|
|
174
165
|
args: DescribeProfilingGroupCommandInput,
|
|
175
166
|
options: __HttpHandlerOptions,
|
|
176
|
-
cb: (err: any, data?: DescribeProfilingGroupCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: DescribeProfilingGroupCommandOutput) => void,
|
|
177
168
|
): void;
|
|
178
169
|
getFindingsReportAccountSummary(): Promise<GetFindingsReportAccountSummaryCommandOutput>;
|
|
179
170
|
getFindingsReportAccountSummary(
|
|
180
171
|
args: GetFindingsReportAccountSummaryCommandInput,
|
|
181
|
-
options?: __HttpHandlerOptions
|
|
172
|
+
options?: __HttpHandlerOptions,
|
|
182
173
|
): Promise<GetFindingsReportAccountSummaryCommandOutput>;
|
|
183
174
|
getFindingsReportAccountSummary(
|
|
184
175
|
args: GetFindingsReportAccountSummaryCommandInput,
|
|
185
|
-
cb: (err: any, data?: GetFindingsReportAccountSummaryCommandOutput) => void
|
|
176
|
+
cb: (err: any, data?: GetFindingsReportAccountSummaryCommandOutput) => void,
|
|
186
177
|
): void;
|
|
187
178
|
getFindingsReportAccountSummary(
|
|
188
179
|
args: GetFindingsReportAccountSummaryCommandInput,
|
|
189
180
|
options: __HttpHandlerOptions,
|
|
190
|
-
cb: (err: any, data?: GetFindingsReportAccountSummaryCommandOutput) => void
|
|
181
|
+
cb: (err: any, data?: GetFindingsReportAccountSummaryCommandOutput) => void,
|
|
191
182
|
): void;
|
|
192
183
|
getNotificationConfiguration(
|
|
193
184
|
args: GetNotificationConfigurationCommandInput,
|
|
194
|
-
options?: __HttpHandlerOptions
|
|
185
|
+
options?: __HttpHandlerOptions,
|
|
195
186
|
): Promise<GetNotificationConfigurationCommandOutput>;
|
|
196
187
|
getNotificationConfiguration(
|
|
197
188
|
args: GetNotificationConfigurationCommandInput,
|
|
198
|
-
cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void
|
|
189
|
+
cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void,
|
|
199
190
|
): void;
|
|
200
191
|
getNotificationConfiguration(
|
|
201
192
|
args: GetNotificationConfigurationCommandInput,
|
|
202
193
|
options: __HttpHandlerOptions,
|
|
203
|
-
cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void
|
|
194
|
+
cb: (err: any, data?: GetNotificationConfigurationCommandOutput) => void,
|
|
204
195
|
): void;
|
|
205
196
|
getPolicy(
|
|
206
197
|
args: GetPolicyCommandInput,
|
|
207
|
-
options?: __HttpHandlerOptions
|
|
198
|
+
options?: __HttpHandlerOptions,
|
|
208
199
|
): Promise<GetPolicyCommandOutput>;
|
|
209
200
|
getPolicy(
|
|
210
201
|
args: GetPolicyCommandInput,
|
|
211
|
-
cb: (err: any, data?: GetPolicyCommandOutput) => void
|
|
202
|
+
cb: (err: any, data?: GetPolicyCommandOutput) => void,
|
|
212
203
|
): void;
|
|
213
204
|
getPolicy(
|
|
214
205
|
args: GetPolicyCommandInput,
|
|
215
206
|
options: __HttpHandlerOptions,
|
|
216
|
-
cb: (err: any, data?: GetPolicyCommandOutput) => void
|
|
207
|
+
cb: (err: any, data?: GetPolicyCommandOutput) => void,
|
|
217
208
|
): void;
|
|
218
209
|
getProfile(
|
|
219
210
|
args: GetProfileCommandInput,
|
|
220
|
-
options?: __HttpHandlerOptions
|
|
211
|
+
options?: __HttpHandlerOptions,
|
|
221
212
|
): Promise<GetProfileCommandOutput>;
|
|
222
213
|
getProfile(
|
|
223
214
|
args: GetProfileCommandInput,
|
|
224
|
-
cb: (err: any, data?: GetProfileCommandOutput) => void
|
|
215
|
+
cb: (err: any, data?: GetProfileCommandOutput) => void,
|
|
225
216
|
): void;
|
|
226
217
|
getProfile(
|
|
227
218
|
args: GetProfileCommandInput,
|
|
228
219
|
options: __HttpHandlerOptions,
|
|
229
|
-
cb: (err: any, data?: GetProfileCommandOutput) => void
|
|
220
|
+
cb: (err: any, data?: GetProfileCommandOutput) => void,
|
|
230
221
|
): void;
|
|
231
222
|
getRecommendations(
|
|
232
223
|
args: GetRecommendationsCommandInput,
|
|
233
|
-
options?: __HttpHandlerOptions
|
|
224
|
+
options?: __HttpHandlerOptions,
|
|
234
225
|
): Promise<GetRecommendationsCommandOutput>;
|
|
235
226
|
getRecommendations(
|
|
236
227
|
args: GetRecommendationsCommandInput,
|
|
237
|
-
cb: (err: any, data?: GetRecommendationsCommandOutput) => void
|
|
228
|
+
cb: (err: any, data?: GetRecommendationsCommandOutput) => void,
|
|
238
229
|
): void;
|
|
239
230
|
getRecommendations(
|
|
240
231
|
args: GetRecommendationsCommandInput,
|
|
241
232
|
options: __HttpHandlerOptions,
|
|
242
|
-
cb: (err: any, data?: GetRecommendationsCommandOutput) => void
|
|
233
|
+
cb: (err: any, data?: GetRecommendationsCommandOutput) => void,
|
|
243
234
|
): void;
|
|
244
235
|
listFindingsReports(
|
|
245
236
|
args: ListFindingsReportsCommandInput,
|
|
246
|
-
options?: __HttpHandlerOptions
|
|
237
|
+
options?: __HttpHandlerOptions,
|
|
247
238
|
): Promise<ListFindingsReportsCommandOutput>;
|
|
248
239
|
listFindingsReports(
|
|
249
240
|
args: ListFindingsReportsCommandInput,
|
|
250
|
-
cb: (err: any, data?: ListFindingsReportsCommandOutput) => void
|
|
241
|
+
cb: (err: any, data?: ListFindingsReportsCommandOutput) => void,
|
|
251
242
|
): void;
|
|
252
243
|
listFindingsReports(
|
|
253
244
|
args: ListFindingsReportsCommandInput,
|
|
254
245
|
options: __HttpHandlerOptions,
|
|
255
|
-
cb: (err: any, data?: ListFindingsReportsCommandOutput) => void
|
|
246
|
+
cb: (err: any, data?: ListFindingsReportsCommandOutput) => void,
|
|
256
247
|
): void;
|
|
257
248
|
listProfileTimes(
|
|
258
249
|
args: ListProfileTimesCommandInput,
|
|
259
|
-
options?: __HttpHandlerOptions
|
|
250
|
+
options?: __HttpHandlerOptions,
|
|
260
251
|
): Promise<ListProfileTimesCommandOutput>;
|
|
261
252
|
listProfileTimes(
|
|
262
253
|
args: ListProfileTimesCommandInput,
|
|
263
|
-
cb: (err: any, data?: ListProfileTimesCommandOutput) => void
|
|
254
|
+
cb: (err: any, data?: ListProfileTimesCommandOutput) => void,
|
|
264
255
|
): void;
|
|
265
256
|
listProfileTimes(
|
|
266
257
|
args: ListProfileTimesCommandInput,
|
|
267
258
|
options: __HttpHandlerOptions,
|
|
268
|
-
cb: (err: any, data?: ListProfileTimesCommandOutput) => void
|
|
259
|
+
cb: (err: any, data?: ListProfileTimesCommandOutput) => void,
|
|
269
260
|
): void;
|
|
270
261
|
listProfilingGroups(): Promise<ListProfilingGroupsCommandOutput>;
|
|
271
262
|
listProfilingGroups(
|
|
272
263
|
args: ListProfilingGroupsCommandInput,
|
|
273
|
-
options?: __HttpHandlerOptions
|
|
264
|
+
options?: __HttpHandlerOptions,
|
|
274
265
|
): Promise<ListProfilingGroupsCommandOutput>;
|
|
275
266
|
listProfilingGroups(
|
|
276
267
|
args: ListProfilingGroupsCommandInput,
|
|
277
|
-
cb: (err: any, data?: ListProfilingGroupsCommandOutput) => void
|
|
268
|
+
cb: (err: any, data?: ListProfilingGroupsCommandOutput) => void,
|
|
278
269
|
): void;
|
|
279
270
|
listProfilingGroups(
|
|
280
271
|
args: ListProfilingGroupsCommandInput,
|
|
281
272
|
options: __HttpHandlerOptions,
|
|
282
|
-
cb: (err: any, data?: ListProfilingGroupsCommandOutput) => void
|
|
273
|
+
cb: (err: any, data?: ListProfilingGroupsCommandOutput) => void,
|
|
283
274
|
): void;
|
|
284
275
|
listTagsForResource(
|
|
285
276
|
args: ListTagsForResourceCommandInput,
|
|
286
|
-
options?: __HttpHandlerOptions
|
|
277
|
+
options?: __HttpHandlerOptions,
|
|
287
278
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
288
279
|
listTagsForResource(
|
|
289
280
|
args: ListTagsForResourceCommandInput,
|
|
290
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
281
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
291
282
|
): void;
|
|
292
283
|
listTagsForResource(
|
|
293
284
|
args: ListTagsForResourceCommandInput,
|
|
294
285
|
options: __HttpHandlerOptions,
|
|
295
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
286
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
296
287
|
): void;
|
|
297
288
|
postAgentProfile(
|
|
298
289
|
args: PostAgentProfileCommandInput,
|
|
299
|
-
options?: __HttpHandlerOptions
|
|
290
|
+
options?: __HttpHandlerOptions,
|
|
300
291
|
): Promise<PostAgentProfileCommandOutput>;
|
|
301
292
|
postAgentProfile(
|
|
302
293
|
args: PostAgentProfileCommandInput,
|
|
303
|
-
cb: (err: any, data?: PostAgentProfileCommandOutput) => void
|
|
294
|
+
cb: (err: any, data?: PostAgentProfileCommandOutput) => void,
|
|
304
295
|
): void;
|
|
305
296
|
postAgentProfile(
|
|
306
297
|
args: PostAgentProfileCommandInput,
|
|
307
298
|
options: __HttpHandlerOptions,
|
|
308
|
-
cb: (err: any, data?: PostAgentProfileCommandOutput) => void
|
|
299
|
+
cb: (err: any, data?: PostAgentProfileCommandOutput) => void,
|
|
309
300
|
): void;
|
|
310
301
|
putPermission(
|
|
311
302
|
args: PutPermissionCommandInput,
|
|
312
|
-
options?: __HttpHandlerOptions
|
|
303
|
+
options?: __HttpHandlerOptions,
|
|
313
304
|
): Promise<PutPermissionCommandOutput>;
|
|
314
305
|
putPermission(
|
|
315
306
|
args: PutPermissionCommandInput,
|
|
316
|
-
cb: (err: any, data?: PutPermissionCommandOutput) => void
|
|
307
|
+
cb: (err: any, data?: PutPermissionCommandOutput) => void,
|
|
317
308
|
): void;
|
|
318
309
|
putPermission(
|
|
319
310
|
args: PutPermissionCommandInput,
|
|
320
311
|
options: __HttpHandlerOptions,
|
|
321
|
-
cb: (err: any, data?: PutPermissionCommandOutput) => void
|
|
312
|
+
cb: (err: any, data?: PutPermissionCommandOutput) => void,
|
|
322
313
|
): void;
|
|
323
314
|
removeNotificationChannel(
|
|
324
315
|
args: RemoveNotificationChannelCommandInput,
|
|
325
|
-
options?: __HttpHandlerOptions
|
|
316
|
+
options?: __HttpHandlerOptions,
|
|
326
317
|
): Promise<RemoveNotificationChannelCommandOutput>;
|
|
327
318
|
removeNotificationChannel(
|
|
328
319
|
args: RemoveNotificationChannelCommandInput,
|
|
329
|
-
cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void
|
|
320
|
+
cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void,
|
|
330
321
|
): void;
|
|
331
322
|
removeNotificationChannel(
|
|
332
323
|
args: RemoveNotificationChannelCommandInput,
|
|
333
324
|
options: __HttpHandlerOptions,
|
|
334
|
-
cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void
|
|
325
|
+
cb: (err: any, data?: RemoveNotificationChannelCommandOutput) => void,
|
|
335
326
|
): void;
|
|
336
327
|
removePermission(
|
|
337
328
|
args: RemovePermissionCommandInput,
|
|
338
|
-
options?: __HttpHandlerOptions
|
|
329
|
+
options?: __HttpHandlerOptions,
|
|
339
330
|
): Promise<RemovePermissionCommandOutput>;
|
|
340
331
|
removePermission(
|
|
341
332
|
args: RemovePermissionCommandInput,
|
|
342
|
-
cb: (err: any, data?: RemovePermissionCommandOutput) => void
|
|
333
|
+
cb: (err: any, data?: RemovePermissionCommandOutput) => void,
|
|
343
334
|
): void;
|
|
344
335
|
removePermission(
|
|
345
336
|
args: RemovePermissionCommandInput,
|
|
346
337
|
options: __HttpHandlerOptions,
|
|
347
|
-
cb: (err: any, data?: RemovePermissionCommandOutput) => void
|
|
338
|
+
cb: (err: any, data?: RemovePermissionCommandOutput) => void,
|
|
348
339
|
): void;
|
|
349
340
|
submitFeedback(
|
|
350
341
|
args: SubmitFeedbackCommandInput,
|
|
351
|
-
options?: __HttpHandlerOptions
|
|
342
|
+
options?: __HttpHandlerOptions,
|
|
352
343
|
): Promise<SubmitFeedbackCommandOutput>;
|
|
353
344
|
submitFeedback(
|
|
354
345
|
args: SubmitFeedbackCommandInput,
|
|
355
|
-
cb: (err: any, data?: SubmitFeedbackCommandOutput) => void
|
|
346
|
+
cb: (err: any, data?: SubmitFeedbackCommandOutput) => void,
|
|
356
347
|
): void;
|
|
357
348
|
submitFeedback(
|
|
358
349
|
args: SubmitFeedbackCommandInput,
|
|
359
350
|
options: __HttpHandlerOptions,
|
|
360
|
-
cb: (err: any, data?: SubmitFeedbackCommandOutput) => void
|
|
351
|
+
cb: (err: any, data?: SubmitFeedbackCommandOutput) => void,
|
|
361
352
|
): void;
|
|
362
353
|
tagResource(
|
|
363
354
|
args: TagResourceCommandInput,
|
|
364
|
-
options?: __HttpHandlerOptions
|
|
355
|
+
options?: __HttpHandlerOptions,
|
|
365
356
|
): Promise<TagResourceCommandOutput>;
|
|
366
357
|
tagResource(
|
|
367
358
|
args: TagResourceCommandInput,
|
|
368
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
359
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
369
360
|
): void;
|
|
370
361
|
tagResource(
|
|
371
362
|
args: TagResourceCommandInput,
|
|
372
363
|
options: __HttpHandlerOptions,
|
|
373
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
364
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
374
365
|
): void;
|
|
375
366
|
untagResource(
|
|
376
367
|
args: UntagResourceCommandInput,
|
|
377
|
-
options?: __HttpHandlerOptions
|
|
368
|
+
options?: __HttpHandlerOptions,
|
|
378
369
|
): Promise<UntagResourceCommandOutput>;
|
|
379
370
|
untagResource(
|
|
380
371
|
args: UntagResourceCommandInput,
|
|
381
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
372
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
382
373
|
): void;
|
|
383
374
|
untagResource(
|
|
384
375
|
args: UntagResourceCommandInput,
|
|
385
376
|
options: __HttpHandlerOptions,
|
|
386
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
377
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
387
378
|
): void;
|
|
388
379
|
updateProfilingGroup(
|
|
389
380
|
args: UpdateProfilingGroupCommandInput,
|
|
390
|
-
options?: __HttpHandlerOptions
|
|
381
|
+
options?: __HttpHandlerOptions,
|
|
391
382
|
): Promise<UpdateProfilingGroupCommandOutput>;
|
|
392
383
|
updateProfilingGroup(
|
|
393
384
|
args: UpdateProfilingGroupCommandInput,
|
|
394
|
-
cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void
|
|
385
|
+
cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void,
|
|
395
386
|
): void;
|
|
396
387
|
updateProfilingGroup(
|
|
397
388
|
args: UpdateProfilingGroupCommandInput,
|
|
398
389
|
options: __HttpHandlerOptions,
|
|
399
|
-
cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void
|
|
390
|
+
cb: (err: any, data?: UpdateProfilingGroupCommandOutput) => void,
|
|
400
391
|
): void;
|
|
401
392
|
paginateGetFindingsReportAccountSummary(
|
|
402
393
|
args?: GetFindingsReportAccountSummaryCommandInput,
|
|
403
394
|
paginationConfig?: Pick<
|
|
404
395
|
PaginationConfiguration,
|
|
405
396
|
Exclude<keyof PaginationConfiguration, "client">
|
|
406
|
-
|
|
397
|
+
>,
|
|
407
398
|
): Paginator<GetFindingsReportAccountSummaryCommandOutput>;
|
|
408
399
|
paginateListFindingsReports(
|
|
409
400
|
args: ListFindingsReportsCommandInput,
|
|
410
401
|
paginationConfig?: Pick<
|
|
411
402
|
PaginationConfiguration,
|
|
412
403
|
Exclude<keyof PaginationConfiguration, "client">
|
|
413
|
-
|
|
404
|
+
>,
|
|
414
405
|
): Paginator<ListFindingsReportsCommandOutput>;
|
|
415
406
|
paginateListProfileTimes(
|
|
416
407
|
args: ListProfileTimesCommandInput,
|
|
417
408
|
paginationConfig?: Pick<
|
|
418
409
|
PaginationConfiguration,
|
|
419
410
|
Exclude<keyof PaginationConfiguration, "client">
|
|
420
|
-
|
|
411
|
+
>,
|
|
421
412
|
): Paginator<ListProfileTimesCommandOutput>;
|
|
422
413
|
paginateListProfilingGroups(
|
|
423
414
|
args?: ListProfilingGroupsCommandInput,
|
|
424
415
|
paginationConfig?: Pick<
|
|
425
416
|
PaginationConfiguration,
|
|
426
417
|
Exclude<keyof PaginationConfiguration, "client">
|
|
427
|
-
|
|
418
|
+
>,
|
|
428
419
|
): Paginator<ListProfilingGroupsCommandOutput>;
|
|
429
420
|
}
|
|
430
|
-
export declare class CodeGuruProfiler
|
|
431
|
-
extends CodeGuruProfilerClient
|
|
432
|
-
implements CodeGuruProfiler {}
|
|
421
|
+
export declare class CodeGuruProfiler extends CodeGuruProfilerClient implements CodeGuruProfiler {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -68,14 +65,8 @@ import {
|
|
|
68
65
|
GetNotificationConfigurationCommandInput,
|
|
69
66
|
GetNotificationConfigurationCommandOutput,
|
|
70
67
|
} from "./commands/GetNotificationConfigurationCommand";
|
|
71
|
-
import {
|
|
72
|
-
|
|
73
|
-
GetPolicyCommandOutput,
|
|
74
|
-
} from "./commands/GetPolicyCommand";
|
|
75
|
-
import {
|
|
76
|
-
GetProfileCommandInput,
|
|
77
|
-
GetProfileCommandOutput,
|
|
78
|
-
} from "./commands/GetProfileCommand";
|
|
68
|
+
import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand";
|
|
69
|
+
import { GetProfileCommandInput, GetProfileCommandOutput } from "./commands/GetProfileCommand";
|
|
79
70
|
import {
|
|
80
71
|
GetRecommendationsCommandInput,
|
|
81
72
|
GetRecommendationsCommandOutput,
|
|
@@ -116,10 +107,7 @@ import {
|
|
|
116
107
|
SubmitFeedbackCommandInput,
|
|
117
108
|
SubmitFeedbackCommandOutput,
|
|
118
109
|
} from "./commands/SubmitFeedbackCommand";
|
|
119
|
-
import {
|
|
120
|
-
TagResourceCommandInput,
|
|
121
|
-
TagResourceCommandOutput,
|
|
122
|
-
} from "./commands/TagResourceCommand";
|
|
110
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
123
111
|
import {
|
|
124
112
|
UntagResourceCommandInput,
|
|
125
113
|
UntagResourceCommandOutput,
|
|
@@ -183,8 +171,7 @@ export type ServiceOutputTypes =
|
|
|
183
171
|
| TagResourceCommandOutput
|
|
184
172
|
| UntagResourceCommandOutput
|
|
185
173
|
| UpdateProfilingGroupCommandOutput;
|
|
186
|
-
export interface ClientDefaults
|
|
187
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
174
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
188
175
|
requestHandler?: __HttpHandlerUserInput;
|
|
189
176
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
190
177
|
urlParser?: __UrlParser;
|
|
@@ -220,8 +207,7 @@ export type CodeGuruProfilerClientConfigType = Partial<
|
|
|
220
207
|
EndpointInputConfig<EndpointParameters> &
|
|
221
208
|
HttpAuthSchemeInputConfig &
|
|
222
209
|
ClientInputEndpointParameters;
|
|
223
|
-
export interface CodeGuruProfilerClientConfig
|
|
224
|
-
extends CodeGuruProfilerClientConfigType {}
|
|
210
|
+
export interface CodeGuruProfilerClientConfig extends CodeGuruProfilerClientConfigType {}
|
|
225
211
|
export type CodeGuruProfilerClientResolvedConfigType =
|
|
226
212
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
227
213
|
Required<ClientDefaults> &
|
|
@@ -233,8 +219,7 @@ export type CodeGuruProfilerClientResolvedConfigType =
|
|
|
233
219
|
EndpointResolvedConfig<EndpointParameters> &
|
|
234
220
|
HttpAuthSchemeResolvedConfig &
|
|
235
221
|
ClientResolvedEndpointParameters;
|
|
236
|
-
export interface CodeGuruProfilerClientResolvedConfig
|
|
237
|
-
extends CodeGuruProfilerClientResolvedConfigType {}
|
|
222
|
+
export interface CodeGuruProfilerClientResolvedConfig extends CodeGuruProfilerClientResolvedConfigType {}
|
|
238
223
|
export declare class CodeGuruProfilerClient extends __Client<
|
|
239
224
|
__HttpHandlerOptions,
|
|
240
225
|
ServiceInputTypes,
|
|
@@ -242,10 +227,6 @@ export declare class CodeGuruProfilerClient extends __Client<
|
|
|
242
227
|
CodeGuruProfilerClientResolvedConfig
|
|
243
228
|
> {
|
|
244
229
|
readonly config: CodeGuruProfilerClientResolvedConfig;
|
|
245
|
-
constructor(
|
|
246
|
-
...[
|
|
247
|
-
configuration,
|
|
248
|
-
]: __CheckOptionalClientConfig<CodeGuruProfilerClientConfig>
|
|
249
|
-
);
|
|
230
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<CodeGuruProfilerClientConfig>);
|
|
250
231
|
destroy(): void;
|
|
251
232
|
}
|
|
@@ -7,17 +7,10 @@ import { CodeGuruProfilerHttpAuthSchemeProvider } from "./httpAuthSchemeProvider
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: CodeGuruProfilerHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: CodeGuruProfilerHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): CodeGuruProfilerHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { CodeGuruProfilerClientResolvedConfig } from "../CodeGuruProfilerClient";
|
|
15
|
-
export interface CodeGuruProfilerHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface CodeGuruProfilerHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface CodeGuruProfilerHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface CodeGuruProfilerHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
CodeGuruProfilerClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
CodeGuruProfilerHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultCodeGuruProfilerHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: CodeGuruProfilerClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<CodeGuruProfilerHttpAuthSchemeParameters>;
|
|
31
|
-
export interface CodeGuruProfilerHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<CodeGuruProfilerHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface CodeGuruProfilerHttpAuthSchemeProvider extends HttpAuthSchemeProvider<CodeGuruProfilerHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultCodeGuruProfilerHttpAuthSchemeProvider: CodeGuruProfilerHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: CodeGuruProfilerHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: CodeGuruProfilerHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./CodeGuruProfilerClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
CodeGuruProfilerClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|