@aws-sdk/client-codeguruprofiler 3.721.0 → 3.726.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 +148 -112
- package/dist-es/CodeGuruProfilerClient.js +1 -0
- package/dist-es/models/models_0.js +15 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -166,7 +166,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
166
166
|
}, "resolveRuntimeExtensions");
|
|
167
167
|
|
|
168
168
|
// src/CodeGuruProfilerClient.ts
|
|
169
|
-
var
|
|
169
|
+
var CodeGuruProfilerClient = class extends import_smithy_client.Client {
|
|
170
|
+
static {
|
|
171
|
+
__name(this, "CodeGuruProfilerClient");
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* The resolved configuration of CodeGuruProfilerClient class. This is resolved and normalized from the {@link CodeGuruProfilerClientConfig | constructor configuration interface}.
|
|
175
|
+
*/
|
|
176
|
+
config;
|
|
170
177
|
constructor(...[configuration]) {
|
|
171
178
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
172
179
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -176,7 +183,7 @@ var _CodeGuruProfilerClient = class _CodeGuruProfilerClient extends import_smith
|
|
|
176
183
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
177
184
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
178
185
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
179
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
186
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
180
187
|
super(_config_8);
|
|
181
188
|
this.config = _config_8;
|
|
182
189
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -204,8 +211,6 @@ var _CodeGuruProfilerClient = class _CodeGuruProfilerClient extends import_smith
|
|
|
204
211
|
super.destroy();
|
|
205
212
|
}
|
|
206
213
|
};
|
|
207
|
-
__name(_CodeGuruProfilerClient, "CodeGuruProfilerClient");
|
|
208
|
-
var CodeGuruProfilerClient = _CodeGuruProfilerClient;
|
|
209
214
|
|
|
210
215
|
// src/CodeGuruProfiler.ts
|
|
211
216
|
|
|
@@ -223,7 +228,10 @@ var import_uuid = require("uuid");
|
|
|
223
228
|
|
|
224
229
|
// src/models/CodeGuruProfilerServiceException.ts
|
|
225
230
|
|
|
226
|
-
var
|
|
231
|
+
var CodeGuruProfilerServiceException = class _CodeGuruProfilerServiceException extends import_smithy_client.ServiceException {
|
|
232
|
+
static {
|
|
233
|
+
__name(this, "CodeGuruProfilerServiceException");
|
|
234
|
+
}
|
|
227
235
|
/**
|
|
228
236
|
* @internal
|
|
229
237
|
*/
|
|
@@ -232,8 +240,6 @@ var _CodeGuruProfilerServiceException = class _CodeGuruProfilerServiceException
|
|
|
232
240
|
Object.setPrototypeOf(this, _CodeGuruProfilerServiceException.prototype);
|
|
233
241
|
}
|
|
234
242
|
};
|
|
235
|
-
__name(_CodeGuruProfilerServiceException, "CodeGuruProfilerServiceException");
|
|
236
|
-
var CodeGuruProfilerServiceException = _CodeGuruProfilerServiceException;
|
|
237
243
|
|
|
238
244
|
// src/models/models_0.ts
|
|
239
245
|
var ActionGroup = {
|
|
@@ -248,7 +254,12 @@ var EventPublisher = {
|
|
|
248
254
|
*/
|
|
249
255
|
ANOMALY_DETECTION: "AnomalyDetection"
|
|
250
256
|
};
|
|
251
|
-
var
|
|
257
|
+
var ConflictException = class _ConflictException extends CodeGuruProfilerServiceException {
|
|
258
|
+
static {
|
|
259
|
+
__name(this, "ConflictException");
|
|
260
|
+
}
|
|
261
|
+
name = "ConflictException";
|
|
262
|
+
$fault = "client";
|
|
252
263
|
/**
|
|
253
264
|
* @internal
|
|
254
265
|
*/
|
|
@@ -258,14 +269,16 @@ var _ConflictException = class _ConflictException extends CodeGuruProfilerServic
|
|
|
258
269
|
$fault: "client",
|
|
259
270
|
...opts
|
|
260
271
|
});
|
|
261
|
-
this.name = "ConflictException";
|
|
262
|
-
this.$fault = "client";
|
|
263
272
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
264
273
|
}
|
|
265
274
|
};
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
275
|
+
var InternalServerException = class _InternalServerException extends CodeGuruProfilerServiceException {
|
|
276
|
+
static {
|
|
277
|
+
__name(this, "InternalServerException");
|
|
278
|
+
}
|
|
279
|
+
name = "InternalServerException";
|
|
280
|
+
$fault = "server";
|
|
281
|
+
$retryable = {};
|
|
269
282
|
/**
|
|
270
283
|
* @internal
|
|
271
284
|
*/
|
|
@@ -275,15 +288,15 @@ var _InternalServerException = class _InternalServerException extends CodeGuruPr
|
|
|
275
288
|
$fault: "server",
|
|
276
289
|
...opts
|
|
277
290
|
});
|
|
278
|
-
this.name = "InternalServerException";
|
|
279
|
-
this.$fault = "server";
|
|
280
|
-
this.$retryable = {};
|
|
281
291
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
282
292
|
}
|
|
283
293
|
};
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
294
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends CodeGuruProfilerServiceException {
|
|
295
|
+
static {
|
|
296
|
+
__name(this, "ResourceNotFoundException");
|
|
297
|
+
}
|
|
298
|
+
name = "ResourceNotFoundException";
|
|
299
|
+
$fault = "client";
|
|
287
300
|
/**
|
|
288
301
|
* @internal
|
|
289
302
|
*/
|
|
@@ -293,14 +306,16 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends CodeGu
|
|
|
293
306
|
$fault: "client",
|
|
294
307
|
...opts
|
|
295
308
|
});
|
|
296
|
-
this.name = "ResourceNotFoundException";
|
|
297
|
-
this.$fault = "client";
|
|
298
309
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
299
310
|
}
|
|
300
311
|
};
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
312
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends CodeGuruProfilerServiceException {
|
|
313
|
+
static {
|
|
314
|
+
__name(this, "ServiceQuotaExceededException");
|
|
315
|
+
}
|
|
316
|
+
name = "ServiceQuotaExceededException";
|
|
317
|
+
$fault = "client";
|
|
318
|
+
$retryable = {};
|
|
304
319
|
/**
|
|
305
320
|
* @internal
|
|
306
321
|
*/
|
|
@@ -310,15 +325,16 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
310
325
|
$fault: "client",
|
|
311
326
|
...opts
|
|
312
327
|
});
|
|
313
|
-
this.name = "ServiceQuotaExceededException";
|
|
314
|
-
this.$fault = "client";
|
|
315
|
-
this.$retryable = {};
|
|
316
328
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
317
329
|
}
|
|
318
330
|
};
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
331
|
+
var ThrottlingException = class _ThrottlingException extends CodeGuruProfilerServiceException {
|
|
332
|
+
static {
|
|
333
|
+
__name(this, "ThrottlingException");
|
|
334
|
+
}
|
|
335
|
+
name = "ThrottlingException";
|
|
336
|
+
$fault = "client";
|
|
337
|
+
$retryable = {};
|
|
322
338
|
/**
|
|
323
339
|
* @internal
|
|
324
340
|
*/
|
|
@@ -328,15 +344,15 @@ var _ThrottlingException = class _ThrottlingException extends CodeGuruProfilerSe
|
|
|
328
344
|
$fault: "client",
|
|
329
345
|
...opts
|
|
330
346
|
});
|
|
331
|
-
this.name = "ThrottlingException";
|
|
332
|
-
this.$fault = "client";
|
|
333
|
-
this.$retryable = {};
|
|
334
347
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
335
348
|
}
|
|
336
349
|
};
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
350
|
+
var ValidationException = class _ValidationException extends CodeGuruProfilerServiceException {
|
|
351
|
+
static {
|
|
352
|
+
__name(this, "ValidationException");
|
|
353
|
+
}
|
|
354
|
+
name = "ValidationException";
|
|
355
|
+
$fault = "client";
|
|
340
356
|
/**
|
|
341
357
|
* @internal
|
|
342
358
|
*/
|
|
@@ -346,13 +362,9 @@ var _ValidationException = class _ValidationException extends CodeGuruProfilerSe
|
|
|
346
362
|
$fault: "client",
|
|
347
363
|
...opts
|
|
348
364
|
});
|
|
349
|
-
this.name = "ValidationException";
|
|
350
|
-
this.$fault = "client";
|
|
351
365
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
352
366
|
}
|
|
353
367
|
};
|
|
354
|
-
__name(_ValidationException, "ValidationException");
|
|
355
|
-
var ValidationException = _ValidationException;
|
|
356
368
|
var AgentParameterField = {
|
|
357
369
|
/**
|
|
358
370
|
* Maximum stack depth to be captured by the CodeGuru Profiler.
|
|
@@ -1405,323 +1417,346 @@ var _tK = "tagKeys";
|
|
|
1405
1417
|
var _tR = "targetResolution";
|
|
1406
1418
|
|
|
1407
1419
|
// src/commands/AddNotificationChannelsCommand.ts
|
|
1408
|
-
var
|
|
1420
|
+
var AddNotificationChannelsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1409
1421
|
return [
|
|
1410
1422
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1411
1423
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1412
1424
|
];
|
|
1413
1425
|
}).s("CodeGuruProfiler", "AddNotificationChannels", {}).n("CodeGuruProfilerClient", "AddNotificationChannelsCommand").f(void 0, void 0).ser(se_AddNotificationChannelsCommand).de(de_AddNotificationChannelsCommand).build() {
|
|
1426
|
+
static {
|
|
1427
|
+
__name(this, "AddNotificationChannelsCommand");
|
|
1428
|
+
}
|
|
1414
1429
|
};
|
|
1415
|
-
__name(_AddNotificationChannelsCommand, "AddNotificationChannelsCommand");
|
|
1416
|
-
var AddNotificationChannelsCommand = _AddNotificationChannelsCommand;
|
|
1417
1430
|
|
|
1418
1431
|
// src/commands/BatchGetFrameMetricDataCommand.ts
|
|
1419
1432
|
|
|
1420
1433
|
|
|
1421
1434
|
|
|
1422
|
-
var
|
|
1435
|
+
var BatchGetFrameMetricDataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1423
1436
|
return [
|
|
1424
1437
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1425
1438
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1426
1439
|
];
|
|
1427
1440
|
}).s("CodeGuruProfiler", "BatchGetFrameMetricData", {}).n("CodeGuruProfilerClient", "BatchGetFrameMetricDataCommand").f(void 0, void 0).ser(se_BatchGetFrameMetricDataCommand).de(de_BatchGetFrameMetricDataCommand).build() {
|
|
1441
|
+
static {
|
|
1442
|
+
__name(this, "BatchGetFrameMetricDataCommand");
|
|
1443
|
+
}
|
|
1428
1444
|
};
|
|
1429
|
-
__name(_BatchGetFrameMetricDataCommand, "BatchGetFrameMetricDataCommand");
|
|
1430
|
-
var BatchGetFrameMetricDataCommand = _BatchGetFrameMetricDataCommand;
|
|
1431
1445
|
|
|
1432
1446
|
// src/commands/ConfigureAgentCommand.ts
|
|
1433
1447
|
|
|
1434
1448
|
|
|
1435
1449
|
|
|
1436
|
-
var
|
|
1450
|
+
var ConfigureAgentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1437
1451
|
return [
|
|
1438
1452
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1439
1453
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1440
1454
|
];
|
|
1441
1455
|
}).s("CodeGuruProfiler", "ConfigureAgent", {}).n("CodeGuruProfilerClient", "ConfigureAgentCommand").f(void 0, void 0).ser(se_ConfigureAgentCommand).de(de_ConfigureAgentCommand).build() {
|
|
1456
|
+
static {
|
|
1457
|
+
__name(this, "ConfigureAgentCommand");
|
|
1458
|
+
}
|
|
1442
1459
|
};
|
|
1443
|
-
__name(_ConfigureAgentCommand, "ConfigureAgentCommand");
|
|
1444
|
-
var ConfigureAgentCommand = _ConfigureAgentCommand;
|
|
1445
1460
|
|
|
1446
1461
|
// src/commands/CreateProfilingGroupCommand.ts
|
|
1447
1462
|
|
|
1448
1463
|
|
|
1449
1464
|
|
|
1450
|
-
var
|
|
1465
|
+
var CreateProfilingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1451
1466
|
return [
|
|
1452
1467
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1453
1468
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1454
1469
|
];
|
|
1455
1470
|
}).s("CodeGuruProfiler", "CreateProfilingGroup", {}).n("CodeGuruProfilerClient", "CreateProfilingGroupCommand").f(void 0, void 0).ser(se_CreateProfilingGroupCommand).de(de_CreateProfilingGroupCommand).build() {
|
|
1471
|
+
static {
|
|
1472
|
+
__name(this, "CreateProfilingGroupCommand");
|
|
1473
|
+
}
|
|
1456
1474
|
};
|
|
1457
|
-
__name(_CreateProfilingGroupCommand, "CreateProfilingGroupCommand");
|
|
1458
|
-
var CreateProfilingGroupCommand = _CreateProfilingGroupCommand;
|
|
1459
1475
|
|
|
1460
1476
|
// src/commands/DeleteProfilingGroupCommand.ts
|
|
1461
1477
|
|
|
1462
1478
|
|
|
1463
1479
|
|
|
1464
|
-
var
|
|
1480
|
+
var DeleteProfilingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1465
1481
|
return [
|
|
1466
1482
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1467
1483
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1468
1484
|
];
|
|
1469
1485
|
}).s("CodeGuruProfiler", "DeleteProfilingGroup", {}).n("CodeGuruProfilerClient", "DeleteProfilingGroupCommand").f(void 0, void 0).ser(se_DeleteProfilingGroupCommand).de(de_DeleteProfilingGroupCommand).build() {
|
|
1486
|
+
static {
|
|
1487
|
+
__name(this, "DeleteProfilingGroupCommand");
|
|
1488
|
+
}
|
|
1470
1489
|
};
|
|
1471
|
-
__name(_DeleteProfilingGroupCommand, "DeleteProfilingGroupCommand");
|
|
1472
|
-
var DeleteProfilingGroupCommand = _DeleteProfilingGroupCommand;
|
|
1473
1490
|
|
|
1474
1491
|
// src/commands/DescribeProfilingGroupCommand.ts
|
|
1475
1492
|
|
|
1476
1493
|
|
|
1477
1494
|
|
|
1478
|
-
var
|
|
1495
|
+
var DescribeProfilingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1479
1496
|
return [
|
|
1480
1497
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1481
1498
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1482
1499
|
];
|
|
1483
1500
|
}).s("CodeGuruProfiler", "DescribeProfilingGroup", {}).n("CodeGuruProfilerClient", "DescribeProfilingGroupCommand").f(void 0, void 0).ser(se_DescribeProfilingGroupCommand).de(de_DescribeProfilingGroupCommand).build() {
|
|
1501
|
+
static {
|
|
1502
|
+
__name(this, "DescribeProfilingGroupCommand");
|
|
1503
|
+
}
|
|
1484
1504
|
};
|
|
1485
|
-
__name(_DescribeProfilingGroupCommand, "DescribeProfilingGroupCommand");
|
|
1486
|
-
var DescribeProfilingGroupCommand = _DescribeProfilingGroupCommand;
|
|
1487
1505
|
|
|
1488
1506
|
// src/commands/GetFindingsReportAccountSummaryCommand.ts
|
|
1489
1507
|
|
|
1490
1508
|
|
|
1491
1509
|
|
|
1492
|
-
var
|
|
1510
|
+
var GetFindingsReportAccountSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1493
1511
|
return [
|
|
1494
1512
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1495
1513
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1496
1514
|
];
|
|
1497
1515
|
}).s("CodeGuruProfiler", "GetFindingsReportAccountSummary", {}).n("CodeGuruProfilerClient", "GetFindingsReportAccountSummaryCommand").f(void 0, void 0).ser(se_GetFindingsReportAccountSummaryCommand).de(de_GetFindingsReportAccountSummaryCommand).build() {
|
|
1516
|
+
static {
|
|
1517
|
+
__name(this, "GetFindingsReportAccountSummaryCommand");
|
|
1518
|
+
}
|
|
1498
1519
|
};
|
|
1499
|
-
__name(_GetFindingsReportAccountSummaryCommand, "GetFindingsReportAccountSummaryCommand");
|
|
1500
|
-
var GetFindingsReportAccountSummaryCommand = _GetFindingsReportAccountSummaryCommand;
|
|
1501
1520
|
|
|
1502
1521
|
// src/commands/GetNotificationConfigurationCommand.ts
|
|
1503
1522
|
|
|
1504
1523
|
|
|
1505
1524
|
|
|
1506
|
-
var
|
|
1525
|
+
var GetNotificationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1507
1526
|
return [
|
|
1508
1527
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1509
1528
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1510
1529
|
];
|
|
1511
1530
|
}).s("CodeGuruProfiler", "GetNotificationConfiguration", {}).n("CodeGuruProfilerClient", "GetNotificationConfigurationCommand").f(void 0, void 0).ser(se_GetNotificationConfigurationCommand).de(de_GetNotificationConfigurationCommand).build() {
|
|
1531
|
+
static {
|
|
1532
|
+
__name(this, "GetNotificationConfigurationCommand");
|
|
1533
|
+
}
|
|
1512
1534
|
};
|
|
1513
|
-
__name(_GetNotificationConfigurationCommand, "GetNotificationConfigurationCommand");
|
|
1514
|
-
var GetNotificationConfigurationCommand = _GetNotificationConfigurationCommand;
|
|
1515
1535
|
|
|
1516
1536
|
// src/commands/GetPolicyCommand.ts
|
|
1517
1537
|
|
|
1518
1538
|
|
|
1519
1539
|
|
|
1520
|
-
var
|
|
1540
|
+
var GetPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1521
1541
|
return [
|
|
1522
1542
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1523
1543
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1524
1544
|
];
|
|
1525
1545
|
}).s("CodeGuruProfiler", "GetPolicy", {}).n("CodeGuruProfilerClient", "GetPolicyCommand").f(void 0, void 0).ser(se_GetPolicyCommand).de(de_GetPolicyCommand).build() {
|
|
1546
|
+
static {
|
|
1547
|
+
__name(this, "GetPolicyCommand");
|
|
1548
|
+
}
|
|
1526
1549
|
};
|
|
1527
|
-
__name(_GetPolicyCommand, "GetPolicyCommand");
|
|
1528
|
-
var GetPolicyCommand = _GetPolicyCommand;
|
|
1529
1550
|
|
|
1530
1551
|
// src/commands/GetProfileCommand.ts
|
|
1531
1552
|
|
|
1532
1553
|
|
|
1533
1554
|
|
|
1534
|
-
var
|
|
1555
|
+
var GetProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1535
1556
|
return [
|
|
1536
1557
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1537
1558
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1538
1559
|
];
|
|
1539
1560
|
}).s("CodeGuruProfiler", "GetProfile", {}).n("CodeGuruProfilerClient", "GetProfileCommand").f(void 0, void 0).ser(se_GetProfileCommand).de(de_GetProfileCommand).build() {
|
|
1561
|
+
static {
|
|
1562
|
+
__name(this, "GetProfileCommand");
|
|
1563
|
+
}
|
|
1540
1564
|
};
|
|
1541
|
-
__name(_GetProfileCommand, "GetProfileCommand");
|
|
1542
|
-
var GetProfileCommand = _GetProfileCommand;
|
|
1543
1565
|
|
|
1544
1566
|
// src/commands/GetRecommendationsCommand.ts
|
|
1545
1567
|
|
|
1546
1568
|
|
|
1547
1569
|
|
|
1548
|
-
var
|
|
1570
|
+
var GetRecommendationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1549
1571
|
return [
|
|
1550
1572
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1551
1573
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1552
1574
|
];
|
|
1553
1575
|
}).s("CodeGuruProfiler", "GetRecommendations", {}).n("CodeGuruProfilerClient", "GetRecommendationsCommand").f(void 0, void 0).ser(se_GetRecommendationsCommand).de(de_GetRecommendationsCommand).build() {
|
|
1576
|
+
static {
|
|
1577
|
+
__name(this, "GetRecommendationsCommand");
|
|
1578
|
+
}
|
|
1554
1579
|
};
|
|
1555
|
-
__name(_GetRecommendationsCommand, "GetRecommendationsCommand");
|
|
1556
|
-
var GetRecommendationsCommand = _GetRecommendationsCommand;
|
|
1557
1580
|
|
|
1558
1581
|
// src/commands/ListFindingsReportsCommand.ts
|
|
1559
1582
|
|
|
1560
1583
|
|
|
1561
1584
|
|
|
1562
|
-
var
|
|
1585
|
+
var ListFindingsReportsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1563
1586
|
return [
|
|
1564
1587
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1565
1588
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1566
1589
|
];
|
|
1567
1590
|
}).s("CodeGuruProfiler", "ListFindingsReports", {}).n("CodeGuruProfilerClient", "ListFindingsReportsCommand").f(void 0, void 0).ser(se_ListFindingsReportsCommand).de(de_ListFindingsReportsCommand).build() {
|
|
1591
|
+
static {
|
|
1592
|
+
__name(this, "ListFindingsReportsCommand");
|
|
1593
|
+
}
|
|
1568
1594
|
};
|
|
1569
|
-
__name(_ListFindingsReportsCommand, "ListFindingsReportsCommand");
|
|
1570
|
-
var ListFindingsReportsCommand = _ListFindingsReportsCommand;
|
|
1571
1595
|
|
|
1572
1596
|
// src/commands/ListProfileTimesCommand.ts
|
|
1573
1597
|
|
|
1574
1598
|
|
|
1575
1599
|
|
|
1576
|
-
var
|
|
1600
|
+
var ListProfileTimesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1577
1601
|
return [
|
|
1578
1602
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1579
1603
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1580
1604
|
];
|
|
1581
1605
|
}).s("CodeGuruProfiler", "ListProfileTimes", {}).n("CodeGuruProfilerClient", "ListProfileTimesCommand").f(void 0, void 0).ser(se_ListProfileTimesCommand).de(de_ListProfileTimesCommand).build() {
|
|
1606
|
+
static {
|
|
1607
|
+
__name(this, "ListProfileTimesCommand");
|
|
1608
|
+
}
|
|
1582
1609
|
};
|
|
1583
|
-
__name(_ListProfileTimesCommand, "ListProfileTimesCommand");
|
|
1584
|
-
var ListProfileTimesCommand = _ListProfileTimesCommand;
|
|
1585
1610
|
|
|
1586
1611
|
// src/commands/ListProfilingGroupsCommand.ts
|
|
1587
1612
|
|
|
1588
1613
|
|
|
1589
1614
|
|
|
1590
|
-
var
|
|
1615
|
+
var ListProfilingGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1591
1616
|
return [
|
|
1592
1617
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1593
1618
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1594
1619
|
];
|
|
1595
1620
|
}).s("CodeGuruProfiler", "ListProfilingGroups", {}).n("CodeGuruProfilerClient", "ListProfilingGroupsCommand").f(void 0, void 0).ser(se_ListProfilingGroupsCommand).de(de_ListProfilingGroupsCommand).build() {
|
|
1621
|
+
static {
|
|
1622
|
+
__name(this, "ListProfilingGroupsCommand");
|
|
1623
|
+
}
|
|
1596
1624
|
};
|
|
1597
|
-
__name(_ListProfilingGroupsCommand, "ListProfilingGroupsCommand");
|
|
1598
|
-
var ListProfilingGroupsCommand = _ListProfilingGroupsCommand;
|
|
1599
1625
|
|
|
1600
1626
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1601
1627
|
|
|
1602
1628
|
|
|
1603
1629
|
|
|
1604
|
-
var
|
|
1630
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1605
1631
|
return [
|
|
1606
1632
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1607
1633
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1608
1634
|
];
|
|
1609
1635
|
}).s("CodeGuruProfiler", "ListTagsForResource", {}).n("CodeGuruProfilerClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1636
|
+
static {
|
|
1637
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1638
|
+
}
|
|
1610
1639
|
};
|
|
1611
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1612
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1613
1640
|
|
|
1614
1641
|
// src/commands/PostAgentProfileCommand.ts
|
|
1615
1642
|
|
|
1616
1643
|
|
|
1617
1644
|
|
|
1618
|
-
var
|
|
1645
|
+
var PostAgentProfileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1619
1646
|
return [
|
|
1620
1647
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1621
1648
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1622
1649
|
];
|
|
1623
1650
|
}).s("CodeGuruProfiler", "PostAgentProfile", {}).n("CodeGuruProfilerClient", "PostAgentProfileCommand").f(void 0, void 0).ser(se_PostAgentProfileCommand).de(de_PostAgentProfileCommand).build() {
|
|
1651
|
+
static {
|
|
1652
|
+
__name(this, "PostAgentProfileCommand");
|
|
1653
|
+
}
|
|
1624
1654
|
};
|
|
1625
|
-
__name(_PostAgentProfileCommand, "PostAgentProfileCommand");
|
|
1626
|
-
var PostAgentProfileCommand = _PostAgentProfileCommand;
|
|
1627
1655
|
|
|
1628
1656
|
// src/commands/PutPermissionCommand.ts
|
|
1629
1657
|
|
|
1630
1658
|
|
|
1631
1659
|
|
|
1632
|
-
var
|
|
1660
|
+
var PutPermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1633
1661
|
return [
|
|
1634
1662
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1635
1663
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1636
1664
|
];
|
|
1637
1665
|
}).s("CodeGuruProfiler", "PutPermission", {}).n("CodeGuruProfilerClient", "PutPermissionCommand").f(void 0, void 0).ser(se_PutPermissionCommand).de(de_PutPermissionCommand).build() {
|
|
1666
|
+
static {
|
|
1667
|
+
__name(this, "PutPermissionCommand");
|
|
1668
|
+
}
|
|
1638
1669
|
};
|
|
1639
|
-
__name(_PutPermissionCommand, "PutPermissionCommand");
|
|
1640
|
-
var PutPermissionCommand = _PutPermissionCommand;
|
|
1641
1670
|
|
|
1642
1671
|
// src/commands/RemoveNotificationChannelCommand.ts
|
|
1643
1672
|
|
|
1644
1673
|
|
|
1645
1674
|
|
|
1646
|
-
var
|
|
1675
|
+
var RemoveNotificationChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1647
1676
|
return [
|
|
1648
1677
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1649
1678
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1650
1679
|
];
|
|
1651
1680
|
}).s("CodeGuruProfiler", "RemoveNotificationChannel", {}).n("CodeGuruProfilerClient", "RemoveNotificationChannelCommand").f(void 0, void 0).ser(se_RemoveNotificationChannelCommand).de(de_RemoveNotificationChannelCommand).build() {
|
|
1681
|
+
static {
|
|
1682
|
+
__name(this, "RemoveNotificationChannelCommand");
|
|
1683
|
+
}
|
|
1652
1684
|
};
|
|
1653
|
-
__name(_RemoveNotificationChannelCommand, "RemoveNotificationChannelCommand");
|
|
1654
|
-
var RemoveNotificationChannelCommand = _RemoveNotificationChannelCommand;
|
|
1655
1685
|
|
|
1656
1686
|
// src/commands/RemovePermissionCommand.ts
|
|
1657
1687
|
|
|
1658
1688
|
|
|
1659
1689
|
|
|
1660
|
-
var
|
|
1690
|
+
var RemovePermissionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1661
1691
|
return [
|
|
1662
1692
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1663
1693
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1664
1694
|
];
|
|
1665
1695
|
}).s("CodeGuruProfiler", "RemovePermission", {}).n("CodeGuruProfilerClient", "RemovePermissionCommand").f(void 0, void 0).ser(se_RemovePermissionCommand).de(de_RemovePermissionCommand).build() {
|
|
1696
|
+
static {
|
|
1697
|
+
__name(this, "RemovePermissionCommand");
|
|
1698
|
+
}
|
|
1666
1699
|
};
|
|
1667
|
-
__name(_RemovePermissionCommand, "RemovePermissionCommand");
|
|
1668
|
-
var RemovePermissionCommand = _RemovePermissionCommand;
|
|
1669
1700
|
|
|
1670
1701
|
// src/commands/SubmitFeedbackCommand.ts
|
|
1671
1702
|
|
|
1672
1703
|
|
|
1673
1704
|
|
|
1674
|
-
var
|
|
1705
|
+
var SubmitFeedbackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1675
1706
|
return [
|
|
1676
1707
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1677
1708
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1678
1709
|
];
|
|
1679
1710
|
}).s("CodeGuruProfiler", "SubmitFeedback", {}).n("CodeGuruProfilerClient", "SubmitFeedbackCommand").f(void 0, void 0).ser(se_SubmitFeedbackCommand).de(de_SubmitFeedbackCommand).build() {
|
|
1711
|
+
static {
|
|
1712
|
+
__name(this, "SubmitFeedbackCommand");
|
|
1713
|
+
}
|
|
1680
1714
|
};
|
|
1681
|
-
__name(_SubmitFeedbackCommand, "SubmitFeedbackCommand");
|
|
1682
|
-
var SubmitFeedbackCommand = _SubmitFeedbackCommand;
|
|
1683
1715
|
|
|
1684
1716
|
// src/commands/TagResourceCommand.ts
|
|
1685
1717
|
|
|
1686
1718
|
|
|
1687
1719
|
|
|
1688
|
-
var
|
|
1720
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1689
1721
|
return [
|
|
1690
1722
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1691
1723
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1692
1724
|
];
|
|
1693
1725
|
}).s("CodeGuruProfiler", "TagResource", {}).n("CodeGuruProfilerClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1726
|
+
static {
|
|
1727
|
+
__name(this, "TagResourceCommand");
|
|
1728
|
+
}
|
|
1694
1729
|
};
|
|
1695
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1696
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1697
1730
|
|
|
1698
1731
|
// src/commands/UntagResourceCommand.ts
|
|
1699
1732
|
|
|
1700
1733
|
|
|
1701
1734
|
|
|
1702
|
-
var
|
|
1735
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1703
1736
|
return [
|
|
1704
1737
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1705
1738
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1706
1739
|
];
|
|
1707
1740
|
}).s("CodeGuruProfiler", "UntagResource", {}).n("CodeGuruProfilerClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1741
|
+
static {
|
|
1742
|
+
__name(this, "UntagResourceCommand");
|
|
1743
|
+
}
|
|
1708
1744
|
};
|
|
1709
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1710
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1711
1745
|
|
|
1712
1746
|
// src/commands/UpdateProfilingGroupCommand.ts
|
|
1713
1747
|
|
|
1714
1748
|
|
|
1715
1749
|
|
|
1716
|
-
var
|
|
1750
|
+
var UpdateProfilingGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1717
1751
|
return [
|
|
1718
1752
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1719
1753
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1720
1754
|
];
|
|
1721
1755
|
}).s("CodeGuruProfiler", "UpdateProfilingGroup", {}).n("CodeGuruProfilerClient", "UpdateProfilingGroupCommand").f(void 0, void 0).ser(se_UpdateProfilingGroupCommand).de(de_UpdateProfilingGroupCommand).build() {
|
|
1756
|
+
static {
|
|
1757
|
+
__name(this, "UpdateProfilingGroupCommand");
|
|
1758
|
+
}
|
|
1722
1759
|
};
|
|
1723
|
-
__name(_UpdateProfilingGroupCommand, "UpdateProfilingGroupCommand");
|
|
1724
|
-
var UpdateProfilingGroupCommand = _UpdateProfilingGroupCommand;
|
|
1725
1760
|
|
|
1726
1761
|
// src/CodeGuruProfiler.ts
|
|
1727
1762
|
var commands = {
|
|
@@ -1749,10 +1784,11 @@ var commands = {
|
|
|
1749
1784
|
UntagResourceCommand,
|
|
1750
1785
|
UpdateProfilingGroupCommand
|
|
1751
1786
|
};
|
|
1752
|
-
var
|
|
1787
|
+
var CodeGuruProfiler = class extends CodeGuruProfilerClient {
|
|
1788
|
+
static {
|
|
1789
|
+
__name(this, "CodeGuruProfiler");
|
|
1790
|
+
}
|
|
1753
1791
|
};
|
|
1754
|
-
__name(_CodeGuruProfiler, "CodeGuruProfiler");
|
|
1755
|
-
var CodeGuruProfiler = _CodeGuruProfiler;
|
|
1756
1792
|
(0, import_smithy_client.createAggregatedClient)(commands, CodeGuruProfiler);
|
|
1757
1793
|
|
|
1758
1794
|
// src/pagination/GetFindingsReportAccountSummaryPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class CodeGuruProfilerClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -6,77 +6,77 @@ export const EventPublisher = {
|
|
|
6
6
|
ANOMALY_DETECTION: "AnomalyDetection",
|
|
7
7
|
};
|
|
8
8
|
export class ConflictException extends __BaseException {
|
|
9
|
+
name = "ConflictException";
|
|
10
|
+
$fault = "client";
|
|
9
11
|
constructor(opts) {
|
|
10
12
|
super({
|
|
11
13
|
name: "ConflictException",
|
|
12
14
|
$fault: "client",
|
|
13
15
|
...opts,
|
|
14
16
|
});
|
|
15
|
-
this.name = "ConflictException";
|
|
16
|
-
this.$fault = "client";
|
|
17
17
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
export class InternalServerException extends __BaseException {
|
|
21
|
+
name = "InternalServerException";
|
|
22
|
+
$fault = "server";
|
|
23
|
+
$retryable = {};
|
|
21
24
|
constructor(opts) {
|
|
22
25
|
super({
|
|
23
26
|
name: "InternalServerException",
|
|
24
27
|
$fault: "server",
|
|
25
28
|
...opts,
|
|
26
29
|
});
|
|
27
|
-
this.name = "InternalServerException";
|
|
28
|
-
this.$fault = "server";
|
|
29
|
-
this.$retryable = {};
|
|
30
30
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
export class ResourceNotFoundException extends __BaseException {
|
|
34
|
+
name = "ResourceNotFoundException";
|
|
35
|
+
$fault = "client";
|
|
34
36
|
constructor(opts) {
|
|
35
37
|
super({
|
|
36
38
|
name: "ResourceNotFoundException",
|
|
37
39
|
$fault: "client",
|
|
38
40
|
...opts,
|
|
39
41
|
});
|
|
40
|
-
this.name = "ResourceNotFoundException";
|
|
41
|
-
this.$fault = "client";
|
|
42
42
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
46
|
+
name = "ServiceQuotaExceededException";
|
|
47
|
+
$fault = "client";
|
|
48
|
+
$retryable = {};
|
|
46
49
|
constructor(opts) {
|
|
47
50
|
super({
|
|
48
51
|
name: "ServiceQuotaExceededException",
|
|
49
52
|
$fault: "client",
|
|
50
53
|
...opts,
|
|
51
54
|
});
|
|
52
|
-
this.name = "ServiceQuotaExceededException";
|
|
53
|
-
this.$fault = "client";
|
|
54
|
-
this.$retryable = {};
|
|
55
55
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
export class ThrottlingException extends __BaseException {
|
|
59
|
+
name = "ThrottlingException";
|
|
60
|
+
$fault = "client";
|
|
61
|
+
$retryable = {};
|
|
59
62
|
constructor(opts) {
|
|
60
63
|
super({
|
|
61
64
|
name: "ThrottlingException",
|
|
62
65
|
$fault: "client",
|
|
63
66
|
...opts,
|
|
64
67
|
});
|
|
65
|
-
this.name = "ThrottlingException";
|
|
66
|
-
this.$fault = "client";
|
|
67
|
-
this.$retryable = {};
|
|
68
68
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
69
69
|
}
|
|
70
70
|
}
|
|
71
71
|
export class ValidationException extends __BaseException {
|
|
72
|
+
name = "ValidationException";
|
|
73
|
+
$fault = "client";
|
|
72
74
|
constructor(opts) {
|
|
73
75
|
super({
|
|
74
76
|
name: "ValidationException",
|
|
75
77
|
$fault: "client",
|
|
76
78
|
...opts,
|
|
77
79
|
});
|
|
78
|
-
this.name = "ValidationException";
|
|
79
|
-
this.$fault = "client";
|
|
80
80
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
81
81
|
}
|
|
82
82
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: CodeGuruProfilerClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: CodeGuruProfilerClientConfig) =>
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: CodeGuruProfilerClientConfig) =>
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: CodeGuruProfilerClientConfig) =>
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codeguruprofiler",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codeguruprofiler Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.726.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-codeguruprofiler",
|
|
@@ -20,59 +20,59 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-stream": "^
|
|
61
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-stream": "^4.0.0",
|
|
61
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
62
62
|
"@types/uuid": "^9.0.1",
|
|
63
63
|
"tslib": "^2.6.2",
|
|
64
64
|
"uuid": "^9.0.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@tsconfig/
|
|
68
|
-
"@types/node": "^
|
|
67
|
+
"@tsconfig/node18": "18.2.4",
|
|
68
|
+
"@types/node": "^18.19.69",
|
|
69
69
|
"concurrently": "7.0.0",
|
|
70
70
|
"downlevel-dts": "0.10.1",
|
|
71
71
|
"rimraf": "3.0.2",
|
|
72
|
-
"typescript": "~
|
|
72
|
+
"typescript": "~5.2.2"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
|
-
"node": ">=
|
|
75
|
+
"node": ">=18.0.0"
|
|
76
76
|
},
|
|
77
77
|
"typesVersions": {
|
|
78
78
|
"<4.0": {
|