@aws-sdk/client-xray 3.131.0 → 3.142.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/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/BatchGetTracesCommand.js +2 -2
- package/dist-cjs/commands/CreateGroupCommand.js +2 -2
- package/dist-cjs/commands/CreateSamplingRuleCommand.js +2 -2
- package/dist-cjs/commands/DeleteGroupCommand.js +2 -2
- package/dist-cjs/commands/DeleteSamplingRuleCommand.js +2 -2
- package/dist-cjs/commands/GetEncryptionConfigCommand.js +2 -2
- package/dist-cjs/commands/GetGroupCommand.js +2 -2
- package/dist-cjs/commands/GetGroupsCommand.js +2 -2
- package/dist-cjs/commands/GetInsightCommand.js +2 -2
- package/dist-cjs/commands/GetInsightEventsCommand.js +2 -2
- package/dist-cjs/commands/GetInsightImpactGraphCommand.js +2 -2
- package/dist-cjs/commands/GetInsightSummariesCommand.js +2 -2
- package/dist-cjs/commands/GetSamplingRulesCommand.js +2 -2
- package/dist-cjs/commands/GetSamplingStatisticSummariesCommand.js +2 -2
- package/dist-cjs/commands/GetSamplingTargetsCommand.js +2 -2
- package/dist-cjs/commands/GetServiceGraphCommand.js +2 -2
- package/dist-cjs/commands/GetTimeSeriesServiceStatisticsCommand.js +2 -2
- package/dist-cjs/commands/GetTraceGraphCommand.js +2 -2
- package/dist-cjs/commands/GetTraceSummariesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PutEncryptionConfigCommand.js +2 -2
- package/dist-cjs/commands/PutTelemetryRecordsCommand.js +2 -2
- package/dist-cjs/commands/PutTraceSegmentsCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateGroupCommand.js +2 -2
- package/dist-cjs/commands/UpdateSamplingRuleCommand.js +2 -2
- package/dist-cjs/models/models_0.js +449 -662
- package/dist-cjs/protocols/Aws_restJson1.js +278 -428
- package/dist-es/commands/BatchGetTracesCommand.js +3 -3
- package/dist-es/commands/CreateGroupCommand.js +3 -3
- package/dist-es/commands/CreateSamplingRuleCommand.js +3 -3
- package/dist-es/commands/DeleteGroupCommand.js +3 -3
- package/dist-es/commands/DeleteSamplingRuleCommand.js +3 -3
- package/dist-es/commands/GetEncryptionConfigCommand.js +3 -3
- package/dist-es/commands/GetGroupCommand.js +3 -3
- package/dist-es/commands/GetGroupsCommand.js +3 -3
- package/dist-es/commands/GetInsightCommand.js +3 -3
- package/dist-es/commands/GetInsightEventsCommand.js +3 -3
- package/dist-es/commands/GetInsightImpactGraphCommand.js +3 -3
- package/dist-es/commands/GetInsightSummariesCommand.js +3 -3
- package/dist-es/commands/GetSamplingRulesCommand.js +3 -3
- package/dist-es/commands/GetSamplingStatisticSummariesCommand.js +3 -3
- package/dist-es/commands/GetSamplingTargetsCommand.js +3 -3
- package/dist-es/commands/GetServiceGraphCommand.js +3 -3
- package/dist-es/commands/GetTimeSeriesServiceStatisticsCommand.js +3 -3
- package/dist-es/commands/GetTraceGraphCommand.js +3 -3
- package/dist-es/commands/GetTraceSummariesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PutEncryptionConfigCommand.js +3 -3
- package/dist-es/commands/PutTelemetryRecordsCommand.js +3 -3
- package/dist-es/commands/PutTraceSegmentsCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateGroupCommand.js +3 -3
- package/dist-es/commands/UpdateSamplingRuleCommand.js +3 -3
- package/dist-es/models/models_0.js +124 -445
- package/dist-es/protocols/Aws_restJson1.js +360 -429
- package/dist-types/models/models_0.d.ts +432 -646
- package/dist-types/ts3.4/models/models_0.d.ts +216 -430
- package/package.json +6 -6
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { __assign, __extends, __read } from "tslib";
|
|
2
2
|
import { XRayServiceException as __BaseException } from "./XRayServiceException";
|
|
3
|
-
export var Alias;
|
|
4
|
-
(function (Alias) {
|
|
5
|
-
Alias.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
6
|
-
})(Alias || (Alias = {}));
|
|
7
3
|
export var AnnotationValue;
|
|
8
4
|
(function (AnnotationValue) {
|
|
9
5
|
AnnotationValue.visit = function (value, visitor) {
|
|
@@ -15,50 +11,7 @@ export var AnnotationValue;
|
|
|
15
11
|
return visitor.StringValue(value.StringValue);
|
|
16
12
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
17
13
|
};
|
|
18
|
-
AnnotationValue.filterSensitiveLog = function (obj) {
|
|
19
|
-
var _a;
|
|
20
|
-
if (obj.NumberValue !== undefined)
|
|
21
|
-
return { NumberValue: obj.NumberValue };
|
|
22
|
-
if (obj.BooleanValue !== undefined)
|
|
23
|
-
return { BooleanValue: obj.BooleanValue };
|
|
24
|
-
if (obj.StringValue !== undefined)
|
|
25
|
-
return { StringValue: obj.StringValue };
|
|
26
|
-
if (obj.$unknown !== undefined)
|
|
27
|
-
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
28
|
-
};
|
|
29
14
|
})(AnnotationValue || (AnnotationValue = {}));
|
|
30
|
-
export var ServiceId;
|
|
31
|
-
(function (ServiceId) {
|
|
32
|
-
ServiceId.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
33
|
-
})(ServiceId || (ServiceId = {}));
|
|
34
|
-
export var ValueWithServiceIds;
|
|
35
|
-
(function (ValueWithServiceIds) {
|
|
36
|
-
ValueWithServiceIds.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AnnotationValue && { AnnotationValue: AnnotationValue.filterSensitiveLog(obj.AnnotationValue) }))); };
|
|
37
|
-
})(ValueWithServiceIds || (ValueWithServiceIds = {}));
|
|
38
|
-
export var AnomalousService;
|
|
39
|
-
(function (AnomalousService) {
|
|
40
|
-
AnomalousService.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
41
|
-
})(AnomalousService || (AnomalousService = {}));
|
|
42
|
-
export var AvailabilityZoneDetail;
|
|
43
|
-
(function (AvailabilityZoneDetail) {
|
|
44
|
-
AvailabilityZoneDetail.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
45
|
-
})(AvailabilityZoneDetail || (AvailabilityZoneDetail = {}));
|
|
46
|
-
export var BatchGetTracesRequest;
|
|
47
|
-
(function (BatchGetTracesRequest) {
|
|
48
|
-
BatchGetTracesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
49
|
-
})(BatchGetTracesRequest || (BatchGetTracesRequest = {}));
|
|
50
|
-
export var Segment;
|
|
51
|
-
(function (Segment) {
|
|
52
|
-
Segment.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
53
|
-
})(Segment || (Segment = {}));
|
|
54
|
-
export var Trace;
|
|
55
|
-
(function (Trace) {
|
|
56
|
-
Trace.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
57
|
-
})(Trace || (Trace = {}));
|
|
58
|
-
export var BatchGetTracesResult;
|
|
59
|
-
(function (BatchGetTracesResult) {
|
|
60
|
-
BatchGetTracesResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
61
|
-
})(BatchGetTracesResult || (BatchGetTracesResult = {}));
|
|
62
15
|
var InvalidRequestException = (function (_super) {
|
|
63
16
|
__extends(InvalidRequestException, _super);
|
|
64
17
|
function InvalidRequestException(opts) {
|
|
@@ -85,42 +38,6 @@ var ThrottledException = (function (_super) {
|
|
|
85
38
|
return ThrottledException;
|
|
86
39
|
}(__BaseException));
|
|
87
40
|
export { ThrottledException };
|
|
88
|
-
export var InsightsConfiguration;
|
|
89
|
-
(function (InsightsConfiguration) {
|
|
90
|
-
InsightsConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
91
|
-
})(InsightsConfiguration || (InsightsConfiguration = {}));
|
|
92
|
-
export var Tag;
|
|
93
|
-
(function (Tag) {
|
|
94
|
-
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
95
|
-
})(Tag || (Tag = {}));
|
|
96
|
-
export var CreateGroupRequest;
|
|
97
|
-
(function (CreateGroupRequest) {
|
|
98
|
-
CreateGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
99
|
-
})(CreateGroupRequest || (CreateGroupRequest = {}));
|
|
100
|
-
export var Group;
|
|
101
|
-
(function (Group) {
|
|
102
|
-
Group.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
103
|
-
})(Group || (Group = {}));
|
|
104
|
-
export var CreateGroupResult;
|
|
105
|
-
(function (CreateGroupResult) {
|
|
106
|
-
CreateGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
107
|
-
})(CreateGroupResult || (CreateGroupResult = {}));
|
|
108
|
-
export var SamplingRule;
|
|
109
|
-
(function (SamplingRule) {
|
|
110
|
-
SamplingRule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
111
|
-
})(SamplingRule || (SamplingRule = {}));
|
|
112
|
-
export var CreateSamplingRuleRequest;
|
|
113
|
-
(function (CreateSamplingRuleRequest) {
|
|
114
|
-
CreateSamplingRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
115
|
-
})(CreateSamplingRuleRequest || (CreateSamplingRuleRequest = {}));
|
|
116
|
-
export var SamplingRuleRecord;
|
|
117
|
-
(function (SamplingRuleRecord) {
|
|
118
|
-
SamplingRuleRecord.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
119
|
-
})(SamplingRuleRecord || (SamplingRuleRecord = {}));
|
|
120
|
-
export var CreateSamplingRuleResult;
|
|
121
|
-
(function (CreateSamplingRuleResult) {
|
|
122
|
-
CreateSamplingRuleResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
123
|
-
})(CreateSamplingRuleResult || (CreateSamplingRuleResult = {}));
|
|
124
41
|
var RuleLimitExceededException = (function (_super) {
|
|
125
42
|
__extends(RuleLimitExceededException, _super);
|
|
126
43
|
function RuleLimitExceededException(opts) {
|
|
@@ -134,26 +51,6 @@ var RuleLimitExceededException = (function (_super) {
|
|
|
134
51
|
return RuleLimitExceededException;
|
|
135
52
|
}(__BaseException));
|
|
136
53
|
export { RuleLimitExceededException };
|
|
137
|
-
export var DeleteGroupRequest;
|
|
138
|
-
(function (DeleteGroupRequest) {
|
|
139
|
-
DeleteGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
140
|
-
})(DeleteGroupRequest || (DeleteGroupRequest = {}));
|
|
141
|
-
export var DeleteGroupResult;
|
|
142
|
-
(function (DeleteGroupResult) {
|
|
143
|
-
DeleteGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
144
|
-
})(DeleteGroupResult || (DeleteGroupResult = {}));
|
|
145
|
-
export var DeleteSamplingRuleRequest;
|
|
146
|
-
(function (DeleteSamplingRuleRequest) {
|
|
147
|
-
DeleteSamplingRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
148
|
-
})(DeleteSamplingRuleRequest || (DeleteSamplingRuleRequest = {}));
|
|
149
|
-
export var DeleteSamplingRuleResult;
|
|
150
|
-
(function (DeleteSamplingRuleResult) {
|
|
151
|
-
DeleteSamplingRuleResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
152
|
-
})(DeleteSamplingRuleResult || (DeleteSamplingRuleResult = {}));
|
|
153
|
-
export var GetEncryptionConfigRequest;
|
|
154
|
-
(function (GetEncryptionConfigRequest) {
|
|
155
|
-
GetEncryptionConfigRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
156
|
-
})(GetEncryptionConfigRequest || (GetEncryptionConfigRequest = {}));
|
|
157
54
|
export var EncryptionStatus;
|
|
158
55
|
(function (EncryptionStatus) {
|
|
159
56
|
EncryptionStatus["ACTIVE"] = "ACTIVE";
|
|
@@ -164,295 +61,25 @@ export var EncryptionType;
|
|
|
164
61
|
EncryptionType["KMS"] = "KMS";
|
|
165
62
|
EncryptionType["NONE"] = "NONE";
|
|
166
63
|
})(EncryptionType || (EncryptionType = {}));
|
|
167
|
-
export var EncryptionConfig;
|
|
168
|
-
(function (EncryptionConfig) {
|
|
169
|
-
EncryptionConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
170
|
-
})(EncryptionConfig || (EncryptionConfig = {}));
|
|
171
|
-
export var GetEncryptionConfigResult;
|
|
172
|
-
(function (GetEncryptionConfigResult) {
|
|
173
|
-
GetEncryptionConfigResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
174
|
-
})(GetEncryptionConfigResult || (GetEncryptionConfigResult = {}));
|
|
175
|
-
export var GetGroupRequest;
|
|
176
|
-
(function (GetGroupRequest) {
|
|
177
|
-
GetGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
|
-
})(GetGroupRequest || (GetGroupRequest = {}));
|
|
179
|
-
export var GetGroupResult;
|
|
180
|
-
(function (GetGroupResult) {
|
|
181
|
-
GetGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
182
|
-
})(GetGroupResult || (GetGroupResult = {}));
|
|
183
|
-
export var GetGroupsRequest;
|
|
184
|
-
(function (GetGroupsRequest) {
|
|
185
|
-
GetGroupsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
|
-
})(GetGroupsRequest || (GetGroupsRequest = {}));
|
|
187
|
-
export var GroupSummary;
|
|
188
|
-
(function (GroupSummary) {
|
|
189
|
-
GroupSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
|
-
})(GroupSummary || (GroupSummary = {}));
|
|
191
|
-
export var GetGroupsResult;
|
|
192
|
-
(function (GetGroupsResult) {
|
|
193
|
-
GetGroupsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
|
-
})(GetGroupsResult || (GetGroupsResult = {}));
|
|
195
|
-
export var GetInsightRequest;
|
|
196
|
-
(function (GetInsightRequest) {
|
|
197
|
-
GetInsightRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
-
})(GetInsightRequest || (GetInsightRequest = {}));
|
|
199
64
|
export var InsightCategory;
|
|
200
65
|
(function (InsightCategory) {
|
|
201
66
|
InsightCategory["FAULT"] = "FAULT";
|
|
202
67
|
})(InsightCategory || (InsightCategory = {}));
|
|
203
|
-
export var RequestImpactStatistics;
|
|
204
|
-
(function (RequestImpactStatistics) {
|
|
205
|
-
RequestImpactStatistics.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
206
|
-
})(RequestImpactStatistics || (RequestImpactStatistics = {}));
|
|
207
68
|
export var InsightState;
|
|
208
69
|
(function (InsightState) {
|
|
209
70
|
InsightState["ACTIVE"] = "ACTIVE";
|
|
210
71
|
InsightState["CLOSED"] = "CLOSED";
|
|
211
72
|
})(InsightState || (InsightState = {}));
|
|
212
|
-
export var Insight;
|
|
213
|
-
(function (Insight) {
|
|
214
|
-
Insight.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
215
|
-
})(Insight || (Insight = {}));
|
|
216
|
-
export var GetInsightResult;
|
|
217
|
-
(function (GetInsightResult) {
|
|
218
|
-
GetInsightResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
-
})(GetInsightResult || (GetInsightResult = {}));
|
|
220
|
-
export var GetInsightEventsRequest;
|
|
221
|
-
(function (GetInsightEventsRequest) {
|
|
222
|
-
GetInsightEventsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
223
|
-
})(GetInsightEventsRequest || (GetInsightEventsRequest = {}));
|
|
224
|
-
export var InsightEvent;
|
|
225
|
-
(function (InsightEvent) {
|
|
226
|
-
InsightEvent.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
-
})(InsightEvent || (InsightEvent = {}));
|
|
228
|
-
export var GetInsightEventsResult;
|
|
229
|
-
(function (GetInsightEventsResult) {
|
|
230
|
-
GetInsightEventsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
-
})(GetInsightEventsResult || (GetInsightEventsResult = {}));
|
|
232
|
-
export var GetInsightImpactGraphRequest;
|
|
233
|
-
(function (GetInsightImpactGraphRequest) {
|
|
234
|
-
GetInsightImpactGraphRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
-
})(GetInsightImpactGraphRequest || (GetInsightImpactGraphRequest = {}));
|
|
236
|
-
export var InsightImpactGraphEdge;
|
|
237
|
-
(function (InsightImpactGraphEdge) {
|
|
238
|
-
InsightImpactGraphEdge.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
239
|
-
})(InsightImpactGraphEdge || (InsightImpactGraphEdge = {}));
|
|
240
|
-
export var InsightImpactGraphService;
|
|
241
|
-
(function (InsightImpactGraphService) {
|
|
242
|
-
InsightImpactGraphService.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
-
})(InsightImpactGraphService || (InsightImpactGraphService = {}));
|
|
244
|
-
export var GetInsightImpactGraphResult;
|
|
245
|
-
(function (GetInsightImpactGraphResult) {
|
|
246
|
-
GetInsightImpactGraphResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
-
})(GetInsightImpactGraphResult || (GetInsightImpactGraphResult = {}));
|
|
248
|
-
export var GetInsightSummariesRequest;
|
|
249
|
-
(function (GetInsightSummariesRequest) {
|
|
250
|
-
GetInsightSummariesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
-
})(GetInsightSummariesRequest || (GetInsightSummariesRequest = {}));
|
|
252
|
-
export var InsightSummary;
|
|
253
|
-
(function (InsightSummary) {
|
|
254
|
-
InsightSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
-
})(InsightSummary || (InsightSummary = {}));
|
|
256
|
-
export var GetInsightSummariesResult;
|
|
257
|
-
(function (GetInsightSummariesResult) {
|
|
258
|
-
GetInsightSummariesResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
-
})(GetInsightSummariesResult || (GetInsightSummariesResult = {}));
|
|
260
|
-
export var GetSamplingRulesRequest;
|
|
261
|
-
(function (GetSamplingRulesRequest) {
|
|
262
|
-
GetSamplingRulesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
-
})(GetSamplingRulesRequest || (GetSamplingRulesRequest = {}));
|
|
264
|
-
export var GetSamplingRulesResult;
|
|
265
|
-
(function (GetSamplingRulesResult) {
|
|
266
|
-
GetSamplingRulesResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
-
})(GetSamplingRulesResult || (GetSamplingRulesResult = {}));
|
|
268
|
-
export var GetSamplingStatisticSummariesRequest;
|
|
269
|
-
(function (GetSamplingStatisticSummariesRequest) {
|
|
270
|
-
GetSamplingStatisticSummariesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
-
})(GetSamplingStatisticSummariesRequest || (GetSamplingStatisticSummariesRequest = {}));
|
|
272
|
-
export var SamplingStatisticSummary;
|
|
273
|
-
(function (SamplingStatisticSummary) {
|
|
274
|
-
SamplingStatisticSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
-
})(SamplingStatisticSummary || (SamplingStatisticSummary = {}));
|
|
276
|
-
export var GetSamplingStatisticSummariesResult;
|
|
277
|
-
(function (GetSamplingStatisticSummariesResult) {
|
|
278
|
-
GetSamplingStatisticSummariesResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
-
})(GetSamplingStatisticSummariesResult || (GetSamplingStatisticSummariesResult = {}));
|
|
280
|
-
export var SamplingStatisticsDocument;
|
|
281
|
-
(function (SamplingStatisticsDocument) {
|
|
282
|
-
SamplingStatisticsDocument.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
-
})(SamplingStatisticsDocument || (SamplingStatisticsDocument = {}));
|
|
284
|
-
export var GetSamplingTargetsRequest;
|
|
285
|
-
(function (GetSamplingTargetsRequest) {
|
|
286
|
-
GetSamplingTargetsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
-
})(GetSamplingTargetsRequest || (GetSamplingTargetsRequest = {}));
|
|
288
|
-
export var SamplingTargetDocument;
|
|
289
|
-
(function (SamplingTargetDocument) {
|
|
290
|
-
SamplingTargetDocument.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
-
})(SamplingTargetDocument || (SamplingTargetDocument = {}));
|
|
292
|
-
export var UnprocessedStatistics;
|
|
293
|
-
(function (UnprocessedStatistics) {
|
|
294
|
-
UnprocessedStatistics.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
-
})(UnprocessedStatistics || (UnprocessedStatistics = {}));
|
|
296
|
-
export var GetSamplingTargetsResult;
|
|
297
|
-
(function (GetSamplingTargetsResult) {
|
|
298
|
-
GetSamplingTargetsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
-
})(GetSamplingTargetsResult || (GetSamplingTargetsResult = {}));
|
|
300
|
-
export var GetServiceGraphRequest;
|
|
301
|
-
(function (GetServiceGraphRequest) {
|
|
302
|
-
GetServiceGraphRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
-
})(GetServiceGraphRequest || (GetServiceGraphRequest = {}));
|
|
304
|
-
export var HistogramEntry;
|
|
305
|
-
(function (HistogramEntry) {
|
|
306
|
-
HistogramEntry.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
-
})(HistogramEntry || (HistogramEntry = {}));
|
|
308
|
-
export var ErrorStatistics;
|
|
309
|
-
(function (ErrorStatistics) {
|
|
310
|
-
ErrorStatistics.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
-
})(ErrorStatistics || (ErrorStatistics = {}));
|
|
312
|
-
export var FaultStatistics;
|
|
313
|
-
(function (FaultStatistics) {
|
|
314
|
-
FaultStatistics.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
-
})(FaultStatistics || (FaultStatistics = {}));
|
|
316
|
-
export var EdgeStatistics;
|
|
317
|
-
(function (EdgeStatistics) {
|
|
318
|
-
EdgeStatistics.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
-
})(EdgeStatistics || (EdgeStatistics = {}));
|
|
320
|
-
export var Edge;
|
|
321
|
-
(function (Edge) {
|
|
322
|
-
Edge.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
-
})(Edge || (Edge = {}));
|
|
324
|
-
export var ServiceStatistics;
|
|
325
|
-
(function (ServiceStatistics) {
|
|
326
|
-
ServiceStatistics.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
-
})(ServiceStatistics || (ServiceStatistics = {}));
|
|
328
|
-
export var Service;
|
|
329
|
-
(function (Service) {
|
|
330
|
-
Service.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
-
})(Service || (Service = {}));
|
|
332
|
-
export var GetServiceGraphResult;
|
|
333
|
-
(function (GetServiceGraphResult) {
|
|
334
|
-
GetServiceGraphResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
-
})(GetServiceGraphResult || (GetServiceGraphResult = {}));
|
|
336
|
-
export var GetTimeSeriesServiceStatisticsRequest;
|
|
337
|
-
(function (GetTimeSeriesServiceStatisticsRequest) {
|
|
338
|
-
GetTimeSeriesServiceStatisticsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
-
})(GetTimeSeriesServiceStatisticsRequest || (GetTimeSeriesServiceStatisticsRequest = {}));
|
|
340
|
-
export var ForecastStatistics;
|
|
341
|
-
(function (ForecastStatistics) {
|
|
342
|
-
ForecastStatistics.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
-
})(ForecastStatistics || (ForecastStatistics = {}));
|
|
344
|
-
export var TimeSeriesServiceStatistics;
|
|
345
|
-
(function (TimeSeriesServiceStatistics) {
|
|
346
|
-
TimeSeriesServiceStatistics.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
347
|
-
})(TimeSeriesServiceStatistics || (TimeSeriesServiceStatistics = {}));
|
|
348
|
-
export var GetTimeSeriesServiceStatisticsResult;
|
|
349
|
-
(function (GetTimeSeriesServiceStatisticsResult) {
|
|
350
|
-
GetTimeSeriesServiceStatisticsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
-
})(GetTimeSeriesServiceStatisticsResult || (GetTimeSeriesServiceStatisticsResult = {}));
|
|
352
|
-
export var GetTraceGraphRequest;
|
|
353
|
-
(function (GetTraceGraphRequest) {
|
|
354
|
-
GetTraceGraphRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
|
-
})(GetTraceGraphRequest || (GetTraceGraphRequest = {}));
|
|
356
|
-
export var GetTraceGraphResult;
|
|
357
|
-
(function (GetTraceGraphResult) {
|
|
358
|
-
GetTraceGraphResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
-
})(GetTraceGraphResult || (GetTraceGraphResult = {}));
|
|
360
73
|
export var SamplingStrategyName;
|
|
361
74
|
(function (SamplingStrategyName) {
|
|
362
75
|
SamplingStrategyName["FixedRate"] = "FixedRate";
|
|
363
76
|
SamplingStrategyName["PartialScan"] = "PartialScan";
|
|
364
77
|
})(SamplingStrategyName || (SamplingStrategyName = {}));
|
|
365
|
-
export var SamplingStrategy;
|
|
366
|
-
(function (SamplingStrategy) {
|
|
367
|
-
SamplingStrategy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
368
|
-
})(SamplingStrategy || (SamplingStrategy = {}));
|
|
369
78
|
export var TimeRangeType;
|
|
370
79
|
(function (TimeRangeType) {
|
|
371
80
|
TimeRangeType["Event"] = "Event";
|
|
372
81
|
TimeRangeType["TraceId"] = "TraceId";
|
|
373
82
|
})(TimeRangeType || (TimeRangeType = {}));
|
|
374
|
-
export var GetTraceSummariesRequest;
|
|
375
|
-
(function (GetTraceSummariesRequest) {
|
|
376
|
-
GetTraceSummariesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
377
|
-
})(GetTraceSummariesRequest || (GetTraceSummariesRequest = {}));
|
|
378
|
-
export var RootCauseException;
|
|
379
|
-
(function (RootCauseException) {
|
|
380
|
-
RootCauseException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
381
|
-
})(RootCauseException || (RootCauseException = {}));
|
|
382
|
-
export var ErrorRootCauseEntity;
|
|
383
|
-
(function (ErrorRootCauseEntity) {
|
|
384
|
-
ErrorRootCauseEntity.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
385
|
-
})(ErrorRootCauseEntity || (ErrorRootCauseEntity = {}));
|
|
386
|
-
export var ErrorRootCauseService;
|
|
387
|
-
(function (ErrorRootCauseService) {
|
|
388
|
-
ErrorRootCauseService.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
389
|
-
})(ErrorRootCauseService || (ErrorRootCauseService = {}));
|
|
390
|
-
export var ErrorRootCause;
|
|
391
|
-
(function (ErrorRootCause) {
|
|
392
|
-
ErrorRootCause.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
393
|
-
})(ErrorRootCause || (ErrorRootCause = {}));
|
|
394
|
-
export var FaultRootCauseEntity;
|
|
395
|
-
(function (FaultRootCauseEntity) {
|
|
396
|
-
FaultRootCauseEntity.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
397
|
-
})(FaultRootCauseEntity || (FaultRootCauseEntity = {}));
|
|
398
|
-
export var FaultRootCauseService;
|
|
399
|
-
(function (FaultRootCauseService) {
|
|
400
|
-
FaultRootCauseService.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
401
|
-
})(FaultRootCauseService || (FaultRootCauseService = {}));
|
|
402
|
-
export var FaultRootCause;
|
|
403
|
-
(function (FaultRootCause) {
|
|
404
|
-
FaultRootCause.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
405
|
-
})(FaultRootCause || (FaultRootCause = {}));
|
|
406
|
-
export var Http;
|
|
407
|
-
(function (Http) {
|
|
408
|
-
Http.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
409
|
-
})(Http || (Http = {}));
|
|
410
|
-
export var InstanceIdDetail;
|
|
411
|
-
(function (InstanceIdDetail) {
|
|
412
|
-
InstanceIdDetail.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
413
|
-
})(InstanceIdDetail || (InstanceIdDetail = {}));
|
|
414
|
-
export var ResourceARNDetail;
|
|
415
|
-
(function (ResourceARNDetail) {
|
|
416
|
-
ResourceARNDetail.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
417
|
-
})(ResourceARNDetail || (ResourceARNDetail = {}));
|
|
418
|
-
export var ResponseTimeRootCauseEntity;
|
|
419
|
-
(function (ResponseTimeRootCauseEntity) {
|
|
420
|
-
ResponseTimeRootCauseEntity.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
421
|
-
})(ResponseTimeRootCauseEntity || (ResponseTimeRootCauseEntity = {}));
|
|
422
|
-
export var ResponseTimeRootCauseService;
|
|
423
|
-
(function (ResponseTimeRootCauseService) {
|
|
424
|
-
ResponseTimeRootCauseService.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
425
|
-
})(ResponseTimeRootCauseService || (ResponseTimeRootCauseService = {}));
|
|
426
|
-
export var ResponseTimeRootCause;
|
|
427
|
-
(function (ResponseTimeRootCause) {
|
|
428
|
-
ResponseTimeRootCause.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
429
|
-
})(ResponseTimeRootCause || (ResponseTimeRootCause = {}));
|
|
430
|
-
export var TraceUser;
|
|
431
|
-
(function (TraceUser) {
|
|
432
|
-
TraceUser.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
433
|
-
})(TraceUser || (TraceUser = {}));
|
|
434
|
-
export var TraceSummary;
|
|
435
|
-
(function (TraceSummary) {
|
|
436
|
-
TraceSummary.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Annotations && {
|
|
437
|
-
Annotations: Object.entries(obj.Annotations).reduce(function (acc, _a) {
|
|
438
|
-
var _b;
|
|
439
|
-
var _c = __read(_a, 2), key = _c[0], value = _c[1];
|
|
440
|
-
return (__assign(__assign({}, acc), (_b = {}, _b[key] = value.map(function (item) { return ValueWithServiceIds.filterSensitiveLog(item); }), _b)));
|
|
441
|
-
}, {}),
|
|
442
|
-
}))); };
|
|
443
|
-
})(TraceSummary || (TraceSummary = {}));
|
|
444
|
-
export var GetTraceSummariesResult;
|
|
445
|
-
(function (GetTraceSummariesResult) {
|
|
446
|
-
GetTraceSummariesResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
447
|
-
})(GetTraceSummariesResult || (GetTraceSummariesResult = {}));
|
|
448
|
-
export var ListTagsForResourceRequest;
|
|
449
|
-
(function (ListTagsForResourceRequest) {
|
|
450
|
-
ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
451
|
-
})(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));
|
|
452
|
-
export var ListTagsForResourceResponse;
|
|
453
|
-
(function (ListTagsForResourceResponse) {
|
|
454
|
-
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
455
|
-
})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
|
|
456
83
|
var ResourceNotFoundException = (function (_super) {
|
|
457
84
|
__extends(ResourceNotFoundException, _super);
|
|
458
85
|
function ResourceNotFoundException(opts) {
|
|
@@ -467,50 +94,6 @@ var ResourceNotFoundException = (function (_super) {
|
|
|
467
94
|
return ResourceNotFoundException;
|
|
468
95
|
}(__BaseException));
|
|
469
96
|
export { ResourceNotFoundException };
|
|
470
|
-
export var PutEncryptionConfigRequest;
|
|
471
|
-
(function (PutEncryptionConfigRequest) {
|
|
472
|
-
PutEncryptionConfigRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
473
|
-
})(PutEncryptionConfigRequest || (PutEncryptionConfigRequest = {}));
|
|
474
|
-
export var PutEncryptionConfigResult;
|
|
475
|
-
(function (PutEncryptionConfigResult) {
|
|
476
|
-
PutEncryptionConfigResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
477
|
-
})(PutEncryptionConfigResult || (PutEncryptionConfigResult = {}));
|
|
478
|
-
export var BackendConnectionErrors;
|
|
479
|
-
(function (BackendConnectionErrors) {
|
|
480
|
-
BackendConnectionErrors.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
481
|
-
})(BackendConnectionErrors || (BackendConnectionErrors = {}));
|
|
482
|
-
export var TelemetryRecord;
|
|
483
|
-
(function (TelemetryRecord) {
|
|
484
|
-
TelemetryRecord.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
485
|
-
})(TelemetryRecord || (TelemetryRecord = {}));
|
|
486
|
-
export var PutTelemetryRecordsRequest;
|
|
487
|
-
(function (PutTelemetryRecordsRequest) {
|
|
488
|
-
PutTelemetryRecordsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
489
|
-
})(PutTelemetryRecordsRequest || (PutTelemetryRecordsRequest = {}));
|
|
490
|
-
export var PutTelemetryRecordsResult;
|
|
491
|
-
(function (PutTelemetryRecordsResult) {
|
|
492
|
-
PutTelemetryRecordsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
493
|
-
})(PutTelemetryRecordsResult || (PutTelemetryRecordsResult = {}));
|
|
494
|
-
export var PutTraceSegmentsRequest;
|
|
495
|
-
(function (PutTraceSegmentsRequest) {
|
|
496
|
-
PutTraceSegmentsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
497
|
-
})(PutTraceSegmentsRequest || (PutTraceSegmentsRequest = {}));
|
|
498
|
-
export var UnprocessedTraceSegment;
|
|
499
|
-
(function (UnprocessedTraceSegment) {
|
|
500
|
-
UnprocessedTraceSegment.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
501
|
-
})(UnprocessedTraceSegment || (UnprocessedTraceSegment = {}));
|
|
502
|
-
export var PutTraceSegmentsResult;
|
|
503
|
-
(function (PutTraceSegmentsResult) {
|
|
504
|
-
PutTraceSegmentsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
505
|
-
})(PutTraceSegmentsResult || (PutTraceSegmentsResult = {}));
|
|
506
|
-
export var TagResourceRequest;
|
|
507
|
-
(function (TagResourceRequest) {
|
|
508
|
-
TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
509
|
-
})(TagResourceRequest || (TagResourceRequest = {}));
|
|
510
|
-
export var TagResourceResponse;
|
|
511
|
-
(function (TagResourceResponse) {
|
|
512
|
-
TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
513
|
-
})(TagResourceResponse || (TagResourceResponse = {}));
|
|
514
97
|
var TooManyTagsException = (function (_super) {
|
|
515
98
|
__extends(TooManyTagsException, _super);
|
|
516
99
|
function TooManyTagsException(opts) {
|
|
@@ -525,31 +108,127 @@ var TooManyTagsException = (function (_super) {
|
|
|
525
108
|
return TooManyTagsException;
|
|
526
109
|
}(__BaseException));
|
|
527
110
|
export { TooManyTagsException };
|
|
528
|
-
export var
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
(
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
(
|
|
538
|
-
|
|
539
|
-
}
|
|
540
|
-
export var
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
export var
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
export var
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
export var
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
111
|
+
export var AliasFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
112
|
+
export var AnnotationValueFilterSensitiveLog = function (obj) {
|
|
113
|
+
var _a;
|
|
114
|
+
if (obj.NumberValue !== undefined)
|
|
115
|
+
return { NumberValue: obj.NumberValue };
|
|
116
|
+
if (obj.BooleanValue !== undefined)
|
|
117
|
+
return { BooleanValue: obj.BooleanValue };
|
|
118
|
+
if (obj.StringValue !== undefined)
|
|
119
|
+
return { StringValue: obj.StringValue };
|
|
120
|
+
if (obj.$unknown !== undefined)
|
|
121
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
122
|
+
};
|
|
123
|
+
export var ServiceIdFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
|
+
export var ValueWithServiceIdsFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AnnotationValue && { AnnotationValue: AnnotationValueFilterSensitiveLog(obj.AnnotationValue) }))); };
|
|
125
|
+
export var AnomalousServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
126
|
+
export var AvailabilityZoneDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
127
|
+
export var BatchGetTracesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
|
+
export var SegmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
|
+
export var TraceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
130
|
+
export var BatchGetTracesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
131
|
+
export var InsightsConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
132
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
133
|
+
export var CreateGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
|
+
export var GroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
|
+
export var CreateGroupResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
136
|
+
export var SamplingRuleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
137
|
+
export var CreateSamplingRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
+
export var SamplingRuleRecordFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
|
+
export var CreateSamplingRuleResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
140
|
+
export var DeleteGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
|
+
export var DeleteGroupResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
+
export var DeleteSamplingRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
143
|
+
export var DeleteSamplingRuleResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
144
|
+
export var GetEncryptionConfigRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
|
+
export var EncryptionConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
146
|
+
export var GetEncryptionConfigResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
147
|
+
export var GetGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
148
|
+
export var GetGroupResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
|
+
export var GetGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
150
|
+
export var GroupSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
151
|
+
export var GetGroupsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
152
|
+
export var GetInsightRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
153
|
+
export var RequestImpactStatisticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
154
|
+
export var InsightFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
155
|
+
export var GetInsightResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
156
|
+
export var GetInsightEventsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
|
+
export var InsightEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
158
|
+
export var GetInsightEventsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
159
|
+
export var GetInsightImpactGraphRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
160
|
+
export var InsightImpactGraphEdgeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
161
|
+
export var InsightImpactGraphServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
162
|
+
export var GetInsightImpactGraphResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
163
|
+
export var GetInsightSummariesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
164
|
+
export var InsightSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
|
+
export var GetInsightSummariesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
166
|
+
export var GetSamplingRulesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
167
|
+
export var GetSamplingRulesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
168
|
+
export var GetSamplingStatisticSummariesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
169
|
+
export var SamplingStatisticSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
170
|
+
export var GetSamplingStatisticSummariesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
171
|
+
export var SamplingStatisticsDocumentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
|
+
export var GetSamplingTargetsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
|
+
export var SamplingTargetDocumentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
174
|
+
export var UnprocessedStatisticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
175
|
+
export var GetSamplingTargetsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
176
|
+
export var GetServiceGraphRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
|
+
export var HistogramEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
|
+
export var ErrorStatisticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
179
|
+
export var FaultStatisticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
180
|
+
export var EdgeStatisticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
181
|
+
export var EdgeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
182
|
+
export var ServiceStatisticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
183
|
+
export var ServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
184
|
+
export var GetServiceGraphResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
|
+
export var GetTimeSeriesServiceStatisticsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
|
+
export var ForecastStatisticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
187
|
+
export var TimeSeriesServiceStatisticsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
188
|
+
export var GetTimeSeriesServiceStatisticsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
189
|
+
export var GetTraceGraphRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
|
+
export var GetTraceGraphResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
|
+
export var SamplingStrategyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
192
|
+
export var GetTraceSummariesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
|
+
export var RootCauseExceptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
|
+
export var ErrorRootCauseEntityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
|
+
export var ErrorRootCauseServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
196
|
+
export var ErrorRootCauseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
+
export var FaultRootCauseEntityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
198
|
+
export var FaultRootCauseServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
199
|
+
export var FaultRootCauseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
200
|
+
export var HttpFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
201
|
+
export var InstanceIdDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
202
|
+
export var ResourceARNDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
203
|
+
export var ResponseTimeRootCauseEntityFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
204
|
+
export var ResponseTimeRootCauseServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
|
+
export var ResponseTimeRootCauseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
206
|
+
export var TraceUserFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
207
|
+
export var TraceSummaryFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Annotations && {
|
|
208
|
+
Annotations: Object.entries(obj.Annotations).reduce(function (acc, _a) {
|
|
209
|
+
var _b;
|
|
210
|
+
var _c = __read(_a, 2), key = _c[0], value = _c[1];
|
|
211
|
+
return (__assign(__assign({}, acc), (_b = {}, _b[key] = value.map(function (item) { return ValueWithServiceIdsFilterSensitiveLog(item); }), _b)));
|
|
212
|
+
}, {}),
|
|
213
|
+
}))); };
|
|
214
|
+
export var GetTraceSummariesResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
215
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
|
+
export var PutEncryptionConfigRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
218
|
+
export var PutEncryptionConfigResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
+
export var BackendConnectionErrorsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
220
|
+
export var TelemetryRecordFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
221
|
+
export var PutTelemetryRecordsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
222
|
+
export var PutTelemetryRecordsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
223
|
+
export var PutTraceSegmentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
224
|
+
export var UnprocessedTraceSegmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
225
|
+
export var PutTraceSegmentsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
226
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
227
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
228
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
229
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
|
+
export var UpdateGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
export var UpdateGroupResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
|
+
export var SamplingRuleUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
233
|
+
export var UpdateSamplingRuleRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
234
|
+
export var UpdateSamplingRuleResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|