@aws-sdk/client-xray 3.758.0 → 3.772.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +108 -113
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -19,8 +19,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// src/index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
AnnotationValue: () => AnnotationValue,
|
|
25
25
|
BatchGetTracesCommand: () => BatchGetTracesCommand,
|
|
26
26
|
CancelTraceRetrievalCommand: () => CancelTraceRetrievalCommand,
|
|
@@ -99,7 +99,7 @@ __export(src_exports, {
|
|
|
99
99
|
paginateListResourcePolicies: () => paginateListResourcePolicies,
|
|
100
100
|
paginateListTagsForResource: () => paginateListTagsForResource
|
|
101
101
|
});
|
|
102
|
-
module.exports = __toCommonJS(
|
|
102
|
+
module.exports = __toCommonJS(index_exports);
|
|
103
103
|
|
|
104
104
|
// src/XRayClient.ts
|
|
105
105
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
@@ -226,9 +226,9 @@ var XRayClient = class extends import_smithy_client.Client {
|
|
|
226
226
|
this.middlewareStack.use(
|
|
227
227
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
228
228
|
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultXRayHttpAuthSchemeParametersProvider,
|
|
229
|
-
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
229
|
+
identityProviderConfigProvider: /* @__PURE__ */ __name(async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
230
230
|
"aws.auth#sigv4": config.credentials
|
|
231
|
-
})
|
|
231
|
+
}), "identityProviderConfigProvider")
|
|
232
232
|
})
|
|
233
233
|
);
|
|
234
234
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -275,12 +275,9 @@ var XRayServiceException = class _XRayServiceException extends import_smithy_cli
|
|
|
275
275
|
var AnnotationValue;
|
|
276
276
|
((AnnotationValue3) => {
|
|
277
277
|
AnnotationValue3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
278
|
-
if (value.NumberValue !== void 0)
|
|
279
|
-
|
|
280
|
-
if (value.
|
|
281
|
-
return visitor.BooleanValue(value.BooleanValue);
|
|
282
|
-
if (value.StringValue !== void 0)
|
|
283
|
-
return visitor.StringValue(value.StringValue);
|
|
278
|
+
if (value.NumberValue !== void 0) return visitor.NumberValue(value.NumberValue);
|
|
279
|
+
if (value.BooleanValue !== void 0) return visitor.BooleanValue(value.BooleanValue);
|
|
280
|
+
if (value.StringValue !== void 0) return visitor.StringValue(value.StringValue);
|
|
284
281
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
285
282
|
}, "visit");
|
|
286
283
|
})(AnnotationValue || (AnnotationValue = {}));
|
|
@@ -397,8 +394,7 @@ var EncryptionType = {
|
|
|
397
394
|
var IndexingRuleValue;
|
|
398
395
|
((IndexingRuleValue3) => {
|
|
399
396
|
IndexingRuleValue3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
400
|
-
if (value.Probabilistic !== void 0)
|
|
401
|
-
return visitor.Probabilistic(value.Probabilistic);
|
|
397
|
+
if (value.Probabilistic !== void 0) return visitor.Probabilistic(value.Probabilistic);
|
|
402
398
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
403
399
|
}, "visit");
|
|
404
400
|
})(IndexingRuleValue || (IndexingRuleValue = {}));
|
|
@@ -543,8 +539,7 @@ var TooManyTagsException = class _TooManyTagsException extends XRayServiceExcept
|
|
|
543
539
|
var IndexingRuleValueUpdate;
|
|
544
540
|
((IndexingRuleValueUpdate2) => {
|
|
545
541
|
IndexingRuleValueUpdate2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
546
|
-
if (value.Probabilistic !== void 0)
|
|
547
|
-
return visitor.Probabilistic(value.Probabilistic);
|
|
542
|
+
if (value.Probabilistic !== void 0) return visitor.Probabilistic(value.Probabilistic);
|
|
548
543
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
549
544
|
}, "visit");
|
|
550
545
|
})(IndexingRuleValueUpdate || (IndexingRuleValueUpdate = {}));
|
|
@@ -560,7 +555,7 @@ var se_BatchGetTracesCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
560
555
|
body = JSON.stringify(
|
|
561
556
|
(0, import_smithy_client.take)(input, {
|
|
562
557
|
NextToken: [],
|
|
563
|
-
TraceIds: (_) => (0, import_smithy_client._json)(_)
|
|
558
|
+
TraceIds: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "TraceIds")
|
|
564
559
|
})
|
|
565
560
|
);
|
|
566
561
|
b.m("POST").h(headers).b(body);
|
|
@@ -592,8 +587,8 @@ var se_CreateGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
592
587
|
(0, import_smithy_client.take)(input, {
|
|
593
588
|
FilterExpression: [],
|
|
594
589
|
GroupName: [],
|
|
595
|
-
InsightsConfiguration: (_) => (0, import_smithy_client._json)(_),
|
|
596
|
-
Tags: (_) => (0, import_smithy_client._json)(_)
|
|
590
|
+
InsightsConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "InsightsConfiguration"),
|
|
591
|
+
Tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Tags")
|
|
597
592
|
})
|
|
598
593
|
);
|
|
599
594
|
b.m("POST").h(headers).b(body);
|
|
@@ -608,8 +603,8 @@ var se_CreateSamplingRuleCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
608
603
|
let body;
|
|
609
604
|
body = JSON.stringify(
|
|
610
605
|
(0, import_smithy_client.take)(input, {
|
|
611
|
-
SamplingRule: (_) => se_SamplingRule(_, context),
|
|
612
|
-
Tags: (_) => (0, import_smithy_client._json)(_)
|
|
606
|
+
SamplingRule: /* @__PURE__ */ __name((_) => se_SamplingRule(_, context), "SamplingRule"),
|
|
607
|
+
Tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Tags")
|
|
613
608
|
})
|
|
614
609
|
);
|
|
615
610
|
b.m("POST").h(headers).b(body);
|
|
@@ -758,10 +753,10 @@ var se_GetInsightImpactGraphCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
758
753
|
let body;
|
|
759
754
|
body = JSON.stringify(
|
|
760
755
|
(0, import_smithy_client.take)(input, {
|
|
761
|
-
EndTime: (_) => _.getTime() / 1e3,
|
|
756
|
+
EndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "EndTime"),
|
|
762
757
|
InsightId: [],
|
|
763
758
|
NextToken: [],
|
|
764
|
-
StartTime: (_) => _.getTime() / 1e3
|
|
759
|
+
StartTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "StartTime")
|
|
765
760
|
})
|
|
766
761
|
);
|
|
767
762
|
b.m("POST").h(headers).b(body);
|
|
@@ -776,13 +771,13 @@ var se_GetInsightSummariesCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
776
771
|
let body;
|
|
777
772
|
body = JSON.stringify(
|
|
778
773
|
(0, import_smithy_client.take)(input, {
|
|
779
|
-
EndTime: (_) => _.getTime() / 1e3,
|
|
774
|
+
EndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "EndTime"),
|
|
780
775
|
GroupARN: [],
|
|
781
776
|
GroupName: [],
|
|
782
777
|
MaxResults: [],
|
|
783
778
|
NextToken: [],
|
|
784
|
-
StartTime: (_) => _.getTime() / 1e3,
|
|
785
|
-
States: (_) => (0, import_smithy_client._json)(_)
|
|
779
|
+
StartTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "StartTime"),
|
|
780
|
+
States: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "States")
|
|
786
781
|
})
|
|
787
782
|
);
|
|
788
783
|
b.m("POST").h(headers).b(body);
|
|
@@ -843,7 +838,7 @@ var se_GetSamplingTargetsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
843
838
|
let body;
|
|
844
839
|
body = JSON.stringify(
|
|
845
840
|
(0, import_smithy_client.take)(input, {
|
|
846
|
-
SamplingStatisticsDocuments: (_) => se_SamplingStatisticsDocumentList(_, context)
|
|
841
|
+
SamplingStatisticsDocuments: /* @__PURE__ */ __name((_) => se_SamplingStatisticsDocumentList(_, context), "SamplingStatisticsDocuments")
|
|
847
842
|
})
|
|
848
843
|
);
|
|
849
844
|
b.m("POST").h(headers).b(body);
|
|
@@ -858,11 +853,11 @@ var se_GetServiceGraphCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
858
853
|
let body;
|
|
859
854
|
body = JSON.stringify(
|
|
860
855
|
(0, import_smithy_client.take)(input, {
|
|
861
|
-
EndTime: (_) => _.getTime() / 1e3,
|
|
856
|
+
EndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "EndTime"),
|
|
862
857
|
GroupARN: [],
|
|
863
858
|
GroupName: [],
|
|
864
859
|
NextToken: [],
|
|
865
|
-
StartTime: (_) => _.getTime() / 1e3
|
|
860
|
+
StartTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "StartTime")
|
|
866
861
|
})
|
|
867
862
|
);
|
|
868
863
|
b.m("POST").h(headers).b(body);
|
|
@@ -877,14 +872,14 @@ var se_GetTimeSeriesServiceStatisticsCommand = /* @__PURE__ */ __name(async (inp
|
|
|
877
872
|
let body;
|
|
878
873
|
body = JSON.stringify(
|
|
879
874
|
(0, import_smithy_client.take)(input, {
|
|
880
|
-
EndTime: (_) => _.getTime() / 1e3,
|
|
875
|
+
EndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "EndTime"),
|
|
881
876
|
EntitySelectorExpression: [],
|
|
882
877
|
ForecastStatistics: [],
|
|
883
878
|
GroupARN: [],
|
|
884
879
|
GroupName: [],
|
|
885
880
|
NextToken: [],
|
|
886
881
|
Period: [],
|
|
887
|
-
StartTime: (_) => _.getTime() / 1e3
|
|
882
|
+
StartTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "StartTime")
|
|
888
883
|
})
|
|
889
884
|
);
|
|
890
885
|
b.m("POST").h(headers).b(body);
|
|
@@ -900,7 +895,7 @@ var se_GetTraceGraphCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
900
895
|
body = JSON.stringify(
|
|
901
896
|
(0, import_smithy_client.take)(input, {
|
|
902
897
|
NextToken: [],
|
|
903
|
-
TraceIds: (_) => (0, import_smithy_client._json)(_)
|
|
898
|
+
TraceIds: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "TraceIds")
|
|
904
899
|
})
|
|
905
900
|
);
|
|
906
901
|
b.m("POST").h(headers).b(body);
|
|
@@ -923,12 +918,12 @@ var se_GetTraceSummariesCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
923
918
|
let body;
|
|
924
919
|
body = JSON.stringify(
|
|
925
920
|
(0, import_smithy_client.take)(input, {
|
|
926
|
-
EndTime: (_) => _.getTime() / 1e3,
|
|
921
|
+
EndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "EndTime"),
|
|
927
922
|
FilterExpression: [],
|
|
928
923
|
NextToken: [],
|
|
929
924
|
Sampling: [],
|
|
930
|
-
SamplingStrategy: (_) => se_SamplingStrategy(_, context),
|
|
931
|
-
StartTime: (_) => _.getTime() / 1e3,
|
|
925
|
+
SamplingStrategy: /* @__PURE__ */ __name((_) => se_SamplingStrategy(_, context), "SamplingStrategy"),
|
|
926
|
+
StartTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "StartTime"),
|
|
932
927
|
TimeRangeType: []
|
|
933
928
|
})
|
|
934
929
|
);
|
|
@@ -1029,7 +1024,7 @@ var se_PutTelemetryRecordsCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1029
1024
|
EC2InstanceId: [],
|
|
1030
1025
|
Hostname: [],
|
|
1031
1026
|
ResourceARN: [],
|
|
1032
|
-
TelemetryRecords: (_) => se_TelemetryRecordList(_, context)
|
|
1027
|
+
TelemetryRecords: /* @__PURE__ */ __name((_) => se_TelemetryRecordList(_, context), "TelemetryRecords")
|
|
1033
1028
|
})
|
|
1034
1029
|
);
|
|
1035
1030
|
b.m("POST").h(headers).b(body);
|
|
@@ -1044,7 +1039,7 @@ var se_PutTraceSegmentsCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1044
1039
|
let body;
|
|
1045
1040
|
body = JSON.stringify(
|
|
1046
1041
|
(0, import_smithy_client.take)(input, {
|
|
1047
|
-
TraceSegmentDocuments: (_) => (0, import_smithy_client._json)(_)
|
|
1042
|
+
TraceSegmentDocuments: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "TraceSegmentDocuments")
|
|
1048
1043
|
})
|
|
1049
1044
|
);
|
|
1050
1045
|
b.m("POST").h(headers).b(body);
|
|
@@ -1059,9 +1054,9 @@ var se_StartTraceRetrievalCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1059
1054
|
let body;
|
|
1060
1055
|
body = JSON.stringify(
|
|
1061
1056
|
(0, import_smithy_client.take)(input, {
|
|
1062
|
-
EndTime: (_) => _.getTime() / 1e3,
|
|
1063
|
-
StartTime: (_) => _.getTime() / 1e3,
|
|
1064
|
-
TraceIds: (_) => (0, import_smithy_client._json)(_)
|
|
1057
|
+
EndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "EndTime"),
|
|
1058
|
+
StartTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "StartTime"),
|
|
1059
|
+
TraceIds: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "TraceIds")
|
|
1065
1060
|
})
|
|
1066
1061
|
);
|
|
1067
1062
|
b.m("POST").h(headers).b(body);
|
|
@@ -1077,7 +1072,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1077
1072
|
body = JSON.stringify(
|
|
1078
1073
|
(0, import_smithy_client.take)(input, {
|
|
1079
1074
|
ResourceARN: [],
|
|
1080
|
-
Tags: (_) => (0, import_smithy_client._json)(_)
|
|
1075
|
+
Tags: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "Tags")
|
|
1081
1076
|
})
|
|
1082
1077
|
);
|
|
1083
1078
|
b.m("POST").h(headers).b(body);
|
|
@@ -1093,7 +1088,7 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1093
1088
|
body = JSON.stringify(
|
|
1094
1089
|
(0, import_smithy_client.take)(input, {
|
|
1095
1090
|
ResourceARN: [],
|
|
1096
|
-
TagKeys: (_) => (0, import_smithy_client._json)(_)
|
|
1091
|
+
TagKeys: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "TagKeys")
|
|
1097
1092
|
})
|
|
1098
1093
|
);
|
|
1099
1094
|
b.m("POST").h(headers).b(body);
|
|
@@ -1111,7 +1106,7 @@ var se_UpdateGroupCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1111
1106
|
FilterExpression: [],
|
|
1112
1107
|
GroupARN: [],
|
|
1113
1108
|
GroupName: [],
|
|
1114
|
-
InsightsConfiguration: (_) => (0, import_smithy_client._json)(_)
|
|
1109
|
+
InsightsConfiguration: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "InsightsConfiguration")
|
|
1115
1110
|
})
|
|
1116
1111
|
);
|
|
1117
1112
|
b.m("POST").h(headers).b(body);
|
|
@@ -1127,7 +1122,7 @@ var se_UpdateIndexingRuleCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1127
1122
|
body = JSON.stringify(
|
|
1128
1123
|
(0, import_smithy_client.take)(input, {
|
|
1129
1124
|
Name: [],
|
|
1130
|
-
Rule: (_) => se_IndexingRuleValueUpdate(_, context)
|
|
1125
|
+
Rule: /* @__PURE__ */ __name((_) => se_IndexingRuleValueUpdate(_, context), "Rule")
|
|
1131
1126
|
})
|
|
1132
1127
|
);
|
|
1133
1128
|
b.m("POST").h(headers).b(body);
|
|
@@ -1142,7 +1137,7 @@ var se_UpdateSamplingRuleCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1142
1137
|
let body;
|
|
1143
1138
|
body = JSON.stringify(
|
|
1144
1139
|
(0, import_smithy_client.take)(input, {
|
|
1145
|
-
SamplingRuleUpdate: (_) => se_SamplingRuleUpdate(_, context)
|
|
1140
|
+
SamplingRuleUpdate: /* @__PURE__ */ __name((_) => se_SamplingRuleUpdate(_, context), "SamplingRuleUpdate")
|
|
1146
1141
|
})
|
|
1147
1142
|
);
|
|
1148
1143
|
b.m("POST").h(headers).b(body);
|
|
@@ -1173,7 +1168,7 @@ var de_BatchGetTracesCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
1173
1168
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1174
1169
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1175
1170
|
NextToken: import_smithy_client.expectString,
|
|
1176
|
-
Traces: (_) => de_TraceList(_, context),
|
|
1171
|
+
Traces: /* @__PURE__ */ __name((_) => de_TraceList(_, context), "Traces"),
|
|
1177
1172
|
UnprocessedTraceIds: import_smithy_client._json
|
|
1178
1173
|
});
|
|
1179
1174
|
Object.assign(contents, doc);
|
|
@@ -1212,7 +1207,7 @@ var de_CreateSamplingRuleCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
1212
1207
|
});
|
|
1213
1208
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1214
1209
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1215
|
-
SamplingRuleRecord: (_) => de_SamplingRuleRecord(_, context)
|
|
1210
|
+
SamplingRuleRecord: /* @__PURE__ */ __name((_) => de_SamplingRuleRecord(_, context), "SamplingRuleRecord")
|
|
1216
1211
|
});
|
|
1217
1212
|
Object.assign(contents, doc);
|
|
1218
1213
|
return contents;
|
|
@@ -1246,7 +1241,7 @@ var de_DeleteSamplingRuleCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
1246
1241
|
});
|
|
1247
1242
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1248
1243
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1249
|
-
SamplingRuleRecord: (_) => de_SamplingRuleRecord(_, context)
|
|
1244
|
+
SamplingRuleRecord: /* @__PURE__ */ __name((_) => de_SamplingRuleRecord(_, context), "SamplingRuleRecord")
|
|
1250
1245
|
});
|
|
1251
1246
|
Object.assign(contents, doc);
|
|
1252
1247
|
return contents;
|
|
@@ -1303,7 +1298,7 @@ var de_GetIndexingRulesCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
1303
1298
|
});
|
|
1304
1299
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1305
1300
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1306
|
-
IndexingRules: (_) => de_IndexingRuleList(_, context),
|
|
1301
|
+
IndexingRules: /* @__PURE__ */ __name((_) => de_IndexingRuleList(_, context), "IndexingRules"),
|
|
1307
1302
|
NextToken: import_smithy_client.expectString
|
|
1308
1303
|
});
|
|
1309
1304
|
Object.assign(contents, doc);
|
|
@@ -1318,7 +1313,7 @@ var de_GetInsightCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
1318
1313
|
});
|
|
1319
1314
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1320
1315
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1321
|
-
Insight: (_) => de_Insight(_, context)
|
|
1316
|
+
Insight: /* @__PURE__ */ __name((_) => de_Insight(_, context), "Insight")
|
|
1322
1317
|
});
|
|
1323
1318
|
Object.assign(contents, doc);
|
|
1324
1319
|
return contents;
|
|
@@ -1332,7 +1327,7 @@ var de_GetInsightEventsCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
1332
1327
|
});
|
|
1333
1328
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1334
1329
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1335
|
-
InsightEvents: (_) => de_InsightEventList(_, context),
|
|
1330
|
+
InsightEvents: /* @__PURE__ */ __name((_) => de_InsightEventList(_, context), "InsightEvents"),
|
|
1336
1331
|
NextToken: import_smithy_client.expectString
|
|
1337
1332
|
});
|
|
1338
1333
|
Object.assign(contents, doc);
|
|
@@ -1347,13 +1342,13 @@ var de_GetInsightImpactGraphCommand = /* @__PURE__ */ __name(async (output, cont
|
|
|
1347
1342
|
});
|
|
1348
1343
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1349
1344
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1350
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1345
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
1351
1346
|
InsightId: import_smithy_client.expectString,
|
|
1352
1347
|
NextToken: import_smithy_client.expectString,
|
|
1353
|
-
ServiceGraphEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1354
|
-
ServiceGraphStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1348
|
+
ServiceGraphEndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ServiceGraphEndTime"),
|
|
1349
|
+
ServiceGraphStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ServiceGraphStartTime"),
|
|
1355
1350
|
Services: import_smithy_client._json,
|
|
1356
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1351
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime")
|
|
1357
1352
|
});
|
|
1358
1353
|
Object.assign(contents, doc);
|
|
1359
1354
|
return contents;
|
|
@@ -1367,7 +1362,7 @@ var de_GetInsightSummariesCommand = /* @__PURE__ */ __name(async (output, contex
|
|
|
1367
1362
|
});
|
|
1368
1363
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1369
1364
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1370
|
-
InsightSummaries: (_) => de_InsightSummaryList(_, context),
|
|
1365
|
+
InsightSummaries: /* @__PURE__ */ __name((_) => de_InsightSummaryList(_, context), "InsightSummaries"),
|
|
1371
1366
|
NextToken: import_smithy_client.expectString
|
|
1372
1367
|
});
|
|
1373
1368
|
Object.assign(contents, doc);
|
|
@@ -1384,7 +1379,7 @@ var de_GetRetrievedTracesGraphCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
1384
1379
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1385
1380
|
NextToken: import_smithy_client.expectString,
|
|
1386
1381
|
RetrievalStatus: import_smithy_client.expectString,
|
|
1387
|
-
Services: (_) => de_RetrievedServicesList(_, context)
|
|
1382
|
+
Services: /* @__PURE__ */ __name((_) => de_RetrievedServicesList(_, context), "Services")
|
|
1388
1383
|
});
|
|
1389
1384
|
Object.assign(contents, doc);
|
|
1390
1385
|
return contents;
|
|
@@ -1399,7 +1394,7 @@ var de_GetSamplingRulesCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
1399
1394
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1400
1395
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1401
1396
|
NextToken: import_smithy_client.expectString,
|
|
1402
|
-
SamplingRuleRecords: (_) => de_SamplingRuleRecordList(_, context)
|
|
1397
|
+
SamplingRuleRecords: /* @__PURE__ */ __name((_) => de_SamplingRuleRecordList(_, context), "SamplingRuleRecords")
|
|
1403
1398
|
});
|
|
1404
1399
|
Object.assign(contents, doc);
|
|
1405
1400
|
return contents;
|
|
@@ -1414,7 +1409,7 @@ var de_GetSamplingStatisticSummariesCommand = /* @__PURE__ */ __name(async (outp
|
|
|
1414
1409
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1415
1410
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1416
1411
|
NextToken: import_smithy_client.expectString,
|
|
1417
|
-
SamplingStatisticSummaries: (_) => de_SamplingStatisticSummaryList(_, context)
|
|
1412
|
+
SamplingStatisticSummaries: /* @__PURE__ */ __name((_) => de_SamplingStatisticSummaryList(_, context), "SamplingStatisticSummaries")
|
|
1418
1413
|
});
|
|
1419
1414
|
Object.assign(contents, doc);
|
|
1420
1415
|
return contents;
|
|
@@ -1428,8 +1423,8 @@ var de_GetSamplingTargetsCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
1428
1423
|
});
|
|
1429
1424
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1430
1425
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1431
|
-
LastRuleModification: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1432
|
-
SamplingTargetDocuments: (_) => de_SamplingTargetDocumentList(_, context),
|
|
1426
|
+
LastRuleModification: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastRuleModification"),
|
|
1427
|
+
SamplingTargetDocuments: /* @__PURE__ */ __name((_) => de_SamplingTargetDocumentList(_, context), "SamplingTargetDocuments"),
|
|
1433
1428
|
UnprocessedStatistics: import_smithy_client._json
|
|
1434
1429
|
});
|
|
1435
1430
|
Object.assign(contents, doc);
|
|
@@ -1445,10 +1440,10 @@ var de_GetServiceGraphCommand = /* @__PURE__ */ __name(async (output, context) =
|
|
|
1445
1440
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1446
1441
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1447
1442
|
ContainsOldGroupVersions: import_smithy_client.expectBoolean,
|
|
1448
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1443
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
1449
1444
|
NextToken: import_smithy_client.expectString,
|
|
1450
|
-
Services: (_) => de_ServiceList(_, context),
|
|
1451
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
1445
|
+
Services: /* @__PURE__ */ __name((_) => de_ServiceList(_, context), "Services"),
|
|
1446
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime")
|
|
1452
1447
|
});
|
|
1453
1448
|
Object.assign(contents, doc);
|
|
1454
1449
|
return contents;
|
|
@@ -1464,7 +1459,7 @@ var de_GetTimeSeriesServiceStatisticsCommand = /* @__PURE__ */ __name(async (out
|
|
|
1464
1459
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1465
1460
|
ContainsOldGroupVersions: import_smithy_client.expectBoolean,
|
|
1466
1461
|
NextToken: import_smithy_client.expectString,
|
|
1467
|
-
TimeSeriesServiceStatistics: (_) => de_TimeSeriesServiceStatisticsList(_, context)
|
|
1462
|
+
TimeSeriesServiceStatistics: /* @__PURE__ */ __name((_) => de_TimeSeriesServiceStatisticsList(_, context), "TimeSeriesServiceStatistics")
|
|
1468
1463
|
});
|
|
1469
1464
|
Object.assign(contents, doc);
|
|
1470
1465
|
return contents;
|
|
@@ -1479,7 +1474,7 @@ var de_GetTraceGraphCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
1479
1474
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1480
1475
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1481
1476
|
NextToken: import_smithy_client.expectString,
|
|
1482
|
-
Services: (_) => de_ServiceList(_, context)
|
|
1477
|
+
Services: /* @__PURE__ */ __name((_) => de_ServiceList(_, context), "Services")
|
|
1483
1478
|
});
|
|
1484
1479
|
Object.assign(contents, doc);
|
|
1485
1480
|
return contents;
|
|
@@ -1508,9 +1503,9 @@ var de_GetTraceSummariesCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
1508
1503
|
});
|
|
1509
1504
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1510
1505
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1511
|
-
ApproximateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1506
|
+
ApproximateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ApproximateTime"),
|
|
1512
1507
|
NextToken: import_smithy_client.expectString,
|
|
1513
|
-
TraceSummaries: (_) => de_TraceSummaryList(_, context),
|
|
1508
|
+
TraceSummaries: /* @__PURE__ */ __name((_) => de_TraceSummaryList(_, context), "TraceSummaries"),
|
|
1514
1509
|
TracesProcessedCount: import_smithy_client.expectLong
|
|
1515
1510
|
});
|
|
1516
1511
|
Object.assign(contents, doc);
|
|
@@ -1526,7 +1521,7 @@ var de_ListResourcePoliciesCommand = /* @__PURE__ */ __name(async (output, conte
|
|
|
1526
1521
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1527
1522
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1528
1523
|
NextToken: import_smithy_client.expectString,
|
|
1529
|
-
ResourcePolicies: (_) => de_ResourcePolicyList(_, context)
|
|
1524
|
+
ResourcePolicies: /* @__PURE__ */ __name((_) => de_ResourcePolicyList(_, context), "ResourcePolicies")
|
|
1530
1525
|
});
|
|
1531
1526
|
Object.assign(contents, doc);
|
|
1532
1527
|
return contents;
|
|
@@ -1543,7 +1538,7 @@ var de_ListRetrievedTracesCommand = /* @__PURE__ */ __name(async (output, contex
|
|
|
1543
1538
|
NextToken: import_smithy_client.expectString,
|
|
1544
1539
|
RetrievalStatus: import_smithy_client.expectString,
|
|
1545
1540
|
TraceFormat: import_smithy_client.expectString,
|
|
1546
|
-
Traces: (_) => de_TraceSpanList(_, context)
|
|
1541
|
+
Traces: /* @__PURE__ */ __name((_) => de_TraceSpanList(_, context), "Traces")
|
|
1547
1542
|
});
|
|
1548
1543
|
Object.assign(contents, doc);
|
|
1549
1544
|
return contents;
|
|
@@ -1586,7 +1581,7 @@ var de_PutResourcePolicyCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
1586
1581
|
});
|
|
1587
1582
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1588
1583
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1589
|
-
ResourcePolicy: (_) => de_ResourcePolicy(_, context)
|
|
1584
|
+
ResourcePolicy: /* @__PURE__ */ __name((_) => de_ResourcePolicy(_, context), "ResourcePolicy")
|
|
1590
1585
|
});
|
|
1591
1586
|
Object.assign(contents, doc);
|
|
1592
1587
|
return contents;
|
|
@@ -1672,7 +1667,7 @@ var de_UpdateIndexingRuleCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
1672
1667
|
});
|
|
1673
1668
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1674
1669
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1675
|
-
IndexingRule: (_) => de_IndexingRule(_, context)
|
|
1670
|
+
IndexingRule: /* @__PURE__ */ __name((_) => de_IndexingRule(_, context), "IndexingRule")
|
|
1676
1671
|
});
|
|
1677
1672
|
Object.assign(contents, doc);
|
|
1678
1673
|
return contents;
|
|
@@ -1686,7 +1681,7 @@ var de_UpdateSamplingRuleCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
1686
1681
|
});
|
|
1687
1682
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
1688
1683
|
const doc = (0, import_smithy_client.take)(data, {
|
|
1689
|
-
SamplingRuleRecord: (_) => de_SamplingRuleRecord(_, context)
|
|
1684
|
+
SamplingRuleRecord: /* @__PURE__ */ __name((_) => de_SamplingRuleRecord(_, context), "SamplingRuleRecord")
|
|
1690
1685
|
});
|
|
1691
1686
|
Object.assign(contents, doc);
|
|
1692
1687
|
return contents;
|
|
@@ -1887,8 +1882,8 @@ var de_TooManyTagsExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, con
|
|
|
1887
1882
|
}, "de_TooManyTagsExceptionRes");
|
|
1888
1883
|
var se_IndexingRuleValueUpdate = /* @__PURE__ */ __name((input, context) => {
|
|
1889
1884
|
return IndexingRuleValueUpdate.visit(input, {
|
|
1890
|
-
Probabilistic: (value) => ({ Probabilistic: se_ProbabilisticRuleValueUpdate(value, context) }),
|
|
1891
|
-
_: (name, value) => ({ [name]: value })
|
|
1885
|
+
Probabilistic: /* @__PURE__ */ __name((value) => ({ Probabilistic: se_ProbabilisticRuleValueUpdate(value, context) }), "Probabilistic"),
|
|
1886
|
+
_: /* @__PURE__ */ __name((name, value) => ({ [name]: value }), "_")
|
|
1892
1887
|
});
|
|
1893
1888
|
}, "se_IndexingRuleValueUpdate");
|
|
1894
1889
|
var se_ProbabilisticRuleValueUpdate = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -1936,7 +1931,7 @@ var se_SamplingStatisticsDocument = /* @__PURE__ */ __name((input, context) => {
|
|
|
1936
1931
|
RequestCount: [],
|
|
1937
1932
|
RuleName: [],
|
|
1938
1933
|
SampledCount: [],
|
|
1939
|
-
Timestamp: (_) => _.getTime() / 1e3
|
|
1934
|
+
Timestamp: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "Timestamp")
|
|
1940
1935
|
});
|
|
1941
1936
|
}, "se_SamplingStatisticsDocument");
|
|
1942
1937
|
var se_SamplingStatisticsDocumentList = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -1957,7 +1952,7 @@ var se_TelemetryRecord = /* @__PURE__ */ __name((input, context) => {
|
|
|
1957
1952
|
SegmentsRejectedCount: [],
|
|
1958
1953
|
SegmentsSentCount: [],
|
|
1959
1954
|
SegmentsSpilloverCount: [],
|
|
1960
|
-
Timestamp: (_) => _.getTime() / 1e3
|
|
1955
|
+
Timestamp: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "Timestamp")
|
|
1961
1956
|
});
|
|
1962
1957
|
}, "se_TelemetryRecord");
|
|
1963
1958
|
var se_TelemetryRecordList = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -1990,12 +1985,12 @@ var de_Edge = /* @__PURE__ */ __name((output, context) => {
|
|
|
1990
1985
|
return (0, import_smithy_client.take)(output, {
|
|
1991
1986
|
Aliases: import_smithy_client._json,
|
|
1992
1987
|
EdgeType: import_smithy_client.expectString,
|
|
1993
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1994
|
-
ReceivedEventAgeHistogram: (_) => de_Histogram(_, context),
|
|
1988
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
1989
|
+
ReceivedEventAgeHistogram: /* @__PURE__ */ __name((_) => de_Histogram(_, context), "ReceivedEventAgeHistogram"),
|
|
1995
1990
|
ReferenceId: import_smithy_client.expectInt32,
|
|
1996
|
-
ResponseTimeHistogram: (_) => de_Histogram(_, context),
|
|
1997
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
1998
|
-
SummaryStatistics: (_) => de_EdgeStatistics(_, context)
|
|
1991
|
+
ResponseTimeHistogram: /* @__PURE__ */ __name((_) => de_Histogram(_, context), "ResponseTimeHistogram"),
|
|
1992
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
1993
|
+
SummaryStatistics: /* @__PURE__ */ __name((_) => de_EdgeStatistics(_, context), "SummaryStatistics")
|
|
1999
1994
|
});
|
|
2000
1995
|
}, "de_Edge");
|
|
2001
1996
|
var de_EdgeList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -2027,9 +2022,9 @@ var de_HistogramEntry = /* @__PURE__ */ __name((output, context) => {
|
|
|
2027
2022
|
}, "de_HistogramEntry");
|
|
2028
2023
|
var de_IndexingRule = /* @__PURE__ */ __name((output, context) => {
|
|
2029
2024
|
return (0, import_smithy_client.take)(output, {
|
|
2030
|
-
ModifiedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2025
|
+
ModifiedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ModifiedAt"),
|
|
2031
2026
|
Name: import_smithy_client.expectString,
|
|
2032
|
-
Rule: (_) => de_IndexingRuleValue((0, import_core2.awsExpectUnion)(_), context)
|
|
2027
|
+
Rule: /* @__PURE__ */ __name((_) => de_IndexingRuleValue((0, import_core2.awsExpectUnion)(_), context), "Rule")
|
|
2033
2028
|
});
|
|
2034
2029
|
}, "de_IndexingRule");
|
|
2035
2030
|
var de_IndexingRuleList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -2050,13 +2045,13 @@ var de_Insight = /* @__PURE__ */ __name((output, context) => {
|
|
|
2050
2045
|
return (0, import_smithy_client.take)(output, {
|
|
2051
2046
|
Categories: import_smithy_client._json,
|
|
2052
2047
|
ClientRequestImpactStatistics: import_smithy_client._json,
|
|
2053
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2048
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
2054
2049
|
GroupARN: import_smithy_client.expectString,
|
|
2055
2050
|
GroupName: import_smithy_client.expectString,
|
|
2056
2051
|
InsightId: import_smithy_client.expectString,
|
|
2057
2052
|
RootCauseServiceId: import_smithy_client._json,
|
|
2058
2053
|
RootCauseServiceRequestImpactStatistics: import_smithy_client._json,
|
|
2059
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2054
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
2060
2055
|
State: import_smithy_client.expectString,
|
|
2061
2056
|
Summary: import_smithy_client.expectString,
|
|
2062
2057
|
TopAnomalousServices: import_smithy_client._json
|
|
@@ -2065,7 +2060,7 @@ var de_Insight = /* @__PURE__ */ __name((output, context) => {
|
|
|
2065
2060
|
var de_InsightEvent = /* @__PURE__ */ __name((output, context) => {
|
|
2066
2061
|
return (0, import_smithy_client.take)(output, {
|
|
2067
2062
|
ClientRequestImpactStatistics: import_smithy_client._json,
|
|
2068
|
-
EventTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2063
|
+
EventTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EventTime"),
|
|
2069
2064
|
RootCauseServiceRequestImpactStatistics: import_smithy_client._json,
|
|
2070
2065
|
Summary: import_smithy_client.expectString,
|
|
2071
2066
|
TopAnomalousServices: import_smithy_client._json
|
|
@@ -2081,14 +2076,14 @@ var de_InsightSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
2081
2076
|
return (0, import_smithy_client.take)(output, {
|
|
2082
2077
|
Categories: import_smithy_client._json,
|
|
2083
2078
|
ClientRequestImpactStatistics: import_smithy_client._json,
|
|
2084
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2079
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
2085
2080
|
GroupARN: import_smithy_client.expectString,
|
|
2086
2081
|
GroupName: import_smithy_client.expectString,
|
|
2087
2082
|
InsightId: import_smithy_client.expectString,
|
|
2088
|
-
LastUpdateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2083
|
+
LastUpdateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdateTime"),
|
|
2089
2084
|
RootCauseServiceId: import_smithy_client._json,
|
|
2090
2085
|
RootCauseServiceRequestImpactStatistics: import_smithy_client._json,
|
|
2091
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2086
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
2092
2087
|
State: import_smithy_client.expectString,
|
|
2093
2088
|
Summary: import_smithy_client.expectString,
|
|
2094
2089
|
TopAnomalousServices: import_smithy_client._json
|
|
@@ -2108,7 +2103,7 @@ var de_ProbabilisticRuleValue = /* @__PURE__ */ __name((output, context) => {
|
|
|
2108
2103
|
}, "de_ProbabilisticRuleValue");
|
|
2109
2104
|
var de_ResourcePolicy = /* @__PURE__ */ __name((output, context) => {
|
|
2110
2105
|
return (0, import_smithy_client.take)(output, {
|
|
2111
|
-
LastUpdatedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2106
|
+
LastUpdatedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdatedTime"),
|
|
2112
2107
|
PolicyDocument: import_smithy_client.expectString,
|
|
2113
2108
|
PolicyName: import_smithy_client.expectString,
|
|
2114
2109
|
PolicyRevisionId: import_smithy_client.expectString
|
|
@@ -2123,7 +2118,7 @@ var de_ResourcePolicyList = /* @__PURE__ */ __name((output, context) => {
|
|
|
2123
2118
|
var de_ResponseTimeRootCause = /* @__PURE__ */ __name((output, context) => {
|
|
2124
2119
|
return (0, import_smithy_client.take)(output, {
|
|
2125
2120
|
ClientImpacting: import_smithy_client.expectBoolean,
|
|
2126
|
-
Services: (_) => de_ResponseTimeRootCauseServices(_, context)
|
|
2121
|
+
Services: /* @__PURE__ */ __name((_) => de_ResponseTimeRootCauseServices(_, context), "Services")
|
|
2127
2122
|
});
|
|
2128
2123
|
}, "de_ResponseTimeRootCause");
|
|
2129
2124
|
var de_ResponseTimeRootCauseEntity = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -2148,7 +2143,7 @@ var de_ResponseTimeRootCauses = /* @__PURE__ */ __name((output, context) => {
|
|
|
2148
2143
|
var de_ResponseTimeRootCauseService = /* @__PURE__ */ __name((output, context) => {
|
|
2149
2144
|
return (0, import_smithy_client.take)(output, {
|
|
2150
2145
|
AccountId: import_smithy_client.expectString,
|
|
2151
|
-
EntityPath: (_) => de_ResponseTimeRootCauseEntityPath(_, context),
|
|
2146
|
+
EntityPath: /* @__PURE__ */ __name((_) => de_ResponseTimeRootCauseEntityPath(_, context), "EntityPath"),
|
|
2152
2147
|
Inferred: import_smithy_client.expectBoolean,
|
|
2153
2148
|
Name: import_smithy_client.expectString,
|
|
2154
2149
|
Names: import_smithy_client._json,
|
|
@@ -2164,7 +2159,7 @@ var de_ResponseTimeRootCauseServices = /* @__PURE__ */ __name((output, context)
|
|
|
2164
2159
|
var de_RetrievedService = /* @__PURE__ */ __name((output, context) => {
|
|
2165
2160
|
return (0, import_smithy_client.take)(output, {
|
|
2166
2161
|
Links: import_smithy_client._json,
|
|
2167
|
-
Service: (_) => de_Service(_, context)
|
|
2162
|
+
Service: /* @__PURE__ */ __name((_) => de_Service(_, context), "Service")
|
|
2168
2163
|
});
|
|
2169
2164
|
}, "de_RetrievedService");
|
|
2170
2165
|
var de_RetrievedServicesList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -2199,9 +2194,9 @@ var de_SamplingRule = /* @__PURE__ */ __name((output, context) => {
|
|
|
2199
2194
|
}, "de_SamplingRule");
|
|
2200
2195
|
var de_SamplingRuleRecord = /* @__PURE__ */ __name((output, context) => {
|
|
2201
2196
|
return (0, import_smithy_client.take)(output, {
|
|
2202
|
-
CreatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2203
|
-
ModifiedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2204
|
-
SamplingRule: (_) => de_SamplingRule(_, context)
|
|
2197
|
+
CreatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedAt"),
|
|
2198
|
+
ModifiedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ModifiedAt"),
|
|
2199
|
+
SamplingRule: /* @__PURE__ */ __name((_) => de_SamplingRule(_, context), "SamplingRule")
|
|
2205
2200
|
});
|
|
2206
2201
|
}, "de_SamplingRuleRecord");
|
|
2207
2202
|
var de_SamplingRuleRecordList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -2216,7 +2211,7 @@ var de_SamplingStatisticSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
2216
2211
|
RequestCount: import_smithy_client.expectInt32,
|
|
2217
2212
|
RuleName: import_smithy_client.expectString,
|
|
2218
2213
|
SampledCount: import_smithy_client.expectInt32,
|
|
2219
|
-
Timestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
2214
|
+
Timestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "Timestamp")
|
|
2220
2215
|
});
|
|
2221
2216
|
}, "de_SamplingStatisticSummary");
|
|
2222
2217
|
var de_SamplingStatisticSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -2230,7 +2225,7 @@ var de_SamplingTargetDocument = /* @__PURE__ */ __name((output, context) => {
|
|
|
2230
2225
|
FixedRate: import_smithy_client.limitedParseDouble,
|
|
2231
2226
|
Interval: import_smithy_client.expectInt32,
|
|
2232
2227
|
ReservoirQuota: import_smithy_client.expectInt32,
|
|
2233
|
-
ReservoirQuotaTTL: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2228
|
+
ReservoirQuotaTTL: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ReservoirQuotaTTL"),
|
|
2234
2229
|
RuleName: import_smithy_client.expectString
|
|
2235
2230
|
});
|
|
2236
2231
|
}, "de_SamplingTargetDocument");
|
|
@@ -2243,17 +2238,17 @@ var de_SamplingTargetDocumentList = /* @__PURE__ */ __name((output, context) =>
|
|
|
2243
2238
|
var de_Service = /* @__PURE__ */ __name((output, context) => {
|
|
2244
2239
|
return (0, import_smithy_client.take)(output, {
|
|
2245
2240
|
AccountId: import_smithy_client.expectString,
|
|
2246
|
-
DurationHistogram: (_) => de_Histogram(_, context),
|
|
2247
|
-
Edges: (_) => de_EdgeList(_, context),
|
|
2248
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2241
|
+
DurationHistogram: /* @__PURE__ */ __name((_) => de_Histogram(_, context), "DurationHistogram"),
|
|
2242
|
+
Edges: /* @__PURE__ */ __name((_) => de_EdgeList(_, context), "Edges"),
|
|
2243
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
2249
2244
|
Name: import_smithy_client.expectString,
|
|
2250
2245
|
Names: import_smithy_client._json,
|
|
2251
2246
|
ReferenceId: import_smithy_client.expectInt32,
|
|
2252
|
-
ResponseTimeHistogram: (_) => de_Histogram(_, context),
|
|
2247
|
+
ResponseTimeHistogram: /* @__PURE__ */ __name((_) => de_Histogram(_, context), "ResponseTimeHistogram"),
|
|
2253
2248
|
Root: import_smithy_client.expectBoolean,
|
|
2254
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2249
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
2255
2250
|
State: import_smithy_client.expectString,
|
|
2256
|
-
SummaryStatistics: (_) => de_ServiceStatistics(_, context),
|
|
2251
|
+
SummaryStatistics: /* @__PURE__ */ __name((_) => de_ServiceStatistics(_, context), "SummaryStatistics"),
|
|
2257
2252
|
Type: import_smithy_client.expectString
|
|
2258
2253
|
});
|
|
2259
2254
|
}, "de_Service");
|
|
@@ -2274,11 +2269,11 @@ var de_ServiceStatistics = /* @__PURE__ */ __name((output, context) => {
|
|
|
2274
2269
|
}, "de_ServiceStatistics");
|
|
2275
2270
|
var de_TimeSeriesServiceStatistics = /* @__PURE__ */ __name((output, context) => {
|
|
2276
2271
|
return (0, import_smithy_client.take)(output, {
|
|
2277
|
-
EdgeSummaryStatistics: (_) => de_EdgeStatistics(_, context),
|
|
2278
|
-
ResponseTimeHistogram: (_) => de_Histogram(_, context),
|
|
2272
|
+
EdgeSummaryStatistics: /* @__PURE__ */ __name((_) => de_EdgeStatistics(_, context), "EdgeSummaryStatistics"),
|
|
2273
|
+
ResponseTimeHistogram: /* @__PURE__ */ __name((_) => de_Histogram(_, context), "ResponseTimeHistogram"),
|
|
2279
2274
|
ServiceForecastStatistics: import_smithy_client._json,
|
|
2280
|
-
ServiceSummaryStatistics: (_) => de_ServiceStatistics(_, context),
|
|
2281
|
-
Timestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
2275
|
+
ServiceSummaryStatistics: /* @__PURE__ */ __name((_) => de_ServiceStatistics(_, context), "ServiceSummaryStatistics"),
|
|
2276
|
+
Timestamp: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "Timestamp")
|
|
2282
2277
|
});
|
|
2283
2278
|
}, "de_TimeSeriesServiceStatistics");
|
|
2284
2279
|
var de_TimeSeriesServiceStatisticsList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -2309,7 +2304,7 @@ var de_TraceSpanList = /* @__PURE__ */ __name((output, context) => {
|
|
|
2309
2304
|
}, "de_TraceSpanList");
|
|
2310
2305
|
var de_TraceSummary = /* @__PURE__ */ __name((output, context) => {
|
|
2311
2306
|
return (0, import_smithy_client.take)(output, {
|
|
2312
|
-
Annotations: (_) => de_Annotations(_, context),
|
|
2307
|
+
Annotations: /* @__PURE__ */ __name((_) => de_Annotations(_, context), "Annotations"),
|
|
2313
2308
|
AvailabilityZones: import_smithy_client._json,
|
|
2314
2309
|
Duration: import_smithy_client.limitedParseDouble,
|
|
2315
2310
|
EntryPoint: import_smithy_client._json,
|
|
@@ -2322,13 +2317,13 @@ var de_TraceSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
2322
2317
|
Id: import_smithy_client.expectString,
|
|
2323
2318
|
InstanceIds: import_smithy_client._json,
|
|
2324
2319
|
IsPartial: import_smithy_client.expectBoolean,
|
|
2325
|
-
MatchedEventTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2320
|
+
MatchedEventTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "MatchedEventTime"),
|
|
2326
2321
|
ResourceARNs: import_smithy_client._json,
|
|
2327
2322
|
ResponseTime: import_smithy_client.limitedParseDouble,
|
|
2328
|
-
ResponseTimeRootCauses: (_) => de_ResponseTimeRootCauses(_, context),
|
|
2323
|
+
ResponseTimeRootCauses: /* @__PURE__ */ __name((_) => de_ResponseTimeRootCauses(_, context), "ResponseTimeRootCauses"),
|
|
2329
2324
|
Revision: import_smithy_client.expectInt32,
|
|
2330
2325
|
ServiceIds: import_smithy_client._json,
|
|
2331
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
2326
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
2332
2327
|
Users: import_smithy_client._json
|
|
2333
2328
|
});
|
|
2334
2329
|
}, "de_TraceSummary");
|
|
@@ -2346,7 +2341,7 @@ var de_ValuesWithServiceIds = /* @__PURE__ */ __name((output, context) => {
|
|
|
2346
2341
|
}, "de_ValuesWithServiceIds");
|
|
2347
2342
|
var de_ValueWithServiceIds = /* @__PURE__ */ __name((output, context) => {
|
|
2348
2343
|
return (0, import_smithy_client.take)(output, {
|
|
2349
|
-
AnnotationValue: (_) => de_AnnotationValue((0, import_core2.awsExpectUnion)(_), context),
|
|
2344
|
+
AnnotationValue: /* @__PURE__ */ __name((_) => de_AnnotationValue((0, import_core2.awsExpectUnion)(_), context), "AnnotationValue"),
|
|
2350
2345
|
ServiceIds: import_smithy_client._json
|
|
2351
2346
|
});
|
|
2352
2347
|
}, "de_ValueWithServiceIds");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-xray",
|
|
3
3
|
"description": "AWS SDK for JavaScript Xray Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.772.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-xray",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.758.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.772.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.772.0",
|
|
28
28
|
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|