@aws-sdk/client-codeguruprofiler 3.928.0 → 3.930.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 +1138 -1110
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/CodeGuruProfilerClient.js +2 -0
- package/dist-es/commands/AddNotificationChannelsCommand.js +3 -9
- package/dist-es/commands/BatchGetFrameMetricDataCommand.js +3 -9
- package/dist-es/commands/ConfigureAgentCommand.js +3 -9
- package/dist-es/commands/CreateProfilingGroupCommand.js +3 -9
- package/dist-es/commands/DeleteProfilingGroupCommand.js +3 -9
- package/dist-es/commands/DescribeProfilingGroupCommand.js +3 -9
- package/dist-es/commands/GetFindingsReportAccountSummaryCommand.js +3 -9
- package/dist-es/commands/GetNotificationConfigurationCommand.js +3 -9
- package/dist-es/commands/GetPolicyCommand.js +3 -9
- package/dist-es/commands/GetProfileCommand.js +3 -9
- package/dist-es/commands/GetRecommendationsCommand.js +3 -9
- package/dist-es/commands/ListFindingsReportsCommand.js +3 -9
- package/dist-es/commands/ListProfileTimesCommand.js +3 -9
- package/dist-es/commands/ListProfilingGroupsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PostAgentProfileCommand.js +3 -9
- package/dist-es/commands/PutPermissionCommand.js +3 -9
- package/dist-es/commands/RemoveNotificationChannelCommand.js +3 -9
- package/dist-es/commands/RemovePermissionCommand.js +3 -9
- package/dist-es/commands/SubmitFeedbackCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateProfilingGroupCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1101 -0
- package/dist-types/CodeGuruProfilerClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +120 -0
- package/dist-types/ts3.4/CodeGuruProfilerClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +126 -0
- package/package.json +34 -35
- package/dist-es/protocols/Aws_restJson1.js +0 -949
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -209
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -281
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class CodeGuruProfilerClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,12 +110,12 @@ class CodeGuruProfilerClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class CodeGuruProfilerServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let CodeGuruProfilerServiceException$1 = class CodeGuruProfilerServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, CodeGuruProfilerServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
120
|
const ActionGroup = {
|
|
122
121
|
AGENT_PERMISSIONS: "agentPermissions",
|
|
@@ -124,7 +123,7 @@ const ActionGroup = {
|
|
|
124
123
|
const EventPublisher = {
|
|
125
124
|
ANOMALY_DETECTION: "AnomalyDetection",
|
|
126
125
|
};
|
|
127
|
-
class ConflictException extends CodeGuruProfilerServiceException {
|
|
126
|
+
let ConflictException$1 = class ConflictException extends CodeGuruProfilerServiceException$1 {
|
|
128
127
|
name = "ConflictException";
|
|
129
128
|
$fault = "client";
|
|
130
129
|
constructor(opts) {
|
|
@@ -135,8 +134,8 @@ class ConflictException extends CodeGuruProfilerServiceException {
|
|
|
135
134
|
});
|
|
136
135
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
137
136
|
}
|
|
138
|
-
}
|
|
139
|
-
class InternalServerException extends CodeGuruProfilerServiceException {
|
|
137
|
+
};
|
|
138
|
+
let InternalServerException$1 = class InternalServerException extends CodeGuruProfilerServiceException$1 {
|
|
140
139
|
name = "InternalServerException";
|
|
141
140
|
$fault = "server";
|
|
142
141
|
$retryable = {};
|
|
@@ -148,8 +147,8 @@ class InternalServerException extends CodeGuruProfilerServiceException {
|
|
|
148
147
|
});
|
|
149
148
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
150
149
|
}
|
|
151
|
-
}
|
|
152
|
-
class ResourceNotFoundException extends CodeGuruProfilerServiceException {
|
|
150
|
+
};
|
|
151
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends CodeGuruProfilerServiceException$1 {
|
|
153
152
|
name = "ResourceNotFoundException";
|
|
154
153
|
$fault = "client";
|
|
155
154
|
constructor(opts) {
|
|
@@ -160,8 +159,8 @@ class ResourceNotFoundException extends CodeGuruProfilerServiceException {
|
|
|
160
159
|
});
|
|
161
160
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
162
161
|
}
|
|
163
|
-
}
|
|
164
|
-
class ServiceQuotaExceededException extends CodeGuruProfilerServiceException {
|
|
162
|
+
};
|
|
163
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends CodeGuruProfilerServiceException$1 {
|
|
165
164
|
name = "ServiceQuotaExceededException";
|
|
166
165
|
$fault = "client";
|
|
167
166
|
$retryable = {};
|
|
@@ -173,8 +172,8 @@ class ServiceQuotaExceededException extends CodeGuruProfilerServiceException {
|
|
|
173
172
|
});
|
|
174
173
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
175
174
|
}
|
|
176
|
-
}
|
|
177
|
-
class ThrottlingException extends CodeGuruProfilerServiceException {
|
|
175
|
+
};
|
|
176
|
+
let ThrottlingException$1 = class ThrottlingException extends CodeGuruProfilerServiceException$1 {
|
|
178
177
|
name = "ThrottlingException";
|
|
179
178
|
$fault = "client";
|
|
180
179
|
$retryable = {};
|
|
@@ -186,8 +185,8 @@ class ThrottlingException extends CodeGuruProfilerServiceException {
|
|
|
186
185
|
});
|
|
187
186
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
188
187
|
}
|
|
189
|
-
}
|
|
190
|
-
class ValidationException extends CodeGuruProfilerServiceException {
|
|
188
|
+
};
|
|
189
|
+
let ValidationException$1 = class ValidationException extends CodeGuruProfilerServiceException$1 {
|
|
191
190
|
name = "ValidationException";
|
|
192
191
|
$fault = "client";
|
|
193
192
|
constructor(opts) {
|
|
@@ -198,7 +197,7 @@ class ValidationException extends CodeGuruProfilerServiceException {
|
|
|
198
197
|
});
|
|
199
198
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
200
199
|
}
|
|
201
|
-
}
|
|
200
|
+
};
|
|
202
201
|
const AgentParameterField = {
|
|
203
202
|
MAX_STACK_DEPTH: "MaxStackDepth",
|
|
204
203
|
MEMORY_USAGE_LIMIT_PERCENT: "MemoryUsageLimitPercent",
|
|
@@ -238,963 +237,1102 @@ const OrderBy = {
|
|
|
238
237
|
TIMESTAMP_DESCENDING: "TimestampDescending",
|
|
239
238
|
};
|
|
240
239
|
|
|
241
|
-
const
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
const
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
const
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
const
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
const
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
const
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
const
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
const
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
const
|
|
350
|
-
|
|
351
|
-
const headers = {};
|
|
352
|
-
b.bp("/profilingGroups/{profilingGroupName}/policy");
|
|
353
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
354
|
-
let body;
|
|
355
|
-
b.m("GET").h(headers).b(body);
|
|
356
|
-
return b.build();
|
|
357
|
-
};
|
|
358
|
-
const se_GetProfileCommand = async (input, context) => {
|
|
359
|
-
const b = core.requestBuilder(input, context);
|
|
360
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
361
|
-
[_a]: input[_a],
|
|
362
|
-
});
|
|
363
|
-
b.bp("/profilingGroups/{profilingGroupName}/profile");
|
|
364
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
365
|
-
const query = smithyClient.map({
|
|
366
|
-
[_sT]: [() => input.startTime !== void 0, () => smithyClient.serializeDateTime(input[_sT]).toString()],
|
|
367
|
-
[_p]: [, input[_p]],
|
|
368
|
-
[_eT]: [() => input.endTime !== void 0, () => smithyClient.serializeDateTime(input[_eT]).toString()],
|
|
369
|
-
[_mD]: [() => input.maxDepth !== void 0, () => input[_mD].toString()],
|
|
370
|
-
});
|
|
371
|
-
let body;
|
|
372
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
373
|
-
return b.build();
|
|
374
|
-
};
|
|
375
|
-
const se_GetRecommendationsCommand = async (input, context) => {
|
|
376
|
-
const b = core.requestBuilder(input, context);
|
|
377
|
-
const headers = {};
|
|
378
|
-
b.bp("/internal/profilingGroups/{profilingGroupName}/recommendations");
|
|
379
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
380
|
-
const query = smithyClient.map({
|
|
381
|
-
[_sT]: [smithyClient.expectNonNull(input.startTime, `startTime`) != null, () => smithyClient.serializeDateTime(input[_sT]).toString()],
|
|
382
|
-
[_eT]: [smithyClient.expectNonNull(input.endTime, `endTime`) != null, () => smithyClient.serializeDateTime(input[_eT]).toString()],
|
|
383
|
-
[_l]: [, input[_l]],
|
|
384
|
-
});
|
|
385
|
-
let body;
|
|
386
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
387
|
-
return b.build();
|
|
388
|
-
};
|
|
389
|
-
const se_ListFindingsReportsCommand = async (input, context) => {
|
|
390
|
-
const b = core.requestBuilder(input, context);
|
|
391
|
-
const headers = {};
|
|
392
|
-
b.bp("/internal/profilingGroups/{profilingGroupName}/findingsReports");
|
|
393
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
394
|
-
const query = smithyClient.map({
|
|
395
|
-
[_sT]: [smithyClient.expectNonNull(input.startTime, `startTime`) != null, () => smithyClient.serializeDateTime(input[_sT]).toString()],
|
|
396
|
-
[_eT]: [smithyClient.expectNonNull(input.endTime, `endTime`) != null, () => smithyClient.serializeDateTime(input[_eT]).toString()],
|
|
397
|
-
[_nT]: [, input[_nT]],
|
|
398
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
399
|
-
[_dRO]: [() => input.dailyReportsOnly !== void 0, () => input[_dRO].toString()],
|
|
400
|
-
});
|
|
401
|
-
let body;
|
|
402
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
403
|
-
return b.build();
|
|
404
|
-
};
|
|
405
|
-
const se_ListProfileTimesCommand = async (input, context) => {
|
|
406
|
-
const b = core.requestBuilder(input, context);
|
|
407
|
-
const headers = {};
|
|
408
|
-
b.bp("/profilingGroups/{profilingGroupName}/profileTimes");
|
|
409
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
410
|
-
const query = smithyClient.map({
|
|
411
|
-
[_sT]: [smithyClient.expectNonNull(input.startTime, `startTime`) != null, () => smithyClient.serializeDateTime(input[_sT]).toString()],
|
|
412
|
-
[_eT]: [smithyClient.expectNonNull(input.endTime, `endTime`) != null, () => smithyClient.serializeDateTime(input[_eT]).toString()],
|
|
413
|
-
[_p]: [, smithyClient.expectNonNull(input[_p], `period`)],
|
|
414
|
-
[_oB]: [, input[_oB]],
|
|
415
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
416
|
-
[_nT]: [, input[_nT]],
|
|
417
|
-
});
|
|
418
|
-
let body;
|
|
419
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
420
|
-
return b.build();
|
|
421
|
-
};
|
|
422
|
-
const se_ListProfilingGroupsCommand = async (input, context) => {
|
|
423
|
-
const b = core.requestBuilder(input, context);
|
|
424
|
-
const headers = {};
|
|
425
|
-
b.bp("/profilingGroups");
|
|
426
|
-
const query = smithyClient.map({
|
|
427
|
-
[_nT]: [, input[_nT]],
|
|
428
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
429
|
-
[_iD]: [() => input.includeDescription !== void 0, () => input[_iD].toString()],
|
|
430
|
-
});
|
|
431
|
-
let body;
|
|
432
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
433
|
-
return b.build();
|
|
434
|
-
};
|
|
435
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
436
|
-
const b = core.requestBuilder(input, context);
|
|
437
|
-
const headers = {};
|
|
438
|
-
b.bp("/tags/{resourceArn}");
|
|
439
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
440
|
-
let body;
|
|
441
|
-
b.m("GET").h(headers).b(body);
|
|
442
|
-
return b.build();
|
|
443
|
-
};
|
|
444
|
-
const se_PostAgentProfileCommand = async (input, context) => {
|
|
445
|
-
const b = core.requestBuilder(input, context);
|
|
446
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
447
|
-
[_ct]: input[_cTo] || "application/octet-stream",
|
|
448
|
-
});
|
|
449
|
-
b.bp("/profilingGroups/{profilingGroupName}/agentProfile");
|
|
450
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
451
|
-
const query = smithyClient.map({
|
|
452
|
-
[_pT]: [, input[_pT] ?? uuid.v4()],
|
|
453
|
-
});
|
|
454
|
-
let body;
|
|
455
|
-
if (input.agentProfile !== undefined) {
|
|
456
|
-
body = input.agentProfile;
|
|
457
|
-
}
|
|
458
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
459
|
-
return b.build();
|
|
460
|
-
};
|
|
461
|
-
const se_PutPermissionCommand = async (input, context) => {
|
|
462
|
-
const b = core.requestBuilder(input, context);
|
|
463
|
-
const headers = {
|
|
464
|
-
"content-type": "application/json",
|
|
465
|
-
};
|
|
466
|
-
b.bp("/profilingGroups/{profilingGroupName}/policy/{actionGroup}");
|
|
467
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
468
|
-
b.p("actionGroup", () => input.actionGroup, "{actionGroup}", false);
|
|
469
|
-
let body;
|
|
470
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
471
|
-
principals: (_) => smithyClient._json(_),
|
|
472
|
-
revisionId: [],
|
|
473
|
-
}));
|
|
474
|
-
b.m("PUT").h(headers).b(body);
|
|
475
|
-
return b.build();
|
|
476
|
-
};
|
|
477
|
-
const se_RemoveNotificationChannelCommand = async (input, context) => {
|
|
478
|
-
const b = core.requestBuilder(input, context);
|
|
479
|
-
const headers = {};
|
|
480
|
-
b.bp("/profilingGroups/{profilingGroupName}/notificationConfiguration/{channelId}");
|
|
481
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
482
|
-
b.p("channelId", () => input.channelId, "{channelId}", false);
|
|
483
|
-
let body;
|
|
484
|
-
b.m("DELETE").h(headers).b(body);
|
|
485
|
-
return b.build();
|
|
486
|
-
};
|
|
487
|
-
const se_RemovePermissionCommand = async (input, context) => {
|
|
488
|
-
const b = core.requestBuilder(input, context);
|
|
489
|
-
const headers = {};
|
|
490
|
-
b.bp("/profilingGroups/{profilingGroupName}/policy/{actionGroup}");
|
|
491
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
492
|
-
b.p("actionGroup", () => input.actionGroup, "{actionGroup}", false);
|
|
493
|
-
const query = smithyClient.map({
|
|
494
|
-
[_rI]: [, smithyClient.expectNonNull(input[_rI], `revisionId`)],
|
|
495
|
-
});
|
|
496
|
-
let body;
|
|
497
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
498
|
-
return b.build();
|
|
499
|
-
};
|
|
500
|
-
const se_SubmitFeedbackCommand = async (input, context) => {
|
|
501
|
-
const b = core.requestBuilder(input, context);
|
|
502
|
-
const headers = {
|
|
503
|
-
"content-type": "application/json",
|
|
504
|
-
};
|
|
505
|
-
b.bp("/internal/profilingGroups/{profilingGroupName}/anomalies/{anomalyInstanceId}/feedback");
|
|
506
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
507
|
-
b.p("anomalyInstanceId", () => input.anomalyInstanceId, "{anomalyInstanceId}", false);
|
|
508
|
-
let body;
|
|
509
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
510
|
-
comment: [],
|
|
511
|
-
type: [],
|
|
512
|
-
}));
|
|
513
|
-
b.m("POST").h(headers).b(body);
|
|
514
|
-
return b.build();
|
|
515
|
-
};
|
|
516
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
517
|
-
const b = core.requestBuilder(input, context);
|
|
518
|
-
const headers = {
|
|
519
|
-
"content-type": "application/json",
|
|
520
|
-
};
|
|
521
|
-
b.bp("/tags/{resourceArn}");
|
|
522
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
523
|
-
let body;
|
|
524
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
525
|
-
tags: (_) => smithyClient._json(_),
|
|
526
|
-
}));
|
|
527
|
-
b.m("POST").h(headers).b(body);
|
|
528
|
-
return b.build();
|
|
529
|
-
};
|
|
530
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
531
|
-
const b = core.requestBuilder(input, context);
|
|
532
|
-
const headers = {};
|
|
533
|
-
b.bp("/tags/{resourceArn}");
|
|
534
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
535
|
-
const query = smithyClient.map({
|
|
536
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
537
|
-
});
|
|
538
|
-
let body;
|
|
539
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
540
|
-
return b.build();
|
|
541
|
-
};
|
|
542
|
-
const se_UpdateProfilingGroupCommand = async (input, context) => {
|
|
543
|
-
const b = core.requestBuilder(input, context);
|
|
544
|
-
const headers = {
|
|
545
|
-
"content-type": "application/json",
|
|
546
|
-
};
|
|
547
|
-
b.bp("/profilingGroups/{profilingGroupName}");
|
|
548
|
-
b.p("profilingGroupName", () => input.profilingGroupName, "{profilingGroupName}", false);
|
|
549
|
-
let body;
|
|
550
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
551
|
-
agentOrchestrationConfig: (_) => smithyClient._json(_),
|
|
552
|
-
}));
|
|
553
|
-
b.m("PUT").h(headers).b(body);
|
|
554
|
-
return b.build();
|
|
555
|
-
};
|
|
556
|
-
const de_AddNotificationChannelsCommand = async (output, context) => {
|
|
557
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
558
|
-
return de_CommandError(output, context);
|
|
559
|
-
}
|
|
560
|
-
const contents = smithyClient.map({
|
|
561
|
-
$metadata: deserializeMetadata(output),
|
|
562
|
-
});
|
|
563
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
564
|
-
const doc = smithyClient.take(data, {
|
|
565
|
-
notificationConfiguration: smithyClient._json,
|
|
566
|
-
});
|
|
567
|
-
Object.assign(contents, doc);
|
|
568
|
-
return contents;
|
|
569
|
-
};
|
|
570
|
-
const de_BatchGetFrameMetricDataCommand = async (output, context) => {
|
|
571
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
572
|
-
return de_CommandError(output, context);
|
|
573
|
-
}
|
|
574
|
-
const contents = smithyClient.map({
|
|
575
|
-
$metadata: deserializeMetadata(output),
|
|
576
|
-
});
|
|
577
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
578
|
-
const doc = smithyClient.take(data, {
|
|
579
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
580
|
-
endTimes: (_) => de_ListOfTimestamps(_),
|
|
581
|
-
frameMetricData: (_) => de_FrameMetricData(_),
|
|
582
|
-
resolution: smithyClient.expectString,
|
|
583
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
584
|
-
unprocessedEndTimes: (_) => de_UnprocessedEndTimeMap(_),
|
|
585
|
-
});
|
|
586
|
-
Object.assign(contents, doc);
|
|
587
|
-
return contents;
|
|
588
|
-
};
|
|
589
|
-
const de_ConfigureAgentCommand = async (output, context) => {
|
|
590
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
591
|
-
return de_CommandError(output, context);
|
|
592
|
-
}
|
|
593
|
-
const contents = smithyClient.map({
|
|
594
|
-
$metadata: deserializeMetadata(output),
|
|
595
|
-
});
|
|
596
|
-
const data = smithyClient.expectObject(await core$1.parseJsonBody(output.body, context));
|
|
597
|
-
contents.configuration = smithyClient._json(data);
|
|
598
|
-
return contents;
|
|
599
|
-
};
|
|
600
|
-
const de_CreateProfilingGroupCommand = async (output, context) => {
|
|
601
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
602
|
-
return de_CommandError(output, context);
|
|
603
|
-
}
|
|
604
|
-
const contents = smithyClient.map({
|
|
605
|
-
$metadata: deserializeMetadata(output),
|
|
606
|
-
});
|
|
607
|
-
const data = smithyClient.expectObject(await core$1.parseJsonBody(output.body, context));
|
|
608
|
-
contents.profilingGroup = de_ProfilingGroupDescription(data);
|
|
609
|
-
return contents;
|
|
610
|
-
};
|
|
611
|
-
const de_DeleteProfilingGroupCommand = async (output, context) => {
|
|
612
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
613
|
-
return de_CommandError(output, context);
|
|
614
|
-
}
|
|
615
|
-
const contents = smithyClient.map({
|
|
616
|
-
$metadata: deserializeMetadata(output),
|
|
617
|
-
});
|
|
618
|
-
await smithyClient.collectBody(output.body, context);
|
|
619
|
-
return contents;
|
|
620
|
-
};
|
|
621
|
-
const de_DescribeProfilingGroupCommand = async (output, context) => {
|
|
622
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
623
|
-
return de_CommandError(output, context);
|
|
624
|
-
}
|
|
625
|
-
const contents = smithyClient.map({
|
|
626
|
-
$metadata: deserializeMetadata(output),
|
|
627
|
-
});
|
|
628
|
-
const data = smithyClient.expectObject(await core$1.parseJsonBody(output.body, context));
|
|
629
|
-
contents.profilingGroup = de_ProfilingGroupDescription(data);
|
|
630
|
-
return contents;
|
|
631
|
-
};
|
|
632
|
-
const de_GetFindingsReportAccountSummaryCommand = async (output, context) => {
|
|
633
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
634
|
-
return de_CommandError(output, context);
|
|
635
|
-
}
|
|
636
|
-
const contents = smithyClient.map({
|
|
637
|
-
$metadata: deserializeMetadata(output),
|
|
638
|
-
});
|
|
639
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
640
|
-
const doc = smithyClient.take(data, {
|
|
641
|
-
nextToken: smithyClient.expectString,
|
|
642
|
-
reportSummaries: (_) => de_FindingsReportSummaries(_),
|
|
643
|
-
});
|
|
644
|
-
Object.assign(contents, doc);
|
|
645
|
-
return contents;
|
|
646
|
-
};
|
|
647
|
-
const de_GetNotificationConfigurationCommand = async (output, context) => {
|
|
648
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
649
|
-
return de_CommandError(output, context);
|
|
650
|
-
}
|
|
651
|
-
const contents = smithyClient.map({
|
|
652
|
-
$metadata: deserializeMetadata(output),
|
|
653
|
-
});
|
|
654
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
655
|
-
const doc = smithyClient.take(data, {
|
|
656
|
-
notificationConfiguration: smithyClient._json,
|
|
657
|
-
});
|
|
658
|
-
Object.assign(contents, doc);
|
|
659
|
-
return contents;
|
|
660
|
-
};
|
|
661
|
-
const de_GetPolicyCommand = async (output, context) => {
|
|
662
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
663
|
-
return de_CommandError(output, context);
|
|
664
|
-
}
|
|
665
|
-
const contents = smithyClient.map({
|
|
666
|
-
$metadata: deserializeMetadata(output),
|
|
667
|
-
});
|
|
668
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
669
|
-
const doc = smithyClient.take(data, {
|
|
670
|
-
policy: smithyClient.expectString,
|
|
671
|
-
revisionId: smithyClient.expectString,
|
|
672
|
-
});
|
|
673
|
-
Object.assign(contents, doc);
|
|
674
|
-
return contents;
|
|
675
|
-
};
|
|
676
|
-
const de_GetProfileCommand = async (output, context) => {
|
|
677
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
678
|
-
return de_CommandError(output, context);
|
|
679
|
-
}
|
|
680
|
-
const contents = smithyClient.map({
|
|
681
|
-
$metadata: deserializeMetadata(output),
|
|
682
|
-
[_cTo]: [, output.headers[_ct]],
|
|
683
|
-
[_cE]: [, output.headers[_ce]],
|
|
684
|
-
});
|
|
685
|
-
const data = await smithyClient.collectBody(output.body, context);
|
|
686
|
-
contents.profile = data;
|
|
687
|
-
return contents;
|
|
688
|
-
};
|
|
689
|
-
const de_GetRecommendationsCommand = async (output, context) => {
|
|
690
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
691
|
-
return de_CommandError(output, context);
|
|
692
|
-
}
|
|
693
|
-
const contents = smithyClient.map({
|
|
694
|
-
$metadata: deserializeMetadata(output),
|
|
695
|
-
});
|
|
696
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
697
|
-
const doc = smithyClient.take(data, {
|
|
698
|
-
anomalies: (_) => de_Anomalies(_),
|
|
699
|
-
profileEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
700
|
-
profileStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
701
|
-
profilingGroupName: smithyClient.expectString,
|
|
702
|
-
recommendations: (_) => de_Recommendations(_),
|
|
703
|
-
});
|
|
704
|
-
Object.assign(contents, doc);
|
|
705
|
-
return contents;
|
|
706
|
-
};
|
|
707
|
-
const de_ListFindingsReportsCommand = async (output, context) => {
|
|
708
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
709
|
-
return de_CommandError(output, context);
|
|
710
|
-
}
|
|
711
|
-
const contents = smithyClient.map({
|
|
712
|
-
$metadata: deserializeMetadata(output),
|
|
713
|
-
});
|
|
714
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
715
|
-
const doc = smithyClient.take(data, {
|
|
716
|
-
findingsReportSummaries: (_) => de_FindingsReportSummaries(_),
|
|
717
|
-
nextToken: smithyClient.expectString,
|
|
718
|
-
});
|
|
719
|
-
Object.assign(contents, doc);
|
|
720
|
-
return contents;
|
|
721
|
-
};
|
|
722
|
-
const de_ListProfileTimesCommand = async (output, context) => {
|
|
723
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
724
|
-
return de_CommandError(output, context);
|
|
725
|
-
}
|
|
726
|
-
const contents = smithyClient.map({
|
|
727
|
-
$metadata: deserializeMetadata(output),
|
|
728
|
-
});
|
|
729
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
730
|
-
const doc = smithyClient.take(data, {
|
|
731
|
-
nextToken: smithyClient.expectString,
|
|
732
|
-
profileTimes: (_) => de_ProfileTimes(_),
|
|
733
|
-
});
|
|
734
|
-
Object.assign(contents, doc);
|
|
735
|
-
return contents;
|
|
736
|
-
};
|
|
737
|
-
const de_ListProfilingGroupsCommand = async (output, context) => {
|
|
738
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
739
|
-
return de_CommandError(output, context);
|
|
740
|
-
}
|
|
741
|
-
const contents = smithyClient.map({
|
|
742
|
-
$metadata: deserializeMetadata(output),
|
|
743
|
-
});
|
|
744
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
745
|
-
const doc = smithyClient.take(data, {
|
|
746
|
-
nextToken: smithyClient.expectString,
|
|
747
|
-
profilingGroupNames: smithyClient._json,
|
|
748
|
-
profilingGroups: (_) => de_ProfilingGroupDescriptions(_),
|
|
749
|
-
});
|
|
750
|
-
Object.assign(contents, doc);
|
|
751
|
-
return contents;
|
|
752
|
-
};
|
|
753
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
754
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
755
|
-
return de_CommandError(output, context);
|
|
756
|
-
}
|
|
757
|
-
const contents = smithyClient.map({
|
|
758
|
-
$metadata: deserializeMetadata(output),
|
|
759
|
-
});
|
|
760
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
761
|
-
const doc = smithyClient.take(data, {
|
|
762
|
-
tags: smithyClient._json,
|
|
763
|
-
});
|
|
764
|
-
Object.assign(contents, doc);
|
|
765
|
-
return contents;
|
|
766
|
-
};
|
|
767
|
-
const de_PostAgentProfileCommand = async (output, context) => {
|
|
768
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
769
|
-
return de_CommandError(output, context);
|
|
770
|
-
}
|
|
771
|
-
const contents = smithyClient.map({
|
|
772
|
-
$metadata: deserializeMetadata(output),
|
|
773
|
-
});
|
|
774
|
-
await smithyClient.collectBody(output.body, context);
|
|
775
|
-
return contents;
|
|
776
|
-
};
|
|
777
|
-
const de_PutPermissionCommand = async (output, context) => {
|
|
778
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
779
|
-
return de_CommandError(output, context);
|
|
780
|
-
}
|
|
781
|
-
const contents = smithyClient.map({
|
|
782
|
-
$metadata: deserializeMetadata(output),
|
|
783
|
-
});
|
|
784
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
785
|
-
const doc = smithyClient.take(data, {
|
|
786
|
-
policy: smithyClient.expectString,
|
|
787
|
-
revisionId: smithyClient.expectString,
|
|
788
|
-
});
|
|
789
|
-
Object.assign(contents, doc);
|
|
790
|
-
return contents;
|
|
791
|
-
};
|
|
792
|
-
const de_RemoveNotificationChannelCommand = async (output, context) => {
|
|
793
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
794
|
-
return de_CommandError(output, context);
|
|
795
|
-
}
|
|
796
|
-
const contents = smithyClient.map({
|
|
797
|
-
$metadata: deserializeMetadata(output),
|
|
798
|
-
});
|
|
799
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
800
|
-
const doc = smithyClient.take(data, {
|
|
801
|
-
notificationConfiguration: smithyClient._json,
|
|
802
|
-
});
|
|
803
|
-
Object.assign(contents, doc);
|
|
804
|
-
return contents;
|
|
805
|
-
};
|
|
806
|
-
const de_RemovePermissionCommand = async (output, context) => {
|
|
807
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
808
|
-
return de_CommandError(output, context);
|
|
809
|
-
}
|
|
810
|
-
const contents = smithyClient.map({
|
|
811
|
-
$metadata: deserializeMetadata(output),
|
|
812
|
-
});
|
|
813
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
814
|
-
const doc = smithyClient.take(data, {
|
|
815
|
-
policy: smithyClient.expectString,
|
|
816
|
-
revisionId: smithyClient.expectString,
|
|
817
|
-
});
|
|
818
|
-
Object.assign(contents, doc);
|
|
819
|
-
return contents;
|
|
820
|
-
};
|
|
821
|
-
const de_SubmitFeedbackCommand = async (output, context) => {
|
|
822
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
823
|
-
return de_CommandError(output, context);
|
|
824
|
-
}
|
|
825
|
-
const contents = smithyClient.map({
|
|
826
|
-
$metadata: deserializeMetadata(output),
|
|
827
|
-
});
|
|
828
|
-
await smithyClient.collectBody(output.body, context);
|
|
829
|
-
return contents;
|
|
830
|
-
};
|
|
831
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
832
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
833
|
-
return de_CommandError(output, context);
|
|
834
|
-
}
|
|
835
|
-
const contents = smithyClient.map({
|
|
836
|
-
$metadata: deserializeMetadata(output),
|
|
837
|
-
});
|
|
838
|
-
await smithyClient.collectBody(output.body, context);
|
|
839
|
-
return contents;
|
|
840
|
-
};
|
|
841
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
842
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
843
|
-
return de_CommandError(output, context);
|
|
844
|
-
}
|
|
845
|
-
const contents = smithyClient.map({
|
|
846
|
-
$metadata: deserializeMetadata(output),
|
|
847
|
-
});
|
|
848
|
-
await smithyClient.collectBody(output.body, context);
|
|
849
|
-
return contents;
|
|
850
|
-
};
|
|
851
|
-
const de_UpdateProfilingGroupCommand = async (output, context) => {
|
|
852
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
853
|
-
return de_CommandError(output, context);
|
|
854
|
-
}
|
|
855
|
-
const contents = smithyClient.map({
|
|
856
|
-
$metadata: deserializeMetadata(output),
|
|
857
|
-
});
|
|
858
|
-
const data = smithyClient.expectObject(await core$1.parseJsonBody(output.body, context));
|
|
859
|
-
contents.profilingGroup = de_ProfilingGroupDescription(data);
|
|
860
|
-
return contents;
|
|
861
|
-
};
|
|
862
|
-
const de_CommandError = async (output, context) => {
|
|
863
|
-
const parsedOutput = {
|
|
864
|
-
...output,
|
|
865
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
866
|
-
};
|
|
867
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
868
|
-
switch (errorCode) {
|
|
869
|
-
case "ConflictException":
|
|
870
|
-
case "com.amazonaws.codeguruprofiler#ConflictException":
|
|
871
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
872
|
-
case "InternalServerException":
|
|
873
|
-
case "com.amazonaws.codeguruprofiler#InternalServerException":
|
|
874
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
875
|
-
case "ResourceNotFoundException":
|
|
876
|
-
case "com.amazonaws.codeguruprofiler#ResourceNotFoundException":
|
|
877
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
878
|
-
case "ServiceQuotaExceededException":
|
|
879
|
-
case "com.amazonaws.codeguruprofiler#ServiceQuotaExceededException":
|
|
880
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
881
|
-
case "ThrottlingException":
|
|
882
|
-
case "com.amazonaws.codeguruprofiler#ThrottlingException":
|
|
883
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
884
|
-
case "ValidationException":
|
|
885
|
-
case "com.amazonaws.codeguruprofiler#ValidationException":
|
|
886
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
887
|
-
default:
|
|
888
|
-
const parsedBody = parsedOutput.body;
|
|
889
|
-
return throwDefaultError({
|
|
890
|
-
output,
|
|
891
|
-
parsedBody,
|
|
892
|
-
errorCode,
|
|
893
|
-
});
|
|
894
|
-
}
|
|
895
|
-
};
|
|
896
|
-
const throwDefaultError = smithyClient.withBaseException(CodeGuruProfilerServiceException);
|
|
897
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
898
|
-
const contents = smithyClient.map({});
|
|
899
|
-
const data = parsedOutput.body;
|
|
900
|
-
const doc = smithyClient.take(data, {
|
|
901
|
-
message: smithyClient.expectString,
|
|
902
|
-
});
|
|
903
|
-
Object.assign(contents, doc);
|
|
904
|
-
const exception = new ConflictException({
|
|
905
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
906
|
-
...contents,
|
|
907
|
-
});
|
|
908
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
909
|
-
};
|
|
910
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
911
|
-
const contents = smithyClient.map({});
|
|
912
|
-
const data = parsedOutput.body;
|
|
913
|
-
const doc = smithyClient.take(data, {
|
|
914
|
-
message: smithyClient.expectString,
|
|
915
|
-
});
|
|
916
|
-
Object.assign(contents, doc);
|
|
917
|
-
const exception = new InternalServerException({
|
|
918
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
919
|
-
...contents,
|
|
920
|
-
});
|
|
921
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
922
|
-
};
|
|
923
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
924
|
-
const contents = smithyClient.map({});
|
|
925
|
-
const data = parsedOutput.body;
|
|
926
|
-
const doc = smithyClient.take(data, {
|
|
927
|
-
message: smithyClient.expectString,
|
|
928
|
-
});
|
|
929
|
-
Object.assign(contents, doc);
|
|
930
|
-
const exception = new ResourceNotFoundException({
|
|
931
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
932
|
-
...contents,
|
|
933
|
-
});
|
|
934
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
935
|
-
};
|
|
936
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
937
|
-
const contents = smithyClient.map({});
|
|
938
|
-
const data = parsedOutput.body;
|
|
939
|
-
const doc = smithyClient.take(data, {
|
|
940
|
-
message: smithyClient.expectString,
|
|
941
|
-
});
|
|
942
|
-
Object.assign(contents, doc);
|
|
943
|
-
const exception = new ServiceQuotaExceededException({
|
|
944
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
945
|
-
...contents,
|
|
946
|
-
});
|
|
947
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
948
|
-
};
|
|
949
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
950
|
-
const contents = smithyClient.map({});
|
|
951
|
-
const data = parsedOutput.body;
|
|
952
|
-
const doc = smithyClient.take(data, {
|
|
953
|
-
message: smithyClient.expectString,
|
|
954
|
-
});
|
|
955
|
-
Object.assign(contents, doc);
|
|
956
|
-
const exception = new ThrottlingException({
|
|
957
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
958
|
-
...contents,
|
|
959
|
-
});
|
|
960
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
961
|
-
};
|
|
962
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
963
|
-
const contents = smithyClient.map({});
|
|
964
|
-
const data = parsedOutput.body;
|
|
965
|
-
const doc = smithyClient.take(data, {
|
|
966
|
-
message: smithyClient.expectString,
|
|
967
|
-
});
|
|
968
|
-
Object.assign(contents, doc);
|
|
969
|
-
const exception = new ValidationException({
|
|
970
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
971
|
-
...contents,
|
|
972
|
-
});
|
|
973
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
974
|
-
};
|
|
975
|
-
const de_AggregatedProfileTime = (output, context) => {
|
|
976
|
-
return smithyClient.take(output, {
|
|
977
|
-
period: smithyClient.expectString,
|
|
978
|
-
start: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
979
|
-
});
|
|
980
|
-
};
|
|
981
|
-
const de_Anomalies = (output, context) => {
|
|
982
|
-
const retVal = (output || [])
|
|
983
|
-
.filter((e) => e != null)
|
|
984
|
-
.map((entry) => {
|
|
985
|
-
return de_Anomaly(entry);
|
|
986
|
-
});
|
|
987
|
-
return retVal;
|
|
988
|
-
};
|
|
989
|
-
const de_Anomaly = (output, context) => {
|
|
990
|
-
return smithyClient.take(output, {
|
|
991
|
-
instances: (_) => de_AnomalyInstances(_),
|
|
992
|
-
metric: smithyClient._json,
|
|
993
|
-
reason: smithyClient.expectString,
|
|
994
|
-
});
|
|
995
|
-
};
|
|
996
|
-
const de_AnomalyInstance = (output, context) => {
|
|
997
|
-
return smithyClient.take(output, {
|
|
998
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
999
|
-
id: smithyClient.expectString,
|
|
1000
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1001
|
-
userFeedback: smithyClient._json,
|
|
1002
|
-
});
|
|
1003
|
-
};
|
|
1004
|
-
const de_AnomalyInstances = (output, context) => {
|
|
1005
|
-
const retVal = (output || [])
|
|
1006
|
-
.filter((e) => e != null)
|
|
1007
|
-
.map((entry) => {
|
|
1008
|
-
return de_AnomalyInstance(entry);
|
|
1009
|
-
});
|
|
1010
|
-
return retVal;
|
|
1011
|
-
};
|
|
1012
|
-
const de_FindingsReportSummaries = (output, context) => {
|
|
1013
|
-
const retVal = (output || [])
|
|
1014
|
-
.filter((e) => e != null)
|
|
1015
|
-
.map((entry) => {
|
|
1016
|
-
return de_FindingsReportSummary(entry);
|
|
1017
|
-
});
|
|
1018
|
-
return retVal;
|
|
1019
|
-
};
|
|
1020
|
-
const de_FindingsReportSummary = (output, context) => {
|
|
1021
|
-
return smithyClient.take(output, {
|
|
1022
|
-
id: smithyClient.expectString,
|
|
1023
|
-
profileEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1024
|
-
profileStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1025
|
-
profilingGroupName: smithyClient.expectString,
|
|
1026
|
-
totalNumberOfFindings: smithyClient.expectInt32,
|
|
1027
|
-
});
|
|
1028
|
-
};
|
|
1029
|
-
const de_FrameMetricData = (output, context) => {
|
|
1030
|
-
const retVal = (output || [])
|
|
1031
|
-
.filter((e) => e != null)
|
|
1032
|
-
.map((entry) => {
|
|
1033
|
-
return de_FrameMetricDatum(entry);
|
|
1034
|
-
});
|
|
1035
|
-
return retVal;
|
|
1036
|
-
};
|
|
1037
|
-
const de_FrameMetricDatum = (output, context) => {
|
|
1038
|
-
return smithyClient.take(output, {
|
|
1039
|
-
frameMetric: smithyClient._json,
|
|
1040
|
-
values: (_) => de_FrameMetricValues(_),
|
|
1041
|
-
});
|
|
1042
|
-
};
|
|
1043
|
-
const de_FrameMetricValues = (output, context) => {
|
|
1044
|
-
const retVal = (output || [])
|
|
1045
|
-
.filter((e) => e != null)
|
|
1046
|
-
.map((entry) => {
|
|
1047
|
-
return smithyClient.limitedParseDouble(entry);
|
|
1048
|
-
});
|
|
1049
|
-
return retVal;
|
|
1050
|
-
};
|
|
1051
|
-
const de_ListOfTimestamps = (output, context) => {
|
|
1052
|
-
const retVal = (output || [])
|
|
1053
|
-
.filter((e) => e != null)
|
|
1054
|
-
.map((entry) => {
|
|
1055
|
-
return de_TimestampStructure(entry);
|
|
1056
|
-
});
|
|
1057
|
-
return retVal;
|
|
1058
|
-
};
|
|
1059
|
-
const de_Match = (output, context) => {
|
|
1060
|
-
return smithyClient.take(output, {
|
|
1061
|
-
frameAddress: smithyClient.expectString,
|
|
1062
|
-
targetFramesIndex: smithyClient.expectInt32,
|
|
1063
|
-
thresholdBreachValue: smithyClient.limitedParseDouble,
|
|
1064
|
-
});
|
|
1065
|
-
};
|
|
1066
|
-
const de_Matches = (output, context) => {
|
|
1067
|
-
const retVal = (output || [])
|
|
1068
|
-
.filter((e) => e != null)
|
|
1069
|
-
.map((entry) => {
|
|
1070
|
-
return de_Match(entry);
|
|
1071
|
-
});
|
|
1072
|
-
return retVal;
|
|
1073
|
-
};
|
|
1074
|
-
const de_Pattern = (output, context) => {
|
|
1075
|
-
return smithyClient.take(output, {
|
|
1076
|
-
countersToAggregate: smithyClient._json,
|
|
1077
|
-
description: smithyClient.expectString,
|
|
1078
|
-
id: smithyClient.expectString,
|
|
1079
|
-
name: smithyClient.expectString,
|
|
1080
|
-
resolutionSteps: smithyClient.expectString,
|
|
1081
|
-
targetFrames: smithyClient._json,
|
|
1082
|
-
thresholdPercent: smithyClient.limitedParseDouble,
|
|
1083
|
-
});
|
|
1084
|
-
};
|
|
1085
|
-
const de_ProfileTime = (output, context) => {
|
|
1086
|
-
return smithyClient.take(output, {
|
|
1087
|
-
start: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1088
|
-
});
|
|
1089
|
-
};
|
|
1090
|
-
const de_ProfileTimes = (output, context) => {
|
|
1091
|
-
const retVal = (output || [])
|
|
1092
|
-
.filter((e) => e != null)
|
|
1093
|
-
.map((entry) => {
|
|
1094
|
-
return de_ProfileTime(entry);
|
|
1095
|
-
});
|
|
1096
|
-
return retVal;
|
|
1097
|
-
};
|
|
1098
|
-
const de_ProfilingGroupDescription = (output, context) => {
|
|
1099
|
-
return smithyClient.take(output, {
|
|
1100
|
-
agentOrchestrationConfig: smithyClient._json,
|
|
1101
|
-
arn: smithyClient.expectString,
|
|
1102
|
-
computePlatform: smithyClient.expectString,
|
|
1103
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1104
|
-
name: smithyClient.expectString,
|
|
1105
|
-
profilingStatus: (_) => de_ProfilingStatus(_),
|
|
1106
|
-
tags: smithyClient._json,
|
|
1107
|
-
updatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1108
|
-
});
|
|
1109
|
-
};
|
|
1110
|
-
const de_ProfilingGroupDescriptions = (output, context) => {
|
|
1111
|
-
const retVal = (output || [])
|
|
1112
|
-
.filter((e) => e != null)
|
|
1113
|
-
.map((entry) => {
|
|
1114
|
-
return de_ProfilingGroupDescription(entry);
|
|
1115
|
-
});
|
|
1116
|
-
return retVal;
|
|
1117
|
-
};
|
|
1118
|
-
const de_ProfilingStatus = (output, context) => {
|
|
1119
|
-
return smithyClient.take(output, {
|
|
1120
|
-
latestAgentOrchestratedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1121
|
-
latestAgentProfileReportedAt: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1122
|
-
latestAggregatedProfile: (_) => de_AggregatedProfileTime(_),
|
|
1123
|
-
});
|
|
1124
|
-
};
|
|
1125
|
-
const de_Recommendation = (output, context) => {
|
|
1126
|
-
return smithyClient.take(output, {
|
|
1127
|
-
allMatchesCount: smithyClient.expectInt32,
|
|
1128
|
-
allMatchesSum: smithyClient.limitedParseDouble,
|
|
1129
|
-
endTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1130
|
-
pattern: (_) => de_Pattern(_),
|
|
1131
|
-
startTime: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1132
|
-
topMatches: (_) => de_Matches(_),
|
|
1133
|
-
});
|
|
1134
|
-
};
|
|
1135
|
-
const de_Recommendations = (output, context) => {
|
|
1136
|
-
const retVal = (output || [])
|
|
1137
|
-
.filter((e) => e != null)
|
|
1138
|
-
.map((entry) => {
|
|
1139
|
-
return de_Recommendation(entry);
|
|
1140
|
-
});
|
|
1141
|
-
return retVal;
|
|
1142
|
-
};
|
|
1143
|
-
const de_TimestampStructure = (output, context) => {
|
|
1144
|
-
return smithyClient.take(output, {
|
|
1145
|
-
value: (_) => smithyClient.expectNonNull(smithyClient.parseRfc3339DateTimeWithOffset(_)),
|
|
1146
|
-
});
|
|
1147
|
-
};
|
|
1148
|
-
const de_UnprocessedEndTimeMap = (output, context) => {
|
|
1149
|
-
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
1150
|
-
if (value === null) {
|
|
1151
|
-
return acc;
|
|
1152
|
-
}
|
|
1153
|
-
acc[key] = de_ListOfTimestamps(value);
|
|
1154
|
-
return acc;
|
|
1155
|
-
}, {});
|
|
1156
|
-
};
|
|
1157
|
-
const deserializeMetadata = (output) => ({
|
|
1158
|
-
httpStatusCode: output.statusCode,
|
|
1159
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1160
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1161
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1162
|
-
});
|
|
240
|
+
const _A = "Anomaly";
|
|
241
|
+
const _AC = "AgentConfiguration";
|
|
242
|
+
const _AI = "AnomalyInstance";
|
|
243
|
+
const _AIn = "AnomalyInstances";
|
|
244
|
+
const _ANC = "AddNotificationChannels";
|
|
245
|
+
const _ANCR = "AddNotificationChannelsRequest";
|
|
246
|
+
const _ANCRd = "AddNotificationChannelsResponse";
|
|
247
|
+
const _AOC = "AgentOrchestrationConfig";
|
|
248
|
+
const _APT = "AggregatedProfileTime";
|
|
249
|
+
const _Ac = "Accept";
|
|
250
|
+
const _An = "Anomalies";
|
|
251
|
+
const _BGFMD = "BatchGetFrameMetricData";
|
|
252
|
+
const _BGFMDR = "BatchGetFrameMetricDataRequest";
|
|
253
|
+
const _BGFMDRa = "BatchGetFrameMetricDataResponse";
|
|
254
|
+
const _C = "Channel";
|
|
255
|
+
const _CA = "ConfigureAgent";
|
|
256
|
+
const _CAR = "ConfigureAgentRequest";
|
|
257
|
+
const _CARo = "ConfigureAgentResponse";
|
|
258
|
+
const _CE = "ConflictException";
|
|
259
|
+
const _CE_ = "Content-Encoding";
|
|
260
|
+
const _CPG = "CreateProfilingGroup";
|
|
261
|
+
const _CPGR = "CreateProfilingGroupRequest";
|
|
262
|
+
const _CPGRr = "CreateProfilingGroupResponse";
|
|
263
|
+
const _CT = "Content-Type";
|
|
264
|
+
const _Ch = "Channels";
|
|
265
|
+
const _DPG = "DeleteProfilingGroup";
|
|
266
|
+
const _DPGR = "DeleteProfilingGroupRequest";
|
|
267
|
+
const _DPGRe = "DeleteProfilingGroupResponse";
|
|
268
|
+
const _DPGRes = "DescribeProfilingGroupRequest";
|
|
269
|
+
const _DPGResc = "DescribeProfilingGroupResponse";
|
|
270
|
+
const _DPGe = "DescribeProfilingGroup";
|
|
271
|
+
const _FM = "FrameMetric";
|
|
272
|
+
const _FMD = "FrameMetricDatum";
|
|
273
|
+
const _FMDr = "FrameMetricData";
|
|
274
|
+
const _FMr = "FrameMetrics";
|
|
275
|
+
const _FRS = "FindingsReportSummary";
|
|
276
|
+
const _FRSi = "FindingsReportSummaries";
|
|
277
|
+
const _GFRAS = "GetFindingsReportAccountSummary";
|
|
278
|
+
const _GFRASR = "GetFindingsReportAccountSummaryRequest";
|
|
279
|
+
const _GFRASRe = "GetFindingsReportAccountSummaryResponse";
|
|
280
|
+
const _GNC = "GetNotificationConfiguration";
|
|
281
|
+
const _GNCR = "GetNotificationConfigurationRequest";
|
|
282
|
+
const _GNCRe = "GetNotificationConfigurationResponse";
|
|
283
|
+
const _GP = "GetPolicy";
|
|
284
|
+
const _GPR = "GetPolicyRequest";
|
|
285
|
+
const _GPRe = "GetPolicyResponse";
|
|
286
|
+
const _GPRet = "GetProfileRequest";
|
|
287
|
+
const _GPRetr = "GetProfileResponse";
|
|
288
|
+
const _GPe = "GetProfile";
|
|
289
|
+
const _GR = "GetRecommendations";
|
|
290
|
+
const _GRR = "GetRecommendationsRequest";
|
|
291
|
+
const _GRRe = "GetRecommendationsResponse";
|
|
292
|
+
const _ISE = "InternalServerException";
|
|
293
|
+
const _LFR = "ListFindingsReports";
|
|
294
|
+
const _LFRR = "ListFindingsReportsRequest";
|
|
295
|
+
const _LFRRi = "ListFindingsReportsResponse";
|
|
296
|
+
const _LOT = "ListOfTimestamps";
|
|
297
|
+
const _LPG = "ListProfilingGroups";
|
|
298
|
+
const _LPGR = "ListProfilingGroupsRequest";
|
|
299
|
+
const _LPGRi = "ListProfilingGroupsResponse";
|
|
300
|
+
const _LPT = "ListProfileTimes";
|
|
301
|
+
const _LPTR = "ListProfileTimesRequest";
|
|
302
|
+
const _LPTRi = "ListProfileTimesResponse";
|
|
303
|
+
const _LTFR = "ListTagsForResource";
|
|
304
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
305
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
306
|
+
const _M = "Match";
|
|
307
|
+
const _Ma = "Matches";
|
|
308
|
+
const _Me = "Metric";
|
|
309
|
+
const _NC = "NotificationConfiguration";
|
|
310
|
+
const _P = "Pattern";
|
|
311
|
+
const _PAP = "PostAgentProfile";
|
|
312
|
+
const _PAPR = "PostAgentProfileRequest";
|
|
313
|
+
const _PAPRo = "PostAgentProfileResponse";
|
|
314
|
+
const _PGD = "ProfilingGroupDescription";
|
|
315
|
+
const _PGDr = "ProfilingGroupDescriptions";
|
|
316
|
+
const _PP = "PutPermission";
|
|
317
|
+
const _PPR = "PutPermissionRequest";
|
|
318
|
+
const _PPRu = "PutPermissionResponse";
|
|
319
|
+
const _PS = "ProfilingStatus";
|
|
320
|
+
const _PT = "ProfileTime";
|
|
321
|
+
const _PTr = "ProfileTimes";
|
|
322
|
+
const _R = "Recommendation";
|
|
323
|
+
const _RNC = "RemoveNotificationChannel";
|
|
324
|
+
const _RNCR = "RemoveNotificationChannelRequest";
|
|
325
|
+
const _RNCRe = "RemoveNotificationChannelResponse";
|
|
326
|
+
const _RNFE = "ResourceNotFoundException";
|
|
327
|
+
const _RP = "RemovePermission";
|
|
328
|
+
const _RPR = "RemovePermissionRequest";
|
|
329
|
+
const _RPRe = "RemovePermissionResponse";
|
|
330
|
+
const _Re = "Recommendations";
|
|
331
|
+
const _SF = "SubmitFeedback";
|
|
332
|
+
const _SFR = "SubmitFeedbackRequest";
|
|
333
|
+
const _SFRu = "SubmitFeedbackResponse";
|
|
334
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
335
|
+
const _TE = "ThrottlingException";
|
|
336
|
+
const _TF = "TargetFrames";
|
|
337
|
+
const _TR = "TagResource";
|
|
338
|
+
const _TRR = "TagResourceRequest";
|
|
339
|
+
const _TRRa = "TagResourceResponse";
|
|
340
|
+
const _TS = "TimestampStructure";
|
|
341
|
+
const _UETM = "UnprocessedEndTimeMap";
|
|
342
|
+
const _UF = "UserFeedback";
|
|
343
|
+
const _UPG = "UpdateProfilingGroup";
|
|
344
|
+
const _UPGR = "UpdateProfilingGroupRequest";
|
|
345
|
+
const _UPGRp = "UpdateProfilingGroupResponse";
|
|
346
|
+
const _UR = "UntagResource";
|
|
347
|
+
const _URR = "UntagResourceRequest";
|
|
348
|
+
const _URRn = "UntagResourceResponse";
|
|
349
|
+
const _VE = "ValidationException";
|
|
1163
350
|
const _a = "accept";
|
|
351
|
+
const _aG = "actionGroup";
|
|
352
|
+
const _aII = "anomalyInstanceId";
|
|
353
|
+
const _aMC = "allMatchesCount";
|
|
354
|
+
const _aMS = "allMatchesSum";
|
|
355
|
+
const _aOC = "agentOrchestrationConfig";
|
|
356
|
+
const _aP = "agentParameters";
|
|
357
|
+
const _aPg = "agentProfile";
|
|
358
|
+
const _an = "anomalies";
|
|
359
|
+
const _ar = "arn";
|
|
360
|
+
const _c = "channels";
|
|
361
|
+
const _cA = "createdAt";
|
|
1164
362
|
const _cE = "contentEncoding";
|
|
363
|
+
const _cI = "channelId";
|
|
364
|
+
const _cP = "computePlatform";
|
|
1165
365
|
const _cT = "clientToken";
|
|
366
|
+
const _cTA = "countersToAggregate";
|
|
1166
367
|
const _cTo = "contentType";
|
|
1167
|
-
const
|
|
1168
|
-
const
|
|
368
|
+
const _cl = "client";
|
|
369
|
+
const _co = "configuration";
|
|
370
|
+
const _com = "comment";
|
|
371
|
+
const _d = "description";
|
|
1169
372
|
const _dRO = "dailyReportsOnly";
|
|
373
|
+
const _e = "error";
|
|
374
|
+
const _eP = "eventPublishers";
|
|
1170
375
|
const _eT = "endTime";
|
|
376
|
+
const _eTn = "endTimes";
|
|
377
|
+
const _fA = "frameAddress";
|
|
378
|
+
const _fII = "fleetInstanceId";
|
|
379
|
+
const _fM = "frameMetrics";
|
|
380
|
+
const _fMD = "frameMetricData";
|
|
381
|
+
const _fMr = "frameMetric";
|
|
382
|
+
const _fN = "frameName";
|
|
383
|
+
const _fRS = "findingsReportSummaries";
|
|
384
|
+
const _h = "http";
|
|
385
|
+
const _hE = "httpError";
|
|
386
|
+
const _hH = "httpHeader";
|
|
387
|
+
const _hQ = "httpQuery";
|
|
388
|
+
const _i = "instances";
|
|
1171
389
|
const _iD = "includeDescription";
|
|
390
|
+
const _iT = "idempotencyToken";
|
|
391
|
+
const _id = "id";
|
|
1172
392
|
const _l = "locale";
|
|
393
|
+
const _lAOA = "latestAgentOrchestratedAt";
|
|
394
|
+
const _lAP = "latestAggregatedProfile";
|
|
395
|
+
const _lAPRA = "latestAgentProfileReportedAt";
|
|
396
|
+
const _m = "metric";
|
|
1173
397
|
const _mD = "maxDepth";
|
|
1174
398
|
const _mR = "maxResults";
|
|
399
|
+
const _me = "metadata";
|
|
400
|
+
const _mes = "message";
|
|
401
|
+
const _n = "name";
|
|
402
|
+
const _nC = "notificationConfiguration";
|
|
1175
403
|
const _nT = "nextToken";
|
|
1176
404
|
const _oB = "orderBy";
|
|
1177
405
|
const _p = "period";
|
|
1178
|
-
const
|
|
406
|
+
const _pE = "profilingEnabled";
|
|
407
|
+
const _pET = "profileEndTime";
|
|
408
|
+
const _pG = "profilingGroup";
|
|
409
|
+
const _pGN = "profilingGroupName";
|
|
410
|
+
const _pGNr = "profilingGroupNames";
|
|
411
|
+
const _pGr = "profilingGroups";
|
|
412
|
+
const _pIS = "periodInSeconds";
|
|
413
|
+
const _pS = "profilingStatus";
|
|
414
|
+
const _pST = "profileStartTime";
|
|
415
|
+
const _pT = "profileTimes";
|
|
416
|
+
const _pTr = "profileToken";
|
|
417
|
+
const _pa = "pattern";
|
|
418
|
+
const _po = "policy";
|
|
419
|
+
const _pr = "profile";
|
|
420
|
+
const _pri = "principals";
|
|
421
|
+
const _r = "reason";
|
|
422
|
+
const _rA = "resourceArn";
|
|
1179
423
|
const _rI = "revisionId";
|
|
424
|
+
const _rS = "reportSummaries";
|
|
425
|
+
const _rSe = "resolutionSteps";
|
|
426
|
+
const _re = "resolution";
|
|
427
|
+
const _rec = "recommendations";
|
|
428
|
+
const _s = "start";
|
|
429
|
+
const _sP = "shouldProfile";
|
|
1180
430
|
const _sT = "startTime";
|
|
431
|
+
const _se = "server";
|
|
432
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.codeguruprofiler";
|
|
433
|
+
const _t = "tags";
|
|
434
|
+
const _tBV = "thresholdBreachValue";
|
|
435
|
+
const _tF = "targetFrames";
|
|
436
|
+
const _tFI = "targetFramesIndex";
|
|
1181
437
|
const _tK = "tagKeys";
|
|
438
|
+
const _tM = "topMatches";
|
|
439
|
+
const _tNOF = "totalNumberOfFindings";
|
|
440
|
+
const _tP = "thresholdPercent";
|
|
1182
441
|
const _tR = "targetResolution";
|
|
442
|
+
const _tS = "threadStates";
|
|
443
|
+
const _ty = "type";
|
|
444
|
+
const _u = "uri";
|
|
445
|
+
const _uA = "updatedAt";
|
|
446
|
+
const _uET = "unprocessedEndTimes";
|
|
447
|
+
const _uF = "userFeedback";
|
|
448
|
+
const _v = "values";
|
|
449
|
+
const _va = "value";
|
|
450
|
+
const n0 = "com.amazonaws.codeguruprofiler";
|
|
451
|
+
var AddNotificationChannelsRequest = [
|
|
452
|
+
3,
|
|
453
|
+
n0,
|
|
454
|
+
_ANCR,
|
|
455
|
+
0,
|
|
456
|
+
[_pGN, _c],
|
|
457
|
+
[[0, 1], () => Channels],
|
|
458
|
+
];
|
|
459
|
+
var AddNotificationChannelsResponse = [
|
|
460
|
+
3,
|
|
461
|
+
n0,
|
|
462
|
+
_ANCRd,
|
|
463
|
+
0,
|
|
464
|
+
[_nC],
|
|
465
|
+
[() => NotificationConfiguration],
|
|
466
|
+
];
|
|
467
|
+
var AgentConfiguration = [3, n0, _AC, 0, [_sP, _pIS, _aP], [2, 1, 128 | 0]];
|
|
468
|
+
var AgentOrchestrationConfig = [3, n0, _AOC, 0, [_pE], [2]];
|
|
469
|
+
var AggregatedProfileTime = [3, n0, _APT, 0, [_s, _p], [5, 0]];
|
|
470
|
+
var Anomaly = [3, n0, _A, 0, [_m, _r, _i], [() => Metric, 0, () => AnomalyInstances]];
|
|
471
|
+
var AnomalyInstance = [
|
|
472
|
+
3,
|
|
473
|
+
n0,
|
|
474
|
+
_AI,
|
|
475
|
+
0,
|
|
476
|
+
[_id, _sT, _eT, _uF],
|
|
477
|
+
[0, 5, 5, () => UserFeedback],
|
|
478
|
+
];
|
|
479
|
+
var BatchGetFrameMetricDataRequest = [
|
|
480
|
+
3,
|
|
481
|
+
n0,
|
|
482
|
+
_BGFMDR,
|
|
483
|
+
0,
|
|
484
|
+
[_pGN, _sT, _eT, _p, _tR, _fM],
|
|
485
|
+
[
|
|
486
|
+
[0, 1],
|
|
487
|
+
[
|
|
488
|
+
5,
|
|
489
|
+
{
|
|
490
|
+
[_hQ]: _sT,
|
|
491
|
+
},
|
|
492
|
+
],
|
|
493
|
+
[
|
|
494
|
+
5,
|
|
495
|
+
{
|
|
496
|
+
[_hQ]: _eT,
|
|
497
|
+
},
|
|
498
|
+
],
|
|
499
|
+
[
|
|
500
|
+
0,
|
|
501
|
+
{
|
|
502
|
+
[_hQ]: _p,
|
|
503
|
+
},
|
|
504
|
+
],
|
|
505
|
+
[
|
|
506
|
+
0,
|
|
507
|
+
{
|
|
508
|
+
[_hQ]: _tR,
|
|
509
|
+
},
|
|
510
|
+
],
|
|
511
|
+
() => FrameMetrics,
|
|
512
|
+
],
|
|
513
|
+
];
|
|
514
|
+
var BatchGetFrameMetricDataResponse = [
|
|
515
|
+
3,
|
|
516
|
+
n0,
|
|
517
|
+
_BGFMDRa,
|
|
518
|
+
0,
|
|
519
|
+
[_sT, _eT, _re, _eTn, _uET, _fMD],
|
|
520
|
+
[5, 5, 0, () => ListOfTimestamps, () => UnprocessedEndTimeMap, () => FrameMetricData],
|
|
521
|
+
];
|
|
522
|
+
var Channel = [3, n0, _C, 0, [_id, _u, _eP], [0, 0, 64 | 0]];
|
|
523
|
+
var ConfigureAgentRequest = [3, n0, _CAR, 0, [_pGN, _fII, _me], [[0, 1], 0, 128 | 0]];
|
|
524
|
+
var ConfigureAgentResponse = [3, n0, _CARo, 0, [_co], [[() => AgentConfiguration, 16]]];
|
|
525
|
+
var ConflictException = [
|
|
526
|
+
-3,
|
|
527
|
+
n0,
|
|
528
|
+
_CE,
|
|
529
|
+
{
|
|
530
|
+
[_e]: _cl,
|
|
531
|
+
[_hE]: 409,
|
|
532
|
+
},
|
|
533
|
+
[_mes],
|
|
534
|
+
[0],
|
|
535
|
+
];
|
|
536
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
537
|
+
var CreateProfilingGroupRequest = [
|
|
538
|
+
3,
|
|
539
|
+
n0,
|
|
540
|
+
_CPGR,
|
|
541
|
+
0,
|
|
542
|
+
[_pGN, _cP, _cT, _aOC, _t],
|
|
543
|
+
[
|
|
544
|
+
0,
|
|
545
|
+
0,
|
|
546
|
+
[
|
|
547
|
+
0,
|
|
548
|
+
{
|
|
549
|
+
[_iT]: 1,
|
|
550
|
+
[_hQ]: _cT,
|
|
551
|
+
},
|
|
552
|
+
],
|
|
553
|
+
() => AgentOrchestrationConfig,
|
|
554
|
+
128 | 0,
|
|
555
|
+
],
|
|
556
|
+
];
|
|
557
|
+
var CreateProfilingGroupResponse = [
|
|
558
|
+
3,
|
|
559
|
+
n0,
|
|
560
|
+
_CPGRr,
|
|
561
|
+
0,
|
|
562
|
+
[_pG],
|
|
563
|
+
[[() => ProfilingGroupDescription, 16]],
|
|
564
|
+
];
|
|
565
|
+
var DeleteProfilingGroupRequest = [3, n0, _DPGR, 0, [_pGN], [[0, 1]]];
|
|
566
|
+
var DeleteProfilingGroupResponse = [3, n0, _DPGRe, 0, [], []];
|
|
567
|
+
var DescribeProfilingGroupRequest = [3, n0, _DPGRes, 0, [_pGN], [[0, 1]]];
|
|
568
|
+
var DescribeProfilingGroupResponse = [
|
|
569
|
+
3,
|
|
570
|
+
n0,
|
|
571
|
+
_DPGResc,
|
|
572
|
+
0,
|
|
573
|
+
[_pG],
|
|
574
|
+
[[() => ProfilingGroupDescription, 16]],
|
|
575
|
+
];
|
|
576
|
+
var FindingsReportSummary = [
|
|
577
|
+
3,
|
|
578
|
+
n0,
|
|
579
|
+
_FRS,
|
|
580
|
+
0,
|
|
581
|
+
[_id, _pGN, _pST, _pET, _tNOF],
|
|
582
|
+
[0, 0, 5, 5, 1],
|
|
583
|
+
];
|
|
584
|
+
var FrameMetric = [3, n0, _FM, 0, [_fN, _ty, _tS], [0, 0, 64 | 0]];
|
|
585
|
+
var FrameMetricDatum = [3, n0, _FMD, 0, [_fMr, _v], [() => FrameMetric, 64 | 1]];
|
|
586
|
+
var GetFindingsReportAccountSummaryRequest = [
|
|
587
|
+
3,
|
|
588
|
+
n0,
|
|
589
|
+
_GFRASR,
|
|
590
|
+
0,
|
|
591
|
+
[_nT, _mR, _dRO],
|
|
592
|
+
[
|
|
593
|
+
[
|
|
594
|
+
0,
|
|
595
|
+
{
|
|
596
|
+
[_hQ]: _nT,
|
|
597
|
+
},
|
|
598
|
+
],
|
|
599
|
+
[
|
|
600
|
+
1,
|
|
601
|
+
{
|
|
602
|
+
[_hQ]: _mR,
|
|
603
|
+
},
|
|
604
|
+
],
|
|
605
|
+
[
|
|
606
|
+
2,
|
|
607
|
+
{
|
|
608
|
+
[_hQ]: _dRO,
|
|
609
|
+
},
|
|
610
|
+
],
|
|
611
|
+
],
|
|
612
|
+
];
|
|
613
|
+
var GetFindingsReportAccountSummaryResponse = [
|
|
614
|
+
3,
|
|
615
|
+
n0,
|
|
616
|
+
_GFRASRe,
|
|
617
|
+
0,
|
|
618
|
+
[_rS, _nT],
|
|
619
|
+
[() => FindingsReportSummaries, 0],
|
|
620
|
+
];
|
|
621
|
+
var GetNotificationConfigurationRequest = [3, n0, _GNCR, 0, [_pGN], [[0, 1]]];
|
|
622
|
+
var GetNotificationConfigurationResponse = [
|
|
623
|
+
3,
|
|
624
|
+
n0,
|
|
625
|
+
_GNCRe,
|
|
626
|
+
0,
|
|
627
|
+
[_nC],
|
|
628
|
+
[() => NotificationConfiguration],
|
|
629
|
+
];
|
|
630
|
+
var GetPolicyRequest = [3, n0, _GPR, 0, [_pGN], [[0, 1]]];
|
|
631
|
+
var GetPolicyResponse = [3, n0, _GPRe, 0, [_po, _rI], [0, 0]];
|
|
632
|
+
var GetProfileRequest = [
|
|
633
|
+
3,
|
|
634
|
+
n0,
|
|
635
|
+
_GPRet,
|
|
636
|
+
0,
|
|
637
|
+
[_pGN, _sT, _p, _eT, _mD, _a],
|
|
638
|
+
[
|
|
639
|
+
[0, 1],
|
|
640
|
+
[
|
|
641
|
+
5,
|
|
642
|
+
{
|
|
643
|
+
[_hQ]: _sT,
|
|
644
|
+
},
|
|
645
|
+
],
|
|
646
|
+
[
|
|
647
|
+
0,
|
|
648
|
+
{
|
|
649
|
+
[_hQ]: _p,
|
|
650
|
+
},
|
|
651
|
+
],
|
|
652
|
+
[
|
|
653
|
+
5,
|
|
654
|
+
{
|
|
655
|
+
[_hQ]: _eT,
|
|
656
|
+
},
|
|
657
|
+
],
|
|
658
|
+
[
|
|
659
|
+
1,
|
|
660
|
+
{
|
|
661
|
+
[_hQ]: _mD,
|
|
662
|
+
},
|
|
663
|
+
],
|
|
664
|
+
[
|
|
665
|
+
0,
|
|
666
|
+
{
|
|
667
|
+
[_hH]: _Ac,
|
|
668
|
+
},
|
|
669
|
+
],
|
|
670
|
+
],
|
|
671
|
+
];
|
|
672
|
+
var GetProfileResponse = [
|
|
673
|
+
3,
|
|
674
|
+
n0,
|
|
675
|
+
_GPRetr,
|
|
676
|
+
0,
|
|
677
|
+
[_pr, _cTo, _cE],
|
|
678
|
+
[
|
|
679
|
+
[21, 16],
|
|
680
|
+
[
|
|
681
|
+
0,
|
|
682
|
+
{
|
|
683
|
+
[_hH]: _CT,
|
|
684
|
+
},
|
|
685
|
+
],
|
|
686
|
+
[
|
|
687
|
+
0,
|
|
688
|
+
{
|
|
689
|
+
[_hH]: _CE_,
|
|
690
|
+
},
|
|
691
|
+
],
|
|
692
|
+
],
|
|
693
|
+
];
|
|
694
|
+
var GetRecommendationsRequest = [
|
|
695
|
+
3,
|
|
696
|
+
n0,
|
|
697
|
+
_GRR,
|
|
698
|
+
0,
|
|
699
|
+
[_pGN, _sT, _eT, _l],
|
|
700
|
+
[
|
|
701
|
+
[0, 1],
|
|
702
|
+
[
|
|
703
|
+
5,
|
|
704
|
+
{
|
|
705
|
+
[_hQ]: _sT,
|
|
706
|
+
},
|
|
707
|
+
],
|
|
708
|
+
[
|
|
709
|
+
5,
|
|
710
|
+
{
|
|
711
|
+
[_hQ]: _eT,
|
|
712
|
+
},
|
|
713
|
+
],
|
|
714
|
+
[
|
|
715
|
+
0,
|
|
716
|
+
{
|
|
717
|
+
[_hQ]: _l,
|
|
718
|
+
},
|
|
719
|
+
],
|
|
720
|
+
],
|
|
721
|
+
];
|
|
722
|
+
var GetRecommendationsResponse = [
|
|
723
|
+
3,
|
|
724
|
+
n0,
|
|
725
|
+
_GRRe,
|
|
726
|
+
0,
|
|
727
|
+
[_pGN, _pST, _pET, _rec, _an],
|
|
728
|
+
[0, 5, 5, () => Recommendations, () => Anomalies],
|
|
729
|
+
];
|
|
730
|
+
var InternalServerException = [
|
|
731
|
+
-3,
|
|
732
|
+
n0,
|
|
733
|
+
_ISE,
|
|
734
|
+
{
|
|
735
|
+
[_e]: _se,
|
|
736
|
+
[_hE]: 500,
|
|
737
|
+
},
|
|
738
|
+
[_mes],
|
|
739
|
+
[0],
|
|
740
|
+
];
|
|
741
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
742
|
+
var ListFindingsReportsRequest = [
|
|
743
|
+
3,
|
|
744
|
+
n0,
|
|
745
|
+
_LFRR,
|
|
746
|
+
0,
|
|
747
|
+
[_pGN, _sT, _eT, _nT, _mR, _dRO],
|
|
748
|
+
[
|
|
749
|
+
[0, 1],
|
|
750
|
+
[
|
|
751
|
+
5,
|
|
752
|
+
{
|
|
753
|
+
[_hQ]: _sT,
|
|
754
|
+
},
|
|
755
|
+
],
|
|
756
|
+
[
|
|
757
|
+
5,
|
|
758
|
+
{
|
|
759
|
+
[_hQ]: _eT,
|
|
760
|
+
},
|
|
761
|
+
],
|
|
762
|
+
[
|
|
763
|
+
0,
|
|
764
|
+
{
|
|
765
|
+
[_hQ]: _nT,
|
|
766
|
+
},
|
|
767
|
+
],
|
|
768
|
+
[
|
|
769
|
+
1,
|
|
770
|
+
{
|
|
771
|
+
[_hQ]: _mR,
|
|
772
|
+
},
|
|
773
|
+
],
|
|
774
|
+
[
|
|
775
|
+
2,
|
|
776
|
+
{
|
|
777
|
+
[_hQ]: _dRO,
|
|
778
|
+
},
|
|
779
|
+
],
|
|
780
|
+
],
|
|
781
|
+
];
|
|
782
|
+
var ListFindingsReportsResponse = [
|
|
783
|
+
3,
|
|
784
|
+
n0,
|
|
785
|
+
_LFRRi,
|
|
786
|
+
0,
|
|
787
|
+
[_fRS, _nT],
|
|
788
|
+
[() => FindingsReportSummaries, 0],
|
|
789
|
+
];
|
|
790
|
+
var ListProfileTimesRequest = [
|
|
791
|
+
3,
|
|
792
|
+
n0,
|
|
793
|
+
_LPTR,
|
|
794
|
+
0,
|
|
795
|
+
[_pGN, _sT, _eT, _p, _oB, _mR, _nT],
|
|
796
|
+
[
|
|
797
|
+
[0, 1],
|
|
798
|
+
[
|
|
799
|
+
5,
|
|
800
|
+
{
|
|
801
|
+
[_hQ]: _sT,
|
|
802
|
+
},
|
|
803
|
+
],
|
|
804
|
+
[
|
|
805
|
+
5,
|
|
806
|
+
{
|
|
807
|
+
[_hQ]: _eT,
|
|
808
|
+
},
|
|
809
|
+
],
|
|
810
|
+
[
|
|
811
|
+
0,
|
|
812
|
+
{
|
|
813
|
+
[_hQ]: _p,
|
|
814
|
+
},
|
|
815
|
+
],
|
|
816
|
+
[
|
|
817
|
+
0,
|
|
818
|
+
{
|
|
819
|
+
[_hQ]: _oB,
|
|
820
|
+
},
|
|
821
|
+
],
|
|
822
|
+
[
|
|
823
|
+
1,
|
|
824
|
+
{
|
|
825
|
+
[_hQ]: _mR,
|
|
826
|
+
},
|
|
827
|
+
],
|
|
828
|
+
[
|
|
829
|
+
0,
|
|
830
|
+
{
|
|
831
|
+
[_hQ]: _nT,
|
|
832
|
+
},
|
|
833
|
+
],
|
|
834
|
+
],
|
|
835
|
+
];
|
|
836
|
+
var ListProfileTimesResponse = [3, n0, _LPTRi, 0, [_pT, _nT], [() => ProfileTimes, 0]];
|
|
837
|
+
var ListProfilingGroupsRequest = [
|
|
838
|
+
3,
|
|
839
|
+
n0,
|
|
840
|
+
_LPGR,
|
|
841
|
+
0,
|
|
842
|
+
[_nT, _mR, _iD],
|
|
843
|
+
[
|
|
844
|
+
[
|
|
845
|
+
0,
|
|
846
|
+
{
|
|
847
|
+
[_hQ]: _nT,
|
|
848
|
+
},
|
|
849
|
+
],
|
|
850
|
+
[
|
|
851
|
+
1,
|
|
852
|
+
{
|
|
853
|
+
[_hQ]: _mR,
|
|
854
|
+
},
|
|
855
|
+
],
|
|
856
|
+
[
|
|
857
|
+
2,
|
|
858
|
+
{
|
|
859
|
+
[_hQ]: _iD,
|
|
860
|
+
},
|
|
861
|
+
],
|
|
862
|
+
],
|
|
863
|
+
];
|
|
864
|
+
var ListProfilingGroupsResponse = [
|
|
865
|
+
3,
|
|
866
|
+
n0,
|
|
867
|
+
_LPGRi,
|
|
868
|
+
0,
|
|
869
|
+
[_pGNr, _pGr, _nT],
|
|
870
|
+
[64 | 0, () => ProfilingGroupDescriptions, 0],
|
|
871
|
+
];
|
|
872
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
873
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
874
|
+
var Match = [3, n0, _M, 0, [_tFI, _fA, _tBV], [1, 0, 1]];
|
|
875
|
+
var Metric = [3, n0, _Me, 0, [_fN, _ty, _tS], [0, 0, 64 | 0]];
|
|
876
|
+
var NotificationConfiguration = [3, n0, _NC, 0, [_c], [() => Channels]];
|
|
877
|
+
var Pattern = [
|
|
878
|
+
3,
|
|
879
|
+
n0,
|
|
880
|
+
_P,
|
|
881
|
+
0,
|
|
882
|
+
[_id, _n, _d, _rSe, _tF, _tP, _cTA],
|
|
883
|
+
[0, 0, 0, 0, [1, n0, _TF, 0, 64 | 0], 1, 64 | 0],
|
|
884
|
+
];
|
|
885
|
+
var PostAgentProfileRequest = [
|
|
886
|
+
3,
|
|
887
|
+
n0,
|
|
888
|
+
_PAPR,
|
|
889
|
+
0,
|
|
890
|
+
[_pGN, _aPg, _pTr, _cTo],
|
|
891
|
+
[
|
|
892
|
+
[0, 1],
|
|
893
|
+
[21, 16],
|
|
894
|
+
[
|
|
895
|
+
0,
|
|
896
|
+
{
|
|
897
|
+
[_iT]: 1,
|
|
898
|
+
[_hQ]: _pTr,
|
|
899
|
+
},
|
|
900
|
+
],
|
|
901
|
+
[
|
|
902
|
+
0,
|
|
903
|
+
{
|
|
904
|
+
[_hH]: _CT,
|
|
905
|
+
},
|
|
906
|
+
],
|
|
907
|
+
],
|
|
908
|
+
];
|
|
909
|
+
var PostAgentProfileResponse = [3, n0, _PAPRo, 0, [], []];
|
|
910
|
+
var ProfileTime = [3, n0, _PT, 0, [_s], [5]];
|
|
911
|
+
var ProfilingGroupDescription = [
|
|
912
|
+
3,
|
|
913
|
+
n0,
|
|
914
|
+
_PGD,
|
|
915
|
+
0,
|
|
916
|
+
[_n, _aOC, _ar, _cA, _uA, _pS, _cP, _t],
|
|
917
|
+
[0, () => AgentOrchestrationConfig, 0, 5, 5, () => ProfilingStatus, 0, 128 | 0],
|
|
918
|
+
];
|
|
919
|
+
var ProfilingStatus = [
|
|
920
|
+
3,
|
|
921
|
+
n0,
|
|
922
|
+
_PS,
|
|
923
|
+
0,
|
|
924
|
+
[_lAPRA, _lAP, _lAOA],
|
|
925
|
+
[5, () => AggregatedProfileTime, 5],
|
|
926
|
+
];
|
|
927
|
+
var PutPermissionRequest = [
|
|
928
|
+
3,
|
|
929
|
+
n0,
|
|
930
|
+
_PPR,
|
|
931
|
+
0,
|
|
932
|
+
[_pGN, _aG, _pri, _rI],
|
|
933
|
+
[[0, 1], [0, 1], 64 | 0, 0],
|
|
934
|
+
];
|
|
935
|
+
var PutPermissionResponse = [3, n0, _PPRu, 0, [_po, _rI], [0, 0]];
|
|
936
|
+
var Recommendation = [
|
|
937
|
+
3,
|
|
938
|
+
n0,
|
|
939
|
+
_R,
|
|
940
|
+
0,
|
|
941
|
+
[_aMC, _aMS, _pa, _tM, _sT, _eT],
|
|
942
|
+
[1, 1, () => Pattern, () => Matches, 5, 5],
|
|
943
|
+
];
|
|
944
|
+
var RemoveNotificationChannelRequest = [
|
|
945
|
+
3,
|
|
946
|
+
n0,
|
|
947
|
+
_RNCR,
|
|
948
|
+
0,
|
|
949
|
+
[_pGN, _cI],
|
|
950
|
+
[
|
|
951
|
+
[0, 1],
|
|
952
|
+
[0, 1],
|
|
953
|
+
],
|
|
954
|
+
];
|
|
955
|
+
var RemoveNotificationChannelResponse = [
|
|
956
|
+
3,
|
|
957
|
+
n0,
|
|
958
|
+
_RNCRe,
|
|
959
|
+
0,
|
|
960
|
+
[_nC],
|
|
961
|
+
[() => NotificationConfiguration],
|
|
962
|
+
];
|
|
963
|
+
var RemovePermissionRequest = [
|
|
964
|
+
3,
|
|
965
|
+
n0,
|
|
966
|
+
_RPR,
|
|
967
|
+
0,
|
|
968
|
+
[_pGN, _aG, _rI],
|
|
969
|
+
[
|
|
970
|
+
[0, 1],
|
|
971
|
+
[0, 1],
|
|
972
|
+
[
|
|
973
|
+
0,
|
|
974
|
+
{
|
|
975
|
+
[_hQ]: _rI,
|
|
976
|
+
},
|
|
977
|
+
],
|
|
978
|
+
],
|
|
979
|
+
];
|
|
980
|
+
var RemovePermissionResponse = [3, n0, _RPRe, 0, [_po, _rI], [0, 0]];
|
|
981
|
+
var ResourceNotFoundException = [
|
|
982
|
+
-3,
|
|
983
|
+
n0,
|
|
984
|
+
_RNFE,
|
|
985
|
+
{
|
|
986
|
+
[_e]: _cl,
|
|
987
|
+
[_hE]: 404,
|
|
988
|
+
},
|
|
989
|
+
[_mes],
|
|
990
|
+
[0],
|
|
991
|
+
];
|
|
992
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
993
|
+
var ServiceQuotaExceededException = [
|
|
994
|
+
-3,
|
|
995
|
+
n0,
|
|
996
|
+
_SQEE,
|
|
997
|
+
{
|
|
998
|
+
[_e]: _cl,
|
|
999
|
+
[_hE]: 402,
|
|
1000
|
+
},
|
|
1001
|
+
[_mes],
|
|
1002
|
+
[0],
|
|
1003
|
+
];
|
|
1004
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1005
|
+
var SubmitFeedbackRequest = [
|
|
1006
|
+
3,
|
|
1007
|
+
n0,
|
|
1008
|
+
_SFR,
|
|
1009
|
+
0,
|
|
1010
|
+
[_pGN, _aII, _ty, _com],
|
|
1011
|
+
[[0, 1], [0, 1], 0, 0],
|
|
1012
|
+
];
|
|
1013
|
+
var SubmitFeedbackResponse = [3, n0, _SFRu, 0, [], []];
|
|
1014
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
|
|
1015
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1016
|
+
var ThrottlingException = [
|
|
1017
|
+
-3,
|
|
1018
|
+
n0,
|
|
1019
|
+
_TE,
|
|
1020
|
+
{
|
|
1021
|
+
[_e]: _cl,
|
|
1022
|
+
[_hE]: 429,
|
|
1023
|
+
},
|
|
1024
|
+
[_mes],
|
|
1025
|
+
[0],
|
|
1026
|
+
];
|
|
1027
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1028
|
+
var TimestampStructure = [3, n0, _TS, 0, [_va], [5]];
|
|
1029
|
+
var UntagResourceRequest = [
|
|
1030
|
+
3,
|
|
1031
|
+
n0,
|
|
1032
|
+
_URR,
|
|
1033
|
+
0,
|
|
1034
|
+
[_rA, _tK],
|
|
1035
|
+
[
|
|
1036
|
+
[0, 1],
|
|
1037
|
+
[
|
|
1038
|
+
64 | 0,
|
|
1039
|
+
{
|
|
1040
|
+
[_hQ]: _tK,
|
|
1041
|
+
},
|
|
1042
|
+
],
|
|
1043
|
+
],
|
|
1044
|
+
];
|
|
1045
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1046
|
+
var UpdateProfilingGroupRequest = [
|
|
1047
|
+
3,
|
|
1048
|
+
n0,
|
|
1049
|
+
_UPGR,
|
|
1050
|
+
0,
|
|
1051
|
+
[_pGN, _aOC],
|
|
1052
|
+
[[0, 1], () => AgentOrchestrationConfig],
|
|
1053
|
+
];
|
|
1054
|
+
var UpdateProfilingGroupResponse = [
|
|
1055
|
+
3,
|
|
1056
|
+
n0,
|
|
1057
|
+
_UPGRp,
|
|
1058
|
+
0,
|
|
1059
|
+
[_pG],
|
|
1060
|
+
[[() => ProfilingGroupDescription, 16]],
|
|
1061
|
+
];
|
|
1062
|
+
var UserFeedback = [3, n0, _UF, 0, [_ty], [0]];
|
|
1063
|
+
var ValidationException = [
|
|
1064
|
+
-3,
|
|
1065
|
+
n0,
|
|
1066
|
+
_VE,
|
|
1067
|
+
{
|
|
1068
|
+
[_e]: _cl,
|
|
1069
|
+
[_hE]: 400,
|
|
1070
|
+
},
|
|
1071
|
+
[_mes],
|
|
1072
|
+
[0],
|
|
1073
|
+
];
|
|
1074
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1075
|
+
var CodeGuruProfilerServiceException = [
|
|
1076
|
+
-3,
|
|
1077
|
+
_sm,
|
|
1078
|
+
"CodeGuruProfilerServiceException",
|
|
1079
|
+
0,
|
|
1080
|
+
[],
|
|
1081
|
+
[],
|
|
1082
|
+
];
|
|
1083
|
+
schema.TypeRegistry.for(_sm).registerError(CodeGuruProfilerServiceException, CodeGuruProfilerServiceException$1);
|
|
1084
|
+
var Anomalies = [1, n0, _An, 0, () => Anomaly];
|
|
1085
|
+
var AnomalyInstances = [1, n0, _AIn, 0, () => AnomalyInstance];
|
|
1086
|
+
var Channels = [1, n0, _Ch, 0, () => Channel];
|
|
1087
|
+
var FindingsReportSummaries = [1, n0, _FRSi, 0, () => FindingsReportSummary];
|
|
1088
|
+
var FrameMetricData = [1, n0, _FMDr, 0, () => FrameMetricDatum];
|
|
1089
|
+
var FrameMetrics = [1, n0, _FMr, 0, () => FrameMetric];
|
|
1090
|
+
var ListOfTimestamps = [1, n0, _LOT, 0, () => TimestampStructure];
|
|
1091
|
+
var Matches = [1, n0, _Ma, 0, () => Match];
|
|
1092
|
+
var ProfileTimes = [1, n0, _PTr, 0, () => ProfileTime];
|
|
1093
|
+
var ProfilingGroupDescriptions = [1, n0, _PGDr, 0, () => ProfilingGroupDescription];
|
|
1094
|
+
var Recommendations = [1, n0, _Re, 0, () => Recommendation];
|
|
1095
|
+
var UnprocessedEndTimeMap = [2, n0, _UETM, 0, 0, () => ListOfTimestamps];
|
|
1096
|
+
var AddNotificationChannels = [
|
|
1097
|
+
9,
|
|
1098
|
+
n0,
|
|
1099
|
+
_ANC,
|
|
1100
|
+
{
|
|
1101
|
+
[_h]: ["POST", "/profilingGroups/{profilingGroupName}/notificationConfiguration", 200],
|
|
1102
|
+
},
|
|
1103
|
+
() => AddNotificationChannelsRequest,
|
|
1104
|
+
() => AddNotificationChannelsResponse,
|
|
1105
|
+
];
|
|
1106
|
+
var BatchGetFrameMetricData = [
|
|
1107
|
+
9,
|
|
1108
|
+
n0,
|
|
1109
|
+
_BGFMD,
|
|
1110
|
+
{
|
|
1111
|
+
[_h]: ["POST", "/profilingGroups/{profilingGroupName}/frames/-/metrics", 200],
|
|
1112
|
+
},
|
|
1113
|
+
() => BatchGetFrameMetricDataRequest,
|
|
1114
|
+
() => BatchGetFrameMetricDataResponse,
|
|
1115
|
+
];
|
|
1116
|
+
var ConfigureAgent = [
|
|
1117
|
+
9,
|
|
1118
|
+
n0,
|
|
1119
|
+
_CA,
|
|
1120
|
+
{
|
|
1121
|
+
[_h]: ["POST", "/profilingGroups/{profilingGroupName}/configureAgent", 200],
|
|
1122
|
+
},
|
|
1123
|
+
() => ConfigureAgentRequest,
|
|
1124
|
+
() => ConfigureAgentResponse,
|
|
1125
|
+
];
|
|
1126
|
+
var CreateProfilingGroup = [
|
|
1127
|
+
9,
|
|
1128
|
+
n0,
|
|
1129
|
+
_CPG,
|
|
1130
|
+
{
|
|
1131
|
+
[_h]: ["POST", "/profilingGroups", 201],
|
|
1132
|
+
},
|
|
1133
|
+
() => CreateProfilingGroupRequest,
|
|
1134
|
+
() => CreateProfilingGroupResponse,
|
|
1135
|
+
];
|
|
1136
|
+
var DeleteProfilingGroup = [
|
|
1137
|
+
9,
|
|
1138
|
+
n0,
|
|
1139
|
+
_DPG,
|
|
1140
|
+
{
|
|
1141
|
+
[_h]: ["DELETE", "/profilingGroups/{profilingGroupName}", 204],
|
|
1142
|
+
},
|
|
1143
|
+
() => DeleteProfilingGroupRequest,
|
|
1144
|
+
() => DeleteProfilingGroupResponse,
|
|
1145
|
+
];
|
|
1146
|
+
var DescribeProfilingGroup = [
|
|
1147
|
+
9,
|
|
1148
|
+
n0,
|
|
1149
|
+
_DPGe,
|
|
1150
|
+
{
|
|
1151
|
+
[_h]: ["GET", "/profilingGroups/{profilingGroupName}", 200],
|
|
1152
|
+
},
|
|
1153
|
+
() => DescribeProfilingGroupRequest,
|
|
1154
|
+
() => DescribeProfilingGroupResponse,
|
|
1155
|
+
];
|
|
1156
|
+
var GetFindingsReportAccountSummary = [
|
|
1157
|
+
9,
|
|
1158
|
+
n0,
|
|
1159
|
+
_GFRAS,
|
|
1160
|
+
{
|
|
1161
|
+
[_h]: ["GET", "/internal/findingsReports", 200],
|
|
1162
|
+
},
|
|
1163
|
+
() => GetFindingsReportAccountSummaryRequest,
|
|
1164
|
+
() => GetFindingsReportAccountSummaryResponse,
|
|
1165
|
+
];
|
|
1166
|
+
var GetNotificationConfiguration = [
|
|
1167
|
+
9,
|
|
1168
|
+
n0,
|
|
1169
|
+
_GNC,
|
|
1170
|
+
{
|
|
1171
|
+
[_h]: ["GET", "/profilingGroups/{profilingGroupName}/notificationConfiguration", 200],
|
|
1172
|
+
},
|
|
1173
|
+
() => GetNotificationConfigurationRequest,
|
|
1174
|
+
() => GetNotificationConfigurationResponse,
|
|
1175
|
+
];
|
|
1176
|
+
var GetPolicy = [
|
|
1177
|
+
9,
|
|
1178
|
+
n0,
|
|
1179
|
+
_GP,
|
|
1180
|
+
{
|
|
1181
|
+
[_h]: ["GET", "/profilingGroups/{profilingGroupName}/policy", 200],
|
|
1182
|
+
},
|
|
1183
|
+
() => GetPolicyRequest,
|
|
1184
|
+
() => GetPolicyResponse,
|
|
1185
|
+
];
|
|
1186
|
+
var GetProfile = [
|
|
1187
|
+
9,
|
|
1188
|
+
n0,
|
|
1189
|
+
_GPe,
|
|
1190
|
+
{
|
|
1191
|
+
[_h]: ["GET", "/profilingGroups/{profilingGroupName}/profile", 200],
|
|
1192
|
+
},
|
|
1193
|
+
() => GetProfileRequest,
|
|
1194
|
+
() => GetProfileResponse,
|
|
1195
|
+
];
|
|
1196
|
+
var GetRecommendations = [
|
|
1197
|
+
9,
|
|
1198
|
+
n0,
|
|
1199
|
+
_GR,
|
|
1200
|
+
{
|
|
1201
|
+
[_h]: ["GET", "/internal/profilingGroups/{profilingGroupName}/recommendations", 200],
|
|
1202
|
+
},
|
|
1203
|
+
() => GetRecommendationsRequest,
|
|
1204
|
+
() => GetRecommendationsResponse,
|
|
1205
|
+
];
|
|
1206
|
+
var ListFindingsReports = [
|
|
1207
|
+
9,
|
|
1208
|
+
n0,
|
|
1209
|
+
_LFR,
|
|
1210
|
+
{
|
|
1211
|
+
[_h]: ["GET", "/internal/profilingGroups/{profilingGroupName}/findingsReports", 200],
|
|
1212
|
+
},
|
|
1213
|
+
() => ListFindingsReportsRequest,
|
|
1214
|
+
() => ListFindingsReportsResponse,
|
|
1215
|
+
];
|
|
1216
|
+
var ListProfileTimes = [
|
|
1217
|
+
9,
|
|
1218
|
+
n0,
|
|
1219
|
+
_LPT,
|
|
1220
|
+
{
|
|
1221
|
+
[_h]: ["GET", "/profilingGroups/{profilingGroupName}/profileTimes", 200],
|
|
1222
|
+
},
|
|
1223
|
+
() => ListProfileTimesRequest,
|
|
1224
|
+
() => ListProfileTimesResponse,
|
|
1225
|
+
];
|
|
1226
|
+
var ListProfilingGroups = [
|
|
1227
|
+
9,
|
|
1228
|
+
n0,
|
|
1229
|
+
_LPG,
|
|
1230
|
+
{
|
|
1231
|
+
[_h]: ["GET", "/profilingGroups", 200],
|
|
1232
|
+
},
|
|
1233
|
+
() => ListProfilingGroupsRequest,
|
|
1234
|
+
() => ListProfilingGroupsResponse,
|
|
1235
|
+
];
|
|
1236
|
+
var ListTagsForResource = [
|
|
1237
|
+
9,
|
|
1238
|
+
n0,
|
|
1239
|
+
_LTFR,
|
|
1240
|
+
{
|
|
1241
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1242
|
+
},
|
|
1243
|
+
() => ListTagsForResourceRequest,
|
|
1244
|
+
() => ListTagsForResourceResponse,
|
|
1245
|
+
];
|
|
1246
|
+
var PostAgentProfile = [
|
|
1247
|
+
9,
|
|
1248
|
+
n0,
|
|
1249
|
+
_PAP,
|
|
1250
|
+
{
|
|
1251
|
+
[_h]: ["POST", "/profilingGroups/{profilingGroupName}/agentProfile", 204],
|
|
1252
|
+
},
|
|
1253
|
+
() => PostAgentProfileRequest,
|
|
1254
|
+
() => PostAgentProfileResponse,
|
|
1255
|
+
];
|
|
1256
|
+
var PutPermission = [
|
|
1257
|
+
9,
|
|
1258
|
+
n0,
|
|
1259
|
+
_PP,
|
|
1260
|
+
{
|
|
1261
|
+
[_h]: ["PUT", "/profilingGroups/{profilingGroupName}/policy/{actionGroup}", 200],
|
|
1262
|
+
},
|
|
1263
|
+
() => PutPermissionRequest,
|
|
1264
|
+
() => PutPermissionResponse,
|
|
1265
|
+
];
|
|
1266
|
+
var RemoveNotificationChannel = [
|
|
1267
|
+
9,
|
|
1268
|
+
n0,
|
|
1269
|
+
_RNC,
|
|
1270
|
+
{
|
|
1271
|
+
[_h]: ["DELETE", "/profilingGroups/{profilingGroupName}/notificationConfiguration/{channelId}", 200],
|
|
1272
|
+
},
|
|
1273
|
+
() => RemoveNotificationChannelRequest,
|
|
1274
|
+
() => RemoveNotificationChannelResponse,
|
|
1275
|
+
];
|
|
1276
|
+
var RemovePermission = [
|
|
1277
|
+
9,
|
|
1278
|
+
n0,
|
|
1279
|
+
_RP,
|
|
1280
|
+
{
|
|
1281
|
+
[_h]: ["DELETE", "/profilingGroups/{profilingGroupName}/policy/{actionGroup}", 200],
|
|
1282
|
+
},
|
|
1283
|
+
() => RemovePermissionRequest,
|
|
1284
|
+
() => RemovePermissionResponse,
|
|
1285
|
+
];
|
|
1286
|
+
var SubmitFeedback = [
|
|
1287
|
+
9,
|
|
1288
|
+
n0,
|
|
1289
|
+
_SF,
|
|
1290
|
+
{
|
|
1291
|
+
[_h]: ["POST", "/internal/profilingGroups/{profilingGroupName}/anomalies/{anomalyInstanceId}/feedback", 204],
|
|
1292
|
+
},
|
|
1293
|
+
() => SubmitFeedbackRequest,
|
|
1294
|
+
() => SubmitFeedbackResponse,
|
|
1295
|
+
];
|
|
1296
|
+
var TagResource = [
|
|
1297
|
+
9,
|
|
1298
|
+
n0,
|
|
1299
|
+
_TR,
|
|
1300
|
+
{
|
|
1301
|
+
[_h]: ["POST", "/tags/{resourceArn}", 204],
|
|
1302
|
+
},
|
|
1303
|
+
() => TagResourceRequest,
|
|
1304
|
+
() => TagResourceResponse,
|
|
1305
|
+
];
|
|
1306
|
+
var UntagResource = [
|
|
1307
|
+
9,
|
|
1308
|
+
n0,
|
|
1309
|
+
_UR,
|
|
1310
|
+
{
|
|
1311
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 204],
|
|
1312
|
+
},
|
|
1313
|
+
() => UntagResourceRequest,
|
|
1314
|
+
() => UntagResourceResponse,
|
|
1315
|
+
];
|
|
1316
|
+
var UpdateProfilingGroup = [
|
|
1317
|
+
9,
|
|
1318
|
+
n0,
|
|
1319
|
+
_UPG,
|
|
1320
|
+
{
|
|
1321
|
+
[_h]: ["PUT", "/profilingGroups/{profilingGroupName}", 200],
|
|
1322
|
+
},
|
|
1323
|
+
() => UpdateProfilingGroupRequest,
|
|
1324
|
+
() => UpdateProfilingGroupResponse,
|
|
1325
|
+
];
|
|
1183
1326
|
|
|
1184
1327
|
class AddNotificationChannelsCommand extends smithyClient.Command
|
|
1185
1328
|
.classBuilder()
|
|
1186
1329
|
.ep(commonParams)
|
|
1187
1330
|
.m(function (Command, cs, config, o) {
|
|
1188
|
-
return [
|
|
1189
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1190
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1191
|
-
];
|
|
1331
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1192
1332
|
})
|
|
1193
1333
|
.s("CodeGuruProfiler", "AddNotificationChannels", {})
|
|
1194
1334
|
.n("CodeGuruProfilerClient", "AddNotificationChannelsCommand")
|
|
1195
|
-
.
|
|
1196
|
-
.ser(se_AddNotificationChannelsCommand)
|
|
1197
|
-
.de(de_AddNotificationChannelsCommand)
|
|
1335
|
+
.sc(AddNotificationChannels)
|
|
1198
1336
|
.build() {
|
|
1199
1337
|
}
|
|
1200
1338
|
|
|
@@ -1202,16 +1340,11 @@ class BatchGetFrameMetricDataCommand extends smithyClient.Command
|
|
|
1202
1340
|
.classBuilder()
|
|
1203
1341
|
.ep(commonParams)
|
|
1204
1342
|
.m(function (Command, cs, config, o) {
|
|
1205
|
-
return [
|
|
1206
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1207
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1208
|
-
];
|
|
1343
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1209
1344
|
})
|
|
1210
1345
|
.s("CodeGuruProfiler", "BatchGetFrameMetricData", {})
|
|
1211
1346
|
.n("CodeGuruProfilerClient", "BatchGetFrameMetricDataCommand")
|
|
1212
|
-
.
|
|
1213
|
-
.ser(se_BatchGetFrameMetricDataCommand)
|
|
1214
|
-
.de(de_BatchGetFrameMetricDataCommand)
|
|
1347
|
+
.sc(BatchGetFrameMetricData)
|
|
1215
1348
|
.build() {
|
|
1216
1349
|
}
|
|
1217
1350
|
|
|
@@ -1219,16 +1352,11 @@ class ConfigureAgentCommand extends smithyClient.Command
|
|
|
1219
1352
|
.classBuilder()
|
|
1220
1353
|
.ep(commonParams)
|
|
1221
1354
|
.m(function (Command, cs, config, o) {
|
|
1222
|
-
return [
|
|
1223
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1224
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1225
|
-
];
|
|
1355
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1226
1356
|
})
|
|
1227
1357
|
.s("CodeGuruProfiler", "ConfigureAgent", {})
|
|
1228
1358
|
.n("CodeGuruProfilerClient", "ConfigureAgentCommand")
|
|
1229
|
-
.
|
|
1230
|
-
.ser(se_ConfigureAgentCommand)
|
|
1231
|
-
.de(de_ConfigureAgentCommand)
|
|
1359
|
+
.sc(ConfigureAgent)
|
|
1232
1360
|
.build() {
|
|
1233
1361
|
}
|
|
1234
1362
|
|
|
@@ -1236,16 +1364,11 @@ class CreateProfilingGroupCommand extends smithyClient.Command
|
|
|
1236
1364
|
.classBuilder()
|
|
1237
1365
|
.ep(commonParams)
|
|
1238
1366
|
.m(function (Command, cs, config, o) {
|
|
1239
|
-
return [
|
|
1240
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1241
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1242
|
-
];
|
|
1367
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1243
1368
|
})
|
|
1244
1369
|
.s("CodeGuruProfiler", "CreateProfilingGroup", {})
|
|
1245
1370
|
.n("CodeGuruProfilerClient", "CreateProfilingGroupCommand")
|
|
1246
|
-
.
|
|
1247
|
-
.ser(se_CreateProfilingGroupCommand)
|
|
1248
|
-
.de(de_CreateProfilingGroupCommand)
|
|
1371
|
+
.sc(CreateProfilingGroup)
|
|
1249
1372
|
.build() {
|
|
1250
1373
|
}
|
|
1251
1374
|
|
|
@@ -1253,16 +1376,11 @@ class DeleteProfilingGroupCommand extends smithyClient.Command
|
|
|
1253
1376
|
.classBuilder()
|
|
1254
1377
|
.ep(commonParams)
|
|
1255
1378
|
.m(function (Command, cs, config, o) {
|
|
1256
|
-
return [
|
|
1257
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1258
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1259
|
-
];
|
|
1379
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1260
1380
|
})
|
|
1261
1381
|
.s("CodeGuruProfiler", "DeleteProfilingGroup", {})
|
|
1262
1382
|
.n("CodeGuruProfilerClient", "DeleteProfilingGroupCommand")
|
|
1263
|
-
.
|
|
1264
|
-
.ser(se_DeleteProfilingGroupCommand)
|
|
1265
|
-
.de(de_DeleteProfilingGroupCommand)
|
|
1383
|
+
.sc(DeleteProfilingGroup)
|
|
1266
1384
|
.build() {
|
|
1267
1385
|
}
|
|
1268
1386
|
|
|
@@ -1270,16 +1388,11 @@ class DescribeProfilingGroupCommand extends smithyClient.Command
|
|
|
1270
1388
|
.classBuilder()
|
|
1271
1389
|
.ep(commonParams)
|
|
1272
1390
|
.m(function (Command, cs, config, o) {
|
|
1273
|
-
return [
|
|
1274
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1275
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1276
|
-
];
|
|
1391
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1277
1392
|
})
|
|
1278
1393
|
.s("CodeGuruProfiler", "DescribeProfilingGroup", {})
|
|
1279
1394
|
.n("CodeGuruProfilerClient", "DescribeProfilingGroupCommand")
|
|
1280
|
-
.
|
|
1281
|
-
.ser(se_DescribeProfilingGroupCommand)
|
|
1282
|
-
.de(de_DescribeProfilingGroupCommand)
|
|
1395
|
+
.sc(DescribeProfilingGroup)
|
|
1283
1396
|
.build() {
|
|
1284
1397
|
}
|
|
1285
1398
|
|
|
@@ -1287,16 +1400,11 @@ class GetFindingsReportAccountSummaryCommand extends smithyClient.Command
|
|
|
1287
1400
|
.classBuilder()
|
|
1288
1401
|
.ep(commonParams)
|
|
1289
1402
|
.m(function (Command, cs, config, o) {
|
|
1290
|
-
return [
|
|
1291
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1292
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1293
|
-
];
|
|
1403
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1294
1404
|
})
|
|
1295
1405
|
.s("CodeGuruProfiler", "GetFindingsReportAccountSummary", {})
|
|
1296
1406
|
.n("CodeGuruProfilerClient", "GetFindingsReportAccountSummaryCommand")
|
|
1297
|
-
.
|
|
1298
|
-
.ser(se_GetFindingsReportAccountSummaryCommand)
|
|
1299
|
-
.de(de_GetFindingsReportAccountSummaryCommand)
|
|
1407
|
+
.sc(GetFindingsReportAccountSummary)
|
|
1300
1408
|
.build() {
|
|
1301
1409
|
}
|
|
1302
1410
|
|
|
@@ -1304,16 +1412,11 @@ class GetNotificationConfigurationCommand extends smithyClient.Command
|
|
|
1304
1412
|
.classBuilder()
|
|
1305
1413
|
.ep(commonParams)
|
|
1306
1414
|
.m(function (Command, cs, config, o) {
|
|
1307
|
-
return [
|
|
1308
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1309
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1310
|
-
];
|
|
1415
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1311
1416
|
})
|
|
1312
1417
|
.s("CodeGuruProfiler", "GetNotificationConfiguration", {})
|
|
1313
1418
|
.n("CodeGuruProfilerClient", "GetNotificationConfigurationCommand")
|
|
1314
|
-
.
|
|
1315
|
-
.ser(se_GetNotificationConfigurationCommand)
|
|
1316
|
-
.de(de_GetNotificationConfigurationCommand)
|
|
1419
|
+
.sc(GetNotificationConfiguration)
|
|
1317
1420
|
.build() {
|
|
1318
1421
|
}
|
|
1319
1422
|
|
|
@@ -1321,16 +1424,11 @@ class GetPolicyCommand extends smithyClient.Command
|
|
|
1321
1424
|
.classBuilder()
|
|
1322
1425
|
.ep(commonParams)
|
|
1323
1426
|
.m(function (Command, cs, config, o) {
|
|
1324
|
-
return [
|
|
1325
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1326
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1327
|
-
];
|
|
1427
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1328
1428
|
})
|
|
1329
1429
|
.s("CodeGuruProfiler", "GetPolicy", {})
|
|
1330
1430
|
.n("CodeGuruProfilerClient", "GetPolicyCommand")
|
|
1331
|
-
.
|
|
1332
|
-
.ser(se_GetPolicyCommand)
|
|
1333
|
-
.de(de_GetPolicyCommand)
|
|
1431
|
+
.sc(GetPolicy)
|
|
1334
1432
|
.build() {
|
|
1335
1433
|
}
|
|
1336
1434
|
|
|
@@ -1338,16 +1436,11 @@ class GetProfileCommand extends smithyClient.Command
|
|
|
1338
1436
|
.classBuilder()
|
|
1339
1437
|
.ep(commonParams)
|
|
1340
1438
|
.m(function (Command, cs, config, o) {
|
|
1341
|
-
return [
|
|
1342
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1343
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1344
|
-
];
|
|
1439
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1345
1440
|
})
|
|
1346
1441
|
.s("CodeGuruProfiler", "GetProfile", {})
|
|
1347
1442
|
.n("CodeGuruProfilerClient", "GetProfileCommand")
|
|
1348
|
-
.
|
|
1349
|
-
.ser(se_GetProfileCommand)
|
|
1350
|
-
.de(de_GetProfileCommand)
|
|
1443
|
+
.sc(GetProfile)
|
|
1351
1444
|
.build() {
|
|
1352
1445
|
}
|
|
1353
1446
|
|
|
@@ -1355,16 +1448,11 @@ class GetRecommendationsCommand extends smithyClient.Command
|
|
|
1355
1448
|
.classBuilder()
|
|
1356
1449
|
.ep(commonParams)
|
|
1357
1450
|
.m(function (Command, cs, config, o) {
|
|
1358
|
-
return [
|
|
1359
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1360
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1361
|
-
];
|
|
1451
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1362
1452
|
})
|
|
1363
1453
|
.s("CodeGuruProfiler", "GetRecommendations", {})
|
|
1364
1454
|
.n("CodeGuruProfilerClient", "GetRecommendationsCommand")
|
|
1365
|
-
.
|
|
1366
|
-
.ser(se_GetRecommendationsCommand)
|
|
1367
|
-
.de(de_GetRecommendationsCommand)
|
|
1455
|
+
.sc(GetRecommendations)
|
|
1368
1456
|
.build() {
|
|
1369
1457
|
}
|
|
1370
1458
|
|
|
@@ -1372,16 +1460,11 @@ class ListFindingsReportsCommand extends smithyClient.Command
|
|
|
1372
1460
|
.classBuilder()
|
|
1373
1461
|
.ep(commonParams)
|
|
1374
1462
|
.m(function (Command, cs, config, o) {
|
|
1375
|
-
return [
|
|
1376
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1377
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1378
|
-
];
|
|
1463
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1379
1464
|
})
|
|
1380
1465
|
.s("CodeGuruProfiler", "ListFindingsReports", {})
|
|
1381
1466
|
.n("CodeGuruProfilerClient", "ListFindingsReportsCommand")
|
|
1382
|
-
.
|
|
1383
|
-
.ser(se_ListFindingsReportsCommand)
|
|
1384
|
-
.de(de_ListFindingsReportsCommand)
|
|
1467
|
+
.sc(ListFindingsReports)
|
|
1385
1468
|
.build() {
|
|
1386
1469
|
}
|
|
1387
1470
|
|
|
@@ -1389,16 +1472,11 @@ class ListProfileTimesCommand extends smithyClient.Command
|
|
|
1389
1472
|
.classBuilder()
|
|
1390
1473
|
.ep(commonParams)
|
|
1391
1474
|
.m(function (Command, cs, config, o) {
|
|
1392
|
-
return [
|
|
1393
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1394
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1395
|
-
];
|
|
1475
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1396
1476
|
})
|
|
1397
1477
|
.s("CodeGuruProfiler", "ListProfileTimes", {})
|
|
1398
1478
|
.n("CodeGuruProfilerClient", "ListProfileTimesCommand")
|
|
1399
|
-
.
|
|
1400
|
-
.ser(se_ListProfileTimesCommand)
|
|
1401
|
-
.de(de_ListProfileTimesCommand)
|
|
1479
|
+
.sc(ListProfileTimes)
|
|
1402
1480
|
.build() {
|
|
1403
1481
|
}
|
|
1404
1482
|
|
|
@@ -1406,16 +1484,11 @@ class ListProfilingGroupsCommand extends smithyClient.Command
|
|
|
1406
1484
|
.classBuilder()
|
|
1407
1485
|
.ep(commonParams)
|
|
1408
1486
|
.m(function (Command, cs, config, o) {
|
|
1409
|
-
return [
|
|
1410
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1411
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1412
|
-
];
|
|
1487
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1413
1488
|
})
|
|
1414
1489
|
.s("CodeGuruProfiler", "ListProfilingGroups", {})
|
|
1415
1490
|
.n("CodeGuruProfilerClient", "ListProfilingGroupsCommand")
|
|
1416
|
-
.
|
|
1417
|
-
.ser(se_ListProfilingGroupsCommand)
|
|
1418
|
-
.de(de_ListProfilingGroupsCommand)
|
|
1491
|
+
.sc(ListProfilingGroups)
|
|
1419
1492
|
.build() {
|
|
1420
1493
|
}
|
|
1421
1494
|
|
|
@@ -1423,16 +1496,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1423
1496
|
.classBuilder()
|
|
1424
1497
|
.ep(commonParams)
|
|
1425
1498
|
.m(function (Command, cs, config, o) {
|
|
1426
|
-
return [
|
|
1427
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1428
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1429
|
-
];
|
|
1499
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1430
1500
|
})
|
|
1431
1501
|
.s("CodeGuruProfiler", "ListTagsForResource", {})
|
|
1432
1502
|
.n("CodeGuruProfilerClient", "ListTagsForResourceCommand")
|
|
1433
|
-
.
|
|
1434
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1435
|
-
.de(de_ListTagsForResourceCommand)
|
|
1503
|
+
.sc(ListTagsForResource)
|
|
1436
1504
|
.build() {
|
|
1437
1505
|
}
|
|
1438
1506
|
|
|
@@ -1440,16 +1508,11 @@ class PostAgentProfileCommand extends smithyClient.Command
|
|
|
1440
1508
|
.classBuilder()
|
|
1441
1509
|
.ep(commonParams)
|
|
1442
1510
|
.m(function (Command, cs, config, o) {
|
|
1443
|
-
return [
|
|
1444
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1445
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1446
|
-
];
|
|
1511
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1447
1512
|
})
|
|
1448
1513
|
.s("CodeGuruProfiler", "PostAgentProfile", {})
|
|
1449
1514
|
.n("CodeGuruProfilerClient", "PostAgentProfileCommand")
|
|
1450
|
-
.
|
|
1451
|
-
.ser(se_PostAgentProfileCommand)
|
|
1452
|
-
.de(de_PostAgentProfileCommand)
|
|
1515
|
+
.sc(PostAgentProfile)
|
|
1453
1516
|
.build() {
|
|
1454
1517
|
}
|
|
1455
1518
|
|
|
@@ -1457,16 +1520,11 @@ class PutPermissionCommand extends smithyClient.Command
|
|
|
1457
1520
|
.classBuilder()
|
|
1458
1521
|
.ep(commonParams)
|
|
1459
1522
|
.m(function (Command, cs, config, o) {
|
|
1460
|
-
return [
|
|
1461
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1462
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1463
|
-
];
|
|
1523
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1464
1524
|
})
|
|
1465
1525
|
.s("CodeGuruProfiler", "PutPermission", {})
|
|
1466
1526
|
.n("CodeGuruProfilerClient", "PutPermissionCommand")
|
|
1467
|
-
.
|
|
1468
|
-
.ser(se_PutPermissionCommand)
|
|
1469
|
-
.de(de_PutPermissionCommand)
|
|
1527
|
+
.sc(PutPermission)
|
|
1470
1528
|
.build() {
|
|
1471
1529
|
}
|
|
1472
1530
|
|
|
@@ -1474,16 +1532,11 @@ class RemoveNotificationChannelCommand extends smithyClient.Command
|
|
|
1474
1532
|
.classBuilder()
|
|
1475
1533
|
.ep(commonParams)
|
|
1476
1534
|
.m(function (Command, cs, config, o) {
|
|
1477
|
-
return [
|
|
1478
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1479
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1480
|
-
];
|
|
1535
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1481
1536
|
})
|
|
1482
1537
|
.s("CodeGuruProfiler", "RemoveNotificationChannel", {})
|
|
1483
1538
|
.n("CodeGuruProfilerClient", "RemoveNotificationChannelCommand")
|
|
1484
|
-
.
|
|
1485
|
-
.ser(se_RemoveNotificationChannelCommand)
|
|
1486
|
-
.de(de_RemoveNotificationChannelCommand)
|
|
1539
|
+
.sc(RemoveNotificationChannel)
|
|
1487
1540
|
.build() {
|
|
1488
1541
|
}
|
|
1489
1542
|
|
|
@@ -1491,16 +1544,11 @@ class RemovePermissionCommand extends smithyClient.Command
|
|
|
1491
1544
|
.classBuilder()
|
|
1492
1545
|
.ep(commonParams)
|
|
1493
1546
|
.m(function (Command, cs, config, o) {
|
|
1494
|
-
return [
|
|
1495
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1496
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1497
|
-
];
|
|
1547
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1498
1548
|
})
|
|
1499
1549
|
.s("CodeGuruProfiler", "RemovePermission", {})
|
|
1500
1550
|
.n("CodeGuruProfilerClient", "RemovePermissionCommand")
|
|
1501
|
-
.
|
|
1502
|
-
.ser(se_RemovePermissionCommand)
|
|
1503
|
-
.de(de_RemovePermissionCommand)
|
|
1551
|
+
.sc(RemovePermission)
|
|
1504
1552
|
.build() {
|
|
1505
1553
|
}
|
|
1506
1554
|
|
|
@@ -1508,16 +1556,11 @@ class SubmitFeedbackCommand extends smithyClient.Command
|
|
|
1508
1556
|
.classBuilder()
|
|
1509
1557
|
.ep(commonParams)
|
|
1510
1558
|
.m(function (Command, cs, config, o) {
|
|
1511
|
-
return [
|
|
1512
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1513
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1514
|
-
];
|
|
1559
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1515
1560
|
})
|
|
1516
1561
|
.s("CodeGuruProfiler", "SubmitFeedback", {})
|
|
1517
1562
|
.n("CodeGuruProfilerClient", "SubmitFeedbackCommand")
|
|
1518
|
-
.
|
|
1519
|
-
.ser(se_SubmitFeedbackCommand)
|
|
1520
|
-
.de(de_SubmitFeedbackCommand)
|
|
1563
|
+
.sc(SubmitFeedback)
|
|
1521
1564
|
.build() {
|
|
1522
1565
|
}
|
|
1523
1566
|
|
|
@@ -1525,16 +1568,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1525
1568
|
.classBuilder()
|
|
1526
1569
|
.ep(commonParams)
|
|
1527
1570
|
.m(function (Command, cs, config, o) {
|
|
1528
|
-
return [
|
|
1529
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1530
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1531
|
-
];
|
|
1571
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1532
1572
|
})
|
|
1533
1573
|
.s("CodeGuruProfiler", "TagResource", {})
|
|
1534
1574
|
.n("CodeGuruProfilerClient", "TagResourceCommand")
|
|
1535
|
-
.
|
|
1536
|
-
.ser(se_TagResourceCommand)
|
|
1537
|
-
.de(de_TagResourceCommand)
|
|
1575
|
+
.sc(TagResource)
|
|
1538
1576
|
.build() {
|
|
1539
1577
|
}
|
|
1540
1578
|
|
|
@@ -1542,16 +1580,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1542
1580
|
.classBuilder()
|
|
1543
1581
|
.ep(commonParams)
|
|
1544
1582
|
.m(function (Command, cs, config, o) {
|
|
1545
|
-
return [
|
|
1546
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1547
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1548
|
-
];
|
|
1583
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1549
1584
|
})
|
|
1550
1585
|
.s("CodeGuruProfiler", "UntagResource", {})
|
|
1551
1586
|
.n("CodeGuruProfilerClient", "UntagResourceCommand")
|
|
1552
|
-
.
|
|
1553
|
-
.ser(se_UntagResourceCommand)
|
|
1554
|
-
.de(de_UntagResourceCommand)
|
|
1587
|
+
.sc(UntagResource)
|
|
1555
1588
|
.build() {
|
|
1556
1589
|
}
|
|
1557
1590
|
|
|
@@ -1559,16 +1592,11 @@ class UpdateProfilingGroupCommand extends smithyClient.Command
|
|
|
1559
1592
|
.classBuilder()
|
|
1560
1593
|
.ep(commonParams)
|
|
1561
1594
|
.m(function (Command, cs, config, o) {
|
|
1562
|
-
return [
|
|
1563
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1564
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1565
|
-
];
|
|
1595
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1566
1596
|
})
|
|
1567
1597
|
.s("CodeGuruProfiler", "UpdateProfilingGroup", {})
|
|
1568
1598
|
.n("CodeGuruProfilerClient", "UpdateProfilingGroupCommand")
|
|
1569
|
-
.
|
|
1570
|
-
.ser(se_UpdateProfilingGroupCommand)
|
|
1571
|
-
.de(de_UpdateProfilingGroupCommand)
|
|
1599
|
+
.sc(UpdateProfilingGroup)
|
|
1572
1600
|
.build() {
|
|
1573
1601
|
}
|
|
1574
1602
|
|
|
@@ -1624,10 +1652,10 @@ exports.AggregationPeriod = AggregationPeriod;
|
|
|
1624
1652
|
exports.BatchGetFrameMetricDataCommand = BatchGetFrameMetricDataCommand;
|
|
1625
1653
|
exports.CodeGuruProfiler = CodeGuruProfiler;
|
|
1626
1654
|
exports.CodeGuruProfilerClient = CodeGuruProfilerClient;
|
|
1627
|
-
exports.CodeGuruProfilerServiceException = CodeGuruProfilerServiceException;
|
|
1655
|
+
exports.CodeGuruProfilerServiceException = CodeGuruProfilerServiceException$1;
|
|
1628
1656
|
exports.ComputePlatform = ComputePlatform;
|
|
1629
1657
|
exports.ConfigureAgentCommand = ConfigureAgentCommand;
|
|
1630
|
-
exports.ConflictException = ConflictException;
|
|
1658
|
+
exports.ConflictException = ConflictException$1;
|
|
1631
1659
|
exports.CreateProfilingGroupCommand = CreateProfilingGroupCommand;
|
|
1632
1660
|
exports.DeleteProfilingGroupCommand = DeleteProfilingGroupCommand;
|
|
1633
1661
|
exports.DescribeProfilingGroupCommand = DescribeProfilingGroupCommand;
|
|
@@ -1638,7 +1666,7 @@ exports.GetNotificationConfigurationCommand = GetNotificationConfigurationComman
|
|
|
1638
1666
|
exports.GetPolicyCommand = GetPolicyCommand;
|
|
1639
1667
|
exports.GetProfileCommand = GetProfileCommand;
|
|
1640
1668
|
exports.GetRecommendationsCommand = GetRecommendationsCommand;
|
|
1641
|
-
exports.InternalServerException = InternalServerException;
|
|
1669
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1642
1670
|
exports.ListFindingsReportsCommand = ListFindingsReportsCommand;
|
|
1643
1671
|
exports.ListProfileTimesCommand = ListProfileTimesCommand;
|
|
1644
1672
|
exports.ListProfilingGroupsCommand = ListProfilingGroupsCommand;
|
|
@@ -1650,14 +1678,14 @@ exports.PostAgentProfileCommand = PostAgentProfileCommand;
|
|
|
1650
1678
|
exports.PutPermissionCommand = PutPermissionCommand;
|
|
1651
1679
|
exports.RemoveNotificationChannelCommand = RemoveNotificationChannelCommand;
|
|
1652
1680
|
exports.RemovePermissionCommand = RemovePermissionCommand;
|
|
1653
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1654
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1681
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1682
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1655
1683
|
exports.SubmitFeedbackCommand = SubmitFeedbackCommand;
|
|
1656
1684
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1657
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1685
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1658
1686
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1659
1687
|
exports.UpdateProfilingGroupCommand = UpdateProfilingGroupCommand;
|
|
1660
|
-
exports.ValidationException = ValidationException;
|
|
1688
|
+
exports.ValidationException = ValidationException$1;
|
|
1661
1689
|
exports.paginateGetFindingsReportAccountSummary = paginateGetFindingsReportAccountSummary;
|
|
1662
1690
|
exports.paginateListFindingsReports = paginateListFindingsReports;
|
|
1663
1691
|
exports.paginateListProfileTimes = paginateListProfileTimes;
|