@aws-sdk/client-xray 3.180.0 → 3.183.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +33 -27
  3. package/dist-es/XRay.js +110 -117
  4. package/dist-es/XRayClient.js +22 -28
  5. package/dist-es/commands/BatchGetTracesCommand.js +21 -28
  6. package/dist-es/commands/CreateGroupCommand.js +21 -28
  7. package/dist-es/commands/CreateSamplingRuleCommand.js +21 -28
  8. package/dist-es/commands/DeleteGroupCommand.js +21 -28
  9. package/dist-es/commands/DeleteSamplingRuleCommand.js +21 -28
  10. package/dist-es/commands/GetEncryptionConfigCommand.js +21 -28
  11. package/dist-es/commands/GetGroupCommand.js +21 -28
  12. package/dist-es/commands/GetGroupsCommand.js +21 -28
  13. package/dist-es/commands/GetInsightCommand.js +21 -28
  14. package/dist-es/commands/GetInsightEventsCommand.js +21 -28
  15. package/dist-es/commands/GetInsightImpactGraphCommand.js +21 -28
  16. package/dist-es/commands/GetInsightSummariesCommand.js +21 -28
  17. package/dist-es/commands/GetSamplingRulesCommand.js +21 -28
  18. package/dist-es/commands/GetSamplingStatisticSummariesCommand.js +21 -28
  19. package/dist-es/commands/GetSamplingTargetsCommand.js +21 -28
  20. package/dist-es/commands/GetServiceGraphCommand.js +21 -28
  21. package/dist-es/commands/GetTimeSeriesServiceStatisticsCommand.js +21 -28
  22. package/dist-es/commands/GetTraceGraphCommand.js +21 -28
  23. package/dist-es/commands/GetTraceSummariesCommand.js +21 -28
  24. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  25. package/dist-es/commands/PutEncryptionConfigCommand.js +21 -28
  26. package/dist-es/commands/PutTelemetryRecordsCommand.js +21 -28
  27. package/dist-es/commands/PutTraceSegmentsCommand.js +21 -28
  28. package/dist-es/commands/TagResourceCommand.js +21 -28
  29. package/dist-es/commands/UntagResourceCommand.js +21 -28
  30. package/dist-es/commands/UpdateGroupCommand.js +21 -28
  31. package/dist-es/commands/UpdateSamplingRuleCommand.js +21 -28
  32. package/dist-es/endpoints.js +8 -8
  33. package/dist-es/models/XRayServiceException.js +5 -10
  34. package/dist-es/models/models_0.js +393 -180
  35. package/dist-es/pagination/BatchGetTracesPaginator.js +24 -67
  36. package/dist-es/pagination/GetGroupsPaginator.js +24 -67
  37. package/dist-es/pagination/GetInsightEventsPaginator.js +25 -68
  38. package/dist-es/pagination/GetInsightSummariesPaginator.js +25 -68
  39. package/dist-es/pagination/GetSamplingRulesPaginator.js +24 -67
  40. package/dist-es/pagination/GetSamplingStatisticSummariesPaginator.js +24 -67
  41. package/dist-es/pagination/GetServiceGraphPaginator.js +24 -67
  42. package/dist-es/pagination/GetTimeSeriesServiceStatisticsPaginator.js +24 -67
  43. package/dist-es/pagination/GetTraceGraphPaginator.js +24 -67
  44. package/dist-es/pagination/GetTraceSummariesPaginator.js +24 -67
  45. package/dist-es/protocols/Aws_restJson1.js +2041 -2695
  46. package/dist-es/runtimeConfig.browser.js +26 -12
  47. package/dist-es/runtimeConfig.js +30 -12
  48. package/dist-es/runtimeConfig.native.js +8 -5
  49. package/dist-es/runtimeConfig.shared.js +8 -11
  50. package/package.json +33 -33
@@ -1,8 +1,7 @@
1
- import { __assign, __extends, __read } from "tslib";
2
1
  import { XRayServiceException as __BaseException } from "./XRayServiceException";
3
2
  export var AnnotationValue;
4
3
  (function (AnnotationValue) {
5
- AnnotationValue.visit = function (value, visitor) {
4
+ AnnotationValue.visit = (value, visitor) => {
6
5
  if (value.NumberValue !== undefined)
7
6
  return visitor.NumberValue(value.NumberValue);
8
7
  if (value.BooleanValue !== undefined)
@@ -12,45 +11,45 @@ export var AnnotationValue;
12
11
  return visitor._(value.$unknown[0], value.$unknown[1]);
13
12
  };
14
13
  })(AnnotationValue || (AnnotationValue = {}));
15
- var InvalidRequestException = (function (_super) {
16
- __extends(InvalidRequestException, _super);
17
- function InvalidRequestException(opts) {
18
- var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
19
- _this.name = "InvalidRequestException";
20
- _this.$fault = "client";
21
- Object.setPrototypeOf(_this, InvalidRequestException.prototype);
22
- _this.Message = opts.Message;
23
- return _this;
14
+ export class InvalidRequestException extends __BaseException {
15
+ constructor(opts) {
16
+ super({
17
+ name: "InvalidRequestException",
18
+ $fault: "client",
19
+ ...opts,
20
+ });
21
+ this.name = "InvalidRequestException";
22
+ this.$fault = "client";
23
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
24
+ this.Message = opts.Message;
24
25
  }
25
- return InvalidRequestException;
26
- }(__BaseException));
27
- export { InvalidRequestException };
28
- var ThrottledException = (function (_super) {
29
- __extends(ThrottledException, _super);
30
- function ThrottledException(opts) {
31
- var _this = _super.call(this, __assign({ name: "ThrottledException", $fault: "client" }, opts)) || this;
32
- _this.name = "ThrottledException";
33
- _this.$fault = "client";
34
- Object.setPrototypeOf(_this, ThrottledException.prototype);
35
- _this.Message = opts.Message;
36
- return _this;
26
+ }
27
+ export class ThrottledException extends __BaseException {
28
+ constructor(opts) {
29
+ super({
30
+ name: "ThrottledException",
31
+ $fault: "client",
32
+ ...opts,
33
+ });
34
+ this.name = "ThrottledException";
35
+ this.$fault = "client";
36
+ Object.setPrototypeOf(this, ThrottledException.prototype);
37
+ this.Message = opts.Message;
37
38
  }
38
- return ThrottledException;
39
- }(__BaseException));
40
- export { ThrottledException };
41
- var RuleLimitExceededException = (function (_super) {
42
- __extends(RuleLimitExceededException, _super);
43
- function RuleLimitExceededException(opts) {
44
- var _this = _super.call(this, __assign({ name: "RuleLimitExceededException", $fault: "client" }, opts)) || this;
45
- _this.name = "RuleLimitExceededException";
46
- _this.$fault = "client";
47
- Object.setPrototypeOf(_this, RuleLimitExceededException.prototype);
48
- _this.Message = opts.Message;
49
- return _this;
39
+ }
40
+ export class RuleLimitExceededException extends __BaseException {
41
+ constructor(opts) {
42
+ super({
43
+ name: "RuleLimitExceededException",
44
+ $fault: "client",
45
+ ...opts,
46
+ });
47
+ this.name = "RuleLimitExceededException";
48
+ this.$fault = "client";
49
+ Object.setPrototypeOf(this, RuleLimitExceededException.prototype);
50
+ this.Message = opts.Message;
50
51
  }
51
- return RuleLimitExceededException;
52
- }(__BaseException));
53
- export { RuleLimitExceededException };
52
+ }
54
53
  export var EncryptionStatus;
55
54
  (function (EncryptionStatus) {
56
55
  EncryptionStatus["ACTIVE"] = "ACTIVE";
@@ -80,37 +79,38 @@ export var TimeRangeType;
80
79
  TimeRangeType["Event"] = "Event";
81
80
  TimeRangeType["TraceId"] = "TraceId";
82
81
  })(TimeRangeType || (TimeRangeType = {}));
83
- var ResourceNotFoundException = (function (_super) {
84
- __extends(ResourceNotFoundException, _super);
85
- function ResourceNotFoundException(opts) {
86
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
87
- _this.name = "ResourceNotFoundException";
88
- _this.$fault = "client";
89
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
90
- _this.Message = opts.Message;
91
- _this.ResourceName = opts.ResourceName;
92
- return _this;
82
+ export class ResourceNotFoundException extends __BaseException {
83
+ constructor(opts) {
84
+ super({
85
+ name: "ResourceNotFoundException",
86
+ $fault: "client",
87
+ ...opts,
88
+ });
89
+ this.name = "ResourceNotFoundException";
90
+ this.$fault = "client";
91
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
92
+ this.Message = opts.Message;
93
+ this.ResourceName = opts.ResourceName;
93
94
  }
94
- return ResourceNotFoundException;
95
- }(__BaseException));
96
- export { ResourceNotFoundException };
97
- var TooManyTagsException = (function (_super) {
98
- __extends(TooManyTagsException, _super);
99
- function TooManyTagsException(opts) {
100
- var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
101
- _this.name = "TooManyTagsException";
102
- _this.$fault = "client";
103
- Object.setPrototypeOf(_this, TooManyTagsException.prototype);
104
- _this.Message = opts.Message;
105
- _this.ResourceName = opts.ResourceName;
106
- return _this;
95
+ }
96
+ export class TooManyTagsException extends __BaseException {
97
+ constructor(opts) {
98
+ super({
99
+ name: "TooManyTagsException",
100
+ $fault: "client",
101
+ ...opts,
102
+ });
103
+ this.name = "TooManyTagsException";
104
+ this.$fault = "client";
105
+ Object.setPrototypeOf(this, TooManyTagsException.prototype);
106
+ this.Message = opts.Message;
107
+ this.ResourceName = opts.ResourceName;
107
108
  }
108
- return TooManyTagsException;
109
- }(__BaseException));
110
- export { TooManyTagsException };
111
- export var AliasFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
112
- export var AnnotationValueFilterSensitiveLog = function (obj) {
113
- var _a;
109
+ }
110
+ export const AliasFilterSensitiveLog = (obj) => ({
111
+ ...obj,
112
+ });
113
+ export const AnnotationValueFilterSensitiveLog = (obj) => {
114
114
  if (obj.NumberValue !== undefined)
115
115
  return { NumberValue: obj.NumberValue };
116
116
  if (obj.BooleanValue !== undefined)
@@ -118,117 +118,330 @@ export var AnnotationValueFilterSensitiveLog = function (obj) {
118
118
  if (obj.StringValue !== undefined)
119
119
  return { StringValue: obj.StringValue };
120
120
  if (obj.$unknown !== undefined)
121
- return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
121
+ return { [obj.$unknown[0]]: "UNKNOWN" };
122
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)); };
123
+ export const ServiceIdFilterSensitiveLog = (obj) => ({
124
+ ...obj,
125
+ });
126
+ export const ValueWithServiceIdsFilterSensitiveLog = (obj) => ({
127
+ ...obj,
128
+ ...(obj.AnnotationValue && { AnnotationValue: AnnotationValueFilterSensitiveLog(obj.AnnotationValue) }),
129
+ });
130
+ export const AnomalousServiceFilterSensitiveLog = (obj) => ({
131
+ ...obj,
132
+ });
133
+ export const AvailabilityZoneDetailFilterSensitiveLog = (obj) => ({
134
+ ...obj,
135
+ });
136
+ export const BatchGetTracesRequestFilterSensitiveLog = (obj) => ({
137
+ ...obj,
138
+ });
139
+ export const SegmentFilterSensitiveLog = (obj) => ({
140
+ ...obj,
141
+ });
142
+ export const TraceFilterSensitiveLog = (obj) => ({
143
+ ...obj,
144
+ });
145
+ export const BatchGetTracesResultFilterSensitiveLog = (obj) => ({
146
+ ...obj,
147
+ });
148
+ export const InsightsConfigurationFilterSensitiveLog = (obj) => ({
149
+ ...obj,
150
+ });
151
+ export const TagFilterSensitiveLog = (obj) => ({
152
+ ...obj,
153
+ });
154
+ export const CreateGroupRequestFilterSensitiveLog = (obj) => ({
155
+ ...obj,
156
+ });
157
+ export const GroupFilterSensitiveLog = (obj) => ({
158
+ ...obj,
159
+ });
160
+ export const CreateGroupResultFilterSensitiveLog = (obj) => ({
161
+ ...obj,
162
+ });
163
+ export const SamplingRuleFilterSensitiveLog = (obj) => ({
164
+ ...obj,
165
+ });
166
+ export const CreateSamplingRuleRequestFilterSensitiveLog = (obj) => ({
167
+ ...obj,
168
+ });
169
+ export const SamplingRuleRecordFilterSensitiveLog = (obj) => ({
170
+ ...obj,
171
+ });
172
+ export const CreateSamplingRuleResultFilterSensitiveLog = (obj) => ({
173
+ ...obj,
174
+ });
175
+ export const DeleteGroupRequestFilterSensitiveLog = (obj) => ({
176
+ ...obj,
177
+ });
178
+ export const DeleteGroupResultFilterSensitiveLog = (obj) => ({
179
+ ...obj,
180
+ });
181
+ export const DeleteSamplingRuleRequestFilterSensitiveLog = (obj) => ({
182
+ ...obj,
183
+ });
184
+ export const DeleteSamplingRuleResultFilterSensitiveLog = (obj) => ({
185
+ ...obj,
186
+ });
187
+ export const GetEncryptionConfigRequestFilterSensitiveLog = (obj) => ({
188
+ ...obj,
189
+ });
190
+ export const EncryptionConfigFilterSensitiveLog = (obj) => ({
191
+ ...obj,
192
+ });
193
+ export const GetEncryptionConfigResultFilterSensitiveLog = (obj) => ({
194
+ ...obj,
195
+ });
196
+ export const GetGroupRequestFilterSensitiveLog = (obj) => ({
197
+ ...obj,
198
+ });
199
+ export const GetGroupResultFilterSensitiveLog = (obj) => ({
200
+ ...obj,
201
+ });
202
+ export const GetGroupsRequestFilterSensitiveLog = (obj) => ({
203
+ ...obj,
204
+ });
205
+ export const GroupSummaryFilterSensitiveLog = (obj) => ({
206
+ ...obj,
207
+ });
208
+ export const GetGroupsResultFilterSensitiveLog = (obj) => ({
209
+ ...obj,
210
+ });
211
+ export const GetInsightRequestFilterSensitiveLog = (obj) => ({
212
+ ...obj,
213
+ });
214
+ export const RequestImpactStatisticsFilterSensitiveLog = (obj) => ({
215
+ ...obj,
216
+ });
217
+ export const InsightFilterSensitiveLog = (obj) => ({
218
+ ...obj,
219
+ });
220
+ export const GetInsightResultFilterSensitiveLog = (obj) => ({
221
+ ...obj,
222
+ });
223
+ export const GetInsightEventsRequestFilterSensitiveLog = (obj) => ({
224
+ ...obj,
225
+ });
226
+ export const InsightEventFilterSensitiveLog = (obj) => ({
227
+ ...obj,
228
+ });
229
+ export const GetInsightEventsResultFilterSensitiveLog = (obj) => ({
230
+ ...obj,
231
+ });
232
+ export const GetInsightImpactGraphRequestFilterSensitiveLog = (obj) => ({
233
+ ...obj,
234
+ });
235
+ export const InsightImpactGraphEdgeFilterSensitiveLog = (obj) => ({
236
+ ...obj,
237
+ });
238
+ export const InsightImpactGraphServiceFilterSensitiveLog = (obj) => ({
239
+ ...obj,
240
+ });
241
+ export const GetInsightImpactGraphResultFilterSensitiveLog = (obj) => ({
242
+ ...obj,
243
+ });
244
+ export const GetInsightSummariesRequestFilterSensitiveLog = (obj) => ({
245
+ ...obj,
246
+ });
247
+ export const InsightSummaryFilterSensitiveLog = (obj) => ({
248
+ ...obj,
249
+ });
250
+ export const GetInsightSummariesResultFilterSensitiveLog = (obj) => ({
251
+ ...obj,
252
+ });
253
+ export const GetSamplingRulesRequestFilterSensitiveLog = (obj) => ({
254
+ ...obj,
255
+ });
256
+ export const GetSamplingRulesResultFilterSensitiveLog = (obj) => ({
257
+ ...obj,
258
+ });
259
+ export const GetSamplingStatisticSummariesRequestFilterSensitiveLog = (obj) => ({
260
+ ...obj,
261
+ });
262
+ export const SamplingStatisticSummaryFilterSensitiveLog = (obj) => ({
263
+ ...obj,
264
+ });
265
+ export const GetSamplingStatisticSummariesResultFilterSensitiveLog = (obj) => ({
266
+ ...obj,
267
+ });
268
+ export const SamplingStatisticsDocumentFilterSensitiveLog = (obj) => ({
269
+ ...obj,
270
+ });
271
+ export const GetSamplingTargetsRequestFilterSensitiveLog = (obj) => ({
272
+ ...obj,
273
+ });
274
+ export const SamplingTargetDocumentFilterSensitiveLog = (obj) => ({
275
+ ...obj,
276
+ });
277
+ export const UnprocessedStatisticsFilterSensitiveLog = (obj) => ({
278
+ ...obj,
279
+ });
280
+ export const GetSamplingTargetsResultFilterSensitiveLog = (obj) => ({
281
+ ...obj,
282
+ });
283
+ export const GetServiceGraphRequestFilterSensitiveLog = (obj) => ({
284
+ ...obj,
285
+ });
286
+ export const HistogramEntryFilterSensitiveLog = (obj) => ({
287
+ ...obj,
288
+ });
289
+ export const ErrorStatisticsFilterSensitiveLog = (obj) => ({
290
+ ...obj,
291
+ });
292
+ export const FaultStatisticsFilterSensitiveLog = (obj) => ({
293
+ ...obj,
294
+ });
295
+ export const EdgeStatisticsFilterSensitiveLog = (obj) => ({
296
+ ...obj,
297
+ });
298
+ export const EdgeFilterSensitiveLog = (obj) => ({
299
+ ...obj,
300
+ });
301
+ export const ServiceStatisticsFilterSensitiveLog = (obj) => ({
302
+ ...obj,
303
+ });
304
+ export const ServiceFilterSensitiveLog = (obj) => ({
305
+ ...obj,
306
+ });
307
+ export const GetServiceGraphResultFilterSensitiveLog = (obj) => ({
308
+ ...obj,
309
+ });
310
+ export const GetTimeSeriesServiceStatisticsRequestFilterSensitiveLog = (obj) => ({
311
+ ...obj,
312
+ });
313
+ export const ForecastStatisticsFilterSensitiveLog = (obj) => ({
314
+ ...obj,
315
+ });
316
+ export const TimeSeriesServiceStatisticsFilterSensitiveLog = (obj) => ({
317
+ ...obj,
318
+ });
319
+ export const GetTimeSeriesServiceStatisticsResultFilterSensitiveLog = (obj) => ({
320
+ ...obj,
321
+ });
322
+ export const GetTraceGraphRequestFilterSensitiveLog = (obj) => ({
323
+ ...obj,
324
+ });
325
+ export const GetTraceGraphResultFilterSensitiveLog = (obj) => ({
326
+ ...obj,
327
+ });
328
+ export const SamplingStrategyFilterSensitiveLog = (obj) => ({
329
+ ...obj,
330
+ });
331
+ export const GetTraceSummariesRequestFilterSensitiveLog = (obj) => ({
332
+ ...obj,
333
+ });
334
+ export const RootCauseExceptionFilterSensitiveLog = (obj) => ({
335
+ ...obj,
336
+ });
337
+ export const ErrorRootCauseEntityFilterSensitiveLog = (obj) => ({
338
+ ...obj,
339
+ });
340
+ export const ErrorRootCauseServiceFilterSensitiveLog = (obj) => ({
341
+ ...obj,
342
+ });
343
+ export const ErrorRootCauseFilterSensitiveLog = (obj) => ({
344
+ ...obj,
345
+ });
346
+ export const FaultRootCauseEntityFilterSensitiveLog = (obj) => ({
347
+ ...obj,
348
+ });
349
+ export const FaultRootCauseServiceFilterSensitiveLog = (obj) => ({
350
+ ...obj,
351
+ });
352
+ export const FaultRootCauseFilterSensitiveLog = (obj) => ({
353
+ ...obj,
354
+ });
355
+ export const HttpFilterSensitiveLog = (obj) => ({
356
+ ...obj,
357
+ });
358
+ export const InstanceIdDetailFilterSensitiveLog = (obj) => ({
359
+ ...obj,
360
+ });
361
+ export const ResourceARNDetailFilterSensitiveLog = (obj) => ({
362
+ ...obj,
363
+ });
364
+ export const ResponseTimeRootCauseEntityFilterSensitiveLog = (obj) => ({
365
+ ...obj,
366
+ });
367
+ export const ResponseTimeRootCauseServiceFilterSensitiveLog = (obj) => ({
368
+ ...obj,
369
+ });
370
+ export const ResponseTimeRootCauseFilterSensitiveLog = (obj) => ({
371
+ ...obj,
372
+ });
373
+ export const TraceUserFilterSensitiveLog = (obj) => ({
374
+ ...obj,
375
+ });
376
+ export const TraceSummaryFilterSensitiveLog = (obj) => ({
377
+ ...obj,
378
+ ...(obj.Annotations && {
379
+ Annotations: Object.entries(obj.Annotations).reduce((acc, [key, value]) => ({
380
+ ...acc,
381
+ [key]: value.map((item) => ValueWithServiceIdsFilterSensitiveLog(item)),
382
+ }), {}),
383
+ }),
384
+ });
385
+ export const GetTraceSummariesResultFilterSensitiveLog = (obj) => ({
386
+ ...obj,
387
+ });
388
+ export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
389
+ ...obj,
390
+ });
391
+ export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
392
+ ...obj,
393
+ });
394
+ export const PutEncryptionConfigRequestFilterSensitiveLog = (obj) => ({
395
+ ...obj,
396
+ });
397
+ export const PutEncryptionConfigResultFilterSensitiveLog = (obj) => ({
398
+ ...obj,
399
+ });
400
+ export const BackendConnectionErrorsFilterSensitiveLog = (obj) => ({
401
+ ...obj,
402
+ });
403
+ export const TelemetryRecordFilterSensitiveLog = (obj) => ({
404
+ ...obj,
405
+ });
406
+ export const PutTelemetryRecordsRequestFilterSensitiveLog = (obj) => ({
407
+ ...obj,
408
+ });
409
+ export const PutTelemetryRecordsResultFilterSensitiveLog = (obj) => ({
410
+ ...obj,
411
+ });
412
+ export const PutTraceSegmentsRequestFilterSensitiveLog = (obj) => ({
413
+ ...obj,
414
+ });
415
+ export const UnprocessedTraceSegmentFilterSensitiveLog = (obj) => ({
416
+ ...obj,
417
+ });
418
+ export const PutTraceSegmentsResultFilterSensitiveLog = (obj) => ({
419
+ ...obj,
420
+ });
421
+ export const TagResourceRequestFilterSensitiveLog = (obj) => ({
422
+ ...obj,
423
+ });
424
+ export const TagResourceResponseFilterSensitiveLog = (obj) => ({
425
+ ...obj,
426
+ });
427
+ export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
428
+ ...obj,
429
+ });
430
+ export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
431
+ ...obj,
432
+ });
433
+ export const UpdateGroupRequestFilterSensitiveLog = (obj) => ({
434
+ ...obj,
435
+ });
436
+ export const UpdateGroupResultFilterSensitiveLog = (obj) => ({
437
+ ...obj,
438
+ });
439
+ export const SamplingRuleUpdateFilterSensitiveLog = (obj) => ({
440
+ ...obj,
441
+ });
442
+ export const UpdateSamplingRuleRequestFilterSensitiveLog = (obj) => ({
443
+ ...obj,
444
+ });
445
+ export const UpdateSamplingRuleResultFilterSensitiveLog = (obj) => ({
446
+ ...obj,
447
+ });