@aws-sdk/client-codeguruprofiler 3.987.0 → 3.989.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 +42 -888
- package/dist-cjs/models/CodeGuruProfilerServiceException.js +12 -0
- package/dist-cjs/models/errors.js +85 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +706 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +57 -51
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var CodeGuruProfilerServiceException = require('./models/CodeGuruProfilerServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,769 +113,6 @@ class CodeGuruProfilerClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class CodeGuruProfilerServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, CodeGuruProfilerServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class ConflictException extends CodeGuruProfilerServiceException {
|
|
121
|
-
name = "ConflictException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "ConflictException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends CodeGuruProfilerServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
$retryable = {};
|
|
136
|
-
constructor(opts) {
|
|
137
|
-
super({
|
|
138
|
-
name: "InternalServerException",
|
|
139
|
-
$fault: "server",
|
|
140
|
-
...opts,
|
|
141
|
-
});
|
|
142
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
class ResourceNotFoundException extends CodeGuruProfilerServiceException {
|
|
146
|
-
name = "ResourceNotFoundException";
|
|
147
|
-
$fault = "client";
|
|
148
|
-
constructor(opts) {
|
|
149
|
-
super({
|
|
150
|
-
name: "ResourceNotFoundException",
|
|
151
|
-
$fault: "client",
|
|
152
|
-
...opts,
|
|
153
|
-
});
|
|
154
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
class ServiceQuotaExceededException extends CodeGuruProfilerServiceException {
|
|
158
|
-
name = "ServiceQuotaExceededException";
|
|
159
|
-
$fault = "client";
|
|
160
|
-
$retryable = {};
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "ServiceQuotaExceededException",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
class ThrottlingException extends CodeGuruProfilerServiceException {
|
|
171
|
-
name = "ThrottlingException";
|
|
172
|
-
$fault = "client";
|
|
173
|
-
$retryable = {};
|
|
174
|
-
constructor(opts) {
|
|
175
|
-
super({
|
|
176
|
-
name: "ThrottlingException",
|
|
177
|
-
$fault: "client",
|
|
178
|
-
...opts,
|
|
179
|
-
});
|
|
180
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
class ValidationException extends CodeGuruProfilerServiceException {
|
|
184
|
-
name = "ValidationException";
|
|
185
|
-
$fault = "client";
|
|
186
|
-
constructor(opts) {
|
|
187
|
-
super({
|
|
188
|
-
name: "ValidationException",
|
|
189
|
-
$fault: "client",
|
|
190
|
-
...opts,
|
|
191
|
-
});
|
|
192
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
const _A = "Anomaly";
|
|
197
|
-
const _AC = "AgentConfiguration";
|
|
198
|
-
const _AI = "AnomalyInstance";
|
|
199
|
-
const _AIn = "AnomalyInstances";
|
|
200
|
-
const _ANC = "AddNotificationChannels";
|
|
201
|
-
const _ANCR = "AddNotificationChannelsRequest";
|
|
202
|
-
const _ANCRd = "AddNotificationChannelsResponse";
|
|
203
|
-
const _AOC = "AgentOrchestrationConfig";
|
|
204
|
-
const _APT = "AggregatedProfileTime";
|
|
205
|
-
const _Ac = "Accept";
|
|
206
|
-
const _An = "Anomalies";
|
|
207
|
-
const _BGFMD = "BatchGetFrameMetricData";
|
|
208
|
-
const _BGFMDR = "BatchGetFrameMetricDataRequest";
|
|
209
|
-
const _BGFMDRa = "BatchGetFrameMetricDataResponse";
|
|
210
|
-
const _C = "Channel";
|
|
211
|
-
const _CA = "ConfigureAgent";
|
|
212
|
-
const _CAR = "ConfigureAgentRequest";
|
|
213
|
-
const _CARo = "ConfigureAgentResponse";
|
|
214
|
-
const _CE = "ConflictException";
|
|
215
|
-
const _CE_ = "Content-Encoding";
|
|
216
|
-
const _CPG = "CreateProfilingGroup";
|
|
217
|
-
const _CPGR = "CreateProfilingGroupRequest";
|
|
218
|
-
const _CPGRr = "CreateProfilingGroupResponse";
|
|
219
|
-
const _CT = "Content-Type";
|
|
220
|
-
const _Ch = "Channels";
|
|
221
|
-
const _DPG = "DeleteProfilingGroup";
|
|
222
|
-
const _DPGR = "DeleteProfilingGroupRequest";
|
|
223
|
-
const _DPGRe = "DeleteProfilingGroupResponse";
|
|
224
|
-
const _DPGRes = "DescribeProfilingGroupRequest";
|
|
225
|
-
const _DPGResc = "DescribeProfilingGroupResponse";
|
|
226
|
-
const _DPGe = "DescribeProfilingGroup";
|
|
227
|
-
const _FM = "FrameMetric";
|
|
228
|
-
const _FMD = "FrameMetricDatum";
|
|
229
|
-
const _FMDr = "FrameMetricData";
|
|
230
|
-
const _FMr = "FrameMetrics";
|
|
231
|
-
const _FRS = "FindingsReportSummary";
|
|
232
|
-
const _FRSi = "FindingsReportSummaries";
|
|
233
|
-
const _GFRAS = "GetFindingsReportAccountSummary";
|
|
234
|
-
const _GFRASR = "GetFindingsReportAccountSummaryRequest";
|
|
235
|
-
const _GFRASRe = "GetFindingsReportAccountSummaryResponse";
|
|
236
|
-
const _GNC = "GetNotificationConfiguration";
|
|
237
|
-
const _GNCR = "GetNotificationConfigurationRequest";
|
|
238
|
-
const _GNCRe = "GetNotificationConfigurationResponse";
|
|
239
|
-
const _GP = "GetPolicy";
|
|
240
|
-
const _GPR = "GetPolicyRequest";
|
|
241
|
-
const _GPRe = "GetPolicyResponse";
|
|
242
|
-
const _GPRet = "GetProfileRequest";
|
|
243
|
-
const _GPRetr = "GetProfileResponse";
|
|
244
|
-
const _GPe = "GetProfile";
|
|
245
|
-
const _GR = "GetRecommendations";
|
|
246
|
-
const _GRR = "GetRecommendationsRequest";
|
|
247
|
-
const _GRRe = "GetRecommendationsResponse";
|
|
248
|
-
const _ISE = "InternalServerException";
|
|
249
|
-
const _LFR = "ListFindingsReports";
|
|
250
|
-
const _LFRR = "ListFindingsReportsRequest";
|
|
251
|
-
const _LFRRi = "ListFindingsReportsResponse";
|
|
252
|
-
const _LOT = "ListOfTimestamps";
|
|
253
|
-
const _LPG = "ListProfilingGroups";
|
|
254
|
-
const _LPGR = "ListProfilingGroupsRequest";
|
|
255
|
-
const _LPGRi = "ListProfilingGroupsResponse";
|
|
256
|
-
const _LPT = "ListProfileTimes";
|
|
257
|
-
const _LPTR = "ListProfileTimesRequest";
|
|
258
|
-
const _LPTRi = "ListProfileTimesResponse";
|
|
259
|
-
const _LTFR = "ListTagsForResource";
|
|
260
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
261
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
262
|
-
const _M = "Match";
|
|
263
|
-
const _Ma = "Matches";
|
|
264
|
-
const _Me = "Metric";
|
|
265
|
-
const _NC = "NotificationConfiguration";
|
|
266
|
-
const _P = "Pattern";
|
|
267
|
-
const _PAP = "PostAgentProfile";
|
|
268
|
-
const _PAPR = "PostAgentProfileRequest";
|
|
269
|
-
const _PAPRo = "PostAgentProfileResponse";
|
|
270
|
-
const _PGD = "ProfilingGroupDescription";
|
|
271
|
-
const _PGDr = "ProfilingGroupDescriptions";
|
|
272
|
-
const _PP = "PutPermission";
|
|
273
|
-
const _PPR = "PutPermissionRequest";
|
|
274
|
-
const _PPRu = "PutPermissionResponse";
|
|
275
|
-
const _PS = "ProfilingStatus";
|
|
276
|
-
const _PT = "ProfileTime";
|
|
277
|
-
const _PTr = "ProfileTimes";
|
|
278
|
-
const _R = "Recommendation";
|
|
279
|
-
const _RNC = "RemoveNotificationChannel";
|
|
280
|
-
const _RNCR = "RemoveNotificationChannelRequest";
|
|
281
|
-
const _RNCRe = "RemoveNotificationChannelResponse";
|
|
282
|
-
const _RNFE = "ResourceNotFoundException";
|
|
283
|
-
const _RP = "RemovePermission";
|
|
284
|
-
const _RPR = "RemovePermissionRequest";
|
|
285
|
-
const _RPRe = "RemovePermissionResponse";
|
|
286
|
-
const _Re = "Recommendations";
|
|
287
|
-
const _SF = "SubmitFeedback";
|
|
288
|
-
const _SFR = "SubmitFeedbackRequest";
|
|
289
|
-
const _SFRu = "SubmitFeedbackResponse";
|
|
290
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
291
|
-
const _TE = "ThrottlingException";
|
|
292
|
-
const _TF = "TargetFrames";
|
|
293
|
-
const _TR = "TagResource";
|
|
294
|
-
const _TRR = "TagResourceRequest";
|
|
295
|
-
const _TRRa = "TagResourceResponse";
|
|
296
|
-
const _TS = "TimestampStructure";
|
|
297
|
-
const _UETM = "UnprocessedEndTimeMap";
|
|
298
|
-
const _UF = "UserFeedback";
|
|
299
|
-
const _UPG = "UpdateProfilingGroup";
|
|
300
|
-
const _UPGR = "UpdateProfilingGroupRequest";
|
|
301
|
-
const _UPGRp = "UpdateProfilingGroupResponse";
|
|
302
|
-
const _UR = "UntagResource";
|
|
303
|
-
const _URR = "UntagResourceRequest";
|
|
304
|
-
const _URRn = "UntagResourceResponse";
|
|
305
|
-
const _VE = "ValidationException";
|
|
306
|
-
const _a = "accept";
|
|
307
|
-
const _aG = "actionGroup";
|
|
308
|
-
const _aII = "anomalyInstanceId";
|
|
309
|
-
const _aMC = "allMatchesCount";
|
|
310
|
-
const _aMS = "allMatchesSum";
|
|
311
|
-
const _aOC = "agentOrchestrationConfig";
|
|
312
|
-
const _aP = "agentParameters";
|
|
313
|
-
const _aPg = "agentProfile";
|
|
314
|
-
const _an = "anomalies";
|
|
315
|
-
const _ar = "arn";
|
|
316
|
-
const _c = "channels";
|
|
317
|
-
const _cA = "createdAt";
|
|
318
|
-
const _cE = "contentEncoding";
|
|
319
|
-
const _cI = "channelId";
|
|
320
|
-
const _cP = "computePlatform";
|
|
321
|
-
const _cT = "clientToken";
|
|
322
|
-
const _cTA = "countersToAggregate";
|
|
323
|
-
const _cTo = "contentType";
|
|
324
|
-
const _cl = "client";
|
|
325
|
-
const _co = "configuration";
|
|
326
|
-
const _com = "comment";
|
|
327
|
-
const _d = "description";
|
|
328
|
-
const _dRO = "dailyReportsOnly";
|
|
329
|
-
const _e = "error";
|
|
330
|
-
const _eP = "eventPublishers";
|
|
331
|
-
const _eT = "endTime";
|
|
332
|
-
const _eTn = "endTimes";
|
|
333
|
-
const _fA = "frameAddress";
|
|
334
|
-
const _fII = "fleetInstanceId";
|
|
335
|
-
const _fM = "frameMetrics";
|
|
336
|
-
const _fMD = "frameMetricData";
|
|
337
|
-
const _fMr = "frameMetric";
|
|
338
|
-
const _fN = "frameName";
|
|
339
|
-
const _fRS = "findingsReportSummaries";
|
|
340
|
-
const _h = "http";
|
|
341
|
-
const _hE = "httpError";
|
|
342
|
-
const _hH = "httpHeader";
|
|
343
|
-
const _hQ = "httpQuery";
|
|
344
|
-
const _i = "instances";
|
|
345
|
-
const _iD = "includeDescription";
|
|
346
|
-
const _iT = "idempotencyToken";
|
|
347
|
-
const _id = "id";
|
|
348
|
-
const _l = "locale";
|
|
349
|
-
const _lAOA = "latestAgentOrchestratedAt";
|
|
350
|
-
const _lAP = "latestAggregatedProfile";
|
|
351
|
-
const _lAPRA = "latestAgentProfileReportedAt";
|
|
352
|
-
const _m = "metric";
|
|
353
|
-
const _mD = "maxDepth";
|
|
354
|
-
const _mR = "maxResults";
|
|
355
|
-
const _me = "metadata";
|
|
356
|
-
const _mes = "message";
|
|
357
|
-
const _n = "name";
|
|
358
|
-
const _nC = "notificationConfiguration";
|
|
359
|
-
const _nT = "nextToken";
|
|
360
|
-
const _oB = "orderBy";
|
|
361
|
-
const _p = "period";
|
|
362
|
-
const _pE = "profilingEnabled";
|
|
363
|
-
const _pET = "profileEndTime";
|
|
364
|
-
const _pG = "profilingGroup";
|
|
365
|
-
const _pGN = "profilingGroupName";
|
|
366
|
-
const _pGNr = "profilingGroupNames";
|
|
367
|
-
const _pGr = "profilingGroups";
|
|
368
|
-
const _pIS = "periodInSeconds";
|
|
369
|
-
const _pS = "profilingStatus";
|
|
370
|
-
const _pST = "profileStartTime";
|
|
371
|
-
const _pT = "profileTimes";
|
|
372
|
-
const _pTr = "profileToken";
|
|
373
|
-
const _pa = "pattern";
|
|
374
|
-
const _po = "policy";
|
|
375
|
-
const _pr = "profile";
|
|
376
|
-
const _pri = "principals";
|
|
377
|
-
const _r = "reason";
|
|
378
|
-
const _rA = "resourceArn";
|
|
379
|
-
const _rI = "revisionId";
|
|
380
|
-
const _rS = "reportSummaries";
|
|
381
|
-
const _rSe = "resolutionSteps";
|
|
382
|
-
const _re = "resolution";
|
|
383
|
-
const _rec = "recommendations";
|
|
384
|
-
const _s = "start";
|
|
385
|
-
const _sP = "shouldProfile";
|
|
386
|
-
const _sT = "startTime";
|
|
387
|
-
const _se = "server";
|
|
388
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.codeguruprofiler";
|
|
389
|
-
const _t = "tags";
|
|
390
|
-
const _tBV = "thresholdBreachValue";
|
|
391
|
-
const _tF = "targetFrames";
|
|
392
|
-
const _tFI = "targetFramesIndex";
|
|
393
|
-
const _tK = "tagKeys";
|
|
394
|
-
const _tM = "topMatches";
|
|
395
|
-
const _tNOF = "totalNumberOfFindings";
|
|
396
|
-
const _tP = "thresholdPercent";
|
|
397
|
-
const _tR = "targetResolution";
|
|
398
|
-
const _tS = "threadStates";
|
|
399
|
-
const _ty = "type";
|
|
400
|
-
const _u = "uri";
|
|
401
|
-
const _uA = "updatedAt";
|
|
402
|
-
const _uET = "unprocessedEndTimes";
|
|
403
|
-
const _uF = "userFeedback";
|
|
404
|
-
const _v = "values";
|
|
405
|
-
const _va = "value";
|
|
406
|
-
const n0 = "com.amazonaws.codeguruprofiler";
|
|
407
|
-
var AddNotificationChannelsRequest$ = [3, n0, _ANCR,
|
|
408
|
-
0,
|
|
409
|
-
[_pGN, _c],
|
|
410
|
-
[[0, 1], () => Channels], 2
|
|
411
|
-
];
|
|
412
|
-
var AddNotificationChannelsResponse$ = [3, n0, _ANCRd,
|
|
413
|
-
0,
|
|
414
|
-
[_nC],
|
|
415
|
-
[() => NotificationConfiguration$]
|
|
416
|
-
];
|
|
417
|
-
var AgentConfiguration$ = [3, n0, _AC,
|
|
418
|
-
0,
|
|
419
|
-
[_sP, _pIS, _aP],
|
|
420
|
-
[2, 1, 128 | 0], 2
|
|
421
|
-
];
|
|
422
|
-
var AgentOrchestrationConfig$ = [3, n0, _AOC,
|
|
423
|
-
0,
|
|
424
|
-
[_pE],
|
|
425
|
-
[2], 1
|
|
426
|
-
];
|
|
427
|
-
var AggregatedProfileTime$ = [3, n0, _APT,
|
|
428
|
-
0,
|
|
429
|
-
[_s, _p],
|
|
430
|
-
[5, 0]
|
|
431
|
-
];
|
|
432
|
-
var Anomaly$ = [3, n0, _A,
|
|
433
|
-
0,
|
|
434
|
-
[_m, _r, _i],
|
|
435
|
-
[() => Metric$, 0, () => AnomalyInstances], 3
|
|
436
|
-
];
|
|
437
|
-
var AnomalyInstance$ = [3, n0, _AI,
|
|
438
|
-
0,
|
|
439
|
-
[_id, _sT, _eT, _uF],
|
|
440
|
-
[0, 5, 5, () => UserFeedback$], 2
|
|
441
|
-
];
|
|
442
|
-
var BatchGetFrameMetricDataRequest$ = [3, n0, _BGFMDR,
|
|
443
|
-
0,
|
|
444
|
-
[_pGN, _sT, _eT, _p, _tR, _fM],
|
|
445
|
-
[[0, 1], [5, { [_hQ]: _sT }], [5, { [_hQ]: _eT }], [0, { [_hQ]: _p }], [0, { [_hQ]: _tR }], () => FrameMetrics], 1
|
|
446
|
-
];
|
|
447
|
-
var BatchGetFrameMetricDataResponse$ = [3, n0, _BGFMDRa,
|
|
448
|
-
0,
|
|
449
|
-
[_sT, _eT, _re, _eTn, _uET, _fMD],
|
|
450
|
-
[5, 5, 0, () => ListOfTimestamps, () => UnprocessedEndTimeMap, () => FrameMetricData], 6
|
|
451
|
-
];
|
|
452
|
-
var Channel$ = [3, n0, _C,
|
|
453
|
-
0,
|
|
454
|
-
[_u, _eP, _id],
|
|
455
|
-
[0, 64 | 0, 0], 2
|
|
456
|
-
];
|
|
457
|
-
var ConfigureAgentRequest$ = [3, n0, _CAR,
|
|
458
|
-
0,
|
|
459
|
-
[_pGN, _fII, _me],
|
|
460
|
-
[[0, 1], 0, 128 | 0], 1
|
|
461
|
-
];
|
|
462
|
-
var ConfigureAgentResponse$ = [3, n0, _CARo,
|
|
463
|
-
0,
|
|
464
|
-
[_co],
|
|
465
|
-
[[() => AgentConfiguration$, 16]], 1
|
|
466
|
-
];
|
|
467
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
468
|
-
{ [_e]: _cl, [_hE]: 409 },
|
|
469
|
-
[_mes],
|
|
470
|
-
[0], 1
|
|
471
|
-
];
|
|
472
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
473
|
-
var CreateProfilingGroupRequest$ = [3, n0, _CPGR,
|
|
474
|
-
0,
|
|
475
|
-
[_pGN, _cP, _cT, _aOC, _t],
|
|
476
|
-
[0, 0, [0, { [_hQ]: _cT, [_iT]: 1 }], () => AgentOrchestrationConfig$, 128 | 0], 1
|
|
477
|
-
];
|
|
478
|
-
var CreateProfilingGroupResponse$ = [3, n0, _CPGRr,
|
|
479
|
-
0,
|
|
480
|
-
[_pG],
|
|
481
|
-
[[() => ProfilingGroupDescription$, 16]], 1
|
|
482
|
-
];
|
|
483
|
-
var DeleteProfilingGroupRequest$ = [3, n0, _DPGR,
|
|
484
|
-
0,
|
|
485
|
-
[_pGN],
|
|
486
|
-
[[0, 1]], 1
|
|
487
|
-
];
|
|
488
|
-
var DeleteProfilingGroupResponse$ = [3, n0, _DPGRe,
|
|
489
|
-
0,
|
|
490
|
-
[],
|
|
491
|
-
[]
|
|
492
|
-
];
|
|
493
|
-
var DescribeProfilingGroupRequest$ = [3, n0, _DPGRes,
|
|
494
|
-
0,
|
|
495
|
-
[_pGN],
|
|
496
|
-
[[0, 1]], 1
|
|
497
|
-
];
|
|
498
|
-
var DescribeProfilingGroupResponse$ = [3, n0, _DPGResc,
|
|
499
|
-
0,
|
|
500
|
-
[_pG],
|
|
501
|
-
[[() => ProfilingGroupDescription$, 16]], 1
|
|
502
|
-
];
|
|
503
|
-
var FindingsReportSummary$ = [3, n0, _FRS,
|
|
504
|
-
0,
|
|
505
|
-
[_id, _pGN, _pST, _pET, _tNOF],
|
|
506
|
-
[0, 0, 5, 5, 1]
|
|
507
|
-
];
|
|
508
|
-
var FrameMetric$ = [3, n0, _FM,
|
|
509
|
-
0,
|
|
510
|
-
[_fN, _ty, _tS],
|
|
511
|
-
[0, 0, 64 | 0], 3
|
|
512
|
-
];
|
|
513
|
-
var FrameMetricDatum$ = [3, n0, _FMD,
|
|
514
|
-
0,
|
|
515
|
-
[_fMr, _v],
|
|
516
|
-
[() => FrameMetric$, 64 | 1], 2
|
|
517
|
-
];
|
|
518
|
-
var GetFindingsReportAccountSummaryRequest$ = [3, n0, _GFRASR,
|
|
519
|
-
0,
|
|
520
|
-
[_nT, _mR, _dRO],
|
|
521
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [2, { [_hQ]: _dRO }]]
|
|
522
|
-
];
|
|
523
|
-
var GetFindingsReportAccountSummaryResponse$ = [3, n0, _GFRASRe,
|
|
524
|
-
0,
|
|
525
|
-
[_rS, _nT],
|
|
526
|
-
[() => FindingsReportSummaries, 0], 1
|
|
527
|
-
];
|
|
528
|
-
var GetNotificationConfigurationRequest$ = [3, n0, _GNCR,
|
|
529
|
-
0,
|
|
530
|
-
[_pGN],
|
|
531
|
-
[[0, 1]], 1
|
|
532
|
-
];
|
|
533
|
-
var GetNotificationConfigurationResponse$ = [3, n0, _GNCRe,
|
|
534
|
-
0,
|
|
535
|
-
[_nC],
|
|
536
|
-
[() => NotificationConfiguration$], 1
|
|
537
|
-
];
|
|
538
|
-
var GetPolicyRequest$ = [3, n0, _GPR,
|
|
539
|
-
0,
|
|
540
|
-
[_pGN],
|
|
541
|
-
[[0, 1]], 1
|
|
542
|
-
];
|
|
543
|
-
var GetPolicyResponse$ = [3, n0, _GPRe,
|
|
544
|
-
0,
|
|
545
|
-
[_po, _rI],
|
|
546
|
-
[0, 0], 2
|
|
547
|
-
];
|
|
548
|
-
var GetProfileRequest$ = [3, n0, _GPRet,
|
|
549
|
-
0,
|
|
550
|
-
[_pGN, _sT, _p, _eT, _mD, _a],
|
|
551
|
-
[[0, 1], [5, { [_hQ]: _sT }], [0, { [_hQ]: _p }], [5, { [_hQ]: _eT }], [1, { [_hQ]: _mD }], [0, { [_hH]: _Ac }]], 1
|
|
552
|
-
];
|
|
553
|
-
var GetProfileResponse$ = [3, n0, _GPRetr,
|
|
554
|
-
0,
|
|
555
|
-
[_pr, _cTo, _cE],
|
|
556
|
-
[[21, 16], [0, { [_hH]: _CT }], [0, { [_hH]: _CE_ }]], 2
|
|
557
|
-
];
|
|
558
|
-
var GetRecommendationsRequest$ = [3, n0, _GRR,
|
|
559
|
-
0,
|
|
560
|
-
[_pGN, _sT, _eT, _l],
|
|
561
|
-
[[0, 1], [5, { [_hQ]: _sT }], [5, { [_hQ]: _eT }], [0, { [_hQ]: _l }]], 3
|
|
562
|
-
];
|
|
563
|
-
var GetRecommendationsResponse$ = [3, n0, _GRRe,
|
|
564
|
-
0,
|
|
565
|
-
[_pGN, _pST, _pET, _rec, _an],
|
|
566
|
-
[0, 5, 5, () => Recommendations, () => Anomalies], 5
|
|
567
|
-
];
|
|
568
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
569
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
570
|
-
[_mes],
|
|
571
|
-
[0], 1
|
|
572
|
-
];
|
|
573
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
574
|
-
var ListFindingsReportsRequest$ = [3, n0, _LFRR,
|
|
575
|
-
0,
|
|
576
|
-
[_pGN, _sT, _eT, _nT, _mR, _dRO],
|
|
577
|
-
[[0, 1], [5, { [_hQ]: _sT }], [5, { [_hQ]: _eT }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [2, { [_hQ]: _dRO }]], 3
|
|
578
|
-
];
|
|
579
|
-
var ListFindingsReportsResponse$ = [3, n0, _LFRRi,
|
|
580
|
-
0,
|
|
581
|
-
[_fRS, _nT],
|
|
582
|
-
[() => FindingsReportSummaries, 0], 1
|
|
583
|
-
];
|
|
584
|
-
var ListProfileTimesRequest$ = [3, n0, _LPTR,
|
|
585
|
-
0,
|
|
586
|
-
[_pGN, _sT, _eT, _p, _oB, _mR, _nT],
|
|
587
|
-
[[0, 1], [5, { [_hQ]: _sT }], [5, { [_hQ]: _eT }], [0, { [_hQ]: _p }], [0, { [_hQ]: _oB }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 4
|
|
588
|
-
];
|
|
589
|
-
var ListProfileTimesResponse$ = [3, n0, _LPTRi,
|
|
590
|
-
0,
|
|
591
|
-
[_pT, _nT],
|
|
592
|
-
[() => ProfileTimes, 0], 1
|
|
593
|
-
];
|
|
594
|
-
var ListProfilingGroupsRequest$ = [3, n0, _LPGR,
|
|
595
|
-
0,
|
|
596
|
-
[_nT, _mR, _iD],
|
|
597
|
-
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [2, { [_hQ]: _iD }]]
|
|
598
|
-
];
|
|
599
|
-
var ListProfilingGroupsResponse$ = [3, n0, _LPGRi,
|
|
600
|
-
0,
|
|
601
|
-
[_pGNr, _pGr, _nT],
|
|
602
|
-
[64 | 0, () => ProfilingGroupDescriptions, 0], 1
|
|
603
|
-
];
|
|
604
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
605
|
-
0,
|
|
606
|
-
[_rA],
|
|
607
|
-
[[0, 1]], 1
|
|
608
|
-
];
|
|
609
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
610
|
-
0,
|
|
611
|
-
[_t],
|
|
612
|
-
[128 | 0]
|
|
613
|
-
];
|
|
614
|
-
var Match$ = [3, n0, _M,
|
|
615
|
-
0,
|
|
616
|
-
[_tFI, _fA, _tBV],
|
|
617
|
-
[1, 0, 1]
|
|
618
|
-
];
|
|
619
|
-
var Metric$ = [3, n0, _Me,
|
|
620
|
-
0,
|
|
621
|
-
[_fN, _ty, _tS],
|
|
622
|
-
[0, 0, 64 | 0], 3
|
|
623
|
-
];
|
|
624
|
-
var NotificationConfiguration$ = [3, n0, _NC,
|
|
625
|
-
0,
|
|
626
|
-
[_c],
|
|
627
|
-
[() => Channels]
|
|
628
|
-
];
|
|
629
|
-
var Pattern$ = [3, n0, _P,
|
|
630
|
-
0,
|
|
631
|
-
[_id, _n, _d, _rSe, _tF, _tP, _cTA],
|
|
632
|
-
[0, 0, 0, 0, [1, n0, _TF, 0, 64 | 0], 1, 64 | 0]
|
|
633
|
-
];
|
|
634
|
-
var PostAgentProfileRequest$ = [3, n0, _PAPR,
|
|
635
|
-
0,
|
|
636
|
-
[_pGN, _aPg, _cTo, _pTr],
|
|
637
|
-
[[0, 1], [21, 16], [0, { [_hH]: _CT }], [0, { [_hQ]: _pTr, [_iT]: 1 }]], 3
|
|
638
|
-
];
|
|
639
|
-
var PostAgentProfileResponse$ = [3, n0, _PAPRo,
|
|
640
|
-
0,
|
|
641
|
-
[],
|
|
642
|
-
[]
|
|
643
|
-
];
|
|
644
|
-
var ProfileTime$ = [3, n0, _PT,
|
|
645
|
-
0,
|
|
646
|
-
[_s],
|
|
647
|
-
[5]
|
|
648
|
-
];
|
|
649
|
-
var ProfilingGroupDescription$ = [3, n0, _PGD,
|
|
650
|
-
0,
|
|
651
|
-
[_n, _aOC, _ar, _cA, _uA, _pS, _cP, _t],
|
|
652
|
-
[0, () => AgentOrchestrationConfig$, 0, 5, 5, () => ProfilingStatus$, 0, 128 | 0]
|
|
653
|
-
];
|
|
654
|
-
var ProfilingStatus$ = [3, n0, _PS,
|
|
655
|
-
0,
|
|
656
|
-
[_lAPRA, _lAP, _lAOA],
|
|
657
|
-
[5, () => AggregatedProfileTime$, 5]
|
|
658
|
-
];
|
|
659
|
-
var PutPermissionRequest$ = [3, n0, _PPR,
|
|
660
|
-
0,
|
|
661
|
-
[_pGN, _aG, _pri, _rI],
|
|
662
|
-
[[0, 1], [0, 1], 64 | 0, 0], 3
|
|
663
|
-
];
|
|
664
|
-
var PutPermissionResponse$ = [3, n0, _PPRu,
|
|
665
|
-
0,
|
|
666
|
-
[_po, _rI],
|
|
667
|
-
[0, 0], 2
|
|
668
|
-
];
|
|
669
|
-
var Recommendation$ = [3, n0, _R,
|
|
670
|
-
0,
|
|
671
|
-
[_aMC, _aMS, _pa, _tM, _sT, _eT],
|
|
672
|
-
[1, 1, () => Pattern$, () => Matches, 5, 5], 6
|
|
673
|
-
];
|
|
674
|
-
var RemoveNotificationChannelRequest$ = [3, n0, _RNCR,
|
|
675
|
-
0,
|
|
676
|
-
[_pGN, _cI],
|
|
677
|
-
[[0, 1], [0, 1]], 2
|
|
678
|
-
];
|
|
679
|
-
var RemoveNotificationChannelResponse$ = [3, n0, _RNCRe,
|
|
680
|
-
0,
|
|
681
|
-
[_nC],
|
|
682
|
-
[() => NotificationConfiguration$]
|
|
683
|
-
];
|
|
684
|
-
var RemovePermissionRequest$ = [3, n0, _RPR,
|
|
685
|
-
0,
|
|
686
|
-
[_pGN, _aG, _rI],
|
|
687
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _rI }]], 3
|
|
688
|
-
];
|
|
689
|
-
var RemovePermissionResponse$ = [3, n0, _RPRe,
|
|
690
|
-
0,
|
|
691
|
-
[_po, _rI],
|
|
692
|
-
[0, 0], 2
|
|
693
|
-
];
|
|
694
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
695
|
-
{ [_e]: _cl, [_hE]: 404 },
|
|
696
|
-
[_mes],
|
|
697
|
-
[0], 1
|
|
698
|
-
];
|
|
699
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
700
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
701
|
-
{ [_e]: _cl, [_hE]: 402 },
|
|
702
|
-
[_mes],
|
|
703
|
-
[0], 1
|
|
704
|
-
];
|
|
705
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
706
|
-
var SubmitFeedbackRequest$ = [3, n0, _SFR,
|
|
707
|
-
0,
|
|
708
|
-
[_pGN, _aII, _ty, _com],
|
|
709
|
-
[[0, 1], [0, 1], 0, 0], 3
|
|
710
|
-
];
|
|
711
|
-
var SubmitFeedbackResponse$ = [3, n0, _SFRu,
|
|
712
|
-
0,
|
|
713
|
-
[],
|
|
714
|
-
[]
|
|
715
|
-
];
|
|
716
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
717
|
-
0,
|
|
718
|
-
[_rA, _t],
|
|
719
|
-
[[0, 1], 128 | 0], 2
|
|
720
|
-
];
|
|
721
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
722
|
-
0,
|
|
723
|
-
[],
|
|
724
|
-
[]
|
|
725
|
-
];
|
|
726
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
727
|
-
{ [_e]: _cl, [_hE]: 429 },
|
|
728
|
-
[_mes],
|
|
729
|
-
[0], 1
|
|
730
|
-
];
|
|
731
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
732
|
-
var TimestampStructure$ = [3, n0, _TS,
|
|
733
|
-
0,
|
|
734
|
-
[_va],
|
|
735
|
-
[5], 1
|
|
736
|
-
];
|
|
737
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
738
|
-
0,
|
|
739
|
-
[_rA, _tK],
|
|
740
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
741
|
-
];
|
|
742
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
743
|
-
0,
|
|
744
|
-
[],
|
|
745
|
-
[]
|
|
746
|
-
];
|
|
747
|
-
var UpdateProfilingGroupRequest$ = [3, n0, _UPGR,
|
|
748
|
-
0,
|
|
749
|
-
[_pGN, _aOC],
|
|
750
|
-
[[0, 1], () => AgentOrchestrationConfig$], 2
|
|
751
|
-
];
|
|
752
|
-
var UpdateProfilingGroupResponse$ = [3, n0, _UPGRp,
|
|
753
|
-
0,
|
|
754
|
-
[_pG],
|
|
755
|
-
[[() => ProfilingGroupDescription$, 16]], 1
|
|
756
|
-
];
|
|
757
|
-
var UserFeedback$ = [3, n0, _UF,
|
|
758
|
-
0,
|
|
759
|
-
[_ty],
|
|
760
|
-
[0], 1
|
|
761
|
-
];
|
|
762
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
763
|
-
{ [_e]: _cl, [_hE]: 400 },
|
|
764
|
-
[_mes],
|
|
765
|
-
[0], 1
|
|
766
|
-
];
|
|
767
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
768
|
-
var CodeGuruProfilerServiceException$ = [-3, _sm, "CodeGuruProfilerServiceException", 0, [], []];
|
|
769
|
-
schema.TypeRegistry.for(_sm).registerError(CodeGuruProfilerServiceException$, CodeGuruProfilerServiceException);
|
|
770
|
-
var Anomalies = [1, n0, _An,
|
|
771
|
-
0, () => Anomaly$
|
|
772
|
-
];
|
|
773
|
-
var AnomalyInstances = [1, n0, _AIn,
|
|
774
|
-
0, () => AnomalyInstance$
|
|
775
|
-
];
|
|
776
|
-
var Channels = [1, n0, _Ch,
|
|
777
|
-
0, () => Channel$
|
|
778
|
-
];
|
|
779
|
-
var FindingsReportSummaries = [1, n0, _FRSi,
|
|
780
|
-
0, () => FindingsReportSummary$
|
|
781
|
-
];
|
|
782
|
-
var FrameMetricData = [1, n0, _FMDr,
|
|
783
|
-
0, () => FrameMetricDatum$
|
|
784
|
-
];
|
|
785
|
-
var FrameMetrics = [1, n0, _FMr,
|
|
786
|
-
0, () => FrameMetric$
|
|
787
|
-
];
|
|
788
|
-
var ListOfTimestamps = [1, n0, _LOT,
|
|
789
|
-
0, () => TimestampStructure$
|
|
790
|
-
];
|
|
791
|
-
var Matches = [1, n0, _Ma,
|
|
792
|
-
0, () => Match$
|
|
793
|
-
];
|
|
794
|
-
var ProfileTimes = [1, n0, _PTr,
|
|
795
|
-
0, () => ProfileTime$
|
|
796
|
-
];
|
|
797
|
-
var ProfilingGroupDescriptions = [1, n0, _PGDr,
|
|
798
|
-
0, () => ProfilingGroupDescription$
|
|
799
|
-
];
|
|
800
|
-
var Recommendations = [1, n0, _Re,
|
|
801
|
-
0, () => Recommendation$
|
|
802
|
-
];
|
|
803
|
-
var UnprocessedEndTimeMap = [2, n0, _UETM,
|
|
804
|
-
0, 0, () => ListOfTimestamps
|
|
805
|
-
];
|
|
806
|
-
var AddNotificationChannels$ = [9, n0, _ANC,
|
|
807
|
-
{ [_h]: ["POST", "/profilingGroups/{profilingGroupName}/notificationConfiguration", 200] }, () => AddNotificationChannelsRequest$, () => AddNotificationChannelsResponse$
|
|
808
|
-
];
|
|
809
|
-
var BatchGetFrameMetricData$ = [9, n0, _BGFMD,
|
|
810
|
-
{ [_h]: ["POST", "/profilingGroups/{profilingGroupName}/frames/-/metrics", 200] }, () => BatchGetFrameMetricDataRequest$, () => BatchGetFrameMetricDataResponse$
|
|
811
|
-
];
|
|
812
|
-
var ConfigureAgent$ = [9, n0, _CA,
|
|
813
|
-
{ [_h]: ["POST", "/profilingGroups/{profilingGroupName}/configureAgent", 200] }, () => ConfigureAgentRequest$, () => ConfigureAgentResponse$
|
|
814
|
-
];
|
|
815
|
-
var CreateProfilingGroup$ = [9, n0, _CPG,
|
|
816
|
-
{ [_h]: ["POST", "/profilingGroups", 201] }, () => CreateProfilingGroupRequest$, () => CreateProfilingGroupResponse$
|
|
817
|
-
];
|
|
818
|
-
var DeleteProfilingGroup$ = [9, n0, _DPG,
|
|
819
|
-
{ [_h]: ["DELETE", "/profilingGroups/{profilingGroupName}", 204] }, () => DeleteProfilingGroupRequest$, () => DeleteProfilingGroupResponse$
|
|
820
|
-
];
|
|
821
|
-
var DescribeProfilingGroup$ = [9, n0, _DPGe,
|
|
822
|
-
{ [_h]: ["GET", "/profilingGroups/{profilingGroupName}", 200] }, () => DescribeProfilingGroupRequest$, () => DescribeProfilingGroupResponse$
|
|
823
|
-
];
|
|
824
|
-
var GetFindingsReportAccountSummary$ = [9, n0, _GFRAS,
|
|
825
|
-
{ [_h]: ["GET", "/internal/findingsReports", 200] }, () => GetFindingsReportAccountSummaryRequest$, () => GetFindingsReportAccountSummaryResponse$
|
|
826
|
-
];
|
|
827
|
-
var GetNotificationConfiguration$ = [9, n0, _GNC,
|
|
828
|
-
{ [_h]: ["GET", "/profilingGroups/{profilingGroupName}/notificationConfiguration", 200] }, () => GetNotificationConfigurationRequest$, () => GetNotificationConfigurationResponse$
|
|
829
|
-
];
|
|
830
|
-
var GetPolicy$ = [9, n0, _GP,
|
|
831
|
-
{ [_h]: ["GET", "/profilingGroups/{profilingGroupName}/policy", 200] }, () => GetPolicyRequest$, () => GetPolicyResponse$
|
|
832
|
-
];
|
|
833
|
-
var GetProfile$ = [9, n0, _GPe,
|
|
834
|
-
{ [_h]: ["GET", "/profilingGroups/{profilingGroupName}/profile", 200] }, () => GetProfileRequest$, () => GetProfileResponse$
|
|
835
|
-
];
|
|
836
|
-
var GetRecommendations$ = [9, n0, _GR,
|
|
837
|
-
{ [_h]: ["GET", "/internal/profilingGroups/{profilingGroupName}/recommendations", 200] }, () => GetRecommendationsRequest$, () => GetRecommendationsResponse$
|
|
838
|
-
];
|
|
839
|
-
var ListFindingsReports$ = [9, n0, _LFR,
|
|
840
|
-
{ [_h]: ["GET", "/internal/profilingGroups/{profilingGroupName}/findingsReports", 200] }, () => ListFindingsReportsRequest$, () => ListFindingsReportsResponse$
|
|
841
|
-
];
|
|
842
|
-
var ListProfileTimes$ = [9, n0, _LPT,
|
|
843
|
-
{ [_h]: ["GET", "/profilingGroups/{profilingGroupName}/profileTimes", 200] }, () => ListProfileTimesRequest$, () => ListProfileTimesResponse$
|
|
844
|
-
];
|
|
845
|
-
var ListProfilingGroups$ = [9, n0, _LPG,
|
|
846
|
-
{ [_h]: ["GET", "/profilingGroups", 200] }, () => ListProfilingGroupsRequest$, () => ListProfilingGroupsResponse$
|
|
847
|
-
];
|
|
848
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
849
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
850
|
-
];
|
|
851
|
-
var PostAgentProfile$ = [9, n0, _PAP,
|
|
852
|
-
{ [_h]: ["POST", "/profilingGroups/{profilingGroupName}/agentProfile", 204] }, () => PostAgentProfileRequest$, () => PostAgentProfileResponse$
|
|
853
|
-
];
|
|
854
|
-
var PutPermission$ = [9, n0, _PP,
|
|
855
|
-
{ [_h]: ["PUT", "/profilingGroups/{profilingGroupName}/policy/{actionGroup}", 200] }, () => PutPermissionRequest$, () => PutPermissionResponse$
|
|
856
|
-
];
|
|
857
|
-
var RemoveNotificationChannel$ = [9, n0, _RNC,
|
|
858
|
-
{ [_h]: ["DELETE", "/profilingGroups/{profilingGroupName}/notificationConfiguration/{channelId}", 200] }, () => RemoveNotificationChannelRequest$, () => RemoveNotificationChannelResponse$
|
|
859
|
-
];
|
|
860
|
-
var RemovePermission$ = [9, n0, _RP,
|
|
861
|
-
{ [_h]: ["DELETE", "/profilingGroups/{profilingGroupName}/policy/{actionGroup}", 200] }, () => RemovePermissionRequest$, () => RemovePermissionResponse$
|
|
862
|
-
];
|
|
863
|
-
var SubmitFeedback$ = [9, n0, _SF,
|
|
864
|
-
{ [_h]: ["POST", "/internal/profilingGroups/{profilingGroupName}/anomalies/{anomalyInstanceId}/feedback", 204] }, () => SubmitFeedbackRequest$, () => SubmitFeedbackResponse$
|
|
865
|
-
];
|
|
866
|
-
var TagResource$ = [9, n0, _TR,
|
|
867
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
868
|
-
];
|
|
869
|
-
var UntagResource$ = [9, n0, _UR,
|
|
870
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
871
|
-
];
|
|
872
|
-
var UpdateProfilingGroup$ = [9, n0, _UPG,
|
|
873
|
-
{ [_h]: ["PUT", "/profilingGroups/{profilingGroupName}", 200] }, () => UpdateProfilingGroupRequest$, () => UpdateProfilingGroupResponse$
|
|
874
|
-
];
|
|
875
|
-
|
|
876
116
|
class AddNotificationChannelsCommand extends smithyClient.Command
|
|
877
117
|
.classBuilder()
|
|
878
118
|
.ep(commonParams)
|
|
@@ -881,7 +121,7 @@ class AddNotificationChannelsCommand extends smithyClient.Command
|
|
|
881
121
|
})
|
|
882
122
|
.s("CodeGuruProfiler", "AddNotificationChannels", {})
|
|
883
123
|
.n("CodeGuruProfilerClient", "AddNotificationChannelsCommand")
|
|
884
|
-
.sc(AddNotificationChannels$)
|
|
124
|
+
.sc(schemas_0.AddNotificationChannels$)
|
|
885
125
|
.build() {
|
|
886
126
|
}
|
|
887
127
|
|
|
@@ -893,7 +133,7 @@ class BatchGetFrameMetricDataCommand extends smithyClient.Command
|
|
|
893
133
|
})
|
|
894
134
|
.s("CodeGuruProfiler", "BatchGetFrameMetricData", {})
|
|
895
135
|
.n("CodeGuruProfilerClient", "BatchGetFrameMetricDataCommand")
|
|
896
|
-
.sc(BatchGetFrameMetricData$)
|
|
136
|
+
.sc(schemas_0.BatchGetFrameMetricData$)
|
|
897
137
|
.build() {
|
|
898
138
|
}
|
|
899
139
|
|
|
@@ -905,7 +145,7 @@ class ConfigureAgentCommand extends smithyClient.Command
|
|
|
905
145
|
})
|
|
906
146
|
.s("CodeGuruProfiler", "ConfigureAgent", {})
|
|
907
147
|
.n("CodeGuruProfilerClient", "ConfigureAgentCommand")
|
|
908
|
-
.sc(ConfigureAgent$)
|
|
148
|
+
.sc(schemas_0.ConfigureAgent$)
|
|
909
149
|
.build() {
|
|
910
150
|
}
|
|
911
151
|
|
|
@@ -917,7 +157,7 @@ class CreateProfilingGroupCommand extends smithyClient.Command
|
|
|
917
157
|
})
|
|
918
158
|
.s("CodeGuruProfiler", "CreateProfilingGroup", {})
|
|
919
159
|
.n("CodeGuruProfilerClient", "CreateProfilingGroupCommand")
|
|
920
|
-
.sc(CreateProfilingGroup$)
|
|
160
|
+
.sc(schemas_0.CreateProfilingGroup$)
|
|
921
161
|
.build() {
|
|
922
162
|
}
|
|
923
163
|
|
|
@@ -929,7 +169,7 @@ class DeleteProfilingGroupCommand extends smithyClient.Command
|
|
|
929
169
|
})
|
|
930
170
|
.s("CodeGuruProfiler", "DeleteProfilingGroup", {})
|
|
931
171
|
.n("CodeGuruProfilerClient", "DeleteProfilingGroupCommand")
|
|
932
|
-
.sc(DeleteProfilingGroup$)
|
|
172
|
+
.sc(schemas_0.DeleteProfilingGroup$)
|
|
933
173
|
.build() {
|
|
934
174
|
}
|
|
935
175
|
|
|
@@ -941,7 +181,7 @@ class DescribeProfilingGroupCommand extends smithyClient.Command
|
|
|
941
181
|
})
|
|
942
182
|
.s("CodeGuruProfiler", "DescribeProfilingGroup", {})
|
|
943
183
|
.n("CodeGuruProfilerClient", "DescribeProfilingGroupCommand")
|
|
944
|
-
.sc(DescribeProfilingGroup$)
|
|
184
|
+
.sc(schemas_0.DescribeProfilingGroup$)
|
|
945
185
|
.build() {
|
|
946
186
|
}
|
|
947
187
|
|
|
@@ -953,7 +193,7 @@ class GetFindingsReportAccountSummaryCommand extends smithyClient.Command
|
|
|
953
193
|
})
|
|
954
194
|
.s("CodeGuruProfiler", "GetFindingsReportAccountSummary", {})
|
|
955
195
|
.n("CodeGuruProfilerClient", "GetFindingsReportAccountSummaryCommand")
|
|
956
|
-
.sc(GetFindingsReportAccountSummary$)
|
|
196
|
+
.sc(schemas_0.GetFindingsReportAccountSummary$)
|
|
957
197
|
.build() {
|
|
958
198
|
}
|
|
959
199
|
|
|
@@ -965,7 +205,7 @@ class GetNotificationConfigurationCommand extends smithyClient.Command
|
|
|
965
205
|
})
|
|
966
206
|
.s("CodeGuruProfiler", "GetNotificationConfiguration", {})
|
|
967
207
|
.n("CodeGuruProfilerClient", "GetNotificationConfigurationCommand")
|
|
968
|
-
.sc(GetNotificationConfiguration$)
|
|
208
|
+
.sc(schemas_0.GetNotificationConfiguration$)
|
|
969
209
|
.build() {
|
|
970
210
|
}
|
|
971
211
|
|
|
@@ -977,7 +217,7 @@ class GetPolicyCommand extends smithyClient.Command
|
|
|
977
217
|
})
|
|
978
218
|
.s("CodeGuruProfiler", "GetPolicy", {})
|
|
979
219
|
.n("CodeGuruProfilerClient", "GetPolicyCommand")
|
|
980
|
-
.sc(GetPolicy$)
|
|
220
|
+
.sc(schemas_0.GetPolicy$)
|
|
981
221
|
.build() {
|
|
982
222
|
}
|
|
983
223
|
|
|
@@ -989,7 +229,7 @@ class GetProfileCommand extends smithyClient.Command
|
|
|
989
229
|
})
|
|
990
230
|
.s("CodeGuruProfiler", "GetProfile", {})
|
|
991
231
|
.n("CodeGuruProfilerClient", "GetProfileCommand")
|
|
992
|
-
.sc(GetProfile$)
|
|
232
|
+
.sc(schemas_0.GetProfile$)
|
|
993
233
|
.build() {
|
|
994
234
|
}
|
|
995
235
|
|
|
@@ -1001,7 +241,7 @@ class GetRecommendationsCommand extends smithyClient.Command
|
|
|
1001
241
|
})
|
|
1002
242
|
.s("CodeGuruProfiler", "GetRecommendations", {})
|
|
1003
243
|
.n("CodeGuruProfilerClient", "GetRecommendationsCommand")
|
|
1004
|
-
.sc(GetRecommendations$)
|
|
244
|
+
.sc(schemas_0.GetRecommendations$)
|
|
1005
245
|
.build() {
|
|
1006
246
|
}
|
|
1007
247
|
|
|
@@ -1013,7 +253,7 @@ class ListFindingsReportsCommand extends smithyClient.Command
|
|
|
1013
253
|
})
|
|
1014
254
|
.s("CodeGuruProfiler", "ListFindingsReports", {})
|
|
1015
255
|
.n("CodeGuruProfilerClient", "ListFindingsReportsCommand")
|
|
1016
|
-
.sc(ListFindingsReports$)
|
|
256
|
+
.sc(schemas_0.ListFindingsReports$)
|
|
1017
257
|
.build() {
|
|
1018
258
|
}
|
|
1019
259
|
|
|
@@ -1025,7 +265,7 @@ class ListProfileTimesCommand extends smithyClient.Command
|
|
|
1025
265
|
})
|
|
1026
266
|
.s("CodeGuruProfiler", "ListProfileTimes", {})
|
|
1027
267
|
.n("CodeGuruProfilerClient", "ListProfileTimesCommand")
|
|
1028
|
-
.sc(ListProfileTimes$)
|
|
268
|
+
.sc(schemas_0.ListProfileTimes$)
|
|
1029
269
|
.build() {
|
|
1030
270
|
}
|
|
1031
271
|
|
|
@@ -1037,7 +277,7 @@ class ListProfilingGroupsCommand extends smithyClient.Command
|
|
|
1037
277
|
})
|
|
1038
278
|
.s("CodeGuruProfiler", "ListProfilingGroups", {})
|
|
1039
279
|
.n("CodeGuruProfilerClient", "ListProfilingGroupsCommand")
|
|
1040
|
-
.sc(ListProfilingGroups$)
|
|
280
|
+
.sc(schemas_0.ListProfilingGroups$)
|
|
1041
281
|
.build() {
|
|
1042
282
|
}
|
|
1043
283
|
|
|
@@ -1049,7 +289,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1049
289
|
})
|
|
1050
290
|
.s("CodeGuruProfiler", "ListTagsForResource", {})
|
|
1051
291
|
.n("CodeGuruProfilerClient", "ListTagsForResourceCommand")
|
|
1052
|
-
.sc(ListTagsForResource$)
|
|
292
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1053
293
|
.build() {
|
|
1054
294
|
}
|
|
1055
295
|
|
|
@@ -1061,7 +301,7 @@ class PostAgentProfileCommand extends smithyClient.Command
|
|
|
1061
301
|
})
|
|
1062
302
|
.s("CodeGuruProfiler", "PostAgentProfile", {})
|
|
1063
303
|
.n("CodeGuruProfilerClient", "PostAgentProfileCommand")
|
|
1064
|
-
.sc(PostAgentProfile$)
|
|
304
|
+
.sc(schemas_0.PostAgentProfile$)
|
|
1065
305
|
.build() {
|
|
1066
306
|
}
|
|
1067
307
|
|
|
@@ -1073,7 +313,7 @@ class PutPermissionCommand extends smithyClient.Command
|
|
|
1073
313
|
})
|
|
1074
314
|
.s("CodeGuruProfiler", "PutPermission", {})
|
|
1075
315
|
.n("CodeGuruProfilerClient", "PutPermissionCommand")
|
|
1076
|
-
.sc(PutPermission$)
|
|
316
|
+
.sc(schemas_0.PutPermission$)
|
|
1077
317
|
.build() {
|
|
1078
318
|
}
|
|
1079
319
|
|
|
@@ -1085,7 +325,7 @@ class RemoveNotificationChannelCommand extends smithyClient.Command
|
|
|
1085
325
|
})
|
|
1086
326
|
.s("CodeGuruProfiler", "RemoveNotificationChannel", {})
|
|
1087
327
|
.n("CodeGuruProfilerClient", "RemoveNotificationChannelCommand")
|
|
1088
|
-
.sc(RemoveNotificationChannel$)
|
|
328
|
+
.sc(schemas_0.RemoveNotificationChannel$)
|
|
1089
329
|
.build() {
|
|
1090
330
|
}
|
|
1091
331
|
|
|
@@ -1097,7 +337,7 @@ class RemovePermissionCommand extends smithyClient.Command
|
|
|
1097
337
|
})
|
|
1098
338
|
.s("CodeGuruProfiler", "RemovePermission", {})
|
|
1099
339
|
.n("CodeGuruProfilerClient", "RemovePermissionCommand")
|
|
1100
|
-
.sc(RemovePermission$)
|
|
340
|
+
.sc(schemas_0.RemovePermission$)
|
|
1101
341
|
.build() {
|
|
1102
342
|
}
|
|
1103
343
|
|
|
@@ -1109,7 +349,7 @@ class SubmitFeedbackCommand extends smithyClient.Command
|
|
|
1109
349
|
})
|
|
1110
350
|
.s("CodeGuruProfiler", "SubmitFeedback", {})
|
|
1111
351
|
.n("CodeGuruProfilerClient", "SubmitFeedbackCommand")
|
|
1112
|
-
.sc(SubmitFeedback$)
|
|
352
|
+
.sc(schemas_0.SubmitFeedback$)
|
|
1113
353
|
.build() {
|
|
1114
354
|
}
|
|
1115
355
|
|
|
@@ -1121,7 +361,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1121
361
|
})
|
|
1122
362
|
.s("CodeGuruProfiler", "TagResource", {})
|
|
1123
363
|
.n("CodeGuruProfilerClient", "TagResourceCommand")
|
|
1124
|
-
.sc(TagResource$)
|
|
364
|
+
.sc(schemas_0.TagResource$)
|
|
1125
365
|
.build() {
|
|
1126
366
|
}
|
|
1127
367
|
|
|
@@ -1133,7 +373,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1133
373
|
})
|
|
1134
374
|
.s("CodeGuruProfiler", "UntagResource", {})
|
|
1135
375
|
.n("CodeGuruProfilerClient", "UntagResourceCommand")
|
|
1136
|
-
.sc(UntagResource$)
|
|
376
|
+
.sc(schemas_0.UntagResource$)
|
|
1137
377
|
.build() {
|
|
1138
378
|
}
|
|
1139
379
|
|
|
@@ -1145,7 +385,7 @@ class UpdateProfilingGroupCommand extends smithyClient.Command
|
|
|
1145
385
|
})
|
|
1146
386
|
.s("CodeGuruProfiler", "UpdateProfilingGroup", {})
|
|
1147
387
|
.n("CodeGuruProfilerClient", "UpdateProfilingGroupCommand")
|
|
1148
|
-
.sc(UpdateProfilingGroup$)
|
|
388
|
+
.sc(schemas_0.UpdateProfilingGroup$)
|
|
1149
389
|
.build() {
|
|
1150
390
|
}
|
|
1151
391
|
|
|
@@ -1245,143 +485,57 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1245
485
|
enumerable: true,
|
|
1246
486
|
get: function () { return smithyClient.Client; }
|
|
1247
487
|
});
|
|
488
|
+
Object.defineProperty(exports, "CodeGuruProfilerServiceException", {
|
|
489
|
+
enumerable: true,
|
|
490
|
+
get: function () { return CodeGuruProfilerServiceException.CodeGuruProfilerServiceException; }
|
|
491
|
+
});
|
|
1248
492
|
exports.ActionGroup = ActionGroup;
|
|
1249
|
-
exports.AddNotificationChannels$ = AddNotificationChannels$;
|
|
1250
493
|
exports.AddNotificationChannelsCommand = AddNotificationChannelsCommand;
|
|
1251
|
-
exports.AddNotificationChannelsRequest$ = AddNotificationChannelsRequest$;
|
|
1252
|
-
exports.AddNotificationChannelsResponse$ = AddNotificationChannelsResponse$;
|
|
1253
|
-
exports.AgentConfiguration$ = AgentConfiguration$;
|
|
1254
|
-
exports.AgentOrchestrationConfig$ = AgentOrchestrationConfig$;
|
|
1255
494
|
exports.AgentParameterField = AgentParameterField;
|
|
1256
|
-
exports.AggregatedProfileTime$ = AggregatedProfileTime$;
|
|
1257
495
|
exports.AggregationPeriod = AggregationPeriod;
|
|
1258
|
-
exports.Anomaly$ = Anomaly$;
|
|
1259
|
-
exports.AnomalyInstance$ = AnomalyInstance$;
|
|
1260
|
-
exports.BatchGetFrameMetricData$ = BatchGetFrameMetricData$;
|
|
1261
496
|
exports.BatchGetFrameMetricDataCommand = BatchGetFrameMetricDataCommand;
|
|
1262
|
-
exports.BatchGetFrameMetricDataRequest$ = BatchGetFrameMetricDataRequest$;
|
|
1263
|
-
exports.BatchGetFrameMetricDataResponse$ = BatchGetFrameMetricDataResponse$;
|
|
1264
|
-
exports.Channel$ = Channel$;
|
|
1265
497
|
exports.CodeGuruProfiler = CodeGuruProfiler;
|
|
1266
498
|
exports.CodeGuruProfilerClient = CodeGuruProfilerClient;
|
|
1267
|
-
exports.CodeGuruProfilerServiceException = CodeGuruProfilerServiceException;
|
|
1268
|
-
exports.CodeGuruProfilerServiceException$ = CodeGuruProfilerServiceException$;
|
|
1269
499
|
exports.ComputePlatform = ComputePlatform;
|
|
1270
|
-
exports.ConfigureAgent$ = ConfigureAgent$;
|
|
1271
500
|
exports.ConfigureAgentCommand = ConfigureAgentCommand;
|
|
1272
|
-
exports.ConfigureAgentRequest$ = ConfigureAgentRequest$;
|
|
1273
|
-
exports.ConfigureAgentResponse$ = ConfigureAgentResponse$;
|
|
1274
|
-
exports.ConflictException = ConflictException;
|
|
1275
|
-
exports.ConflictException$ = ConflictException$;
|
|
1276
|
-
exports.CreateProfilingGroup$ = CreateProfilingGroup$;
|
|
1277
501
|
exports.CreateProfilingGroupCommand = CreateProfilingGroupCommand;
|
|
1278
|
-
exports.CreateProfilingGroupRequest$ = CreateProfilingGroupRequest$;
|
|
1279
|
-
exports.CreateProfilingGroupResponse$ = CreateProfilingGroupResponse$;
|
|
1280
|
-
exports.DeleteProfilingGroup$ = DeleteProfilingGroup$;
|
|
1281
502
|
exports.DeleteProfilingGroupCommand = DeleteProfilingGroupCommand;
|
|
1282
|
-
exports.DeleteProfilingGroupRequest$ = DeleteProfilingGroupRequest$;
|
|
1283
|
-
exports.DeleteProfilingGroupResponse$ = DeleteProfilingGroupResponse$;
|
|
1284
|
-
exports.DescribeProfilingGroup$ = DescribeProfilingGroup$;
|
|
1285
503
|
exports.DescribeProfilingGroupCommand = DescribeProfilingGroupCommand;
|
|
1286
|
-
exports.DescribeProfilingGroupRequest$ = DescribeProfilingGroupRequest$;
|
|
1287
|
-
exports.DescribeProfilingGroupResponse$ = DescribeProfilingGroupResponse$;
|
|
1288
504
|
exports.EventPublisher = EventPublisher;
|
|
1289
505
|
exports.FeedbackType = FeedbackType;
|
|
1290
|
-
exports.FindingsReportSummary$ = FindingsReportSummary$;
|
|
1291
|
-
exports.FrameMetric$ = FrameMetric$;
|
|
1292
|
-
exports.FrameMetricDatum$ = FrameMetricDatum$;
|
|
1293
|
-
exports.GetFindingsReportAccountSummary$ = GetFindingsReportAccountSummary$;
|
|
1294
506
|
exports.GetFindingsReportAccountSummaryCommand = GetFindingsReportAccountSummaryCommand;
|
|
1295
|
-
exports.GetFindingsReportAccountSummaryRequest$ = GetFindingsReportAccountSummaryRequest$;
|
|
1296
|
-
exports.GetFindingsReportAccountSummaryResponse$ = GetFindingsReportAccountSummaryResponse$;
|
|
1297
|
-
exports.GetNotificationConfiguration$ = GetNotificationConfiguration$;
|
|
1298
507
|
exports.GetNotificationConfigurationCommand = GetNotificationConfigurationCommand;
|
|
1299
|
-
exports.GetNotificationConfigurationRequest$ = GetNotificationConfigurationRequest$;
|
|
1300
|
-
exports.GetNotificationConfigurationResponse$ = GetNotificationConfigurationResponse$;
|
|
1301
|
-
exports.GetPolicy$ = GetPolicy$;
|
|
1302
508
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
1303
|
-
exports.GetPolicyRequest$ = GetPolicyRequest$;
|
|
1304
|
-
exports.GetPolicyResponse$ = GetPolicyResponse$;
|
|
1305
|
-
exports.GetProfile$ = GetProfile$;
|
|
1306
509
|
exports.GetProfileCommand = GetProfileCommand;
|
|
1307
|
-
exports.GetProfileRequest$ = GetProfileRequest$;
|
|
1308
|
-
exports.GetProfileResponse$ = GetProfileResponse$;
|
|
1309
|
-
exports.GetRecommendations$ = GetRecommendations$;
|
|
1310
510
|
exports.GetRecommendationsCommand = GetRecommendationsCommand;
|
|
1311
|
-
exports.GetRecommendationsRequest$ = GetRecommendationsRequest$;
|
|
1312
|
-
exports.GetRecommendationsResponse$ = GetRecommendationsResponse$;
|
|
1313
|
-
exports.InternalServerException = InternalServerException;
|
|
1314
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1315
|
-
exports.ListFindingsReports$ = ListFindingsReports$;
|
|
1316
511
|
exports.ListFindingsReportsCommand = ListFindingsReportsCommand;
|
|
1317
|
-
exports.ListFindingsReportsRequest$ = ListFindingsReportsRequest$;
|
|
1318
|
-
exports.ListFindingsReportsResponse$ = ListFindingsReportsResponse$;
|
|
1319
|
-
exports.ListProfileTimes$ = ListProfileTimes$;
|
|
1320
512
|
exports.ListProfileTimesCommand = ListProfileTimesCommand;
|
|
1321
|
-
exports.ListProfileTimesRequest$ = ListProfileTimesRequest$;
|
|
1322
|
-
exports.ListProfileTimesResponse$ = ListProfileTimesResponse$;
|
|
1323
|
-
exports.ListProfilingGroups$ = ListProfilingGroups$;
|
|
1324
513
|
exports.ListProfilingGroupsCommand = ListProfilingGroupsCommand;
|
|
1325
|
-
exports.ListProfilingGroupsRequest$ = ListProfilingGroupsRequest$;
|
|
1326
|
-
exports.ListProfilingGroupsResponse$ = ListProfilingGroupsResponse$;
|
|
1327
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1328
514
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1329
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1330
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1331
|
-
exports.Match$ = Match$;
|
|
1332
515
|
exports.MetadataField = MetadataField;
|
|
1333
|
-
exports.Metric$ = Metric$;
|
|
1334
516
|
exports.MetricType = MetricType;
|
|
1335
|
-
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
1336
517
|
exports.OrderBy = OrderBy;
|
|
1337
|
-
exports.Pattern$ = Pattern$;
|
|
1338
|
-
exports.PostAgentProfile$ = PostAgentProfile$;
|
|
1339
518
|
exports.PostAgentProfileCommand = PostAgentProfileCommand;
|
|
1340
|
-
exports.PostAgentProfileRequest$ = PostAgentProfileRequest$;
|
|
1341
|
-
exports.PostAgentProfileResponse$ = PostAgentProfileResponse$;
|
|
1342
|
-
exports.ProfileTime$ = ProfileTime$;
|
|
1343
|
-
exports.ProfilingGroupDescription$ = ProfilingGroupDescription$;
|
|
1344
|
-
exports.ProfilingStatus$ = ProfilingStatus$;
|
|
1345
|
-
exports.PutPermission$ = PutPermission$;
|
|
1346
519
|
exports.PutPermissionCommand = PutPermissionCommand;
|
|
1347
|
-
exports.PutPermissionRequest$ = PutPermissionRequest$;
|
|
1348
|
-
exports.PutPermissionResponse$ = PutPermissionResponse$;
|
|
1349
|
-
exports.Recommendation$ = Recommendation$;
|
|
1350
|
-
exports.RemoveNotificationChannel$ = RemoveNotificationChannel$;
|
|
1351
520
|
exports.RemoveNotificationChannelCommand = RemoveNotificationChannelCommand;
|
|
1352
|
-
exports.RemoveNotificationChannelRequest$ = RemoveNotificationChannelRequest$;
|
|
1353
|
-
exports.RemoveNotificationChannelResponse$ = RemoveNotificationChannelResponse$;
|
|
1354
|
-
exports.RemovePermission$ = RemovePermission$;
|
|
1355
521
|
exports.RemovePermissionCommand = RemovePermissionCommand;
|
|
1356
|
-
exports.RemovePermissionRequest$ = RemovePermissionRequest$;
|
|
1357
|
-
exports.RemovePermissionResponse$ = RemovePermissionResponse$;
|
|
1358
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1359
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1360
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1361
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1362
|
-
exports.SubmitFeedback$ = SubmitFeedback$;
|
|
1363
522
|
exports.SubmitFeedbackCommand = SubmitFeedbackCommand;
|
|
1364
|
-
exports.SubmitFeedbackRequest$ = SubmitFeedbackRequest$;
|
|
1365
|
-
exports.SubmitFeedbackResponse$ = SubmitFeedbackResponse$;
|
|
1366
|
-
exports.TagResource$ = TagResource$;
|
|
1367
523
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1368
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1369
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1370
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1371
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1372
|
-
exports.TimestampStructure$ = TimestampStructure$;
|
|
1373
|
-
exports.UntagResource$ = UntagResource$;
|
|
1374
524
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1375
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1376
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1377
|
-
exports.UpdateProfilingGroup$ = UpdateProfilingGroup$;
|
|
1378
525
|
exports.UpdateProfilingGroupCommand = UpdateProfilingGroupCommand;
|
|
1379
|
-
exports.UpdateProfilingGroupRequest$ = UpdateProfilingGroupRequest$;
|
|
1380
|
-
exports.UpdateProfilingGroupResponse$ = UpdateProfilingGroupResponse$;
|
|
1381
|
-
exports.UserFeedback$ = UserFeedback$;
|
|
1382
|
-
exports.ValidationException = ValidationException;
|
|
1383
|
-
exports.ValidationException$ = ValidationException$;
|
|
1384
526
|
exports.paginateGetFindingsReportAccountSummary = paginateGetFindingsReportAccountSummary;
|
|
1385
527
|
exports.paginateListFindingsReports = paginateListFindingsReports;
|
|
1386
528
|
exports.paginateListProfileTimes = paginateListProfileTimes;
|
|
1387
529
|
exports.paginateListProfilingGroups = paginateListProfilingGroups;
|
|
530
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
531
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
532
|
+
enumerable: true,
|
|
533
|
+
get: function () { return schemas_0[k]; }
|
|
534
|
+
});
|
|
535
|
+
});
|
|
536
|
+
Object.keys(errors).forEach(function (k) {
|
|
537
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
538
|
+
enumerable: true,
|
|
539
|
+
get: function () { return errors[k]; }
|
|
540
|
+
});
|
|
541
|
+
});
|