@aws-sdk/client-xray 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.
Files changed (62) hide show
  1. package/dist-cjs/index.js +1651 -2146
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/XRayClient.js +2 -0
  4. package/dist-es/commands/BatchGetTracesCommand.js +3 -9
  5. package/dist-es/commands/CancelTraceRetrievalCommand.js +3 -9
  6. package/dist-es/commands/CreateGroupCommand.js +3 -9
  7. package/dist-es/commands/CreateSamplingRuleCommand.js +3 -9
  8. package/dist-es/commands/DeleteGroupCommand.js +3 -9
  9. package/dist-es/commands/DeleteResourcePolicyCommand.js +3 -9
  10. package/dist-es/commands/DeleteSamplingRuleCommand.js +3 -9
  11. package/dist-es/commands/GetEncryptionConfigCommand.js +3 -9
  12. package/dist-es/commands/GetGroupCommand.js +3 -9
  13. package/dist-es/commands/GetGroupsCommand.js +3 -9
  14. package/dist-es/commands/GetIndexingRulesCommand.js +3 -9
  15. package/dist-es/commands/GetInsightCommand.js +3 -9
  16. package/dist-es/commands/GetInsightEventsCommand.js +3 -9
  17. package/dist-es/commands/GetInsightImpactGraphCommand.js +3 -9
  18. package/dist-es/commands/GetInsightSummariesCommand.js +3 -9
  19. package/dist-es/commands/GetRetrievedTracesGraphCommand.js +3 -9
  20. package/dist-es/commands/GetSamplingRulesCommand.js +3 -9
  21. package/dist-es/commands/GetSamplingStatisticSummariesCommand.js +3 -9
  22. package/dist-es/commands/GetSamplingTargetsCommand.js +3 -9
  23. package/dist-es/commands/GetServiceGraphCommand.js +3 -9
  24. package/dist-es/commands/GetTimeSeriesServiceStatisticsCommand.js +3 -9
  25. package/dist-es/commands/GetTraceGraphCommand.js +3 -9
  26. package/dist-es/commands/GetTraceSegmentDestinationCommand.js +3 -9
  27. package/dist-es/commands/GetTraceSummariesCommand.js +3 -9
  28. package/dist-es/commands/ListResourcePoliciesCommand.js +3 -9
  29. package/dist-es/commands/ListRetrievedTracesCommand.js +3 -9
  30. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  31. package/dist-es/commands/PutEncryptionConfigCommand.js +3 -9
  32. package/dist-es/commands/PutResourcePolicyCommand.js +3 -9
  33. package/dist-es/commands/PutTelemetryRecordsCommand.js +3 -9
  34. package/dist-es/commands/PutTraceSegmentsCommand.js +3 -9
  35. package/dist-es/commands/StartTraceRetrievalCommand.js +3 -9
  36. package/dist-es/commands/TagResourceCommand.js +3 -9
  37. package/dist-es/commands/UntagResourceCommand.js +3 -9
  38. package/dist-es/commands/UpdateGroupCommand.js +3 -9
  39. package/dist-es/commands/UpdateIndexingRuleCommand.js +3 -9
  40. package/dist-es/commands/UpdateSamplingRuleCommand.js +3 -9
  41. package/dist-es/commands/UpdateTraceSegmentDestinationCommand.js +3 -9
  42. package/dist-es/models/models_0.js +0 -28
  43. package/dist-es/runtimeConfig.shared.js +2 -0
  44. package/dist-es/schemas/schemas_0.js +1554 -0
  45. package/dist-types/XRayClient.d.ts +10 -1
  46. package/dist-types/models/models_0.d.ts +12 -3
  47. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  48. package/dist-types/runtimeConfig.d.ts +1 -0
  49. package/dist-types/runtimeConfig.native.d.ts +1 -0
  50. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  51. package/dist-types/schemas/schemas_0.d.ts +250 -0
  52. package/dist-types/ts3.4/XRayClient.d.ts +4 -0
  53. package/dist-types/ts3.4/models/models_0.d.ts +0 -3
  54. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  55. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  56. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  57. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  58. package/dist-types/ts3.4/schemas/schemas_0.d.ts +256 -0
  59. package/package.json +33 -33
  60. package/dist-es/protocols/Aws_restJson1.js +0 -1823
  61. package/dist-types/protocols/Aws_restJson1.d.ts +0 -344
  62. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -461
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,8 +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
18
 
20
19
  const resolveClientEndpointParameters = (options) => {
21
20
  return Object.assign(options, {
@@ -91,6 +90,7 @@ class XRayClient extends smithyClient.Client {
91
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
92
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
93
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
94
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
95
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
96
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -110,26 +110,14 @@ class XRayClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- class XRayServiceException extends smithyClient.ServiceException {
113
+ let XRayServiceException$1 = class XRayServiceException extends smithyClient.ServiceException {
114
114
  constructor(options) {
115
115
  super(options);
116
116
  Object.setPrototypeOf(this, XRayServiceException.prototype);
117
117
  }
118
- }
118
+ };
119
119
 
120
- exports.AnnotationValue = void 0;
121
- (function (AnnotationValue) {
122
- AnnotationValue.visit = (value, visitor) => {
123
- if (value.NumberValue !== undefined)
124
- return visitor.NumberValue(value.NumberValue);
125
- if (value.BooleanValue !== undefined)
126
- return visitor.BooleanValue(value.BooleanValue);
127
- if (value.StringValue !== undefined)
128
- return visitor.StringValue(value.StringValue);
129
- return visitor._(value.$unknown[0], value.$unknown[1]);
130
- };
131
- })(exports.AnnotationValue || (exports.AnnotationValue = {}));
132
- class InvalidRequestException extends XRayServiceException {
120
+ let InvalidRequestException$1 = class InvalidRequestException extends XRayServiceException$1 {
133
121
  name = "InvalidRequestException";
134
122
  $fault = "client";
135
123
  Message;
@@ -142,8 +130,8 @@ class InvalidRequestException extends XRayServiceException {
142
130
  Object.setPrototypeOf(this, InvalidRequestException.prototype);
143
131
  this.Message = opts.Message;
144
132
  }
145
- }
146
- class ThrottledException extends XRayServiceException {
133
+ };
134
+ let ThrottledException$1 = class ThrottledException extends XRayServiceException$1 {
147
135
  name = "ThrottledException";
148
136
  $fault = "client";
149
137
  Message;
@@ -156,8 +144,8 @@ class ThrottledException extends XRayServiceException {
156
144
  Object.setPrototypeOf(this, ThrottledException.prototype);
157
145
  this.Message = opts.Message;
158
146
  }
159
- }
160
- class ResourceNotFoundException extends XRayServiceException {
147
+ };
148
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends XRayServiceException$1 {
161
149
  name = "ResourceNotFoundException";
162
150
  $fault = "client";
163
151
  Message;
@@ -172,8 +160,8 @@ class ResourceNotFoundException extends XRayServiceException {
172
160
  this.Message = opts.Message;
173
161
  this.ResourceName = opts.ResourceName;
174
162
  }
175
- }
176
- class RuleLimitExceededException extends XRayServiceException {
163
+ };
164
+ let RuleLimitExceededException$1 = class RuleLimitExceededException extends XRayServiceException$1 {
177
165
  name = "RuleLimitExceededException";
178
166
  $fault = "client";
179
167
  Message;
@@ -186,8 +174,8 @@ class RuleLimitExceededException extends XRayServiceException {
186
174
  Object.setPrototypeOf(this, RuleLimitExceededException.prototype);
187
175
  this.Message = opts.Message;
188
176
  }
189
- }
190
- class InvalidPolicyRevisionIdException extends XRayServiceException {
177
+ };
178
+ let InvalidPolicyRevisionIdException$1 = class InvalidPolicyRevisionIdException extends XRayServiceException$1 {
191
179
  name = "InvalidPolicyRevisionIdException";
192
180
  $fault = "client";
193
181
  Message;
@@ -200,7 +188,7 @@ class InvalidPolicyRevisionIdException extends XRayServiceException {
200
188
  Object.setPrototypeOf(this, InvalidPolicyRevisionIdException.prototype);
201
189
  this.Message = opts.Message;
202
190
  }
203
- }
191
+ };
204
192
  const EncryptionStatus = {
205
193
  ACTIVE: "ACTIVE",
206
194
  UPDATING: "UPDATING",
@@ -209,14 +197,6 @@ const EncryptionType = {
209
197
  KMS: "KMS",
210
198
  NONE: "NONE",
211
199
  };
212
- exports.IndexingRuleValue = void 0;
213
- (function (IndexingRuleValue) {
214
- IndexingRuleValue.visit = (value, visitor) => {
215
- if (value.Probabilistic !== undefined)
216
- return visitor.Probabilistic(value.Probabilistic);
217
- return visitor._(value.$unknown[0], value.$unknown[1]);
218
- };
219
- })(exports.IndexingRuleValue || (exports.IndexingRuleValue = {}));
220
200
  const InsightCategory = {
221
201
  FAULT: "FAULT",
222
202
  };
@@ -253,7 +233,7 @@ const TraceFormatType = {
253
233
  OTEL: "OTEL",
254
234
  XRAY: "XRAY",
255
235
  };
256
- class LockoutPreventionException extends XRayServiceException {
236
+ let LockoutPreventionException$1 = class LockoutPreventionException extends XRayServiceException$1 {
257
237
  name = "LockoutPreventionException";
258
238
  $fault = "client";
259
239
  Message;
@@ -266,8 +246,8 @@ class LockoutPreventionException extends XRayServiceException {
266
246
  Object.setPrototypeOf(this, LockoutPreventionException.prototype);
267
247
  this.Message = opts.Message;
268
248
  }
269
- }
270
- class MalformedPolicyDocumentException extends XRayServiceException {
249
+ };
250
+ let MalformedPolicyDocumentException$1 = class MalformedPolicyDocumentException extends XRayServiceException$1 {
271
251
  name = "MalformedPolicyDocumentException";
272
252
  $fault = "client";
273
253
  Message;
@@ -280,8 +260,8 @@ class MalformedPolicyDocumentException extends XRayServiceException {
280
260
  Object.setPrototypeOf(this, MalformedPolicyDocumentException.prototype);
281
261
  this.Message = opts.Message;
282
262
  }
283
- }
284
- class PolicyCountLimitExceededException extends XRayServiceException {
263
+ };
264
+ let PolicyCountLimitExceededException$1 = class PolicyCountLimitExceededException extends XRayServiceException$1 {
285
265
  name = "PolicyCountLimitExceededException";
286
266
  $fault = "client";
287
267
  Message;
@@ -294,8 +274,8 @@ class PolicyCountLimitExceededException extends XRayServiceException {
294
274
  Object.setPrototypeOf(this, PolicyCountLimitExceededException.prototype);
295
275
  this.Message = opts.Message;
296
276
  }
297
- }
298
- class PolicySizeLimitExceededException extends XRayServiceException {
277
+ };
278
+ let PolicySizeLimitExceededException$1 = class PolicySizeLimitExceededException extends XRayServiceException$1 {
299
279
  name = "PolicySizeLimitExceededException";
300
280
  $fault = "client";
301
281
  Message;
@@ -308,8 +288,8 @@ class PolicySizeLimitExceededException extends XRayServiceException {
308
288
  Object.setPrototypeOf(this, PolicySizeLimitExceededException.prototype);
309
289
  this.Message = opts.Message;
310
290
  }
311
- }
312
- class TooManyTagsException extends XRayServiceException {
291
+ };
292
+ let TooManyTagsException$1 = class TooManyTagsException extends XRayServiceException$1 {
313
293
  name = "TooManyTagsException";
314
294
  $fault = "client";
315
295
  Message;
@@ -324,1848 +304,1558 @@ class TooManyTagsException extends XRayServiceException {
324
304
  this.Message = opts.Message;
325
305
  this.ResourceName = opts.ResourceName;
326
306
  }
327
- }
328
- exports.IndexingRuleValueUpdate = void 0;
329
- (function (IndexingRuleValueUpdate) {
330
- IndexingRuleValueUpdate.visit = (value, visitor) => {
331
- if (value.Probabilistic !== undefined)
332
- return visitor.Probabilistic(value.Probabilistic);
333
- return visitor._(value.$unknown[0], value.$unknown[1]);
334
- };
335
- })(exports.IndexingRuleValueUpdate || (exports.IndexingRuleValueUpdate = {}));
336
-
337
- const se_BatchGetTracesCommand = async (input, context) => {
338
- const b = core.requestBuilder(input, context);
339
- const headers = {
340
- "content-type": "application/json",
341
- };
342
- b.bp("/Traces");
343
- let body;
344
- body = JSON.stringify(smithyClient.take(input, {
345
- NextToken: [],
346
- TraceIds: (_) => smithyClient._json(_),
347
- }));
348
- b.m("POST").h(headers).b(body);
349
- return b.build();
350
- };
351
- const se_CancelTraceRetrievalCommand = async (input, context) => {
352
- const b = core.requestBuilder(input, context);
353
- const headers = {
354
- "content-type": "application/json",
355
- };
356
- b.bp("/CancelTraceRetrieval");
357
- let body;
358
- body = JSON.stringify(smithyClient.take(input, {
359
- RetrievalToken: [],
360
- }));
361
- b.m("POST").h(headers).b(body);
362
- return b.build();
363
- };
364
- const se_CreateGroupCommand = async (input, context) => {
365
- const b = core.requestBuilder(input, context);
366
- const headers = {
367
- "content-type": "application/json",
368
- };
369
- b.bp("/CreateGroup");
370
- let body;
371
- body = JSON.stringify(smithyClient.take(input, {
372
- FilterExpression: [],
373
- GroupName: [],
374
- InsightsConfiguration: (_) => smithyClient._json(_),
375
- Tags: (_) => smithyClient._json(_),
376
- }));
377
- b.m("POST").h(headers).b(body);
378
- return b.build();
379
- };
380
- const se_CreateSamplingRuleCommand = async (input, context) => {
381
- const b = core.requestBuilder(input, context);
382
- const headers = {
383
- "content-type": "application/json",
384
- };
385
- b.bp("/CreateSamplingRule");
386
- let body;
387
- body = JSON.stringify(smithyClient.take(input, {
388
- SamplingRule: (_) => se_SamplingRule(_),
389
- Tags: (_) => smithyClient._json(_),
390
- }));
391
- b.m("POST").h(headers).b(body);
392
- return b.build();
393
- };
394
- const se_DeleteGroupCommand = async (input, context) => {
395
- const b = core.requestBuilder(input, context);
396
- const headers = {
397
- "content-type": "application/json",
398
- };
399
- b.bp("/DeleteGroup");
400
- let body;
401
- body = JSON.stringify(smithyClient.take(input, {
402
- GroupARN: [],
403
- GroupName: [],
404
- }));
405
- b.m("POST").h(headers).b(body);
406
- return b.build();
407
- };
408
- const se_DeleteResourcePolicyCommand = async (input, context) => {
409
- const b = core.requestBuilder(input, context);
410
- const headers = {
411
- "content-type": "application/json",
412
- };
413
- b.bp("/DeleteResourcePolicy");
414
- let body;
415
- body = JSON.stringify(smithyClient.take(input, {
416
- PolicyName: [],
417
- PolicyRevisionId: [],
418
- }));
419
- b.m("POST").h(headers).b(body);
420
- return b.build();
421
- };
422
- const se_DeleteSamplingRuleCommand = async (input, context) => {
423
- const b = core.requestBuilder(input, context);
424
- const headers = {
425
- "content-type": "application/json",
426
- };
427
- b.bp("/DeleteSamplingRule");
428
- let body;
429
- body = JSON.stringify(smithyClient.take(input, {
430
- RuleARN: [],
431
- RuleName: [],
432
- }));
433
- b.m("POST").h(headers).b(body);
434
- return b.build();
435
- };
436
- const se_GetEncryptionConfigCommand = async (input, context) => {
437
- const b = core.requestBuilder(input, context);
438
- const headers = {};
439
- b.bp("/EncryptionConfig");
440
- let body;
441
- b.m("POST").h(headers).b(body);
442
- return b.build();
443
- };
444
- const se_GetGroupCommand = async (input, context) => {
445
- const b = core.requestBuilder(input, context);
446
- const headers = {
447
- "content-type": "application/json",
448
- };
449
- b.bp("/GetGroup");
450
- let body;
451
- body = JSON.stringify(smithyClient.take(input, {
452
- GroupARN: [],
453
- GroupName: [],
454
- }));
455
- b.m("POST").h(headers).b(body);
456
- return b.build();
457
- };
458
- const se_GetGroupsCommand = async (input, context) => {
459
- const b = core.requestBuilder(input, context);
460
- const headers = {
461
- "content-type": "application/json",
462
- };
463
- b.bp("/Groups");
464
- let body;
465
- body = JSON.stringify(smithyClient.take(input, {
466
- NextToken: [],
467
- }));
468
- b.m("POST").h(headers).b(body);
469
- return b.build();
470
- };
471
- const se_GetIndexingRulesCommand = async (input, context) => {
472
- const b = core.requestBuilder(input, context);
473
- const headers = {
474
- "content-type": "application/json",
475
- };
476
- b.bp("/GetIndexingRules");
477
- let body;
478
- body = JSON.stringify(smithyClient.take(input, {
479
- NextToken: [],
480
- }));
481
- b.m("POST").h(headers).b(body);
482
- return b.build();
483
- };
484
- const se_GetInsightCommand = async (input, context) => {
485
- const b = core.requestBuilder(input, context);
486
- const headers = {
487
- "content-type": "application/json",
488
- };
489
- b.bp("/Insight");
490
- let body;
491
- body = JSON.stringify(smithyClient.take(input, {
492
- InsightId: [],
493
- }));
494
- b.m("POST").h(headers).b(body);
495
- return b.build();
496
- };
497
- const se_GetInsightEventsCommand = async (input, context) => {
498
- const b = core.requestBuilder(input, context);
499
- const headers = {
500
- "content-type": "application/json",
501
- };
502
- b.bp("/InsightEvents");
503
- let body;
504
- body = JSON.stringify(smithyClient.take(input, {
505
- InsightId: [],
506
- MaxResults: [],
507
- NextToken: [],
508
- }));
509
- b.m("POST").h(headers).b(body);
510
- return b.build();
511
- };
512
- const se_GetInsightImpactGraphCommand = async (input, context) => {
513
- const b = core.requestBuilder(input, context);
514
- const headers = {
515
- "content-type": "application/json",
516
- };
517
- b.bp("/InsightImpactGraph");
518
- let body;
519
- body = JSON.stringify(smithyClient.take(input, {
520
- EndTime: (_) => _.getTime() / 1_000,
521
- InsightId: [],
522
- NextToken: [],
523
- StartTime: (_) => _.getTime() / 1_000,
524
- }));
525
- b.m("POST").h(headers).b(body);
526
- return b.build();
527
- };
528
- const se_GetInsightSummariesCommand = async (input, context) => {
529
- const b = core.requestBuilder(input, context);
530
- const headers = {
531
- "content-type": "application/json",
532
- };
533
- b.bp("/InsightSummaries");
534
- let body;
535
- body = JSON.stringify(smithyClient.take(input, {
536
- EndTime: (_) => _.getTime() / 1_000,
537
- GroupARN: [],
538
- GroupName: [],
539
- MaxResults: [],
540
- NextToken: [],
541
- StartTime: (_) => _.getTime() / 1_000,
542
- States: (_) => smithyClient._json(_),
543
- }));
544
- b.m("POST").h(headers).b(body);
545
- return b.build();
546
- };
547
- const se_GetRetrievedTracesGraphCommand = async (input, context) => {
548
- const b = core.requestBuilder(input, context);
549
- const headers = {
550
- "content-type": "application/json",
551
- };
552
- b.bp("/GetRetrievedTracesGraph");
553
- let body;
554
- body = JSON.stringify(smithyClient.take(input, {
555
- NextToken: [],
556
- RetrievalToken: [],
557
- }));
558
- b.m("POST").h(headers).b(body);
559
- return b.build();
560
- };
561
- const se_GetSamplingRulesCommand = async (input, context) => {
562
- const b = core.requestBuilder(input, context);
563
- const headers = {
564
- "content-type": "application/json",
565
- };
566
- b.bp("/GetSamplingRules");
567
- let body;
568
- body = JSON.stringify(smithyClient.take(input, {
569
- NextToken: [],
570
- }));
571
- b.m("POST").h(headers).b(body);
572
- return b.build();
573
- };
574
- const se_GetSamplingStatisticSummariesCommand = async (input, context) => {
575
- const b = core.requestBuilder(input, context);
576
- const headers = {
577
- "content-type": "application/json",
578
- };
579
- b.bp("/SamplingStatisticSummaries");
580
- let body;
581
- body = JSON.stringify(smithyClient.take(input, {
582
- NextToken: [],
583
- }));
584
- b.m("POST").h(headers).b(body);
585
- return b.build();
586
- };
587
- const se_GetSamplingTargetsCommand = async (input, context) => {
588
- const b = core.requestBuilder(input, context);
589
- const headers = {
590
- "content-type": "application/json",
591
- };
592
- b.bp("/SamplingTargets");
593
- let body;
594
- body = JSON.stringify(smithyClient.take(input, {
595
- SamplingBoostStatisticsDocuments: (_) => se_SamplingBoostStatisticsDocumentList(_),
596
- SamplingStatisticsDocuments: (_) => se_SamplingStatisticsDocumentList(_),
597
- }));
598
- b.m("POST").h(headers).b(body);
599
- return b.build();
600
- };
601
- const se_GetServiceGraphCommand = async (input, context) => {
602
- const b = core.requestBuilder(input, context);
603
- const headers = {
604
- "content-type": "application/json",
605
- };
606
- b.bp("/ServiceGraph");
607
- let body;
608
- body = JSON.stringify(smithyClient.take(input, {
609
- EndTime: (_) => _.getTime() / 1_000,
610
- GroupARN: [],
611
- GroupName: [],
612
- NextToken: [],
613
- StartTime: (_) => _.getTime() / 1_000,
614
- }));
615
- b.m("POST").h(headers).b(body);
616
- return b.build();
617
- };
618
- const se_GetTimeSeriesServiceStatisticsCommand = async (input, context) => {
619
- const b = core.requestBuilder(input, context);
620
- const headers = {
621
- "content-type": "application/json",
622
- };
623
- b.bp("/TimeSeriesServiceStatistics");
624
- let body;
625
- body = JSON.stringify(smithyClient.take(input, {
626
- EndTime: (_) => _.getTime() / 1_000,
627
- EntitySelectorExpression: [],
628
- ForecastStatistics: [],
629
- GroupARN: [],
630
- GroupName: [],
631
- NextToken: [],
632
- Period: [],
633
- StartTime: (_) => _.getTime() / 1_000,
634
- }));
635
- b.m("POST").h(headers).b(body);
636
- return b.build();
637
- };
638
- const se_GetTraceGraphCommand = async (input, context) => {
639
- const b = core.requestBuilder(input, context);
640
- const headers = {
641
- "content-type": "application/json",
642
- };
643
- b.bp("/TraceGraph");
644
- let body;
645
- body = JSON.stringify(smithyClient.take(input, {
646
- NextToken: [],
647
- TraceIds: (_) => smithyClient._json(_),
648
- }));
649
- b.m("POST").h(headers).b(body);
650
- return b.build();
651
- };
652
- const se_GetTraceSegmentDestinationCommand = async (input, context) => {
653
- const b = core.requestBuilder(input, context);
654
- const headers = {};
655
- b.bp("/GetTraceSegmentDestination");
656
- let body;
657
- b.m("POST").h(headers).b(body);
658
- return b.build();
659
- };
660
- const se_GetTraceSummariesCommand = async (input, context) => {
661
- const b = core.requestBuilder(input, context);
662
- const headers = {
663
- "content-type": "application/json",
664
- };
665
- b.bp("/TraceSummaries");
666
- let body;
667
- body = JSON.stringify(smithyClient.take(input, {
668
- EndTime: (_) => _.getTime() / 1_000,
669
- FilterExpression: [],
670
- NextToken: [],
671
- Sampling: [],
672
- SamplingStrategy: (_) => se_SamplingStrategy(_),
673
- StartTime: (_) => _.getTime() / 1_000,
674
- TimeRangeType: [],
675
- }));
676
- b.m("POST").h(headers).b(body);
677
- return b.build();
678
- };
679
- const se_ListResourcePoliciesCommand = async (input, context) => {
680
- const b = core.requestBuilder(input, context);
681
- const headers = {
682
- "content-type": "application/json",
683
- };
684
- b.bp("/ListResourcePolicies");
685
- let body;
686
- body = JSON.stringify(smithyClient.take(input, {
687
- NextToken: [],
688
- }));
689
- b.m("POST").h(headers).b(body);
690
- return b.build();
691
- };
692
- const se_ListRetrievedTracesCommand = async (input, context) => {
693
- const b = core.requestBuilder(input, context);
694
- const headers = {
695
- "content-type": "application/json",
696
- };
697
- b.bp("/ListRetrievedTraces");
698
- let body;
699
- body = JSON.stringify(smithyClient.take(input, {
700
- NextToken: [],
701
- RetrievalToken: [],
702
- TraceFormat: [],
703
- }));
704
- b.m("POST").h(headers).b(body);
705
- return b.build();
706
- };
707
- const se_ListTagsForResourceCommand = async (input, context) => {
708
- const b = core.requestBuilder(input, context);
709
- const headers = {
710
- "content-type": "application/json",
711
- };
712
- b.bp("/ListTagsForResource");
713
- let body;
714
- body = JSON.stringify(smithyClient.take(input, {
715
- NextToken: [],
716
- ResourceARN: [],
717
- }));
718
- b.m("POST").h(headers).b(body);
719
- return b.build();
720
- };
721
- const se_PutEncryptionConfigCommand = async (input, context) => {
722
- const b = core.requestBuilder(input, context);
723
- const headers = {
724
- "content-type": "application/json",
725
- };
726
- b.bp("/PutEncryptionConfig");
727
- let body;
728
- body = JSON.stringify(smithyClient.take(input, {
729
- KeyId: [],
730
- Type: [],
731
- }));
732
- b.m("POST").h(headers).b(body);
733
- return b.build();
734
- };
735
- const se_PutResourcePolicyCommand = async (input, context) => {
736
- const b = core.requestBuilder(input, context);
737
- const headers = {
738
- "content-type": "application/json",
739
- };
740
- b.bp("/PutResourcePolicy");
741
- let body;
742
- body = JSON.stringify(smithyClient.take(input, {
743
- BypassPolicyLockoutCheck: [],
744
- PolicyDocument: [],
745
- PolicyName: [],
746
- PolicyRevisionId: [],
747
- }));
748
- b.m("POST").h(headers).b(body);
749
- return b.build();
750
- };
751
- const se_PutTelemetryRecordsCommand = async (input, context) => {
752
- const b = core.requestBuilder(input, context);
753
- const headers = {
754
- "content-type": "application/json",
755
- };
756
- b.bp("/TelemetryRecords");
757
- let body;
758
- body = JSON.stringify(smithyClient.take(input, {
759
- EC2InstanceId: [],
760
- Hostname: [],
761
- ResourceARN: [],
762
- TelemetryRecords: (_) => se_TelemetryRecordList(_),
763
- }));
764
- b.m("POST").h(headers).b(body);
765
- return b.build();
766
- };
767
- const se_PutTraceSegmentsCommand = async (input, context) => {
768
- const b = core.requestBuilder(input, context);
769
- const headers = {
770
- "content-type": "application/json",
771
- };
772
- b.bp("/TraceSegments");
773
- let body;
774
- body = JSON.stringify(smithyClient.take(input, {
775
- TraceSegmentDocuments: (_) => smithyClient._json(_),
776
- }));
777
- b.m("POST").h(headers).b(body);
778
- return b.build();
779
- };
780
- const se_StartTraceRetrievalCommand = async (input, context) => {
781
- const b = core.requestBuilder(input, context);
782
- const headers = {
783
- "content-type": "application/json",
784
- };
785
- b.bp("/StartTraceRetrieval");
786
- let body;
787
- body = JSON.stringify(smithyClient.take(input, {
788
- EndTime: (_) => _.getTime() / 1_000,
789
- StartTime: (_) => _.getTime() / 1_000,
790
- TraceIds: (_) => smithyClient._json(_),
791
- }));
792
- b.m("POST").h(headers).b(body);
793
- return b.build();
794
- };
795
- const se_TagResourceCommand = async (input, context) => {
796
- const b = core.requestBuilder(input, context);
797
- const headers = {
798
- "content-type": "application/json",
799
- };
800
- b.bp("/TagResource");
801
- let body;
802
- body = JSON.stringify(smithyClient.take(input, {
803
- ResourceARN: [],
804
- Tags: (_) => smithyClient._json(_),
805
- }));
806
- b.m("POST").h(headers).b(body);
807
- return b.build();
808
- };
809
- const se_UntagResourceCommand = async (input, context) => {
810
- const b = core.requestBuilder(input, context);
811
- const headers = {
812
- "content-type": "application/json",
813
- };
814
- b.bp("/UntagResource");
815
- let body;
816
- body = JSON.stringify(smithyClient.take(input, {
817
- ResourceARN: [],
818
- TagKeys: (_) => smithyClient._json(_),
819
- }));
820
- b.m("POST").h(headers).b(body);
821
- return b.build();
822
- };
823
- const se_UpdateGroupCommand = async (input, context) => {
824
- const b = core.requestBuilder(input, context);
825
- const headers = {
826
- "content-type": "application/json",
827
- };
828
- b.bp("/UpdateGroup");
829
- let body;
830
- body = JSON.stringify(smithyClient.take(input, {
831
- FilterExpression: [],
832
- GroupARN: [],
833
- GroupName: [],
834
- InsightsConfiguration: (_) => smithyClient._json(_),
835
- }));
836
- b.m("POST").h(headers).b(body);
837
- return b.build();
838
- };
839
- const se_UpdateIndexingRuleCommand = async (input, context) => {
840
- const b = core.requestBuilder(input, context);
841
- const headers = {
842
- "content-type": "application/json",
843
- };
844
- b.bp("/UpdateIndexingRule");
845
- let body;
846
- body = JSON.stringify(smithyClient.take(input, {
847
- Name: [],
848
- Rule: (_) => se_IndexingRuleValueUpdate(_),
849
- }));
850
- b.m("POST").h(headers).b(body);
851
- return b.build();
852
- };
853
- const se_UpdateSamplingRuleCommand = async (input, context) => {
854
- const b = core.requestBuilder(input, context);
855
- const headers = {
856
- "content-type": "application/json",
857
- };
858
- b.bp("/UpdateSamplingRule");
859
- let body;
860
- body = JSON.stringify(smithyClient.take(input, {
861
- SamplingRuleUpdate: (_) => se_SamplingRuleUpdate(_),
862
- }));
863
- b.m("POST").h(headers).b(body);
864
- return b.build();
865
- };
866
- const se_UpdateTraceSegmentDestinationCommand = async (input, context) => {
867
- const b = core.requestBuilder(input, context);
868
- const headers = {
869
- "content-type": "application/json",
870
- };
871
- b.bp("/UpdateTraceSegmentDestination");
872
- let body;
873
- body = JSON.stringify(smithyClient.take(input, {
874
- Destination: [],
875
- }));
876
- b.m("POST").h(headers).b(body);
877
- return b.build();
878
- };
879
- const de_BatchGetTracesCommand = async (output, context) => {
880
- if (output.statusCode !== 200 && output.statusCode >= 300) {
881
- return de_CommandError(output, context);
882
- }
883
- const contents = smithyClient.map({
884
- $metadata: deserializeMetadata(output),
885
- });
886
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
887
- const doc = smithyClient.take(data, {
888
- NextToken: smithyClient.expectString,
889
- Traces: (_) => de_TraceList(_),
890
- UnprocessedTraceIds: smithyClient._json,
891
- });
892
- Object.assign(contents, doc);
893
- return contents;
894
- };
895
- const de_CancelTraceRetrievalCommand = async (output, context) => {
896
- if (output.statusCode !== 200 && output.statusCode >= 300) {
897
- return de_CommandError(output, context);
898
- }
899
- const contents = smithyClient.map({
900
- $metadata: deserializeMetadata(output),
901
- });
902
- await smithyClient.collectBody(output.body, context);
903
- return contents;
904
- };
905
- const de_CreateGroupCommand = async (output, context) => {
906
- if (output.statusCode !== 200 && output.statusCode >= 300) {
907
- return de_CommandError(output, context);
908
- }
909
- const contents = smithyClient.map({
910
- $metadata: deserializeMetadata(output),
911
- });
912
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
913
- const doc = smithyClient.take(data, {
914
- Group: smithyClient._json,
915
- });
916
- Object.assign(contents, doc);
917
- return contents;
918
- };
919
- const de_CreateSamplingRuleCommand = async (output, context) => {
920
- if (output.statusCode !== 200 && output.statusCode >= 300) {
921
- return de_CommandError(output, context);
922
- }
923
- const contents = smithyClient.map({
924
- $metadata: deserializeMetadata(output),
925
- });
926
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
927
- const doc = smithyClient.take(data, {
928
- SamplingRuleRecord: (_) => de_SamplingRuleRecord(_),
929
- });
930
- Object.assign(contents, doc);
931
- return contents;
932
- };
933
- const de_DeleteGroupCommand = async (output, context) => {
934
- if (output.statusCode !== 200 && output.statusCode >= 300) {
935
- return de_CommandError(output, context);
936
- }
937
- const contents = smithyClient.map({
938
- $metadata: deserializeMetadata(output),
939
- });
940
- await smithyClient.collectBody(output.body, context);
941
- return contents;
942
- };
943
- const de_DeleteResourcePolicyCommand = async (output, context) => {
944
- if (output.statusCode !== 200 && output.statusCode >= 300) {
945
- return de_CommandError(output, context);
946
- }
947
- const contents = smithyClient.map({
948
- $metadata: deserializeMetadata(output),
949
- });
950
- await smithyClient.collectBody(output.body, context);
951
- return contents;
952
- };
953
- const de_DeleteSamplingRuleCommand = async (output, context) => {
954
- if (output.statusCode !== 200 && output.statusCode >= 300) {
955
- return de_CommandError(output, context);
956
- }
957
- const contents = smithyClient.map({
958
- $metadata: deserializeMetadata(output),
959
- });
960
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
961
- const doc = smithyClient.take(data, {
962
- SamplingRuleRecord: (_) => de_SamplingRuleRecord(_),
963
- });
964
- Object.assign(contents, doc);
965
- return contents;
966
- };
967
- const de_GetEncryptionConfigCommand = async (output, context) => {
968
- if (output.statusCode !== 200 && output.statusCode >= 300) {
969
- return de_CommandError(output, context);
970
- }
971
- const contents = smithyClient.map({
972
- $metadata: deserializeMetadata(output),
973
- });
974
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
975
- const doc = smithyClient.take(data, {
976
- EncryptionConfig: smithyClient._json,
977
- });
978
- Object.assign(contents, doc);
979
- return contents;
980
- };
981
- const de_GetGroupCommand = async (output, context) => {
982
- if (output.statusCode !== 200 && output.statusCode >= 300) {
983
- return de_CommandError(output, context);
984
- }
985
- const contents = smithyClient.map({
986
- $metadata: deserializeMetadata(output),
987
- });
988
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
989
- const doc = smithyClient.take(data, {
990
- Group: smithyClient._json,
991
- });
992
- Object.assign(contents, doc);
993
- return contents;
994
- };
995
- const de_GetGroupsCommand = async (output, context) => {
996
- if (output.statusCode !== 200 && output.statusCode >= 300) {
997
- return de_CommandError(output, context);
998
- }
999
- const contents = smithyClient.map({
1000
- $metadata: deserializeMetadata(output),
1001
- });
1002
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1003
- const doc = smithyClient.take(data, {
1004
- Groups: smithyClient._json,
1005
- NextToken: smithyClient.expectString,
1006
- });
1007
- Object.assign(contents, doc);
1008
- return contents;
1009
- };
1010
- const de_GetIndexingRulesCommand = async (output, context) => {
1011
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1012
- return de_CommandError(output, context);
1013
- }
1014
- const contents = smithyClient.map({
1015
- $metadata: deserializeMetadata(output),
1016
- });
1017
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1018
- const doc = smithyClient.take(data, {
1019
- IndexingRules: (_) => de_IndexingRuleList(_),
1020
- NextToken: smithyClient.expectString,
1021
- });
1022
- Object.assign(contents, doc);
1023
- return contents;
1024
- };
1025
- const de_GetInsightCommand = async (output, context) => {
1026
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1027
- return de_CommandError(output, context);
1028
- }
1029
- const contents = smithyClient.map({
1030
- $metadata: deserializeMetadata(output),
1031
- });
1032
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1033
- const doc = smithyClient.take(data, {
1034
- Insight: (_) => de_Insight(_),
1035
- });
1036
- Object.assign(contents, doc);
1037
- return contents;
1038
- };
1039
- const de_GetInsightEventsCommand = async (output, context) => {
1040
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1041
- return de_CommandError(output, context);
1042
- }
1043
- const contents = smithyClient.map({
1044
- $metadata: deserializeMetadata(output),
1045
- });
1046
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1047
- const doc = smithyClient.take(data, {
1048
- InsightEvents: (_) => de_InsightEventList(_),
1049
- NextToken: smithyClient.expectString,
1050
- });
1051
- Object.assign(contents, doc);
1052
- return contents;
1053
- };
1054
- const de_GetInsightImpactGraphCommand = async (output, context) => {
1055
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1056
- return de_CommandError(output, context);
1057
- }
1058
- const contents = smithyClient.map({
1059
- $metadata: deserializeMetadata(output),
1060
- });
1061
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1062
- const doc = smithyClient.take(data, {
1063
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1064
- InsightId: smithyClient.expectString,
1065
- NextToken: smithyClient.expectString,
1066
- ServiceGraphEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1067
- ServiceGraphStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1068
- Services: smithyClient._json,
1069
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1070
- });
1071
- Object.assign(contents, doc);
1072
- return contents;
1073
- };
1074
- const de_GetInsightSummariesCommand = async (output, context) => {
1075
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1076
- return de_CommandError(output, context);
1077
- }
1078
- const contents = smithyClient.map({
1079
- $metadata: deserializeMetadata(output),
1080
- });
1081
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1082
- const doc = smithyClient.take(data, {
1083
- InsightSummaries: (_) => de_InsightSummaryList(_),
1084
- NextToken: smithyClient.expectString,
1085
- });
1086
- Object.assign(contents, doc);
1087
- return contents;
1088
- };
1089
- const de_GetRetrievedTracesGraphCommand = async (output, context) => {
1090
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1091
- return de_CommandError(output, context);
1092
- }
1093
- const contents = smithyClient.map({
1094
- $metadata: deserializeMetadata(output),
1095
- });
1096
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1097
- const doc = smithyClient.take(data, {
1098
- NextToken: smithyClient.expectString,
1099
- RetrievalStatus: smithyClient.expectString,
1100
- Services: (_) => de_RetrievedServicesList(_),
1101
- });
1102
- Object.assign(contents, doc);
1103
- return contents;
1104
- };
1105
- const de_GetSamplingRulesCommand = async (output, context) => {
1106
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1107
- return de_CommandError(output, context);
1108
- }
1109
- const contents = smithyClient.map({
1110
- $metadata: deserializeMetadata(output),
1111
- });
1112
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1113
- const doc = smithyClient.take(data, {
1114
- NextToken: smithyClient.expectString,
1115
- SamplingRuleRecords: (_) => de_SamplingRuleRecordList(_),
1116
- });
1117
- Object.assign(contents, doc);
1118
- return contents;
1119
- };
1120
- const de_GetSamplingStatisticSummariesCommand = async (output, context) => {
1121
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1122
- return de_CommandError(output, context);
1123
- }
1124
- const contents = smithyClient.map({
1125
- $metadata: deserializeMetadata(output),
1126
- });
1127
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1128
- const doc = smithyClient.take(data, {
1129
- NextToken: smithyClient.expectString,
1130
- SamplingStatisticSummaries: (_) => de_SamplingStatisticSummaryList(_),
1131
- });
1132
- Object.assign(contents, doc);
1133
- return contents;
1134
- };
1135
- const de_GetSamplingTargetsCommand = async (output, context) => {
1136
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1137
- return de_CommandError(output, context);
1138
- }
1139
- const contents = smithyClient.map({
1140
- $metadata: deserializeMetadata(output),
1141
- });
1142
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1143
- const doc = smithyClient.take(data, {
1144
- LastRuleModification: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1145
- SamplingTargetDocuments: (_) => de_SamplingTargetDocumentList(_),
1146
- UnprocessedBoostStatistics: smithyClient._json,
1147
- UnprocessedStatistics: smithyClient._json,
1148
- });
1149
- Object.assign(contents, doc);
1150
- return contents;
1151
- };
1152
- const de_GetServiceGraphCommand = async (output, context) => {
1153
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1154
- return de_CommandError(output, context);
1155
- }
1156
- const contents = smithyClient.map({
1157
- $metadata: deserializeMetadata(output),
1158
- });
1159
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1160
- const doc = smithyClient.take(data, {
1161
- ContainsOldGroupVersions: smithyClient.expectBoolean,
1162
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1163
- NextToken: smithyClient.expectString,
1164
- Services: (_) => de_ServiceList(_),
1165
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1166
- });
1167
- Object.assign(contents, doc);
1168
- return contents;
1169
- };
1170
- const de_GetTimeSeriesServiceStatisticsCommand = async (output, context) => {
1171
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1172
- return de_CommandError(output, context);
1173
- }
1174
- const contents = smithyClient.map({
1175
- $metadata: deserializeMetadata(output),
1176
- });
1177
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1178
- const doc = smithyClient.take(data, {
1179
- ContainsOldGroupVersions: smithyClient.expectBoolean,
1180
- NextToken: smithyClient.expectString,
1181
- TimeSeriesServiceStatistics: (_) => de_TimeSeriesServiceStatisticsList(_),
1182
- });
1183
- Object.assign(contents, doc);
1184
- return contents;
1185
- };
1186
- const de_GetTraceGraphCommand = async (output, context) => {
1187
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1188
- return de_CommandError(output, context);
1189
- }
1190
- const contents = smithyClient.map({
1191
- $metadata: deserializeMetadata(output),
1192
- });
1193
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1194
- const doc = smithyClient.take(data, {
1195
- NextToken: smithyClient.expectString,
1196
- Services: (_) => de_ServiceList(_),
1197
- });
1198
- Object.assign(contents, doc);
1199
- return contents;
1200
- };
1201
- const de_GetTraceSegmentDestinationCommand = async (output, context) => {
1202
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1203
- return de_CommandError(output, context);
1204
- }
1205
- const contents = smithyClient.map({
1206
- $metadata: deserializeMetadata(output),
1207
- });
1208
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1209
- const doc = smithyClient.take(data, {
1210
- Destination: smithyClient.expectString,
1211
- Status: smithyClient.expectString,
1212
- });
1213
- Object.assign(contents, doc);
1214
- return contents;
1215
- };
1216
- const de_GetTraceSummariesCommand = async (output, context) => {
1217
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1218
- return de_CommandError(output, context);
1219
- }
1220
- const contents = smithyClient.map({
1221
- $metadata: deserializeMetadata(output),
1222
- });
1223
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1224
- const doc = smithyClient.take(data, {
1225
- ApproximateTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1226
- NextToken: smithyClient.expectString,
1227
- TraceSummaries: (_) => de_TraceSummaryList(_),
1228
- TracesProcessedCount: smithyClient.expectLong,
1229
- });
1230
- Object.assign(contents, doc);
1231
- return contents;
1232
- };
1233
- const de_ListResourcePoliciesCommand = async (output, context) => {
1234
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1235
- return de_CommandError(output, context);
1236
- }
1237
- const contents = smithyClient.map({
1238
- $metadata: deserializeMetadata(output),
1239
- });
1240
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1241
- const doc = smithyClient.take(data, {
1242
- NextToken: smithyClient.expectString,
1243
- ResourcePolicies: (_) => de_ResourcePolicyList(_),
1244
- });
1245
- Object.assign(contents, doc);
1246
- return contents;
1247
- };
1248
- const de_ListRetrievedTracesCommand = async (output, context) => {
1249
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1250
- return de_CommandError(output, context);
1251
- }
1252
- const contents = smithyClient.map({
1253
- $metadata: deserializeMetadata(output),
1254
- });
1255
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1256
- const doc = smithyClient.take(data, {
1257
- NextToken: smithyClient.expectString,
1258
- RetrievalStatus: smithyClient.expectString,
1259
- TraceFormat: smithyClient.expectString,
1260
- Traces: (_) => de_TraceSpanList(_),
1261
- });
1262
- Object.assign(contents, doc);
1263
- return contents;
1264
- };
1265
- const de_ListTagsForResourceCommand = async (output, context) => {
1266
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1267
- return de_CommandError(output, context);
1268
- }
1269
- const contents = smithyClient.map({
1270
- $metadata: deserializeMetadata(output),
1271
- });
1272
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1273
- const doc = smithyClient.take(data, {
1274
- NextToken: smithyClient.expectString,
1275
- Tags: smithyClient._json,
1276
- });
1277
- Object.assign(contents, doc);
1278
- return contents;
1279
- };
1280
- const de_PutEncryptionConfigCommand = async (output, context) => {
1281
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1282
- return de_CommandError(output, context);
1283
- }
1284
- const contents = smithyClient.map({
1285
- $metadata: deserializeMetadata(output),
1286
- });
1287
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1288
- const doc = smithyClient.take(data, {
1289
- EncryptionConfig: smithyClient._json,
1290
- });
1291
- Object.assign(contents, doc);
1292
- return contents;
1293
- };
1294
- const de_PutResourcePolicyCommand = async (output, context) => {
1295
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1296
- return de_CommandError(output, context);
1297
- }
1298
- const contents = smithyClient.map({
1299
- $metadata: deserializeMetadata(output),
1300
- });
1301
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1302
- const doc = smithyClient.take(data, {
1303
- ResourcePolicy: (_) => de_ResourcePolicy(_),
1304
- });
1305
- Object.assign(contents, doc);
1306
- return contents;
1307
- };
1308
- const de_PutTelemetryRecordsCommand = async (output, context) => {
1309
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1310
- return de_CommandError(output, context);
1311
- }
1312
- const contents = smithyClient.map({
1313
- $metadata: deserializeMetadata(output),
1314
- });
1315
- await smithyClient.collectBody(output.body, context);
1316
- return contents;
1317
- };
1318
- const de_PutTraceSegmentsCommand = async (output, context) => {
1319
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1320
- return de_CommandError(output, context);
1321
- }
1322
- const contents = smithyClient.map({
1323
- $metadata: deserializeMetadata(output),
1324
- });
1325
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1326
- const doc = smithyClient.take(data, {
1327
- UnprocessedTraceSegments: smithyClient._json,
1328
- });
1329
- Object.assign(contents, doc);
1330
- return contents;
1331
- };
1332
- const de_StartTraceRetrievalCommand = async (output, context) => {
1333
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1334
- return de_CommandError(output, context);
1335
- }
1336
- const contents = smithyClient.map({
1337
- $metadata: deserializeMetadata(output),
1338
- });
1339
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1340
- const doc = smithyClient.take(data, {
1341
- RetrievalToken: smithyClient.expectString,
1342
- });
1343
- Object.assign(contents, doc);
1344
- return contents;
1345
- };
1346
- const de_TagResourceCommand = async (output, context) => {
1347
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1348
- return de_CommandError(output, context);
1349
- }
1350
- const contents = smithyClient.map({
1351
- $metadata: deserializeMetadata(output),
1352
- });
1353
- await smithyClient.collectBody(output.body, context);
1354
- return contents;
1355
- };
1356
- const de_UntagResourceCommand = async (output, context) => {
1357
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1358
- return de_CommandError(output, context);
1359
- }
1360
- const contents = smithyClient.map({
1361
- $metadata: deserializeMetadata(output),
1362
- });
1363
- await smithyClient.collectBody(output.body, context);
1364
- return contents;
1365
- };
1366
- const de_UpdateGroupCommand = async (output, context) => {
1367
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1368
- return de_CommandError(output, context);
1369
- }
1370
- const contents = smithyClient.map({
1371
- $metadata: deserializeMetadata(output),
1372
- });
1373
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1374
- const doc = smithyClient.take(data, {
1375
- Group: smithyClient._json,
1376
- });
1377
- Object.assign(contents, doc);
1378
- return contents;
1379
- };
1380
- const de_UpdateIndexingRuleCommand = async (output, context) => {
1381
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1382
- return de_CommandError(output, context);
1383
- }
1384
- const contents = smithyClient.map({
1385
- $metadata: deserializeMetadata(output),
1386
- });
1387
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1388
- const doc = smithyClient.take(data, {
1389
- IndexingRule: (_) => de_IndexingRule(_),
1390
- });
1391
- Object.assign(contents, doc);
1392
- return contents;
1393
- };
1394
- const de_UpdateSamplingRuleCommand = async (output, context) => {
1395
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1396
- return de_CommandError(output, context);
1397
- }
1398
- const contents = smithyClient.map({
1399
- $metadata: deserializeMetadata(output),
1400
- });
1401
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1402
- const doc = smithyClient.take(data, {
1403
- SamplingRuleRecord: (_) => de_SamplingRuleRecord(_),
1404
- });
1405
- Object.assign(contents, doc);
1406
- return contents;
1407
- };
1408
- const de_UpdateTraceSegmentDestinationCommand = async (output, context) => {
1409
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1410
- return de_CommandError(output, context);
1411
- }
1412
- const contents = smithyClient.map({
1413
- $metadata: deserializeMetadata(output),
1414
- });
1415
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1416
- const doc = smithyClient.take(data, {
1417
- Destination: smithyClient.expectString,
1418
- Status: smithyClient.expectString,
1419
- });
1420
- Object.assign(contents, doc);
1421
- return contents;
1422
- };
1423
- const de_CommandError = async (output, context) => {
1424
- const parsedOutput = {
1425
- ...output,
1426
- body: await core$1.parseJsonErrorBody(output.body, context),
1427
- };
1428
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
1429
- switch (errorCode) {
1430
- case "InvalidRequestException":
1431
- case "com.amazonaws.xray#InvalidRequestException":
1432
- throw await de_InvalidRequestExceptionRes(parsedOutput);
1433
- case "ThrottledException":
1434
- case "com.amazonaws.xray#ThrottledException":
1435
- throw await de_ThrottledExceptionRes(parsedOutput);
1436
- case "ResourceNotFoundException":
1437
- case "com.amazonaws.xray#ResourceNotFoundException":
1438
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
1439
- case "RuleLimitExceededException":
1440
- case "com.amazonaws.xray#RuleLimitExceededException":
1441
- throw await de_RuleLimitExceededExceptionRes(parsedOutput);
1442
- case "InvalidPolicyRevisionIdException":
1443
- case "com.amazonaws.xray#InvalidPolicyRevisionIdException":
1444
- throw await de_InvalidPolicyRevisionIdExceptionRes(parsedOutput);
1445
- case "LockoutPreventionException":
1446
- case "com.amazonaws.xray#LockoutPreventionException":
1447
- throw await de_LockoutPreventionExceptionRes(parsedOutput);
1448
- case "MalformedPolicyDocumentException":
1449
- case "com.amazonaws.xray#MalformedPolicyDocumentException":
1450
- throw await de_MalformedPolicyDocumentExceptionRes(parsedOutput);
1451
- case "PolicyCountLimitExceededException":
1452
- case "com.amazonaws.xray#PolicyCountLimitExceededException":
1453
- throw await de_PolicyCountLimitExceededExceptionRes(parsedOutput);
1454
- case "PolicySizeLimitExceededException":
1455
- case "com.amazonaws.xray#PolicySizeLimitExceededException":
1456
- throw await de_PolicySizeLimitExceededExceptionRes(parsedOutput);
1457
- case "TooManyTagsException":
1458
- case "com.amazonaws.xray#TooManyTagsException":
1459
- throw await de_TooManyTagsExceptionRes(parsedOutput);
1460
- default:
1461
- const parsedBody = parsedOutput.body;
1462
- return throwDefaultError({
1463
- output,
1464
- parsedBody,
1465
- errorCode,
1466
- });
1467
- }
1468
- };
1469
- const throwDefaultError = smithyClient.withBaseException(XRayServiceException);
1470
- const de_InvalidPolicyRevisionIdExceptionRes = async (parsedOutput, context) => {
1471
- const contents = smithyClient.map({});
1472
- const data = parsedOutput.body;
1473
- const doc = smithyClient.take(data, {
1474
- Message: smithyClient.expectString,
1475
- });
1476
- Object.assign(contents, doc);
1477
- const exception = new InvalidPolicyRevisionIdException({
1478
- $metadata: deserializeMetadata(parsedOutput),
1479
- ...contents,
1480
- });
1481
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1482
- };
1483
- const de_InvalidRequestExceptionRes = async (parsedOutput, context) => {
1484
- const contents = smithyClient.map({});
1485
- const data = parsedOutput.body;
1486
- const doc = smithyClient.take(data, {
1487
- Message: smithyClient.expectString,
1488
- });
1489
- Object.assign(contents, doc);
1490
- const exception = new InvalidRequestException({
1491
- $metadata: deserializeMetadata(parsedOutput),
1492
- ...contents,
1493
- });
1494
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1495
- };
1496
- const de_LockoutPreventionExceptionRes = async (parsedOutput, context) => {
1497
- const contents = smithyClient.map({});
1498
- const data = parsedOutput.body;
1499
- const doc = smithyClient.take(data, {
1500
- Message: smithyClient.expectString,
1501
- });
1502
- Object.assign(contents, doc);
1503
- const exception = new LockoutPreventionException({
1504
- $metadata: deserializeMetadata(parsedOutput),
1505
- ...contents,
1506
- });
1507
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1508
- };
1509
- const de_MalformedPolicyDocumentExceptionRes = async (parsedOutput, context) => {
1510
- const contents = smithyClient.map({});
1511
- const data = parsedOutput.body;
1512
- const doc = smithyClient.take(data, {
1513
- Message: smithyClient.expectString,
1514
- });
1515
- Object.assign(contents, doc);
1516
- const exception = new MalformedPolicyDocumentException({
1517
- $metadata: deserializeMetadata(parsedOutput),
1518
- ...contents,
1519
- });
1520
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1521
- };
1522
- const de_PolicyCountLimitExceededExceptionRes = async (parsedOutput, context) => {
1523
- const contents = smithyClient.map({});
1524
- const data = parsedOutput.body;
1525
- const doc = smithyClient.take(data, {
1526
- Message: smithyClient.expectString,
1527
- });
1528
- Object.assign(contents, doc);
1529
- const exception = new PolicyCountLimitExceededException({
1530
- $metadata: deserializeMetadata(parsedOutput),
1531
- ...contents,
1532
- });
1533
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1534
- };
1535
- const de_PolicySizeLimitExceededExceptionRes = async (parsedOutput, context) => {
1536
- const contents = smithyClient.map({});
1537
- const data = parsedOutput.body;
1538
- const doc = smithyClient.take(data, {
1539
- Message: smithyClient.expectString,
1540
- });
1541
- Object.assign(contents, doc);
1542
- const exception = new PolicySizeLimitExceededException({
1543
- $metadata: deserializeMetadata(parsedOutput),
1544
- ...contents,
1545
- });
1546
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1547
- };
1548
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
1549
- const contents = smithyClient.map({});
1550
- const data = parsedOutput.body;
1551
- const doc = smithyClient.take(data, {
1552
- Message: smithyClient.expectString,
1553
- ResourceName: smithyClient.expectString,
1554
- });
1555
- Object.assign(contents, doc);
1556
- const exception = new ResourceNotFoundException({
1557
- $metadata: deserializeMetadata(parsedOutput),
1558
- ...contents,
1559
- });
1560
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1561
- };
1562
- const de_RuleLimitExceededExceptionRes = async (parsedOutput, context) => {
1563
- const contents = smithyClient.map({});
1564
- const data = parsedOutput.body;
1565
- const doc = smithyClient.take(data, {
1566
- Message: smithyClient.expectString,
1567
- });
1568
- Object.assign(contents, doc);
1569
- const exception = new RuleLimitExceededException({
1570
- $metadata: deserializeMetadata(parsedOutput),
1571
- ...contents,
1572
- });
1573
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1574
- };
1575
- const de_ThrottledExceptionRes = async (parsedOutput, context) => {
1576
- const contents = smithyClient.map({});
1577
- const data = parsedOutput.body;
1578
- const doc = smithyClient.take(data, {
1579
- Message: smithyClient.expectString,
1580
- });
1581
- Object.assign(contents, doc);
1582
- const exception = new ThrottledException({
1583
- $metadata: deserializeMetadata(parsedOutput),
1584
- ...contents,
1585
- });
1586
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1587
- };
1588
- const de_TooManyTagsExceptionRes = async (parsedOutput, context) => {
1589
- const contents = smithyClient.map({});
1590
- const data = parsedOutput.body;
1591
- const doc = smithyClient.take(data, {
1592
- Message: smithyClient.expectString,
1593
- ResourceName: smithyClient.expectString,
1594
- });
1595
- Object.assign(contents, doc);
1596
- const exception = new TooManyTagsException({
1597
- $metadata: deserializeMetadata(parsedOutput),
1598
- ...contents,
1599
- });
1600
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1601
- };
1602
- const se_IndexingRuleValueUpdate = (input, context) => {
1603
- return exports.IndexingRuleValueUpdate.visit(input, {
1604
- Probabilistic: (value) => ({ Probabilistic: se_ProbabilisticRuleValueUpdate(value) }),
1605
- _: (name, value) => ({ [name]: value }),
1606
- });
1607
- };
1608
- const se_ProbabilisticRuleValueUpdate = (input, context) => {
1609
- return smithyClient.take(input, {
1610
- DesiredSamplingPercentage: smithyClient.serializeFloat,
1611
- });
1612
- };
1613
- const se_SamplingBoostStatisticsDocument = (input, context) => {
1614
- return smithyClient.take(input, {
1615
- AnomalyCount: [],
1616
- RuleName: [],
1617
- SampledAnomalyCount: [],
1618
- ServiceName: [],
1619
- Timestamp: (_) => _.getTime() / 1_000,
1620
- TotalCount: [],
1621
- });
1622
- };
1623
- const se_SamplingBoostStatisticsDocumentList = (input, context) => {
1624
- return input
1625
- .filter((e) => e != null)
1626
- .map((entry) => {
1627
- return se_SamplingBoostStatisticsDocument(entry);
1628
- });
1629
- };
1630
- const se_SamplingRateBoost = (input, context) => {
1631
- return smithyClient.take(input, {
1632
- CooldownWindowMinutes: [],
1633
- MaxRate: smithyClient.serializeFloat,
1634
- });
1635
- };
1636
- const se_SamplingRule = (input, context) => {
1637
- return smithyClient.take(input, {
1638
- Attributes: smithyClient._json,
1639
- FixedRate: smithyClient.serializeFloat,
1640
- HTTPMethod: [],
1641
- Host: [],
1642
- Priority: [],
1643
- ReservoirSize: [],
1644
- ResourceARN: [],
1645
- RuleARN: [],
1646
- RuleName: [],
1647
- SamplingRateBoost: (_) => se_SamplingRateBoost(_),
1648
- ServiceName: [],
1649
- ServiceType: [],
1650
- URLPath: [],
1651
- Version: [],
1652
- });
1653
- };
1654
- const se_SamplingRuleUpdate = (input, context) => {
1655
- return smithyClient.take(input, {
1656
- Attributes: smithyClient._json,
1657
- FixedRate: smithyClient.serializeFloat,
1658
- HTTPMethod: [],
1659
- Host: [],
1660
- Priority: [],
1661
- ReservoirSize: [],
1662
- ResourceARN: [],
1663
- RuleARN: [],
1664
- RuleName: [],
1665
- SamplingRateBoost: (_) => se_SamplingRateBoost(_),
1666
- ServiceName: [],
1667
- ServiceType: [],
1668
- URLPath: [],
1669
- });
1670
- };
1671
- const se_SamplingStatisticsDocument = (input, context) => {
1672
- return smithyClient.take(input, {
1673
- BorrowCount: [],
1674
- ClientID: [],
1675
- RequestCount: [],
1676
- RuleName: [],
1677
- SampledCount: [],
1678
- Timestamp: (_) => _.getTime() / 1_000,
1679
- });
1680
- };
1681
- const se_SamplingStatisticsDocumentList = (input, context) => {
1682
- return input
1683
- .filter((e) => e != null)
1684
- .map((entry) => {
1685
- return se_SamplingStatisticsDocument(entry);
1686
- });
1687
- };
1688
- const se_SamplingStrategy = (input, context) => {
1689
- return smithyClient.take(input, {
1690
- Name: [],
1691
- Value: smithyClient.serializeFloat,
1692
- });
1693
- };
1694
- const se_TelemetryRecord = (input, context) => {
1695
- return smithyClient.take(input, {
1696
- BackendConnectionErrors: smithyClient._json,
1697
- SegmentsReceivedCount: [],
1698
- SegmentsRejectedCount: [],
1699
- SegmentsSentCount: [],
1700
- SegmentsSpilloverCount: [],
1701
- Timestamp: (_) => _.getTime() / 1_000,
1702
- });
1703
- };
1704
- const se_TelemetryRecordList = (input, context) => {
1705
- return input
1706
- .filter((e) => e != null)
1707
- .map((entry) => {
1708
- return se_TelemetryRecord(entry);
1709
- });
1710
- };
1711
- const de_Annotations = (output, context) => {
1712
- return Object.entries(output).reduce((acc, [key, value]) => {
1713
- if (value === null) {
1714
- return acc;
1715
- }
1716
- acc[key] = de_ValuesWithServiceIds(value);
1717
- return acc;
1718
- }, {});
1719
- };
1720
- const de_AnnotationValue = (output, context) => {
1721
- if (smithyClient.expectBoolean(output.BooleanValue) !== undefined) {
1722
- return { BooleanValue: smithyClient.expectBoolean(output.BooleanValue) };
1723
- }
1724
- if (smithyClient.limitedParseDouble(output.NumberValue) !== undefined) {
1725
- return { NumberValue: smithyClient.limitedParseDouble(output.NumberValue) };
1726
- }
1727
- if (smithyClient.expectString(output.StringValue) !== undefined) {
1728
- return { StringValue: smithyClient.expectString(output.StringValue) };
1729
- }
1730
- return { $unknown: Object.entries(output)[0] };
1731
- };
1732
- const de_Edge = (output, context) => {
1733
- return smithyClient.take(output, {
1734
- Aliases: smithyClient._json,
1735
- EdgeType: smithyClient.expectString,
1736
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1737
- ReceivedEventAgeHistogram: (_) => de_Histogram(_),
1738
- ReferenceId: smithyClient.expectInt32,
1739
- ResponseTimeHistogram: (_) => de_Histogram(_),
1740
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1741
- SummaryStatistics: (_) => de_EdgeStatistics(_),
1742
- });
1743
- };
1744
- const de_EdgeList = (output, context) => {
1745
- const retVal = (output || [])
1746
- .filter((e) => e != null)
1747
- .map((entry) => {
1748
- return de_Edge(entry);
1749
- });
1750
- return retVal;
1751
- };
1752
- const de_EdgeStatistics = (output, context) => {
1753
- return smithyClient.take(output, {
1754
- ErrorStatistics: smithyClient._json,
1755
- FaultStatistics: smithyClient._json,
1756
- OkCount: smithyClient.expectLong,
1757
- TotalCount: smithyClient.expectLong,
1758
- TotalResponseTime: smithyClient.limitedParseDouble,
1759
- });
1760
- };
1761
- const de_Histogram = (output, context) => {
1762
- const retVal = (output || [])
1763
- .filter((e) => e != null)
1764
- .map((entry) => {
1765
- return de_HistogramEntry(entry);
1766
- });
1767
- return retVal;
1768
- };
1769
- const de_HistogramEntry = (output, context) => {
1770
- return smithyClient.take(output, {
1771
- Count: smithyClient.expectInt32,
1772
- Value: smithyClient.limitedParseDouble,
1773
- });
1774
- };
1775
- const de_IndexingRule = (output, context) => {
1776
- return smithyClient.take(output, {
1777
- ModifiedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1778
- Name: smithyClient.expectString,
1779
- Rule: (_) => de_IndexingRuleValue(core$1.awsExpectUnion(_)),
1780
- });
1781
- };
1782
- const de_IndexingRuleList = (output, context) => {
1783
- const retVal = (output || [])
1784
- .filter((e) => e != null)
1785
- .map((entry) => {
1786
- return de_IndexingRule(entry);
1787
- });
1788
- return retVal;
1789
- };
1790
- const de_IndexingRuleValue = (output, context) => {
1791
- if (output.Probabilistic != null) {
1792
- return {
1793
- Probabilistic: de_ProbabilisticRuleValue(output.Probabilistic),
1794
- };
1795
- }
1796
- return { $unknown: Object.entries(output)[0] };
1797
- };
1798
- const de_Insight = (output, context) => {
1799
- return smithyClient.take(output, {
1800
- Categories: smithyClient._json,
1801
- ClientRequestImpactStatistics: smithyClient._json,
1802
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1803
- GroupARN: smithyClient.expectString,
1804
- GroupName: smithyClient.expectString,
1805
- InsightId: smithyClient.expectString,
1806
- RootCauseServiceId: smithyClient._json,
1807
- RootCauseServiceRequestImpactStatistics: smithyClient._json,
1808
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1809
- State: smithyClient.expectString,
1810
- Summary: smithyClient.expectString,
1811
- TopAnomalousServices: smithyClient._json,
1812
- });
1813
- };
1814
- const de_InsightEvent = (output, context) => {
1815
- return smithyClient.take(output, {
1816
- ClientRequestImpactStatistics: smithyClient._json,
1817
- EventTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1818
- RootCauseServiceRequestImpactStatistics: smithyClient._json,
1819
- Summary: smithyClient.expectString,
1820
- TopAnomalousServices: smithyClient._json,
1821
- });
1822
- };
1823
- const de_InsightEventList = (output, context) => {
1824
- const retVal = (output || [])
1825
- .filter((e) => e != null)
1826
- .map((entry) => {
1827
- return de_InsightEvent(entry);
1828
- });
1829
- return retVal;
1830
- };
1831
- const de_InsightSummary = (output, context) => {
1832
- return smithyClient.take(output, {
1833
- Categories: smithyClient._json,
1834
- ClientRequestImpactStatistics: smithyClient._json,
1835
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1836
- GroupARN: smithyClient.expectString,
1837
- GroupName: smithyClient.expectString,
1838
- InsightId: smithyClient.expectString,
1839
- LastUpdateTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1840
- RootCauseServiceId: smithyClient._json,
1841
- RootCauseServiceRequestImpactStatistics: smithyClient._json,
1842
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1843
- State: smithyClient.expectString,
1844
- Summary: smithyClient.expectString,
1845
- TopAnomalousServices: smithyClient._json,
1846
- });
1847
- };
1848
- const de_InsightSummaryList = (output, context) => {
1849
- const retVal = (output || [])
1850
- .filter((e) => e != null)
1851
- .map((entry) => {
1852
- return de_InsightSummary(entry);
1853
- });
1854
- return retVal;
1855
- };
1856
- const de_ProbabilisticRuleValue = (output, context) => {
1857
- return smithyClient.take(output, {
1858
- ActualSamplingPercentage: smithyClient.limitedParseDouble,
1859
- DesiredSamplingPercentage: smithyClient.limitedParseDouble,
1860
- });
1861
- };
1862
- const de_ResourcePolicy = (output, context) => {
1863
- return smithyClient.take(output, {
1864
- LastUpdatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1865
- PolicyDocument: smithyClient.expectString,
1866
- PolicyName: smithyClient.expectString,
1867
- PolicyRevisionId: smithyClient.expectString,
1868
- });
1869
- };
1870
- const de_ResourcePolicyList = (output, context) => {
1871
- const retVal = (output || [])
1872
- .filter((e) => e != null)
1873
- .map((entry) => {
1874
- return de_ResourcePolicy(entry);
1875
- });
1876
- return retVal;
1877
- };
1878
- const de_ResponseTimeRootCause = (output, context) => {
1879
- return smithyClient.take(output, {
1880
- ClientImpacting: smithyClient.expectBoolean,
1881
- Services: (_) => de_ResponseTimeRootCauseServices(_),
1882
- });
1883
- };
1884
- const de_ResponseTimeRootCauseEntity = (output, context) => {
1885
- return smithyClient.take(output, {
1886
- Coverage: smithyClient.limitedParseDouble,
1887
- Name: smithyClient.expectString,
1888
- Remote: smithyClient.expectBoolean,
1889
- });
1890
- };
1891
- const de_ResponseTimeRootCauseEntityPath = (output, context) => {
1892
- const retVal = (output || [])
1893
- .filter((e) => e != null)
1894
- .map((entry) => {
1895
- return de_ResponseTimeRootCauseEntity(entry);
1896
- });
1897
- return retVal;
1898
- };
1899
- const de_ResponseTimeRootCauses = (output, context) => {
1900
- const retVal = (output || [])
1901
- .filter((e) => e != null)
1902
- .map((entry) => {
1903
- return de_ResponseTimeRootCause(entry);
1904
- });
1905
- return retVal;
1906
- };
1907
- const de_ResponseTimeRootCauseService = (output, context) => {
1908
- return smithyClient.take(output, {
1909
- AccountId: smithyClient.expectString,
1910
- EntityPath: (_) => de_ResponseTimeRootCauseEntityPath(_),
1911
- Inferred: smithyClient.expectBoolean,
1912
- Name: smithyClient.expectString,
1913
- Names: smithyClient._json,
1914
- Type: smithyClient.expectString,
1915
- });
1916
- };
1917
- const de_ResponseTimeRootCauseServices = (output, context) => {
1918
- const retVal = (output || [])
1919
- .filter((e) => e != null)
1920
- .map((entry) => {
1921
- return de_ResponseTimeRootCauseService(entry);
1922
- });
1923
- return retVal;
1924
307
  };
1925
- const de_RetrievedService = (output, context) => {
1926
- return smithyClient.take(output, {
1927
- Links: smithyClient._json,
1928
- Service: (_) => de_Service(_),
1929
- });
1930
- };
1931
- const de_RetrievedServicesList = (output, context) => {
1932
- const retVal = (output || [])
1933
- .filter((e) => e != null)
1934
- .map((entry) => {
1935
- return de_RetrievedService(entry);
1936
- });
1937
- return retVal;
1938
- };
1939
- const de_RetrievedTrace = (output, context) => {
1940
- return smithyClient.take(output, {
1941
- Duration: smithyClient.limitedParseDouble,
1942
- Id: smithyClient.expectString,
1943
- Spans: smithyClient._json,
1944
- });
1945
- };
1946
- const de_SamplingBoost = (output, context) => {
1947
- return smithyClient.take(output, {
1948
- BoostRate: smithyClient.limitedParseDouble,
1949
- BoostRateTTL: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1950
- });
1951
- };
1952
- const de_SamplingRateBoost = (output, context) => {
1953
- return smithyClient.take(output, {
1954
- CooldownWindowMinutes: smithyClient.expectInt32,
1955
- MaxRate: smithyClient.limitedParseDouble,
1956
- });
1957
- };
1958
- const de_SamplingRule = (output, context) => {
1959
- return smithyClient.take(output, {
1960
- Attributes: smithyClient._json,
1961
- FixedRate: smithyClient.limitedParseDouble,
1962
- HTTPMethod: smithyClient.expectString,
1963
- Host: smithyClient.expectString,
1964
- Priority: smithyClient.expectInt32,
1965
- ReservoirSize: smithyClient.expectInt32,
1966
- ResourceARN: smithyClient.expectString,
1967
- RuleARN: smithyClient.expectString,
1968
- RuleName: smithyClient.expectString,
1969
- SamplingRateBoost: (_) => de_SamplingRateBoost(_),
1970
- ServiceName: smithyClient.expectString,
1971
- ServiceType: smithyClient.expectString,
1972
- URLPath: smithyClient.expectString,
1973
- Version: smithyClient.expectInt32,
1974
- });
1975
- };
1976
- const de_SamplingRuleRecord = (output, context) => {
1977
- return smithyClient.take(output, {
1978
- CreatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1979
- ModifiedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1980
- SamplingRule: (_) => de_SamplingRule(_),
1981
- });
1982
- };
1983
- const de_SamplingRuleRecordList = (output, context) => {
1984
- const retVal = (output || [])
1985
- .filter((e) => e != null)
1986
- .map((entry) => {
1987
- return de_SamplingRuleRecord(entry);
1988
- });
1989
- return retVal;
1990
- };
1991
- const de_SamplingStatisticSummary = (output, context) => {
1992
- return smithyClient.take(output, {
1993
- BorrowCount: smithyClient.expectInt32,
1994
- RequestCount: smithyClient.expectInt32,
1995
- RuleName: smithyClient.expectString,
1996
- SampledCount: smithyClient.expectInt32,
1997
- Timestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1998
- });
1999
- };
2000
- const de_SamplingStatisticSummaryList = (output, context) => {
2001
- const retVal = (output || [])
2002
- .filter((e) => e != null)
2003
- .map((entry) => {
2004
- return de_SamplingStatisticSummary(entry);
2005
- });
2006
- return retVal;
2007
- };
2008
- const de_SamplingTargetDocument = (output, context) => {
2009
- return smithyClient.take(output, {
2010
- FixedRate: smithyClient.limitedParseDouble,
2011
- Interval: smithyClient.expectInt32,
2012
- ReservoirQuota: smithyClient.expectInt32,
2013
- ReservoirQuotaTTL: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2014
- RuleName: smithyClient.expectString,
2015
- SamplingBoost: (_) => de_SamplingBoost(_),
2016
- });
2017
- };
2018
- const de_SamplingTargetDocumentList = (output, context) => {
2019
- const retVal = (output || [])
2020
- .filter((e) => e != null)
2021
- .map((entry) => {
2022
- return de_SamplingTargetDocument(entry);
2023
- });
2024
- return retVal;
2025
- };
2026
- const de_Service = (output, context) => {
2027
- return smithyClient.take(output, {
2028
- AccountId: smithyClient.expectString,
2029
- DurationHistogram: (_) => de_Histogram(_),
2030
- Edges: (_) => de_EdgeList(_),
2031
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2032
- Name: smithyClient.expectString,
2033
- Names: smithyClient._json,
2034
- ReferenceId: smithyClient.expectInt32,
2035
- ResponseTimeHistogram: (_) => de_Histogram(_),
2036
- Root: smithyClient.expectBoolean,
2037
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2038
- State: smithyClient.expectString,
2039
- SummaryStatistics: (_) => de_ServiceStatistics(_),
2040
- Type: smithyClient.expectString,
2041
- });
2042
- };
2043
- const de_ServiceList = (output, context) => {
2044
- const retVal = (output || [])
2045
- .filter((e) => e != null)
2046
- .map((entry) => {
2047
- return de_Service(entry);
2048
- });
2049
- return retVal;
2050
- };
2051
- const de_ServiceStatistics = (output, context) => {
2052
- return smithyClient.take(output, {
2053
- ErrorStatistics: smithyClient._json,
2054
- FaultStatistics: smithyClient._json,
2055
- OkCount: smithyClient.expectLong,
2056
- TotalCount: smithyClient.expectLong,
2057
- TotalResponseTime: smithyClient.limitedParseDouble,
2058
- });
2059
- };
2060
- const de_TimeSeriesServiceStatistics = (output, context) => {
2061
- return smithyClient.take(output, {
2062
- EdgeSummaryStatistics: (_) => de_EdgeStatistics(_),
2063
- ResponseTimeHistogram: (_) => de_Histogram(_),
2064
- ServiceForecastStatistics: smithyClient._json,
2065
- ServiceSummaryStatistics: (_) => de_ServiceStatistics(_),
2066
- Timestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2067
- });
2068
- };
2069
- const de_TimeSeriesServiceStatisticsList = (output, context) => {
2070
- const retVal = (output || [])
2071
- .filter((e) => e != null)
2072
- .map((entry) => {
2073
- return de_TimeSeriesServiceStatistics(entry);
2074
- });
2075
- return retVal;
2076
- };
2077
- const de_Trace = (output, context) => {
2078
- return smithyClient.take(output, {
2079
- Duration: smithyClient.limitedParseDouble,
2080
- Id: smithyClient.expectString,
2081
- LimitExceeded: smithyClient.expectBoolean,
2082
- Segments: smithyClient._json,
2083
- });
2084
- };
2085
- const de_TraceList = (output, context) => {
2086
- const retVal = (output || [])
2087
- .filter((e) => e != null)
2088
- .map((entry) => {
2089
- return de_Trace(entry);
2090
- });
2091
- return retVal;
2092
- };
2093
- const de_TraceSpanList = (output, context) => {
2094
- const retVal = (output || [])
2095
- .filter((e) => e != null)
2096
- .map((entry) => {
2097
- return de_RetrievedTrace(entry);
2098
- });
2099
- return retVal;
2100
- };
2101
- const de_TraceSummary = (output, context) => {
2102
- return smithyClient.take(output, {
2103
- Annotations: (_) => de_Annotations(_),
2104
- AvailabilityZones: smithyClient._json,
2105
- Duration: smithyClient.limitedParseDouble,
2106
- EntryPoint: smithyClient._json,
2107
- ErrorRootCauses: smithyClient._json,
2108
- FaultRootCauses: smithyClient._json,
2109
- HasError: smithyClient.expectBoolean,
2110
- HasFault: smithyClient.expectBoolean,
2111
- HasThrottle: smithyClient.expectBoolean,
2112
- Http: smithyClient._json,
2113
- Id: smithyClient.expectString,
2114
- InstanceIds: smithyClient._json,
2115
- IsPartial: smithyClient.expectBoolean,
2116
- MatchedEventTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2117
- ResourceARNs: smithyClient._json,
2118
- ResponseTime: smithyClient.limitedParseDouble,
2119
- ResponseTimeRootCauses: (_) => de_ResponseTimeRootCauses(_),
2120
- Revision: smithyClient.expectInt32,
2121
- ServiceIds: smithyClient._json,
2122
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2123
- Users: smithyClient._json,
2124
- });
2125
- };
2126
- const de_TraceSummaryList = (output, context) => {
2127
- const retVal = (output || [])
2128
- .filter((e) => e != null)
2129
- .map((entry) => {
2130
- return de_TraceSummary(entry);
2131
- });
2132
- return retVal;
2133
- };
2134
- const de_ValuesWithServiceIds = (output, context) => {
2135
- const retVal = (output || [])
2136
- .filter((e) => e != null)
2137
- .map((entry) => {
2138
- return de_ValueWithServiceIds(entry);
2139
- });
2140
- return retVal;
2141
- };
2142
- const de_ValueWithServiceIds = (output, context) => {
2143
- return smithyClient.take(output, {
2144
- AnnotationValue: (_) => de_AnnotationValue(core$1.awsExpectUnion(_)),
2145
- ServiceIds: smithyClient._json,
2146
- });
2147
- };
2148
- const deserializeMetadata = (output) => ({
2149
- httpStatusCode: output.statusCode,
2150
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
2151
- extendedRequestId: output.headers["x-amz-id-2"],
2152
- cfId: output.headers["x-amz-cf-id"],
2153
- });
308
+
309
+ const _A = "Alias";
310
+ const _AC = "AnomalyCount";
311
+ const _AI = "AccountId";
312
+ const _AL = "AliasList";
313
+ const _ARN = "ARN";
314
+ const _AS = "AnomalousService";
315
+ const _ASL = "AnomalousServiceList";
316
+ const _ASP = "ActualSamplingPercentage";
317
+ const _AT = "ApproximateTime";
318
+ const _AV = "AnnotationValue";
319
+ const _AZ = "AvailabilityZones";
320
+ const _AZD = "AvailabilityZoneDetail";
321
+ const _Al = "Aliases";
322
+ const _An = "Annotations";
323
+ const _At = "Attributes";
324
+ const _BC = "BorrowCount";
325
+ const _BCE = "BackendConnectionErrors";
326
+ const _BGT = "BatchGetTraces";
327
+ const _BGTR = "BatchGetTracesRequest";
328
+ const _BGTRa = "BatchGetTracesResult";
329
+ const _BPLC = "BypassPolicyLockoutCheck";
330
+ const _BR = "BoostRate";
331
+ const _BRTTL = "BoostRateTTL";
332
+ const _BV = "BooleanValue";
333
+ const _C = "Count";
334
+ const _CA = "CreatedAt";
335
+ const _CG = "CreateGroup";
336
+ const _CGR = "CreateGroupRequest";
337
+ const _CGRr = "CreateGroupResult";
338
+ const _CI = "ClientImpacting";
339
+ const _CID = "ClientID";
340
+ const _CIl = "ClientIp";
341
+ const _COGV = "ContainsOldGroupVersions";
342
+ const _CRC = "ConnectionRefusedCount";
343
+ const _CRIS = "ClientRequestImpactStatistics";
344
+ const _CSR = "CreateSamplingRule";
345
+ const _CSRR = "CreateSamplingRuleRequest";
346
+ const _CSRRr = "CreateSamplingRuleResult";
347
+ const _CTR = "CancelTraceRetrieval";
348
+ const _CTRR = "CancelTraceRetrievalRequest";
349
+ const _CTRRa = "CancelTraceRetrievalResult";
350
+ const _CWM = "CooldownWindowMinutes";
351
+ const _Ca = "Categories";
352
+ const _Co = "Coverage";
353
+ const _D = "Destination";
354
+ const _DG = "DeleteGroup";
355
+ const _DGR = "DeleteGroupRequest";
356
+ const _DGRe = "DeleteGroupResult";
357
+ const _DH = "DurationHistogram";
358
+ const _DRP = "DeleteResourcePolicy";
359
+ const _DRPR = "DeleteResourcePolicyRequest";
360
+ const _DRPRe = "DeleteResourcePolicyResult";
361
+ const _DSP = "DesiredSamplingPercentage";
362
+ const _DSR = "DeleteSamplingRule";
363
+ const _DSRR = "DeleteSamplingRuleRequest";
364
+ const _DSRRe = "DeleteSamplingRuleResult";
365
+ const _DTI = "DestinationTraceIds";
366
+ const _Do = "Document";
367
+ const _Du = "Duration";
368
+ const _E = "Edge";
369
+ const _EC = "EncryptionConfig";
370
+ const _ECII = "EC2InstanceId";
371
+ const _ECr = "ErrorCode";
372
+ const _EL = "EdgeList";
373
+ const _EP = "EntityPath";
374
+ const _EPn = "EntryPoint";
375
+ const _ERC = "ErrorRootCause";
376
+ const _ERCE = "ErrorRootCauseEntity";
377
+ const _ERCEP = "ErrorRootCauseEntityPath";
378
+ const _ERCS = "ErrorRootCauseService";
379
+ const _ERCSr = "ErrorRootCauseServices";
380
+ const _ERCr = "ErrorRootCauses";
381
+ const _ES = "EdgeStatistics";
382
+ const _ESE = "EntitySelectorExpression";
383
+ const _ESS = "EdgeSummaryStatistics";
384
+ const _ESr = "ErrorStatistics";
385
+ const _ET = "EndTime";
386
+ const _ETd = "EdgeType";
387
+ const _ETv = "EventTime";
388
+ const _Ed = "Edges";
389
+ const _Ex = "Exceptions";
390
+ const _FC = "FaultCount";
391
+ const _FCH = "FaultCountHigh";
392
+ const _FCL = "FaultCountLow";
393
+ const _FE = "FilterExpression";
394
+ const _FR = "FixedRate";
395
+ const _FRC = "FaultRootCause";
396
+ const _FRCE = "FaultRootCauseEntity";
397
+ const _FRCEP = "FaultRootCauseEntityPath";
398
+ const _FRCS = "FaultRootCauseService";
399
+ const _FRCSa = "FaultRootCauseServices";
400
+ const _FRCa = "FaultRootCauses";
401
+ const _FS = "FaultStatistics";
402
+ const _FSo = "ForecastStatistics";
403
+ const _G = "Group";
404
+ const _GARN = "GroupARN";
405
+ const _GEC = "GetEncryptionConfig";
406
+ const _GECR = "GetEncryptionConfigRequest";
407
+ const _GECRe = "GetEncryptionConfigResult";
408
+ const _GG = "GetGroup";
409
+ const _GGR = "GetGroupRequest";
410
+ const _GGRe = "GetGroupResult";
411
+ const _GGRet = "GetGroupsRequest";
412
+ const _GGRetr = "GetGroupsResult";
413
+ const _GGe = "GetGroups";
414
+ const _GI = "GetInsight";
415
+ const _GIE = "GetInsightEvents";
416
+ const _GIER = "GetInsightEventsRequest";
417
+ const _GIERe = "GetInsightEventsResult";
418
+ const _GIIG = "GetInsightImpactGraph";
419
+ const _GIIGR = "GetInsightImpactGraphRequest";
420
+ const _GIIGRe = "GetInsightImpactGraphResult";
421
+ const _GIR = "GetInsightRequest";
422
+ const _GIRR = "GetIndexingRulesRequest";
423
+ const _GIRRe = "GetIndexingRulesResult";
424
+ const _GIRe = "GetInsightResult";
425
+ const _GIRet = "GetIndexingRules";
426
+ const _GIS = "GetInsightSummaries";
427
+ const _GISR = "GetInsightSummariesRequest";
428
+ const _GISRe = "GetInsightSummariesResult";
429
+ const _GL = "GraphLink";
430
+ const _GN = "GroupName";
431
+ const _GRTG = "GetRetrievedTracesGraph";
432
+ const _GRTGR = "GetRetrievedTracesGraphRequest";
433
+ const _GRTGRe = "GetRetrievedTracesGraphResult";
434
+ const _GS = "GroupSummary";
435
+ const _GSG = "GetServiceGraph";
436
+ const _GSGR = "GetServiceGraphRequest";
437
+ const _GSGRe = "GetServiceGraphResult";
438
+ const _GSL = "GroupSummaryList";
439
+ const _GSR = "GetSamplingRules";
440
+ const _GSRR = "GetSamplingRulesRequest";
441
+ const _GSRRe = "GetSamplingRulesResult";
442
+ const _GSSS = "GetSamplingStatisticSummaries";
443
+ const _GSSSR = "GetSamplingStatisticSummariesRequest";
444
+ const _GSSSRe = "GetSamplingStatisticSummariesResult";
445
+ const _GST = "GetSamplingTargets";
446
+ const _GSTR = "GetSamplingTargetsRequest";
447
+ const _GSTRe = "GetSamplingTargetsResult";
448
+ const _GTG = "GetTraceGraph";
449
+ const _GTGR = "GetTraceGraphRequest";
450
+ const _GTGRe = "GetTraceGraphResult";
451
+ const _GTS = "GetTraceSummaries";
452
+ const _GTSD = "GetTraceSegmentDestination";
453
+ const _GTSDR = "GetTraceSegmentDestinationRequest";
454
+ const _GTSDRe = "GetTraceSegmentDestinationResult";
455
+ const _GTSR = "GetTraceSummariesRequest";
456
+ const _GTSRe = "GetTraceSummariesResult";
457
+ const _GTSSS = "GetTimeSeriesServiceStatistics";
458
+ const _GTSSSR = "GetTimeSeriesServiceStatisticsRequest";
459
+ const _GTSSSRe = "GetTimeSeriesServiceStatisticsResult";
460
+ const _Gr = "Groups";
461
+ const _H = "Http";
462
+ const _HE = "HistogramEntry";
463
+ const _HEa = "HasError";
464
+ const _HF = "HasFault";
465
+ const _HM = "HttpMethod";
466
+ const _HS = "HttpStatus";
467
+ const _HT = "HasThrottle";
468
+ const _HTTPCXXC = "HTTPCode4XXCount";
469
+ const _HTTPCXXCo = "HTTPCode5XXCount";
470
+ const _HTTPM = "HTTPMethod";
471
+ const _HURL = "HttpURL";
472
+ const _Hi = "Histogram";
473
+ const _Ho = "Hostname";
474
+ const _Hos = "Host";
475
+ const _I = "Inferred";
476
+ const _IC = "InsightsConfiguration";
477
+ const _IE = "InsightEvents";
478
+ const _IEL = "InsightEventList";
479
+ const _IEn = "InsightEvent";
480
+ const _IEns = "InsightsEnabled";
481
+ const _II = "InsightId";
482
+ const _IID = "InstanceIdDetail";
483
+ const _IIGE = "InsightImpactGraphEdge";
484
+ const _IIGEL = "InsightImpactGraphEdgeList";
485
+ const _IIGS = "InsightImpactGraphService";
486
+ const _IIGSL = "InsightImpactGraphServiceList";
487
+ const _IIn = "InstanceIds";
488
+ const _IP = "IsPartial";
489
+ const _IPRIE = "InvalidPolicyRevisionIdException";
490
+ const _IR = "IndexingRules";
491
+ const _IRE = "InvalidRequestException";
492
+ const _IRL = "IndexingRuleList";
493
+ const _IRV = "IndexingRuleValue";
494
+ const _IRVU = "IndexingRuleValueUpdate";
495
+ const _IRn = "IndexingRule";
496
+ const _IS = "InsightSummaries";
497
+ const _ISL = "InsightSummaryList";
498
+ const _ISn = "InsightSummary";
499
+ const _Id = "Id";
500
+ const _In = "Insight";
501
+ const _Int = "Interval";
502
+ const _K = "Key";
503
+ const _KI = "KeyId";
504
+ const _L = "Links";
505
+ const _LE = "LimitExceeded";
506
+ const _LL = "LinksList";
507
+ const _LPE = "LockoutPreventionException";
508
+ const _LRM = "LastRuleModification";
509
+ const _LRP = "ListResourcePolicies";
510
+ const _LRPR = "ListResourcePoliciesRequest";
511
+ const _LRPRi = "ListResourcePoliciesResult";
512
+ const _LRT = "ListRetrievedTraces";
513
+ const _LRTR = "ListRetrievedTracesRequest";
514
+ const _LRTRi = "ListRetrievedTracesResult";
515
+ const _LTFR = "ListTagsForResource";
516
+ const _LTFRR = "ListTagsForResourceRequest";
517
+ const _LTFRRi = "ListTagsForResourceResponse";
518
+ const _LUT = "LastUpdateTime";
519
+ const _LUTa = "LastUpdatedTime";
520
+ const _M = "Message";
521
+ const _MA = "ModifiedAt";
522
+ const _MET = "MatchedEventTime";
523
+ const _MPDE = "MalformedPolicyDocumentException";
524
+ const _MR = "MaxResults";
525
+ const _MRa = "MaxRate";
526
+ const _N = "Name";
527
+ const _NE = "NotificationsEnabled";
528
+ const _NT = "NextToken";
529
+ const _NV = "NumberValue";
530
+ const _Na = "Names";
531
+ const _OC = "OtherCount";
532
+ const _OCk = "OkCount";
533
+ const _P = "Period";
534
+ const _PCLEE = "PolicyCountLimitExceededException";
535
+ const _PD = "PolicyDocument";
536
+ const _PEC = "PutEncryptionConfig";
537
+ const _PECR = "PutEncryptionConfigRequest";
538
+ const _PECRu = "PutEncryptionConfigResult";
539
+ const _PN = "PolicyName";
540
+ const _PRI = "PolicyRevisionId";
541
+ const _PRP = "PutResourcePolicy";
542
+ const _PRPR = "PutResourcePolicyRequest";
543
+ const _PRPRu = "PutResourcePolicyResult";
544
+ const _PRV = "ProbabilisticRuleValue";
545
+ const _PRVU = "ProbabilisticRuleValueUpdate";
546
+ const _PSLEE = "PolicySizeLimitExceededException";
547
+ const _PTR = "PutTelemetryRecords";
548
+ const _PTRR = "PutTelemetryRecordsRequest";
549
+ const _PTRRu = "PutTelemetryRecordsResult";
550
+ const _PTS = "PutTraceSegments";
551
+ const _PTSR = "PutTraceSegmentsRequest";
552
+ const _PTSRu = "PutTraceSegmentsResult";
553
+ const _Pr = "Priority";
554
+ const _Pro = "Probabilistic";
555
+ const _R = "Remote";
556
+ const _RARN = "RuleARN";
557
+ const _RARND = "ResourceARNDetail";
558
+ const _RARNe = "ResourceARN";
559
+ const _RARNes = "ResourceARNs";
560
+ const _RC = "RequestCount";
561
+ const _RCE = "RootCauseException";
562
+ const _RCEo = "RootCauseExceptions";
563
+ const _RCSI = "RootCauseServiceId";
564
+ const _RCSRIS = "RootCauseServiceRequestImpactStatistics";
565
+ const _REAH = "ReceivedEventAgeHistogram";
566
+ const _RI = "ReferenceId";
567
+ const _RIS = "RequestImpactStatistics";
568
+ const _RLEE = "RuleLimitExceededException";
569
+ const _RN = "RuleName";
570
+ const _RNFE = "ResourceNotFoundException";
571
+ const _RNe = "ResourceName";
572
+ const _RP = "ResourcePolicies";
573
+ const _RPL = "ResourcePolicyList";
574
+ const _RPe = "ResourcePolicy";
575
+ const _RQ = "ReservoirQuota";
576
+ const _RQTTL = "ReservoirQuotaTTL";
577
+ const _RS = "RetrievalStatus";
578
+ const _RSL = "RetrievedServicesList";
579
+ const _RSe = "RetrievedService";
580
+ const _RSes = "ReservoirSize";
581
+ const _RT = "RetrievalToken";
582
+ const _RTH = "ResponseTimeHistogram";
583
+ const _RTRC = "ResponseTimeRootCause";
584
+ const _RTRCE = "ResponseTimeRootCauseEntity";
585
+ const _RTRCEP = "ResponseTimeRootCauseEntityPath";
586
+ const _RTRCS = "ResponseTimeRootCauseService";
587
+ const _RTRCSe = "ResponseTimeRootCauseServices";
588
+ const _RTRCe = "ResponseTimeRootCauses";
589
+ const _RTe = "ReferenceType";
590
+ const _RTes = "ResponseTime";
591
+ const _RTet = "RetrievedTrace";
592
+ const _Re = "Revision";
593
+ const _Ro = "Root";
594
+ const _Ru = "Rule";
595
+ const _S = "Status";
596
+ const _SAC = "SampledAnomalyCount";
597
+ const _SB = "SamplingBoost";
598
+ const _SBSD = "SamplingBoostStatisticsDocuments";
599
+ const _SBSDL = "SamplingBoostStatisticsDocumentList";
600
+ const _SBSDa = "SamplingBoostStatisticsDocument";
601
+ const _SC = "SampledCount";
602
+ const _SFS = "ServiceForecastStatistics";
603
+ const _SGET = "ServiceGraphEndTime";
604
+ const _SGST = "ServiceGraphStartTime";
605
+ const _SI = "ServiceId";
606
+ const _SIe = "ServiceIds";
607
+ const _SL = "SegmentList";
608
+ const _SLe = "ServiceList";
609
+ const _SLp = "SpanList";
610
+ const _SN = "ServiceName";
611
+ const _SR = "SamplingRule";
612
+ const _SRB = "SamplingRateBoost";
613
+ const _SRC = "SegmentsReceivedCount";
614
+ const _SRCe = "SegmentsRejectedCount";
615
+ const _SRR = "SamplingRuleRecord";
616
+ const _SRRL = "SamplingRuleRecordList";
617
+ const _SRRa = "SamplingRuleRecords";
618
+ const _SRU = "SamplingRuleUpdate";
619
+ const _SS = "SummaryStatistics";
620
+ const _SSC = "SegmentsSentCount";
621
+ const _SSCe = "SegmentsSpilloverCount";
622
+ const _SSD = "SamplingStatisticsDocuments";
623
+ const _SSDL = "SamplingStatisticsDocumentList";
624
+ const _SSDa = "SamplingStatisticsDocument";
625
+ const _SSS = "SamplingStatisticSummaries";
626
+ const _SSSL = "SamplingStatisticSummaryList";
627
+ const _SSSa = "SamplingStatisticSummary";
628
+ const _SSSe = "ServiceSummaryStatistics";
629
+ const _SSa = "SamplingStrategy";
630
+ const _SSe = "ServiceStatistics";
631
+ const _ST = "StartTime";
632
+ const _STD = "SamplingTargetDocuments";
633
+ const _STDL = "SamplingTargetDocumentList";
634
+ const _STDa = "SamplingTargetDocument";
635
+ const _STI = "SourceTraceId";
636
+ const _STR = "StartTraceRetrieval";
637
+ const _STRR = "StartTraceRetrievalRequest";
638
+ const _STRRt = "StartTraceRetrievalResult";
639
+ const _STe = "ServiceType";
640
+ const _SV = "StringValue";
641
+ const _Sa = "Sampling";
642
+ const _Se = "Services";
643
+ const _Seg = "Segment";
644
+ const _Segm = "Segments";
645
+ const _Ser = "Service";
646
+ const _Sp = "Spans";
647
+ const _Spa = "Span";
648
+ const _St = "States";
649
+ const _Sta = "State";
650
+ const _Su = "Summary";
651
+ const _T = "Type";
652
+ const _TAS = "TopAnomalousServices";
653
+ const _TAZ = "TraceAvailabilityZones";
654
+ const _TC = "TimeoutCount";
655
+ const _TCh = "ThrottleCount";
656
+ const _TCo = "TotalCount";
657
+ const _TE = "ThrottledException";
658
+ const _TF = "TraceFormat";
659
+ const _TI = "TraceIds";
660
+ const _TII = "TraceInstanceIds";
661
+ const _TK = "TagKeys";
662
+ const _TL = "TagList";
663
+ const _TLr = "TraceList";
664
+ const _TMTE = "TooManyTagsException";
665
+ const _TPC = "TracesProcessedCount";
666
+ const _TR = "TelemetryRecords";
667
+ const _TRARN = "TraceResourceARNs";
668
+ const _TRL = "TelemetryRecordList";
669
+ const _TRR = "TagResourceRequest";
670
+ const _TRRa = "TagResourceResponse";
671
+ const _TRT = "TotalResponseTime";
672
+ const _TRTi = "TimeRangeType";
673
+ const _TRa = "TagResource";
674
+ const _TRe = "TelemetryRecord";
675
+ const _TS = "TraceSummaries";
676
+ const _TSD = "TraceSegmentDocuments";
677
+ const _TSL = "TraceSpanList";
678
+ const _TSLr = "TraceSummaryList";
679
+ const _TSSS = "TimeSeriesServiceStatistics";
680
+ const _TSSSL = "TimeSeriesServiceStatisticsList";
681
+ const _TSr = "TraceSummary";
682
+ const _TU = "TraceUser";
683
+ const _TUr = "TraceUsers";
684
+ const _Ta = "Tags";
685
+ const _Tag = "Tag";
686
+ const _Ti = "Timestamp";
687
+ const _Tr = "Traces";
688
+ const _Tra = "Trace";
689
+ const _U = "Users";
690
+ const _UA = "UserAgent";
691
+ const _UBS = "UnprocessedBoostStatistics";
692
+ const _UG = "UpdateGroup";
693
+ const _UGR = "UpdateGroupRequest";
694
+ const _UGRp = "UpdateGroupResult";
695
+ const _UHC = "UnknownHostCount";
696
+ const _UIR = "UpdateIndexingRule";
697
+ const _UIRR = "UpdateIndexingRuleRequest";
698
+ const _UIRRp = "UpdateIndexingRuleResult";
699
+ const _UN = "UserName";
700
+ const _UR = "UntagResource";
701
+ const _URLP = "URLPath";
702
+ const _URR = "UntagResourceRequest";
703
+ const _URRn = "UntagResourceResponse";
704
+ const _US = "UnprocessedStatistics";
705
+ const _USL = "UnprocessedStatisticsList";
706
+ const _USR = "UpdateSamplingRule";
707
+ const _USRR = "UpdateSamplingRuleRequest";
708
+ const _USRRp = "UpdateSamplingRuleResult";
709
+ const _UTI = "UnprocessedTraceIds";
710
+ const _UTS = "UnprocessedTraceSegments";
711
+ const _UTSD = "UpdateTraceSegmentDestination";
712
+ const _UTSDR = "UpdateTraceSegmentDestinationRequest";
713
+ const _UTSDRp = "UpdateTraceSegmentDestinationResult";
714
+ const _UTSL = "UnprocessedTraceSegmentList";
715
+ const _UTSn = "UnprocessedTraceSegment";
716
+ const _V = "Value";
717
+ const _VWSI = "ValueWithServiceIds";
718
+ const _VWSIa = "ValuesWithServiceIds";
719
+ const _Ve = "Version";
720
+ const _c = "client";
721
+ const _e = "error";
722
+ const _h = "http";
723
+ const _hE = "httpError";
724
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.xray";
725
+ const n0 = "com.amazonaws.xray";
726
+ var Alias = [3, n0, _A, 0, [_N, _Na, _T], [0, 64 | 0, 0]];
727
+ var AnomalousService = [3, n0, _AS, 0, [_SI], [() => ServiceId]];
728
+ var AvailabilityZoneDetail = [3, n0, _AZD, 0, [_N], [0]];
729
+ var BackendConnectionErrors = [
730
+ 3,
731
+ n0,
732
+ _BCE,
733
+ 0,
734
+ [_TC, _CRC, _HTTPCXXC, _HTTPCXXCo, _UHC, _OC],
735
+ [1, 1, 1, 1, 1, 1],
736
+ ];
737
+ var BatchGetTracesRequest = [3, n0, _BGTR, 0, [_TI, _NT], [64 | 0, 0]];
738
+ var BatchGetTracesResult = [
739
+ 3,
740
+ n0,
741
+ _BGTRa,
742
+ 0,
743
+ [_Tr, _UTI, _NT],
744
+ [() => TraceList, 64 | 0, 0],
745
+ ];
746
+ var CancelTraceRetrievalRequest = [3, n0, _CTRR, 0, [_RT], [0]];
747
+ var CancelTraceRetrievalResult = [3, n0, _CTRRa, 0, [], []];
748
+ var CreateGroupRequest = [
749
+ 3,
750
+ n0,
751
+ _CGR,
752
+ 0,
753
+ [_GN, _FE, _IC, _Ta],
754
+ [0, 0, () => InsightsConfiguration, () => TagList],
755
+ ];
756
+ var CreateGroupResult = [3, n0, _CGRr, 0, [_G], [() => Group]];
757
+ var CreateSamplingRuleRequest = [
758
+ 3,
759
+ n0,
760
+ _CSRR,
761
+ 0,
762
+ [_SR, _Ta],
763
+ [() => SamplingRule, () => TagList],
764
+ ];
765
+ var CreateSamplingRuleResult = [3, n0, _CSRRr, 0, [_SRR], [() => SamplingRuleRecord]];
766
+ var DeleteGroupRequest = [3, n0, _DGR, 0, [_GN, _GARN], [0, 0]];
767
+ var DeleteGroupResult = [3, n0, _DGRe, 0, [], []];
768
+ var DeleteResourcePolicyRequest = [3, n0, _DRPR, 0, [_PN, _PRI], [0, 0]];
769
+ var DeleteResourcePolicyResult = [3, n0, _DRPRe, 0, [], []];
770
+ var DeleteSamplingRuleRequest = [3, n0, _DSRR, 0, [_RN, _RARN], [0, 0]];
771
+ var DeleteSamplingRuleResult = [3, n0, _DSRRe, 0, [_SRR], [() => SamplingRuleRecord]];
772
+ var Edge = [
773
+ 3,
774
+ n0,
775
+ _E,
776
+ 0,
777
+ [_RI, _ST, _ET, _SS, _RTH, _Al, _ETd, _REAH],
778
+ [1, 4, 4, () => EdgeStatistics, () => Histogram, () => AliasList, 0, () => Histogram],
779
+ ];
780
+ var EdgeStatistics = [
781
+ 3,
782
+ n0,
783
+ _ES,
784
+ 0,
785
+ [_OCk, _ESr, _FS, _TCo, _TRT],
786
+ [1, () => ErrorStatistics, () => FaultStatistics, 1, 1],
787
+ ];
788
+ var EncryptionConfig = [3, n0, _EC, 0, [_KI, _S, _T], [0, 0, 0]];
789
+ var ErrorRootCause = [3, n0, _ERC, 0, [_Se, _CI], [() => ErrorRootCauseServices, 2]];
790
+ var ErrorRootCauseEntity = [
791
+ 3,
792
+ n0,
793
+ _ERCE,
794
+ 0,
795
+ [_N, _Ex, _R],
796
+ [0, () => RootCauseExceptions, 2],
797
+ ];
798
+ var ErrorRootCauseService = [
799
+ 3,
800
+ n0,
801
+ _ERCS,
802
+ 0,
803
+ [_N, _Na, _T, _AI, _EP, _I],
804
+ [0, 64 | 0, 0, 0, () => ErrorRootCauseEntityPath, 2],
805
+ ];
806
+ var ErrorStatistics = [3, n0, _ESr, 0, [_TCh, _OC, _TCo], [1, 1, 1]];
807
+ var FaultRootCause = [3, n0, _FRC, 0, [_Se, _CI], [() => FaultRootCauseServices, 2]];
808
+ var FaultRootCauseEntity = [
809
+ 3,
810
+ n0,
811
+ _FRCE,
812
+ 0,
813
+ [_N, _Ex, _R],
814
+ [0, () => RootCauseExceptions, 2],
815
+ ];
816
+ var FaultRootCauseService = [
817
+ 3,
818
+ n0,
819
+ _FRCS,
820
+ 0,
821
+ [_N, _Na, _T, _AI, _EP, _I],
822
+ [0, 64 | 0, 0, 0, () => FaultRootCauseEntityPath, 2],
823
+ ];
824
+ var FaultStatistics = [3, n0, _FS, 0, [_OC, _TCo], [1, 1]];
825
+ var ForecastStatistics = [3, n0, _FSo, 0, [_FCH, _FCL], [1, 1]];
826
+ var GetEncryptionConfigRequest = [3, n0, _GECR, 0, [], []];
827
+ var GetEncryptionConfigResult = [3, n0, _GECRe, 0, [_EC], [() => EncryptionConfig]];
828
+ var GetGroupRequest = [3, n0, _GGR, 0, [_GN, _GARN], [0, 0]];
829
+ var GetGroupResult = [3, n0, _GGRe, 0, [_G], [() => Group]];
830
+ var GetGroupsRequest = [3, n0, _GGRet, 0, [_NT], [0]];
831
+ var GetGroupsResult = [3, n0, _GGRetr, 0, [_Gr, _NT], [() => GroupSummaryList, 0]];
832
+ var GetIndexingRulesRequest = [3, n0, _GIRR, 0, [_NT], [0]];
833
+ var GetIndexingRulesResult = [3, n0, _GIRRe, 0, [_IR, _NT], [() => IndexingRuleList, 0]];
834
+ var GetInsightEventsRequest = [3, n0, _GIER, 0, [_II, _MR, _NT], [0, 1, 0]];
835
+ var GetInsightEventsResult = [3, n0, _GIERe, 0, [_IE, _NT], [() => InsightEventList, 0]];
836
+ var GetInsightImpactGraphRequest = [3, n0, _GIIGR, 0, [_II, _ST, _ET, _NT], [0, 4, 4, 0]];
837
+ var GetInsightImpactGraphResult = [
838
+ 3,
839
+ n0,
840
+ _GIIGRe,
841
+ 0,
842
+ [_II, _ST, _ET, _SGST, _SGET, _Se, _NT],
843
+ [0, 4, 4, 4, 4, () => InsightImpactGraphServiceList, 0],
844
+ ];
845
+ var GetInsightRequest = [3, n0, _GIR, 0, [_II], [0]];
846
+ var GetInsightResult = [3, n0, _GIRe, 0, [_In], [() => Insight]];
847
+ var GetInsightSummariesRequest = [
848
+ 3,
849
+ n0,
850
+ _GISR,
851
+ 0,
852
+ [_St, _GARN, _GN, _ST, _ET, _MR, _NT],
853
+ [64 | 0, 0, 0, 4, 4, 1, 0],
854
+ ];
855
+ var GetInsightSummariesResult = [
856
+ 3,
857
+ n0,
858
+ _GISRe,
859
+ 0,
860
+ [_IS, _NT],
861
+ [() => InsightSummaryList, 0],
862
+ ];
863
+ var GetRetrievedTracesGraphRequest = [3, n0, _GRTGR, 0, [_RT, _NT], [0, 0]];
864
+ var GetRetrievedTracesGraphResult = [
865
+ 3,
866
+ n0,
867
+ _GRTGRe,
868
+ 0,
869
+ [_RS, _Se, _NT],
870
+ [0, () => RetrievedServicesList, 0],
871
+ ];
872
+ var GetSamplingRulesRequest = [3, n0, _GSRR, 0, [_NT], [0]];
873
+ var GetSamplingRulesResult = [
874
+ 3,
875
+ n0,
876
+ _GSRRe,
877
+ 0,
878
+ [_SRRa, _NT],
879
+ [() => SamplingRuleRecordList, 0],
880
+ ];
881
+ var GetSamplingStatisticSummariesRequest = [3, n0, _GSSSR, 0, [_NT], [0]];
882
+ var GetSamplingStatisticSummariesResult = [
883
+ 3,
884
+ n0,
885
+ _GSSSRe,
886
+ 0,
887
+ [_SSS, _NT],
888
+ [() => SamplingStatisticSummaryList, 0],
889
+ ];
890
+ var GetSamplingTargetsRequest = [
891
+ 3,
892
+ n0,
893
+ _GSTR,
894
+ 0,
895
+ [_SSD, _SBSD],
896
+ [() => SamplingStatisticsDocumentList, () => SamplingBoostStatisticsDocumentList],
897
+ ];
898
+ var GetSamplingTargetsResult = [
899
+ 3,
900
+ n0,
901
+ _GSTRe,
902
+ 0,
903
+ [_STD, _LRM, _US, _UBS],
904
+ [() => SamplingTargetDocumentList, 4, () => UnprocessedStatisticsList, () => UnprocessedStatisticsList],
905
+ ];
906
+ var GetServiceGraphRequest = [
907
+ 3,
908
+ n0,
909
+ _GSGR,
910
+ 0,
911
+ [_ST, _ET, _GN, _GARN, _NT],
912
+ [4, 4, 0, 0, 0],
913
+ ];
914
+ var GetServiceGraphResult = [
915
+ 3,
916
+ n0,
917
+ _GSGRe,
918
+ 0,
919
+ [_ST, _ET, _Se, _COGV, _NT],
920
+ [4, 4, () => ServiceList, 2, 0],
921
+ ];
922
+ var GetTimeSeriesServiceStatisticsRequest = [
923
+ 3,
924
+ n0,
925
+ _GTSSSR,
926
+ 0,
927
+ [_ST, _ET, _GN, _GARN, _ESE, _P, _FSo, _NT],
928
+ [4, 4, 0, 0, 0, 1, 2, 0],
929
+ ];
930
+ var GetTimeSeriesServiceStatisticsResult = [
931
+ 3,
932
+ n0,
933
+ _GTSSSRe,
934
+ 0,
935
+ [_TSSS, _COGV, _NT],
936
+ [() => TimeSeriesServiceStatisticsList, 2, 0],
937
+ ];
938
+ var GetTraceGraphRequest = [3, n0, _GTGR, 0, [_TI, _NT], [64 | 0, 0]];
939
+ var GetTraceGraphResult = [3, n0, _GTGRe, 0, [_Se, _NT], [() => ServiceList, 0]];
940
+ var GetTraceSegmentDestinationRequest = [3, n0, _GTSDR, 0, [], []];
941
+ var GetTraceSegmentDestinationResult = [3, n0, _GTSDRe, 0, [_D, _S], [0, 0]];
942
+ var GetTraceSummariesRequest = [
943
+ 3,
944
+ n0,
945
+ _GTSR,
946
+ 0,
947
+ [_ST, _ET, _TRTi, _Sa, _SSa, _FE, _NT],
948
+ [4, 4, 0, 2, () => SamplingStrategy, 0, 0],
949
+ ];
950
+ var GetTraceSummariesResult = [
951
+ 3,
952
+ n0,
953
+ _GTSRe,
954
+ 0,
955
+ [_TS, _AT, _TPC, _NT],
956
+ [() => TraceSummaryList, 4, 1, 0],
957
+ ];
958
+ var GraphLink = [3, n0, _GL, 0, [_RTe, _STI, _DTI], [0, 0, 64 | 0]];
959
+ var Group = [
960
+ 3,
961
+ n0,
962
+ _G,
963
+ 0,
964
+ [_GN, _GARN, _FE, _IC],
965
+ [0, 0, 0, () => InsightsConfiguration],
966
+ ];
967
+ var GroupSummary = [
968
+ 3,
969
+ n0,
970
+ _GS,
971
+ 0,
972
+ [_GN, _GARN, _FE, _IC],
973
+ [0, 0, 0, () => InsightsConfiguration],
974
+ ];
975
+ var HistogramEntry = [3, n0, _HE, 0, [_V, _C], [1, 1]];
976
+ var Http = [3, n0, _H, 0, [_HURL, _HS, _HM, _UA, _CIl], [0, 1, 0, 0, 0]];
977
+ var IndexingRule = [3, n0, _IRn, 0, [_N, _MA, _Ru], [0, 4, () => IndexingRuleValue]];
978
+ var Insight = [
979
+ 3,
980
+ n0,
981
+ _In,
982
+ 0,
983
+ [_II, _GARN, _GN, _RCSI, _Ca, _Sta, _ST, _ET, _Su, _CRIS, _RCSRIS, _TAS],
984
+ [
985
+ 0,
986
+ 0,
987
+ 0,
988
+ () => ServiceId,
989
+ 64 | 0,
990
+ 0,
991
+ 4,
992
+ 4,
993
+ 0,
994
+ () => RequestImpactStatistics,
995
+ () => RequestImpactStatistics,
996
+ () => AnomalousServiceList,
997
+ ],
998
+ ];
999
+ var InsightEvent = [
1000
+ 3,
1001
+ n0,
1002
+ _IEn,
1003
+ 0,
1004
+ [_Su, _ETv, _CRIS, _RCSRIS, _TAS],
1005
+ [0, 4, () => RequestImpactStatistics, () => RequestImpactStatistics, () => AnomalousServiceList],
1006
+ ];
1007
+ var InsightImpactGraphEdge = [3, n0, _IIGE, 0, [_RI], [1]];
1008
+ var InsightImpactGraphService = [
1009
+ 3,
1010
+ n0,
1011
+ _IIGS,
1012
+ 0,
1013
+ [_RI, _T, _N, _Na, _AI, _Ed],
1014
+ [1, 0, 0, 64 | 0, 0, () => InsightImpactGraphEdgeList],
1015
+ ];
1016
+ var InsightsConfiguration = [3, n0, _IC, 0, [_IEns, _NE], [2, 2]];
1017
+ var InsightSummary = [
1018
+ 3,
1019
+ n0,
1020
+ _ISn,
1021
+ 0,
1022
+ [_II, _GARN, _GN, _RCSI, _Ca, _Sta, _ST, _ET, _Su, _CRIS, _RCSRIS, _TAS, _LUT],
1023
+ [
1024
+ 0,
1025
+ 0,
1026
+ 0,
1027
+ () => ServiceId,
1028
+ 64 | 0,
1029
+ 0,
1030
+ 4,
1031
+ 4,
1032
+ 0,
1033
+ () => RequestImpactStatistics,
1034
+ () => RequestImpactStatistics,
1035
+ () => AnomalousServiceList,
1036
+ 4,
1037
+ ],
1038
+ ];
1039
+ var InstanceIdDetail = [3, n0, _IID, 0, [_Id], [0]];
1040
+ var InvalidPolicyRevisionIdException = [
1041
+ -3,
1042
+ n0,
1043
+ _IPRIE,
1044
+ {
1045
+ [_e]: _c,
1046
+ [_hE]: 400,
1047
+ },
1048
+ [_M],
1049
+ [0],
1050
+ ];
1051
+ schema.TypeRegistry.for(n0).registerError(InvalidPolicyRevisionIdException, InvalidPolicyRevisionIdException$1);
1052
+ var InvalidRequestException = [
1053
+ -3,
1054
+ n0,
1055
+ _IRE,
1056
+ {
1057
+ [_e]: _c,
1058
+ },
1059
+ [_M],
1060
+ [0],
1061
+ ];
1062
+ schema.TypeRegistry.for(n0).registerError(InvalidRequestException, InvalidRequestException$1);
1063
+ var ListResourcePoliciesRequest = [3, n0, _LRPR, 0, [_NT], [0]];
1064
+ var ListResourcePoliciesResult = [
1065
+ 3,
1066
+ n0,
1067
+ _LRPRi,
1068
+ 0,
1069
+ [_RP, _NT],
1070
+ [() => ResourcePolicyList, 0],
1071
+ ];
1072
+ var ListRetrievedTracesRequest = [3, n0, _LRTR, 0, [_RT, _TF, _NT], [0, 0, 0]];
1073
+ var ListRetrievedTracesResult = [
1074
+ 3,
1075
+ n0,
1076
+ _LRTRi,
1077
+ 0,
1078
+ [_RS, _TF, _Tr, _NT],
1079
+ [0, 0, () => TraceSpanList, 0],
1080
+ ];
1081
+ var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARNe, _NT], [0, 0]];
1082
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta, _NT], [() => TagList, 0]];
1083
+ var LockoutPreventionException = [
1084
+ -3,
1085
+ n0,
1086
+ _LPE,
1087
+ {
1088
+ [_e]: _c,
1089
+ [_hE]: 400,
1090
+ },
1091
+ [_M],
1092
+ [0],
1093
+ ];
1094
+ schema.TypeRegistry.for(n0).registerError(LockoutPreventionException, LockoutPreventionException$1);
1095
+ var MalformedPolicyDocumentException = [
1096
+ -3,
1097
+ n0,
1098
+ _MPDE,
1099
+ {
1100
+ [_e]: _c,
1101
+ [_hE]: 400,
1102
+ },
1103
+ [_M],
1104
+ [0],
1105
+ ];
1106
+ schema.TypeRegistry.for(n0).registerError(MalformedPolicyDocumentException, MalformedPolicyDocumentException$1);
1107
+ var PolicyCountLimitExceededException = [
1108
+ -3,
1109
+ n0,
1110
+ _PCLEE,
1111
+ {
1112
+ [_e]: _c,
1113
+ [_hE]: 400,
1114
+ },
1115
+ [_M],
1116
+ [0],
1117
+ ];
1118
+ schema.TypeRegistry.for(n0).registerError(PolicyCountLimitExceededException, PolicyCountLimitExceededException$1);
1119
+ var PolicySizeLimitExceededException = [
1120
+ -3,
1121
+ n0,
1122
+ _PSLEE,
1123
+ {
1124
+ [_e]: _c,
1125
+ [_hE]: 400,
1126
+ },
1127
+ [_M],
1128
+ [0],
1129
+ ];
1130
+ schema.TypeRegistry.for(n0).registerError(PolicySizeLimitExceededException, PolicySizeLimitExceededException$1);
1131
+ var ProbabilisticRuleValue = [3, n0, _PRV, 0, [_DSP, _ASP], [1, 1]];
1132
+ var ProbabilisticRuleValueUpdate = [3, n0, _PRVU, 0, [_DSP], [1]];
1133
+ var PutEncryptionConfigRequest = [3, n0, _PECR, 0, [_KI, _T], [0, 0]];
1134
+ var PutEncryptionConfigResult = [3, n0, _PECRu, 0, [_EC], [() => EncryptionConfig]];
1135
+ var PutResourcePolicyRequest = [3, n0, _PRPR, 0, [_PN, _PD, _PRI, _BPLC], [0, 0, 0, 2]];
1136
+ var PutResourcePolicyResult = [3, n0, _PRPRu, 0, [_RPe], [() => ResourcePolicy]];
1137
+ var PutTelemetryRecordsRequest = [
1138
+ 3,
1139
+ n0,
1140
+ _PTRR,
1141
+ 0,
1142
+ [_TR, _ECII, _Ho, _RARNe],
1143
+ [() => TelemetryRecordList, 0, 0, 0],
1144
+ ];
1145
+ var PutTelemetryRecordsResult = [3, n0, _PTRRu, 0, [], []];
1146
+ var PutTraceSegmentsRequest = [3, n0, _PTSR, 0, [_TSD], [64 | 0]];
1147
+ var PutTraceSegmentsResult = [
1148
+ 3,
1149
+ n0,
1150
+ _PTSRu,
1151
+ 0,
1152
+ [_UTS],
1153
+ [() => UnprocessedTraceSegmentList],
1154
+ ];
1155
+ var RequestImpactStatistics = [3, n0, _RIS, 0, [_FC, _OCk, _TCo], [1, 1, 1]];
1156
+ var ResourceARNDetail = [3, n0, _RARND, 0, [_ARN], [0]];
1157
+ var ResourceNotFoundException = [
1158
+ -3,
1159
+ n0,
1160
+ _RNFE,
1161
+ {
1162
+ [_e]: _c,
1163
+ [_hE]: 404,
1164
+ },
1165
+ [_M, _RNe],
1166
+ [0, 0],
1167
+ ];
1168
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1169
+ var ResourcePolicy = [3, n0, _RPe, 0, [_PN, _PD, _PRI, _LUTa], [0, 0, 0, 4]];
1170
+ var ResponseTimeRootCause = [
1171
+ 3,
1172
+ n0,
1173
+ _RTRC,
1174
+ 0,
1175
+ [_Se, _CI],
1176
+ [() => ResponseTimeRootCauseServices, 2],
1177
+ ];
1178
+ var ResponseTimeRootCauseEntity = [3, n0, _RTRCE, 0, [_N, _Co, _R], [0, 1, 2]];
1179
+ var ResponseTimeRootCauseService = [
1180
+ 3,
1181
+ n0,
1182
+ _RTRCS,
1183
+ 0,
1184
+ [_N, _Na, _T, _AI, _EP, _I],
1185
+ [0, 64 | 0, 0, 0, () => ResponseTimeRootCauseEntityPath, 2],
1186
+ ];
1187
+ var RetrievedService = [3, n0, _RSe, 0, [_Ser, _L], [() => Service, () => LinksList]];
1188
+ var RetrievedTrace = [3, n0, _RTet, 0, [_Id, _Du, _Sp], [0, 1, () => SpanList]];
1189
+ var RootCauseException = [3, n0, _RCE, 0, [_N, _M], [0, 0]];
1190
+ var RuleLimitExceededException = [
1191
+ -3,
1192
+ n0,
1193
+ _RLEE,
1194
+ {
1195
+ [_e]: _c,
1196
+ },
1197
+ [_M],
1198
+ [0],
1199
+ ];
1200
+ schema.TypeRegistry.for(n0).registerError(RuleLimitExceededException, RuleLimitExceededException$1);
1201
+ var SamplingBoost = [3, n0, _SB, 0, [_BR, _BRTTL], [1, 4]];
1202
+ var SamplingBoostStatisticsDocument = [
1203
+ 3,
1204
+ n0,
1205
+ _SBSDa,
1206
+ 0,
1207
+ [_RN, _SN, _Ti, _AC, _TCo, _SAC],
1208
+ [0, 0, 4, 1, 1, 1],
1209
+ ];
1210
+ var SamplingRateBoost = [3, n0, _SRB, 0, [_MRa, _CWM], [1, 1]];
1211
+ var SamplingRule = [
1212
+ 3,
1213
+ n0,
1214
+ _SR,
1215
+ 0,
1216
+ [_RN, _RARN, _RARNe, _Pr, _FR, _RSes, _SN, _STe, _Hos, _HTTPM, _URLP, _Ve, _At, _SRB],
1217
+ [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 128 | 0, () => SamplingRateBoost],
1218
+ ];
1219
+ var SamplingRuleRecord = [3, n0, _SRR, 0, [_SR, _CA, _MA], [() => SamplingRule, 4, 4]];
1220
+ var SamplingRuleUpdate = [
1221
+ 3,
1222
+ n0,
1223
+ _SRU,
1224
+ 0,
1225
+ [_RN, _RARN, _RARNe, _Pr, _FR, _RSes, _Hos, _SN, _STe, _HTTPM, _URLP, _At, _SRB],
1226
+ [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 128 | 0, () => SamplingRateBoost],
1227
+ ];
1228
+ var SamplingStatisticsDocument = [
1229
+ 3,
1230
+ n0,
1231
+ _SSDa,
1232
+ 0,
1233
+ [_RN, _CID, _Ti, _RC, _SC, _BC],
1234
+ [0, 0, 4, 1, 1, 1],
1235
+ ];
1236
+ var SamplingStatisticSummary = [
1237
+ 3,
1238
+ n0,
1239
+ _SSSa,
1240
+ 0,
1241
+ [_RN, _Ti, _RC, _BC, _SC],
1242
+ [0, 4, 1, 1, 1],
1243
+ ];
1244
+ var SamplingStrategy = [3, n0, _SSa, 0, [_N, _V], [0, 1]];
1245
+ var SamplingTargetDocument = [
1246
+ 3,
1247
+ n0,
1248
+ _STDa,
1249
+ 0,
1250
+ [_RN, _FR, _RQ, _RQTTL, _Int, _SB],
1251
+ [0, 1, 1, 4, 1, () => SamplingBoost],
1252
+ ];
1253
+ var Segment = [3, n0, _Seg, 0, [_Id, _Do], [0, 0]];
1254
+ var Service = [
1255
+ 3,
1256
+ n0,
1257
+ _Ser,
1258
+ 0,
1259
+ [_RI, _N, _Na, _Ro, _AI, _T, _Sta, _ST, _ET, _Ed, _SS, _DH, _RTH],
1260
+ [1, 0, 64 | 0, 2, 0, 0, 0, 4, 4, () => EdgeList, () => ServiceStatistics, () => Histogram, () => Histogram],
1261
+ ];
1262
+ var ServiceId = [3, n0, _SI, 0, [_N, _Na, _AI, _T], [0, 64 | 0, 0, 0]];
1263
+ var ServiceStatistics = [
1264
+ 3,
1265
+ n0,
1266
+ _SSe,
1267
+ 0,
1268
+ [_OCk, _ESr, _FS, _TCo, _TRT],
1269
+ [1, () => ErrorStatistics, () => FaultStatistics, 1, 1],
1270
+ ];
1271
+ var Span = [3, n0, _Spa, 0, [_Id, _Do], [0, 0]];
1272
+ var StartTraceRetrievalRequest = [3, n0, _STRR, 0, [_TI, _ST, _ET], [64 | 0, 4, 4]];
1273
+ var StartTraceRetrievalResult = [3, n0, _STRRt, 0, [_RT], [0]];
1274
+ var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
1275
+ var TagResourceRequest = [3, n0, _TRR, 0, [_RARNe, _Ta], [0, () => TagList]];
1276
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1277
+ var TelemetryRecord = [
1278
+ 3,
1279
+ n0,
1280
+ _TRe,
1281
+ 0,
1282
+ [_Ti, _SRC, _SSC, _SSCe, _SRCe, _BCE],
1283
+ [4, 1, 1, 1, 1, () => BackendConnectionErrors],
1284
+ ];
1285
+ var ThrottledException = [
1286
+ -3,
1287
+ n0,
1288
+ _TE,
1289
+ {
1290
+ [_e]: _c,
1291
+ [_hE]: 429,
1292
+ },
1293
+ [_M],
1294
+ [0],
1295
+ ];
1296
+ schema.TypeRegistry.for(n0).registerError(ThrottledException, ThrottledException$1);
1297
+ var TimeSeriesServiceStatistics = [
1298
+ 3,
1299
+ n0,
1300
+ _TSSS,
1301
+ 0,
1302
+ [_Ti, _ESS, _SSSe, _SFS, _RTH],
1303
+ [4, () => EdgeStatistics, () => ServiceStatistics, () => ForecastStatistics, () => Histogram],
1304
+ ];
1305
+ var TooManyTagsException = [
1306
+ -3,
1307
+ n0,
1308
+ _TMTE,
1309
+ {
1310
+ [_e]: _c,
1311
+ [_hE]: 400,
1312
+ },
1313
+ [_M, _RNe],
1314
+ [0, 0],
1315
+ ];
1316
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
1317
+ var Trace = [3, n0, _Tra, 0, [_Id, _Du, _LE, _Segm], [0, 1, 2, () => SegmentList]];
1318
+ var TraceSummary = [
1319
+ 3,
1320
+ n0,
1321
+ _TSr,
1322
+ 0,
1323
+ [
1324
+ _Id,
1325
+ _ST,
1326
+ _Du,
1327
+ _RTes,
1328
+ _HF,
1329
+ _HEa,
1330
+ _HT,
1331
+ _IP,
1332
+ _H,
1333
+ _An,
1334
+ _U,
1335
+ _SIe,
1336
+ _RARNes,
1337
+ _IIn,
1338
+ _AZ,
1339
+ _EPn,
1340
+ _FRCa,
1341
+ _ERCr,
1342
+ _RTRCe,
1343
+ _Re,
1344
+ _MET,
1345
+ ],
1346
+ [
1347
+ 0,
1348
+ 4,
1349
+ 1,
1350
+ 1,
1351
+ 2,
1352
+ 2,
1353
+ 2,
1354
+ 2,
1355
+ () => Http,
1356
+ () => Annotations,
1357
+ () => TraceUsers,
1358
+ () => ServiceIds,
1359
+ () => TraceResourceARNs,
1360
+ () => TraceInstanceIds,
1361
+ () => TraceAvailabilityZones,
1362
+ () => ServiceId,
1363
+ () => FaultRootCauses,
1364
+ () => ErrorRootCauses,
1365
+ () => ResponseTimeRootCauses,
1366
+ 1,
1367
+ 4,
1368
+ ],
1369
+ ];
1370
+ var TraceUser = [3, n0, _TU, 0, [_UN, _SIe], [0, () => ServiceIds]];
1371
+ var UnprocessedStatistics = [3, n0, _US, 0, [_RN, _ECr, _M], [0, 0, 0]];
1372
+ var UnprocessedTraceSegment = [3, n0, _UTSn, 0, [_Id, _ECr, _M], [0, 0, 0]];
1373
+ var UntagResourceRequest = [3, n0, _URR, 0, [_RARNe, _TK], [0, 64 | 0]];
1374
+ var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1375
+ var UpdateGroupRequest = [
1376
+ 3,
1377
+ n0,
1378
+ _UGR,
1379
+ 0,
1380
+ [_GN, _GARN, _FE, _IC],
1381
+ [0, 0, 0, () => InsightsConfiguration],
1382
+ ];
1383
+ var UpdateGroupResult = [3, n0, _UGRp, 0, [_G], [() => Group]];
1384
+ var UpdateIndexingRuleRequest = [
1385
+ 3,
1386
+ n0,
1387
+ _UIRR,
1388
+ 0,
1389
+ [_N, _Ru],
1390
+ [0, () => IndexingRuleValueUpdate],
1391
+ ];
1392
+ var UpdateIndexingRuleResult = [3, n0, _UIRRp, 0, [_IRn], [() => IndexingRule]];
1393
+ var UpdateSamplingRuleRequest = [3, n0, _USRR, 0, [_SRU], [() => SamplingRuleUpdate]];
1394
+ var UpdateSamplingRuleResult = [3, n0, _USRRp, 0, [_SRR], [() => SamplingRuleRecord]];
1395
+ var UpdateTraceSegmentDestinationRequest = [3, n0, _UTSDR, 0, [_D], [0]];
1396
+ var UpdateTraceSegmentDestinationResult = [3, n0, _UTSDRp, 0, [_D, _S], [0, 0]];
1397
+ var ValueWithServiceIds = [
1398
+ 3,
1399
+ n0,
1400
+ _VWSI,
1401
+ 0,
1402
+ [_AV, _SIe],
1403
+ [() => AnnotationValue, () => ServiceIds],
1404
+ ];
1405
+ var XRayServiceException = [-3, _s, "XRayServiceException", 0, [], []];
1406
+ schema.TypeRegistry.for(_s).registerError(XRayServiceException, XRayServiceException$1);
1407
+ var AliasList = [1, n0, _AL, 0, () => Alias];
1408
+ var AnomalousServiceList = [1, n0, _ASL, 0, () => AnomalousService];
1409
+ var EdgeList = [1, n0, _EL, 0, () => Edge];
1410
+ var ErrorRootCauseEntityPath = [1, n0, _ERCEP, 0, () => ErrorRootCauseEntity];
1411
+ var ErrorRootCauses = [1, n0, _ERCr, 0, () => ErrorRootCause];
1412
+ var ErrorRootCauseServices = [1, n0, _ERCSr, 0, () => ErrorRootCauseService];
1413
+ var FaultRootCauseEntityPath = [1, n0, _FRCEP, 0, () => FaultRootCauseEntity];
1414
+ var FaultRootCauses = [1, n0, _FRCa, 0, () => FaultRootCause];
1415
+ var FaultRootCauseServices = [1, n0, _FRCSa, 0, () => FaultRootCauseService];
1416
+ var GroupSummaryList = [1, n0, _GSL, 0, () => GroupSummary];
1417
+ var Histogram = [1, n0, _Hi, 0, () => HistogramEntry];
1418
+ var IndexingRuleList = [1, n0, _IRL, 0, () => IndexingRule];
1419
+ var InsightEventList = [1, n0, _IEL, 0, () => InsightEvent];
1420
+ var InsightImpactGraphEdgeList = [1, n0, _IIGEL, 0, () => InsightImpactGraphEdge];
1421
+ var InsightImpactGraphServiceList = [1, n0, _IIGSL, 0, () => InsightImpactGraphService];
1422
+ var InsightSummaryList = [1, n0, _ISL, 0, () => InsightSummary];
1423
+ var LinksList = [1, n0, _LL, 0, () => GraphLink];
1424
+ var ResourcePolicyList = [1, n0, _RPL, 0, () => ResourcePolicy];
1425
+ var ResponseTimeRootCauseEntityPath = [1, n0, _RTRCEP, 0, () => ResponseTimeRootCauseEntity];
1426
+ var ResponseTimeRootCauses = [1, n0, _RTRCe, 0, () => ResponseTimeRootCause];
1427
+ var ResponseTimeRootCauseServices = [1, n0, _RTRCSe, 0, () => ResponseTimeRootCauseService];
1428
+ var RetrievedServicesList = [1, n0, _RSL, 0, () => RetrievedService];
1429
+ var RootCauseExceptions = [1, n0, _RCEo, 0, () => RootCauseException];
1430
+ var SamplingBoostStatisticsDocumentList = [
1431
+ 1,
1432
+ n0,
1433
+ _SBSDL,
1434
+ 0,
1435
+ () => SamplingBoostStatisticsDocument,
1436
+ ];
1437
+ var SamplingRuleRecordList = [1, n0, _SRRL, 0, () => SamplingRuleRecord];
1438
+ var SamplingStatisticsDocumentList = [1, n0, _SSDL, 0, () => SamplingStatisticsDocument];
1439
+ var SamplingStatisticSummaryList = [1, n0, _SSSL, 0, () => SamplingStatisticSummary];
1440
+ var SamplingTargetDocumentList = [1, n0, _STDL, 0, () => SamplingTargetDocument];
1441
+ var SegmentList = [1, n0, _SL, 0, () => Segment];
1442
+ var ServiceIds = [1, n0, _SIe, 0, () => ServiceId];
1443
+ var ServiceList = [1, n0, _SLe, 0, () => Service];
1444
+ var SpanList = [1, n0, _SLp, 0, () => Span];
1445
+ var TagList = [1, n0, _TL, 0, () => Tag];
1446
+ var TelemetryRecordList = [1, n0, _TRL, 0, () => TelemetryRecord];
1447
+ var TimeSeriesServiceStatisticsList = [1, n0, _TSSSL, 0, () => TimeSeriesServiceStatistics];
1448
+ var TraceAvailabilityZones = [1, n0, _TAZ, 0, () => AvailabilityZoneDetail];
1449
+ var TraceInstanceIds = [1, n0, _TII, 0, () => InstanceIdDetail];
1450
+ var TraceList = [1, n0, _TLr, 0, () => Trace];
1451
+ var TraceResourceARNs = [1, n0, _TRARN, 0, () => ResourceARNDetail];
1452
+ var TraceSpanList = [1, n0, _TSL, 0, () => RetrievedTrace];
1453
+ var TraceSummaryList = [1, n0, _TSLr, 0, () => TraceSummary];
1454
+ var TraceUsers = [1, n0, _TUr, 0, () => TraceUser];
1455
+ var UnprocessedStatisticsList = [1, n0, _USL, 0, () => UnprocessedStatistics];
1456
+ var UnprocessedTraceSegmentList = [1, n0, _UTSL, 0, () => UnprocessedTraceSegment];
1457
+ var ValuesWithServiceIds = [1, n0, _VWSIa, 0, () => ValueWithServiceIds];
1458
+ var Annotations = [2, n0, _An, 0, 0, () => ValuesWithServiceIds];
1459
+ var AnnotationValue = [3, n0, _AV, 0, [_NV, _BV, _SV], [1, 2, 0]];
1460
+ var IndexingRuleValue = [3, n0, _IRV, 0, [_Pro], [() => ProbabilisticRuleValue]];
1461
+ var IndexingRuleValueUpdate = [
1462
+ 3,
1463
+ n0,
1464
+ _IRVU,
1465
+ 0,
1466
+ [_Pro],
1467
+ [() => ProbabilisticRuleValueUpdate],
1468
+ ];
1469
+ var BatchGetTraces = [
1470
+ 9,
1471
+ n0,
1472
+ _BGT,
1473
+ {
1474
+ [_h]: ["POST", "/Traces", 200],
1475
+ },
1476
+ () => BatchGetTracesRequest,
1477
+ () => BatchGetTracesResult,
1478
+ ];
1479
+ var CancelTraceRetrieval = [
1480
+ 9,
1481
+ n0,
1482
+ _CTR,
1483
+ {
1484
+ [_h]: ["POST", "/CancelTraceRetrieval", 200],
1485
+ },
1486
+ () => CancelTraceRetrievalRequest,
1487
+ () => CancelTraceRetrievalResult,
1488
+ ];
1489
+ var CreateGroup = [
1490
+ 9,
1491
+ n0,
1492
+ _CG,
1493
+ {
1494
+ [_h]: ["POST", "/CreateGroup", 200],
1495
+ },
1496
+ () => CreateGroupRequest,
1497
+ () => CreateGroupResult,
1498
+ ];
1499
+ var CreateSamplingRule = [
1500
+ 9,
1501
+ n0,
1502
+ _CSR,
1503
+ {
1504
+ [_h]: ["POST", "/CreateSamplingRule", 200],
1505
+ },
1506
+ () => CreateSamplingRuleRequest,
1507
+ () => CreateSamplingRuleResult,
1508
+ ];
1509
+ var DeleteGroup = [
1510
+ 9,
1511
+ n0,
1512
+ _DG,
1513
+ {
1514
+ [_h]: ["POST", "/DeleteGroup", 200],
1515
+ },
1516
+ () => DeleteGroupRequest,
1517
+ () => DeleteGroupResult,
1518
+ ];
1519
+ var DeleteResourcePolicy = [
1520
+ 9,
1521
+ n0,
1522
+ _DRP,
1523
+ {
1524
+ [_h]: ["POST", "/DeleteResourcePolicy", 200],
1525
+ },
1526
+ () => DeleteResourcePolicyRequest,
1527
+ () => DeleteResourcePolicyResult,
1528
+ ];
1529
+ var DeleteSamplingRule = [
1530
+ 9,
1531
+ n0,
1532
+ _DSR,
1533
+ {
1534
+ [_h]: ["POST", "/DeleteSamplingRule", 200],
1535
+ },
1536
+ () => DeleteSamplingRuleRequest,
1537
+ () => DeleteSamplingRuleResult,
1538
+ ];
1539
+ var GetEncryptionConfig = [
1540
+ 9,
1541
+ n0,
1542
+ _GEC,
1543
+ {
1544
+ [_h]: ["POST", "/EncryptionConfig", 200],
1545
+ },
1546
+ () => GetEncryptionConfigRequest,
1547
+ () => GetEncryptionConfigResult,
1548
+ ];
1549
+ var GetGroup = [
1550
+ 9,
1551
+ n0,
1552
+ _GG,
1553
+ {
1554
+ [_h]: ["POST", "/GetGroup", 200],
1555
+ },
1556
+ () => GetGroupRequest,
1557
+ () => GetGroupResult,
1558
+ ];
1559
+ var GetGroups = [
1560
+ 9,
1561
+ n0,
1562
+ _GGe,
1563
+ {
1564
+ [_h]: ["POST", "/Groups", 200],
1565
+ },
1566
+ () => GetGroupsRequest,
1567
+ () => GetGroupsResult,
1568
+ ];
1569
+ var GetIndexingRules = [
1570
+ 9,
1571
+ n0,
1572
+ _GIRet,
1573
+ {
1574
+ [_h]: ["POST", "/GetIndexingRules", 200],
1575
+ },
1576
+ () => GetIndexingRulesRequest,
1577
+ () => GetIndexingRulesResult,
1578
+ ];
1579
+ var GetInsight = [
1580
+ 9,
1581
+ n0,
1582
+ _GI,
1583
+ {
1584
+ [_h]: ["POST", "/Insight", 200],
1585
+ },
1586
+ () => GetInsightRequest,
1587
+ () => GetInsightResult,
1588
+ ];
1589
+ var GetInsightEvents = [
1590
+ 9,
1591
+ n0,
1592
+ _GIE,
1593
+ {
1594
+ [_h]: ["POST", "/InsightEvents", 200],
1595
+ },
1596
+ () => GetInsightEventsRequest,
1597
+ () => GetInsightEventsResult,
1598
+ ];
1599
+ var GetInsightImpactGraph = [
1600
+ 9,
1601
+ n0,
1602
+ _GIIG,
1603
+ {
1604
+ [_h]: ["POST", "/InsightImpactGraph", 200],
1605
+ },
1606
+ () => GetInsightImpactGraphRequest,
1607
+ () => GetInsightImpactGraphResult,
1608
+ ];
1609
+ var GetInsightSummaries = [
1610
+ 9,
1611
+ n0,
1612
+ _GIS,
1613
+ {
1614
+ [_h]: ["POST", "/InsightSummaries", 200],
1615
+ },
1616
+ () => GetInsightSummariesRequest,
1617
+ () => GetInsightSummariesResult,
1618
+ ];
1619
+ var GetRetrievedTracesGraph = [
1620
+ 9,
1621
+ n0,
1622
+ _GRTG,
1623
+ {
1624
+ [_h]: ["POST", "/GetRetrievedTracesGraph", 200],
1625
+ },
1626
+ () => GetRetrievedTracesGraphRequest,
1627
+ () => GetRetrievedTracesGraphResult,
1628
+ ];
1629
+ var GetSamplingRules = [
1630
+ 9,
1631
+ n0,
1632
+ _GSR,
1633
+ {
1634
+ [_h]: ["POST", "/GetSamplingRules", 200],
1635
+ },
1636
+ () => GetSamplingRulesRequest,
1637
+ () => GetSamplingRulesResult,
1638
+ ];
1639
+ var GetSamplingStatisticSummaries = [
1640
+ 9,
1641
+ n0,
1642
+ _GSSS,
1643
+ {
1644
+ [_h]: ["POST", "/SamplingStatisticSummaries", 200],
1645
+ },
1646
+ () => GetSamplingStatisticSummariesRequest,
1647
+ () => GetSamplingStatisticSummariesResult,
1648
+ ];
1649
+ var GetSamplingTargets = [
1650
+ 9,
1651
+ n0,
1652
+ _GST,
1653
+ {
1654
+ [_h]: ["POST", "/SamplingTargets", 200],
1655
+ },
1656
+ () => GetSamplingTargetsRequest,
1657
+ () => GetSamplingTargetsResult,
1658
+ ];
1659
+ var GetServiceGraph = [
1660
+ 9,
1661
+ n0,
1662
+ _GSG,
1663
+ {
1664
+ [_h]: ["POST", "/ServiceGraph", 200],
1665
+ },
1666
+ () => GetServiceGraphRequest,
1667
+ () => GetServiceGraphResult,
1668
+ ];
1669
+ var GetTimeSeriesServiceStatistics = [
1670
+ 9,
1671
+ n0,
1672
+ _GTSSS,
1673
+ {
1674
+ [_h]: ["POST", "/TimeSeriesServiceStatistics", 200],
1675
+ },
1676
+ () => GetTimeSeriesServiceStatisticsRequest,
1677
+ () => GetTimeSeriesServiceStatisticsResult,
1678
+ ];
1679
+ var GetTraceGraph = [
1680
+ 9,
1681
+ n0,
1682
+ _GTG,
1683
+ {
1684
+ [_h]: ["POST", "/TraceGraph", 200],
1685
+ },
1686
+ () => GetTraceGraphRequest,
1687
+ () => GetTraceGraphResult,
1688
+ ];
1689
+ var GetTraceSegmentDestination = [
1690
+ 9,
1691
+ n0,
1692
+ _GTSD,
1693
+ {
1694
+ [_h]: ["POST", "/GetTraceSegmentDestination", 200],
1695
+ },
1696
+ () => GetTraceSegmentDestinationRequest,
1697
+ () => GetTraceSegmentDestinationResult,
1698
+ ];
1699
+ var GetTraceSummaries = [
1700
+ 9,
1701
+ n0,
1702
+ _GTS,
1703
+ {
1704
+ [_h]: ["POST", "/TraceSummaries", 200],
1705
+ },
1706
+ () => GetTraceSummariesRequest,
1707
+ () => GetTraceSummariesResult,
1708
+ ];
1709
+ var ListResourcePolicies = [
1710
+ 9,
1711
+ n0,
1712
+ _LRP,
1713
+ {
1714
+ [_h]: ["POST", "/ListResourcePolicies", 200],
1715
+ },
1716
+ () => ListResourcePoliciesRequest,
1717
+ () => ListResourcePoliciesResult,
1718
+ ];
1719
+ var ListRetrievedTraces = [
1720
+ 9,
1721
+ n0,
1722
+ _LRT,
1723
+ {
1724
+ [_h]: ["POST", "/ListRetrievedTraces", 200],
1725
+ },
1726
+ () => ListRetrievedTracesRequest,
1727
+ () => ListRetrievedTracesResult,
1728
+ ];
1729
+ var ListTagsForResource = [
1730
+ 9,
1731
+ n0,
1732
+ _LTFR,
1733
+ {
1734
+ [_h]: ["POST", "/ListTagsForResource", 200],
1735
+ },
1736
+ () => ListTagsForResourceRequest,
1737
+ () => ListTagsForResourceResponse,
1738
+ ];
1739
+ var PutEncryptionConfig = [
1740
+ 9,
1741
+ n0,
1742
+ _PEC,
1743
+ {
1744
+ [_h]: ["POST", "/PutEncryptionConfig", 200],
1745
+ },
1746
+ () => PutEncryptionConfigRequest,
1747
+ () => PutEncryptionConfigResult,
1748
+ ];
1749
+ var PutResourcePolicy = [
1750
+ 9,
1751
+ n0,
1752
+ _PRP,
1753
+ {
1754
+ [_h]: ["POST", "/PutResourcePolicy", 200],
1755
+ },
1756
+ () => PutResourcePolicyRequest,
1757
+ () => PutResourcePolicyResult,
1758
+ ];
1759
+ var PutTelemetryRecords = [
1760
+ 9,
1761
+ n0,
1762
+ _PTR,
1763
+ {
1764
+ [_h]: ["POST", "/TelemetryRecords", 200],
1765
+ },
1766
+ () => PutTelemetryRecordsRequest,
1767
+ () => PutTelemetryRecordsResult,
1768
+ ];
1769
+ var PutTraceSegments = [
1770
+ 9,
1771
+ n0,
1772
+ _PTS,
1773
+ {
1774
+ [_h]: ["POST", "/TraceSegments", 200],
1775
+ },
1776
+ () => PutTraceSegmentsRequest,
1777
+ () => PutTraceSegmentsResult,
1778
+ ];
1779
+ var StartTraceRetrieval = [
1780
+ 9,
1781
+ n0,
1782
+ _STR,
1783
+ {
1784
+ [_h]: ["POST", "/StartTraceRetrieval", 200],
1785
+ },
1786
+ () => StartTraceRetrievalRequest,
1787
+ () => StartTraceRetrievalResult,
1788
+ ];
1789
+ var TagResource = [
1790
+ 9,
1791
+ n0,
1792
+ _TRa,
1793
+ {
1794
+ [_h]: ["POST", "/TagResource", 200],
1795
+ },
1796
+ () => TagResourceRequest,
1797
+ () => TagResourceResponse,
1798
+ ];
1799
+ var UntagResource = [
1800
+ 9,
1801
+ n0,
1802
+ _UR,
1803
+ {
1804
+ [_h]: ["POST", "/UntagResource", 200],
1805
+ },
1806
+ () => UntagResourceRequest,
1807
+ () => UntagResourceResponse,
1808
+ ];
1809
+ var UpdateGroup = [
1810
+ 9,
1811
+ n0,
1812
+ _UG,
1813
+ {
1814
+ [_h]: ["POST", "/UpdateGroup", 200],
1815
+ },
1816
+ () => UpdateGroupRequest,
1817
+ () => UpdateGroupResult,
1818
+ ];
1819
+ var UpdateIndexingRule = [
1820
+ 9,
1821
+ n0,
1822
+ _UIR,
1823
+ {
1824
+ [_h]: ["POST", "/UpdateIndexingRule", 200],
1825
+ },
1826
+ () => UpdateIndexingRuleRequest,
1827
+ () => UpdateIndexingRuleResult,
1828
+ ];
1829
+ var UpdateSamplingRule = [
1830
+ 9,
1831
+ n0,
1832
+ _USR,
1833
+ {
1834
+ [_h]: ["POST", "/UpdateSamplingRule", 200],
1835
+ },
1836
+ () => UpdateSamplingRuleRequest,
1837
+ () => UpdateSamplingRuleResult,
1838
+ ];
1839
+ var UpdateTraceSegmentDestination = [
1840
+ 9,
1841
+ n0,
1842
+ _UTSD,
1843
+ {
1844
+ [_h]: ["POST", "/UpdateTraceSegmentDestination", 200],
1845
+ },
1846
+ () => UpdateTraceSegmentDestinationRequest,
1847
+ () => UpdateTraceSegmentDestinationResult,
1848
+ ];
2154
1849
 
2155
1850
  class BatchGetTracesCommand extends smithyClient.Command
2156
1851
  .classBuilder()
2157
1852
  .ep(commonParams)
2158
1853
  .m(function (Command, cs, config, o) {
2159
- return [
2160
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2161
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2162
- ];
1854
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2163
1855
  })
2164
1856
  .s("AWSXRay", "BatchGetTraces", {})
2165
1857
  .n("XRayClient", "BatchGetTracesCommand")
2166
- .f(void 0, void 0)
2167
- .ser(se_BatchGetTracesCommand)
2168
- .de(de_BatchGetTracesCommand)
1858
+ .sc(BatchGetTraces)
2169
1859
  .build() {
2170
1860
  }
2171
1861
 
@@ -2173,16 +1863,11 @@ class CancelTraceRetrievalCommand extends smithyClient.Command
2173
1863
  .classBuilder()
2174
1864
  .ep(commonParams)
2175
1865
  .m(function (Command, cs, config, o) {
2176
- return [
2177
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2178
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2179
- ];
1866
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2180
1867
  })
2181
1868
  .s("AWSXRay", "CancelTraceRetrieval", {})
2182
1869
  .n("XRayClient", "CancelTraceRetrievalCommand")
2183
- .f(void 0, void 0)
2184
- .ser(se_CancelTraceRetrievalCommand)
2185
- .de(de_CancelTraceRetrievalCommand)
1870
+ .sc(CancelTraceRetrieval)
2186
1871
  .build() {
2187
1872
  }
2188
1873
 
@@ -2190,16 +1875,11 @@ class CreateGroupCommand extends smithyClient.Command
2190
1875
  .classBuilder()
2191
1876
  .ep(commonParams)
2192
1877
  .m(function (Command, cs, config, o) {
2193
- return [
2194
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2195
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2196
- ];
1878
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2197
1879
  })
2198
1880
  .s("AWSXRay", "CreateGroup", {})
2199
1881
  .n("XRayClient", "CreateGroupCommand")
2200
- .f(void 0, void 0)
2201
- .ser(se_CreateGroupCommand)
2202
- .de(de_CreateGroupCommand)
1882
+ .sc(CreateGroup)
2203
1883
  .build() {
2204
1884
  }
2205
1885
 
@@ -2207,16 +1887,11 @@ class CreateSamplingRuleCommand extends smithyClient.Command
2207
1887
  .classBuilder()
2208
1888
  .ep(commonParams)
2209
1889
  .m(function (Command, cs, config, o) {
2210
- return [
2211
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2212
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2213
- ];
1890
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2214
1891
  })
2215
1892
  .s("AWSXRay", "CreateSamplingRule", {})
2216
1893
  .n("XRayClient", "CreateSamplingRuleCommand")
2217
- .f(void 0, void 0)
2218
- .ser(se_CreateSamplingRuleCommand)
2219
- .de(de_CreateSamplingRuleCommand)
1894
+ .sc(CreateSamplingRule)
2220
1895
  .build() {
2221
1896
  }
2222
1897
 
@@ -2224,16 +1899,11 @@ class DeleteGroupCommand extends smithyClient.Command
2224
1899
  .classBuilder()
2225
1900
  .ep(commonParams)
2226
1901
  .m(function (Command, cs, config, o) {
2227
- return [
2228
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2229
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2230
- ];
1902
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2231
1903
  })
2232
1904
  .s("AWSXRay", "DeleteGroup", {})
2233
1905
  .n("XRayClient", "DeleteGroupCommand")
2234
- .f(void 0, void 0)
2235
- .ser(se_DeleteGroupCommand)
2236
- .de(de_DeleteGroupCommand)
1906
+ .sc(DeleteGroup)
2237
1907
  .build() {
2238
1908
  }
2239
1909
 
@@ -2241,16 +1911,11 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
2241
1911
  .classBuilder()
2242
1912
  .ep(commonParams)
2243
1913
  .m(function (Command, cs, config, o) {
2244
- return [
2245
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2246
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2247
- ];
1914
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2248
1915
  })
2249
1916
  .s("AWSXRay", "DeleteResourcePolicy", {})
2250
1917
  .n("XRayClient", "DeleteResourcePolicyCommand")
2251
- .f(void 0, void 0)
2252
- .ser(se_DeleteResourcePolicyCommand)
2253
- .de(de_DeleteResourcePolicyCommand)
1918
+ .sc(DeleteResourcePolicy)
2254
1919
  .build() {
2255
1920
  }
2256
1921
 
@@ -2258,16 +1923,11 @@ class DeleteSamplingRuleCommand extends smithyClient.Command
2258
1923
  .classBuilder()
2259
1924
  .ep(commonParams)
2260
1925
  .m(function (Command, cs, config, o) {
2261
- return [
2262
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2263
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2264
- ];
1926
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2265
1927
  })
2266
1928
  .s("AWSXRay", "DeleteSamplingRule", {})
2267
1929
  .n("XRayClient", "DeleteSamplingRuleCommand")
2268
- .f(void 0, void 0)
2269
- .ser(se_DeleteSamplingRuleCommand)
2270
- .de(de_DeleteSamplingRuleCommand)
1930
+ .sc(DeleteSamplingRule)
2271
1931
  .build() {
2272
1932
  }
2273
1933
 
@@ -2275,16 +1935,11 @@ class GetEncryptionConfigCommand extends smithyClient.Command
2275
1935
  .classBuilder()
2276
1936
  .ep(commonParams)
2277
1937
  .m(function (Command, cs, config, o) {
2278
- return [
2279
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2280
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2281
- ];
1938
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2282
1939
  })
2283
1940
  .s("AWSXRay", "GetEncryptionConfig", {})
2284
1941
  .n("XRayClient", "GetEncryptionConfigCommand")
2285
- .f(void 0, void 0)
2286
- .ser(se_GetEncryptionConfigCommand)
2287
- .de(de_GetEncryptionConfigCommand)
1942
+ .sc(GetEncryptionConfig)
2288
1943
  .build() {
2289
1944
  }
2290
1945
 
@@ -2292,16 +1947,11 @@ class GetGroupCommand extends smithyClient.Command
2292
1947
  .classBuilder()
2293
1948
  .ep(commonParams)
2294
1949
  .m(function (Command, cs, config, o) {
2295
- return [
2296
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2297
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2298
- ];
1950
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2299
1951
  })
2300
1952
  .s("AWSXRay", "GetGroup", {})
2301
1953
  .n("XRayClient", "GetGroupCommand")
2302
- .f(void 0, void 0)
2303
- .ser(se_GetGroupCommand)
2304
- .de(de_GetGroupCommand)
1954
+ .sc(GetGroup)
2305
1955
  .build() {
2306
1956
  }
2307
1957
 
@@ -2309,16 +1959,11 @@ class GetGroupsCommand extends smithyClient.Command
2309
1959
  .classBuilder()
2310
1960
  .ep(commonParams)
2311
1961
  .m(function (Command, cs, config, o) {
2312
- return [
2313
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2314
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2315
- ];
1962
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2316
1963
  })
2317
1964
  .s("AWSXRay", "GetGroups", {})
2318
1965
  .n("XRayClient", "GetGroupsCommand")
2319
- .f(void 0, void 0)
2320
- .ser(se_GetGroupsCommand)
2321
- .de(de_GetGroupsCommand)
1966
+ .sc(GetGroups)
2322
1967
  .build() {
2323
1968
  }
2324
1969
 
@@ -2326,16 +1971,11 @@ class GetIndexingRulesCommand extends smithyClient.Command
2326
1971
  .classBuilder()
2327
1972
  .ep(commonParams)
2328
1973
  .m(function (Command, cs, config, o) {
2329
- return [
2330
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2331
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2332
- ];
1974
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2333
1975
  })
2334
1976
  .s("AWSXRay", "GetIndexingRules", {})
2335
1977
  .n("XRayClient", "GetIndexingRulesCommand")
2336
- .f(void 0, void 0)
2337
- .ser(se_GetIndexingRulesCommand)
2338
- .de(de_GetIndexingRulesCommand)
1978
+ .sc(GetIndexingRules)
2339
1979
  .build() {
2340
1980
  }
2341
1981
 
@@ -2343,16 +1983,11 @@ class GetInsightCommand extends smithyClient.Command
2343
1983
  .classBuilder()
2344
1984
  .ep(commonParams)
2345
1985
  .m(function (Command, cs, config, o) {
2346
- return [
2347
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2348
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2349
- ];
1986
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2350
1987
  })
2351
1988
  .s("AWSXRay", "GetInsight", {})
2352
1989
  .n("XRayClient", "GetInsightCommand")
2353
- .f(void 0, void 0)
2354
- .ser(se_GetInsightCommand)
2355
- .de(de_GetInsightCommand)
1990
+ .sc(GetInsight)
2356
1991
  .build() {
2357
1992
  }
2358
1993
 
@@ -2360,16 +1995,11 @@ class GetInsightEventsCommand extends smithyClient.Command
2360
1995
  .classBuilder()
2361
1996
  .ep(commonParams)
2362
1997
  .m(function (Command, cs, config, o) {
2363
- return [
2364
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2365
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2366
- ];
1998
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2367
1999
  })
2368
2000
  .s("AWSXRay", "GetInsightEvents", {})
2369
2001
  .n("XRayClient", "GetInsightEventsCommand")
2370
- .f(void 0, void 0)
2371
- .ser(se_GetInsightEventsCommand)
2372
- .de(de_GetInsightEventsCommand)
2002
+ .sc(GetInsightEvents)
2373
2003
  .build() {
2374
2004
  }
2375
2005
 
@@ -2377,16 +2007,11 @@ class GetInsightImpactGraphCommand extends smithyClient.Command
2377
2007
  .classBuilder()
2378
2008
  .ep(commonParams)
2379
2009
  .m(function (Command, cs, config, o) {
2380
- return [
2381
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2382
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2383
- ];
2010
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2384
2011
  })
2385
2012
  .s("AWSXRay", "GetInsightImpactGraph", {})
2386
2013
  .n("XRayClient", "GetInsightImpactGraphCommand")
2387
- .f(void 0, void 0)
2388
- .ser(se_GetInsightImpactGraphCommand)
2389
- .de(de_GetInsightImpactGraphCommand)
2014
+ .sc(GetInsightImpactGraph)
2390
2015
  .build() {
2391
2016
  }
2392
2017
 
@@ -2394,16 +2019,11 @@ class GetInsightSummariesCommand extends smithyClient.Command
2394
2019
  .classBuilder()
2395
2020
  .ep(commonParams)
2396
2021
  .m(function (Command, cs, config, o) {
2397
- return [
2398
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2399
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2400
- ];
2022
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2401
2023
  })
2402
2024
  .s("AWSXRay", "GetInsightSummaries", {})
2403
2025
  .n("XRayClient", "GetInsightSummariesCommand")
2404
- .f(void 0, void 0)
2405
- .ser(se_GetInsightSummariesCommand)
2406
- .de(de_GetInsightSummariesCommand)
2026
+ .sc(GetInsightSummaries)
2407
2027
  .build() {
2408
2028
  }
2409
2029
 
@@ -2411,16 +2031,11 @@ class GetRetrievedTracesGraphCommand extends smithyClient.Command
2411
2031
  .classBuilder()
2412
2032
  .ep(commonParams)
2413
2033
  .m(function (Command, cs, config, o) {
2414
- return [
2415
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2416
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2417
- ];
2034
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2418
2035
  })
2419
2036
  .s("AWSXRay", "GetRetrievedTracesGraph", {})
2420
2037
  .n("XRayClient", "GetRetrievedTracesGraphCommand")
2421
- .f(void 0, void 0)
2422
- .ser(se_GetRetrievedTracesGraphCommand)
2423
- .de(de_GetRetrievedTracesGraphCommand)
2038
+ .sc(GetRetrievedTracesGraph)
2424
2039
  .build() {
2425
2040
  }
2426
2041
 
@@ -2428,16 +2043,11 @@ class GetSamplingRulesCommand extends smithyClient.Command
2428
2043
  .classBuilder()
2429
2044
  .ep(commonParams)
2430
2045
  .m(function (Command, cs, config, o) {
2431
- return [
2432
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2433
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2434
- ];
2046
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2435
2047
  })
2436
2048
  .s("AWSXRay", "GetSamplingRules", {})
2437
2049
  .n("XRayClient", "GetSamplingRulesCommand")
2438
- .f(void 0, void 0)
2439
- .ser(se_GetSamplingRulesCommand)
2440
- .de(de_GetSamplingRulesCommand)
2050
+ .sc(GetSamplingRules)
2441
2051
  .build() {
2442
2052
  }
2443
2053
 
@@ -2445,16 +2055,11 @@ class GetSamplingStatisticSummariesCommand extends smithyClient.Command
2445
2055
  .classBuilder()
2446
2056
  .ep(commonParams)
2447
2057
  .m(function (Command, cs, config, o) {
2448
- return [
2449
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2450
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2451
- ];
2058
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2452
2059
  })
2453
2060
  .s("AWSXRay", "GetSamplingStatisticSummaries", {})
2454
2061
  .n("XRayClient", "GetSamplingStatisticSummariesCommand")
2455
- .f(void 0, void 0)
2456
- .ser(se_GetSamplingStatisticSummariesCommand)
2457
- .de(de_GetSamplingStatisticSummariesCommand)
2062
+ .sc(GetSamplingStatisticSummaries)
2458
2063
  .build() {
2459
2064
  }
2460
2065
 
@@ -2462,16 +2067,11 @@ class GetSamplingTargetsCommand extends smithyClient.Command
2462
2067
  .classBuilder()
2463
2068
  .ep(commonParams)
2464
2069
  .m(function (Command, cs, config, o) {
2465
- return [
2466
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2467
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2468
- ];
2070
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2469
2071
  })
2470
2072
  .s("AWSXRay", "GetSamplingTargets", {})
2471
2073
  .n("XRayClient", "GetSamplingTargetsCommand")
2472
- .f(void 0, void 0)
2473
- .ser(se_GetSamplingTargetsCommand)
2474
- .de(de_GetSamplingTargetsCommand)
2074
+ .sc(GetSamplingTargets)
2475
2075
  .build() {
2476
2076
  }
2477
2077
 
@@ -2479,16 +2079,11 @@ class GetServiceGraphCommand extends smithyClient.Command
2479
2079
  .classBuilder()
2480
2080
  .ep(commonParams)
2481
2081
  .m(function (Command, cs, config, o) {
2482
- return [
2483
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2484
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2485
- ];
2082
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2486
2083
  })
2487
2084
  .s("AWSXRay", "GetServiceGraph", {})
2488
2085
  .n("XRayClient", "GetServiceGraphCommand")
2489
- .f(void 0, void 0)
2490
- .ser(se_GetServiceGraphCommand)
2491
- .de(de_GetServiceGraphCommand)
2086
+ .sc(GetServiceGraph)
2492
2087
  .build() {
2493
2088
  }
2494
2089
 
@@ -2496,16 +2091,11 @@ class GetTimeSeriesServiceStatisticsCommand extends smithyClient.Command
2496
2091
  .classBuilder()
2497
2092
  .ep(commonParams)
2498
2093
  .m(function (Command, cs, config, o) {
2499
- return [
2500
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2501
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2502
- ];
2094
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2503
2095
  })
2504
2096
  .s("AWSXRay", "GetTimeSeriesServiceStatistics", {})
2505
2097
  .n("XRayClient", "GetTimeSeriesServiceStatisticsCommand")
2506
- .f(void 0, void 0)
2507
- .ser(se_GetTimeSeriesServiceStatisticsCommand)
2508
- .de(de_GetTimeSeriesServiceStatisticsCommand)
2098
+ .sc(GetTimeSeriesServiceStatistics)
2509
2099
  .build() {
2510
2100
  }
2511
2101
 
@@ -2513,16 +2103,11 @@ class GetTraceGraphCommand extends smithyClient.Command
2513
2103
  .classBuilder()
2514
2104
  .ep(commonParams)
2515
2105
  .m(function (Command, cs, config, o) {
2516
- return [
2517
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2518
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2519
- ];
2106
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2520
2107
  })
2521
2108
  .s("AWSXRay", "GetTraceGraph", {})
2522
2109
  .n("XRayClient", "GetTraceGraphCommand")
2523
- .f(void 0, void 0)
2524
- .ser(se_GetTraceGraphCommand)
2525
- .de(de_GetTraceGraphCommand)
2110
+ .sc(GetTraceGraph)
2526
2111
  .build() {
2527
2112
  }
2528
2113
 
@@ -2530,16 +2115,11 @@ class GetTraceSegmentDestinationCommand extends smithyClient.Command
2530
2115
  .classBuilder()
2531
2116
  .ep(commonParams)
2532
2117
  .m(function (Command, cs, config, o) {
2533
- return [
2534
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2535
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2536
- ];
2118
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2537
2119
  })
2538
2120
  .s("AWSXRay", "GetTraceSegmentDestination", {})
2539
2121
  .n("XRayClient", "GetTraceSegmentDestinationCommand")
2540
- .f(void 0, void 0)
2541
- .ser(se_GetTraceSegmentDestinationCommand)
2542
- .de(de_GetTraceSegmentDestinationCommand)
2122
+ .sc(GetTraceSegmentDestination)
2543
2123
  .build() {
2544
2124
  }
2545
2125
 
@@ -2547,16 +2127,11 @@ class GetTraceSummariesCommand extends smithyClient.Command
2547
2127
  .classBuilder()
2548
2128
  .ep(commonParams)
2549
2129
  .m(function (Command, cs, config, o) {
2550
- return [
2551
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2552
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2553
- ];
2130
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2554
2131
  })
2555
2132
  .s("AWSXRay", "GetTraceSummaries", {})
2556
2133
  .n("XRayClient", "GetTraceSummariesCommand")
2557
- .f(void 0, void 0)
2558
- .ser(se_GetTraceSummariesCommand)
2559
- .de(de_GetTraceSummariesCommand)
2134
+ .sc(GetTraceSummaries)
2560
2135
  .build() {
2561
2136
  }
2562
2137
 
@@ -2564,16 +2139,11 @@ class ListResourcePoliciesCommand extends smithyClient.Command
2564
2139
  .classBuilder()
2565
2140
  .ep(commonParams)
2566
2141
  .m(function (Command, cs, config, o) {
2567
- return [
2568
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2569
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2570
- ];
2142
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2571
2143
  })
2572
2144
  .s("AWSXRay", "ListResourcePolicies", {})
2573
2145
  .n("XRayClient", "ListResourcePoliciesCommand")
2574
- .f(void 0, void 0)
2575
- .ser(se_ListResourcePoliciesCommand)
2576
- .de(de_ListResourcePoliciesCommand)
2146
+ .sc(ListResourcePolicies)
2577
2147
  .build() {
2578
2148
  }
2579
2149
 
@@ -2581,16 +2151,11 @@ class ListRetrievedTracesCommand extends smithyClient.Command
2581
2151
  .classBuilder()
2582
2152
  .ep(commonParams)
2583
2153
  .m(function (Command, cs, config, o) {
2584
- return [
2585
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2586
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2587
- ];
2154
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2588
2155
  })
2589
2156
  .s("AWSXRay", "ListRetrievedTraces", {})
2590
2157
  .n("XRayClient", "ListRetrievedTracesCommand")
2591
- .f(void 0, void 0)
2592
- .ser(se_ListRetrievedTracesCommand)
2593
- .de(de_ListRetrievedTracesCommand)
2158
+ .sc(ListRetrievedTraces)
2594
2159
  .build() {
2595
2160
  }
2596
2161
 
@@ -2598,16 +2163,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
2598
2163
  .classBuilder()
2599
2164
  .ep(commonParams)
2600
2165
  .m(function (Command, cs, config, o) {
2601
- return [
2602
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2603
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2604
- ];
2166
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2605
2167
  })
2606
2168
  .s("AWSXRay", "ListTagsForResource", {})
2607
2169
  .n("XRayClient", "ListTagsForResourceCommand")
2608
- .f(void 0, void 0)
2609
- .ser(se_ListTagsForResourceCommand)
2610
- .de(de_ListTagsForResourceCommand)
2170
+ .sc(ListTagsForResource)
2611
2171
  .build() {
2612
2172
  }
2613
2173
 
@@ -2615,16 +2175,11 @@ class PutEncryptionConfigCommand extends smithyClient.Command
2615
2175
  .classBuilder()
2616
2176
  .ep(commonParams)
2617
2177
  .m(function (Command, cs, config, o) {
2618
- return [
2619
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2620
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2621
- ];
2178
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2622
2179
  })
2623
2180
  .s("AWSXRay", "PutEncryptionConfig", {})
2624
2181
  .n("XRayClient", "PutEncryptionConfigCommand")
2625
- .f(void 0, void 0)
2626
- .ser(se_PutEncryptionConfigCommand)
2627
- .de(de_PutEncryptionConfigCommand)
2182
+ .sc(PutEncryptionConfig)
2628
2183
  .build() {
2629
2184
  }
2630
2185
 
@@ -2632,16 +2187,11 @@ class PutResourcePolicyCommand extends smithyClient.Command
2632
2187
  .classBuilder()
2633
2188
  .ep(commonParams)
2634
2189
  .m(function (Command, cs, config, o) {
2635
- return [
2636
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2637
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2638
- ];
2190
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2639
2191
  })
2640
2192
  .s("AWSXRay", "PutResourcePolicy", {})
2641
2193
  .n("XRayClient", "PutResourcePolicyCommand")
2642
- .f(void 0, void 0)
2643
- .ser(se_PutResourcePolicyCommand)
2644
- .de(de_PutResourcePolicyCommand)
2194
+ .sc(PutResourcePolicy)
2645
2195
  .build() {
2646
2196
  }
2647
2197
 
@@ -2649,16 +2199,11 @@ class PutTelemetryRecordsCommand extends smithyClient.Command
2649
2199
  .classBuilder()
2650
2200
  .ep(commonParams)
2651
2201
  .m(function (Command, cs, config, o) {
2652
- return [
2653
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2654
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2655
- ];
2202
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2656
2203
  })
2657
2204
  .s("AWSXRay", "PutTelemetryRecords", {})
2658
2205
  .n("XRayClient", "PutTelemetryRecordsCommand")
2659
- .f(void 0, void 0)
2660
- .ser(se_PutTelemetryRecordsCommand)
2661
- .de(de_PutTelemetryRecordsCommand)
2206
+ .sc(PutTelemetryRecords)
2662
2207
  .build() {
2663
2208
  }
2664
2209
 
@@ -2666,16 +2211,11 @@ class PutTraceSegmentsCommand extends smithyClient.Command
2666
2211
  .classBuilder()
2667
2212
  .ep(commonParams)
2668
2213
  .m(function (Command, cs, config, o) {
2669
- return [
2670
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2671
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2672
- ];
2214
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2673
2215
  })
2674
2216
  .s("AWSXRay", "PutTraceSegments", {})
2675
2217
  .n("XRayClient", "PutTraceSegmentsCommand")
2676
- .f(void 0, void 0)
2677
- .ser(se_PutTraceSegmentsCommand)
2678
- .de(de_PutTraceSegmentsCommand)
2218
+ .sc(PutTraceSegments)
2679
2219
  .build() {
2680
2220
  }
2681
2221
 
@@ -2683,16 +2223,11 @@ class StartTraceRetrievalCommand extends smithyClient.Command
2683
2223
  .classBuilder()
2684
2224
  .ep(commonParams)
2685
2225
  .m(function (Command, cs, config, o) {
2686
- return [
2687
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2688
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2689
- ];
2226
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2690
2227
  })
2691
2228
  .s("AWSXRay", "StartTraceRetrieval", {})
2692
2229
  .n("XRayClient", "StartTraceRetrievalCommand")
2693
- .f(void 0, void 0)
2694
- .ser(se_StartTraceRetrievalCommand)
2695
- .de(de_StartTraceRetrievalCommand)
2230
+ .sc(StartTraceRetrieval)
2696
2231
  .build() {
2697
2232
  }
2698
2233
 
@@ -2700,16 +2235,11 @@ class TagResourceCommand extends smithyClient.Command
2700
2235
  .classBuilder()
2701
2236
  .ep(commonParams)
2702
2237
  .m(function (Command, cs, config, o) {
2703
- return [
2704
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2705
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2706
- ];
2238
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2707
2239
  })
2708
2240
  .s("AWSXRay", "TagResource", {})
2709
2241
  .n("XRayClient", "TagResourceCommand")
2710
- .f(void 0, void 0)
2711
- .ser(se_TagResourceCommand)
2712
- .de(de_TagResourceCommand)
2242
+ .sc(TagResource)
2713
2243
  .build() {
2714
2244
  }
2715
2245
 
@@ -2717,16 +2247,11 @@ class UntagResourceCommand extends smithyClient.Command
2717
2247
  .classBuilder()
2718
2248
  .ep(commonParams)
2719
2249
  .m(function (Command, cs, config, o) {
2720
- return [
2721
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2722
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2723
- ];
2250
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2724
2251
  })
2725
2252
  .s("AWSXRay", "UntagResource", {})
2726
2253
  .n("XRayClient", "UntagResourceCommand")
2727
- .f(void 0, void 0)
2728
- .ser(se_UntagResourceCommand)
2729
- .de(de_UntagResourceCommand)
2254
+ .sc(UntagResource)
2730
2255
  .build() {
2731
2256
  }
2732
2257
 
@@ -2734,16 +2259,11 @@ class UpdateGroupCommand extends smithyClient.Command
2734
2259
  .classBuilder()
2735
2260
  .ep(commonParams)
2736
2261
  .m(function (Command, cs, config, o) {
2737
- return [
2738
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2739
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2740
- ];
2262
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2741
2263
  })
2742
2264
  .s("AWSXRay", "UpdateGroup", {})
2743
2265
  .n("XRayClient", "UpdateGroupCommand")
2744
- .f(void 0, void 0)
2745
- .ser(se_UpdateGroupCommand)
2746
- .de(de_UpdateGroupCommand)
2266
+ .sc(UpdateGroup)
2747
2267
  .build() {
2748
2268
  }
2749
2269
 
@@ -2751,16 +2271,11 @@ class UpdateIndexingRuleCommand extends smithyClient.Command
2751
2271
  .classBuilder()
2752
2272
  .ep(commonParams)
2753
2273
  .m(function (Command, cs, config, o) {
2754
- return [
2755
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2756
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2757
- ];
2274
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2758
2275
  })
2759
2276
  .s("AWSXRay", "UpdateIndexingRule", {})
2760
2277
  .n("XRayClient", "UpdateIndexingRuleCommand")
2761
- .f(void 0, void 0)
2762
- .ser(se_UpdateIndexingRuleCommand)
2763
- .de(de_UpdateIndexingRuleCommand)
2278
+ .sc(UpdateIndexingRule)
2764
2279
  .build() {
2765
2280
  }
2766
2281
 
@@ -2768,16 +2283,11 @@ class UpdateSamplingRuleCommand extends smithyClient.Command
2768
2283
  .classBuilder()
2769
2284
  .ep(commonParams)
2770
2285
  .m(function (Command, cs, config, o) {
2771
- return [
2772
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2773
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2774
- ];
2286
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2775
2287
  })
2776
2288
  .s("AWSXRay", "UpdateSamplingRule", {})
2777
2289
  .n("XRayClient", "UpdateSamplingRuleCommand")
2778
- .f(void 0, void 0)
2779
- .ser(se_UpdateSamplingRuleCommand)
2780
- .de(de_UpdateSamplingRuleCommand)
2290
+ .sc(UpdateSamplingRule)
2781
2291
  .build() {
2782
2292
  }
2783
2293
 
@@ -2785,16 +2295,11 @@ class UpdateTraceSegmentDestinationCommand extends smithyClient.Command
2785
2295
  .classBuilder()
2786
2296
  .ep(commonParams)
2787
2297
  .m(function (Command, cs, config, o) {
2788
- return [
2789
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2790
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2791
- ];
2298
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2792
2299
  })
2793
2300
  .s("AWSXRay", "UpdateTraceSegmentDestination", {})
2794
2301
  .n("XRayClient", "UpdateTraceSegmentDestinationCommand")
2795
- .f(void 0, void 0)
2796
- .ser(se_UpdateTraceSegmentDestinationCommand)
2797
- .de(de_UpdateTraceSegmentDestinationCommand)
2302
+ .sc(UpdateTraceSegmentDestination)
2798
2303
  .build() {
2799
2304
  }
2800
2305
 
@@ -2902,28 +2407,28 @@ exports.GetTraceSegmentDestinationCommand = GetTraceSegmentDestinationCommand;
2902
2407
  exports.GetTraceSummariesCommand = GetTraceSummariesCommand;
2903
2408
  exports.InsightCategory = InsightCategory;
2904
2409
  exports.InsightState = InsightState;
2905
- exports.InvalidPolicyRevisionIdException = InvalidPolicyRevisionIdException;
2906
- exports.InvalidRequestException = InvalidRequestException;
2410
+ exports.InvalidPolicyRevisionIdException = InvalidPolicyRevisionIdException$1;
2411
+ exports.InvalidRequestException = InvalidRequestException$1;
2907
2412
  exports.ListResourcePoliciesCommand = ListResourcePoliciesCommand;
2908
2413
  exports.ListRetrievedTracesCommand = ListRetrievedTracesCommand;
2909
2414
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2910
- exports.LockoutPreventionException = LockoutPreventionException;
2911
- exports.MalformedPolicyDocumentException = MalformedPolicyDocumentException;
2912
- exports.PolicyCountLimitExceededException = PolicyCountLimitExceededException;
2913
- exports.PolicySizeLimitExceededException = PolicySizeLimitExceededException;
2415
+ exports.LockoutPreventionException = LockoutPreventionException$1;
2416
+ exports.MalformedPolicyDocumentException = MalformedPolicyDocumentException$1;
2417
+ exports.PolicyCountLimitExceededException = PolicyCountLimitExceededException$1;
2418
+ exports.PolicySizeLimitExceededException = PolicySizeLimitExceededException$1;
2914
2419
  exports.PutEncryptionConfigCommand = PutEncryptionConfigCommand;
2915
2420
  exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
2916
2421
  exports.PutTelemetryRecordsCommand = PutTelemetryRecordsCommand;
2917
2422
  exports.PutTraceSegmentsCommand = PutTraceSegmentsCommand;
2918
- exports.ResourceNotFoundException = ResourceNotFoundException;
2423
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
2919
2424
  exports.RetrievalStatus = RetrievalStatus;
2920
- exports.RuleLimitExceededException = RuleLimitExceededException;
2425
+ exports.RuleLimitExceededException = RuleLimitExceededException$1;
2921
2426
  exports.SamplingStrategyName = SamplingStrategyName;
2922
2427
  exports.StartTraceRetrievalCommand = StartTraceRetrievalCommand;
2923
2428
  exports.TagResourceCommand = TagResourceCommand;
2924
- exports.ThrottledException = ThrottledException;
2429
+ exports.ThrottledException = ThrottledException$1;
2925
2430
  exports.TimeRangeType = TimeRangeType;
2926
- exports.TooManyTagsException = TooManyTagsException;
2431
+ exports.TooManyTagsException = TooManyTagsException$1;
2927
2432
  exports.TraceFormatType = TraceFormatType;
2928
2433
  exports.TraceSegmentDestination = TraceSegmentDestination;
2929
2434
  exports.TraceSegmentDestinationStatus = TraceSegmentDestinationStatus;
@@ -2934,7 +2439,7 @@ exports.UpdateSamplingRuleCommand = UpdateSamplingRuleCommand;
2934
2439
  exports.UpdateTraceSegmentDestinationCommand = UpdateTraceSegmentDestinationCommand;
2935
2440
  exports.XRay = XRay;
2936
2441
  exports.XRayClient = XRayClient;
2937
- exports.XRayServiceException = XRayServiceException;
2442
+ exports.XRayServiceException = XRayServiceException$1;
2938
2443
  exports.paginateBatchGetTraces = paginateBatchGetTraces;
2939
2444
  exports.paginateGetGroups = paginateGetGroups;
2940
2445
  exports.paginateGetInsightEvents = paginateGetInsightEvents;