@aws-sdk/client-xray 3.952.0 → 3.954.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 +639 -432
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/BatchGetTracesCommand.js +2 -2
- package/dist-es/commands/CancelTraceRetrievalCommand.js +2 -2
- package/dist-es/commands/CreateGroupCommand.js +2 -2
- package/dist-es/commands/CreateSamplingRuleCommand.js +2 -2
- package/dist-es/commands/DeleteGroupCommand.js +2 -2
- package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteSamplingRuleCommand.js +2 -2
- package/dist-es/commands/GetEncryptionConfigCommand.js +2 -2
- package/dist-es/commands/GetGroupCommand.js +2 -2
- package/dist-es/commands/GetGroupsCommand.js +2 -2
- package/dist-es/commands/GetIndexingRulesCommand.js +2 -2
- package/dist-es/commands/GetInsightCommand.js +2 -2
- package/dist-es/commands/GetInsightEventsCommand.js +2 -2
- package/dist-es/commands/GetInsightImpactGraphCommand.js +2 -2
- package/dist-es/commands/GetInsightSummariesCommand.js +2 -2
- package/dist-es/commands/GetRetrievedTracesGraphCommand.js +2 -2
- package/dist-es/commands/GetSamplingRulesCommand.js +2 -2
- package/dist-es/commands/GetSamplingStatisticSummariesCommand.js +2 -2
- package/dist-es/commands/GetSamplingTargetsCommand.js +2 -2
- package/dist-es/commands/GetServiceGraphCommand.js +2 -2
- package/dist-es/commands/GetTimeSeriesServiceStatisticsCommand.js +2 -2
- package/dist-es/commands/GetTraceGraphCommand.js +2 -2
- package/dist-es/commands/GetTraceSegmentDestinationCommand.js +2 -2
- package/dist-es/commands/GetTraceSummariesCommand.js +2 -2
- package/dist-es/commands/ListResourcePoliciesCommand.js +2 -2
- package/dist-es/commands/ListRetrievedTracesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutEncryptionConfigCommand.js +2 -2
- package/dist-es/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-es/commands/PutTelemetryRecordsCommand.js +2 -2
- package/dist-es/commands/PutTraceSegmentsCommand.js +2 -2
- package/dist-es/commands/StartTraceRetrievalCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateGroupCommand.js +2 -2
- package/dist-es/commands/UpdateIndexingRuleCommand.js +2 -2
- package/dist-es/commands/UpdateSamplingRuleCommand.js +2 -2
- package/dist-es/commands/UpdateTraceSegmentDestinationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +389 -374
- package/dist-types/XRayClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +193 -249
- package/dist-types/ts3.4/XRayClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +192 -250
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class XRayClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class XRayServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, XRayServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class InvalidRequestException extends XRayServiceException {
|
|
121
121
|
name = "InvalidRequestException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -130,8 +130,8 @@ let InvalidRequestException$1 = class InvalidRequestException extends XRayServic
|
|
|
130
130
|
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
|
-
}
|
|
134
|
-
|
|
133
|
+
}
|
|
134
|
+
class ThrottledException extends XRayServiceException {
|
|
135
135
|
name = "ThrottledException";
|
|
136
136
|
$fault = "client";
|
|
137
137
|
Message;
|
|
@@ -144,8 +144,8 @@ let ThrottledException$1 = class ThrottledException extends XRayServiceException
|
|
|
144
144
|
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
145
145
|
this.Message = opts.Message;
|
|
146
146
|
}
|
|
147
|
-
}
|
|
148
|
-
|
|
147
|
+
}
|
|
148
|
+
class ResourceNotFoundException extends XRayServiceException {
|
|
149
149
|
name = "ResourceNotFoundException";
|
|
150
150
|
$fault = "client";
|
|
151
151
|
Message;
|
|
@@ -160,8 +160,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends XRaySe
|
|
|
160
160
|
this.Message = opts.Message;
|
|
161
161
|
this.ResourceName = opts.ResourceName;
|
|
162
162
|
}
|
|
163
|
-
}
|
|
164
|
-
|
|
163
|
+
}
|
|
164
|
+
class RuleLimitExceededException extends XRayServiceException {
|
|
165
165
|
name = "RuleLimitExceededException";
|
|
166
166
|
$fault = "client";
|
|
167
167
|
Message;
|
|
@@ -174,8 +174,8 @@ let RuleLimitExceededException$1 = class RuleLimitExceededException extends XRay
|
|
|
174
174
|
Object.setPrototypeOf(this, RuleLimitExceededException.prototype);
|
|
175
175
|
this.Message = opts.Message;
|
|
176
176
|
}
|
|
177
|
-
}
|
|
178
|
-
|
|
177
|
+
}
|
|
178
|
+
class InvalidPolicyRevisionIdException extends XRayServiceException {
|
|
179
179
|
name = "InvalidPolicyRevisionIdException";
|
|
180
180
|
$fault = "client";
|
|
181
181
|
Message;
|
|
@@ -188,8 +188,8 @@ let InvalidPolicyRevisionIdException$1 = class InvalidPolicyRevisionIdException
|
|
|
188
188
|
Object.setPrototypeOf(this, InvalidPolicyRevisionIdException.prototype);
|
|
189
189
|
this.Message = opts.Message;
|
|
190
190
|
}
|
|
191
|
-
}
|
|
192
|
-
|
|
191
|
+
}
|
|
192
|
+
class LockoutPreventionException extends XRayServiceException {
|
|
193
193
|
name = "LockoutPreventionException";
|
|
194
194
|
$fault = "client";
|
|
195
195
|
Message;
|
|
@@ -202,8 +202,8 @@ let LockoutPreventionException$1 = class LockoutPreventionException extends XRay
|
|
|
202
202
|
Object.setPrototypeOf(this, LockoutPreventionException.prototype);
|
|
203
203
|
this.Message = opts.Message;
|
|
204
204
|
}
|
|
205
|
-
}
|
|
206
|
-
|
|
205
|
+
}
|
|
206
|
+
class MalformedPolicyDocumentException extends XRayServiceException {
|
|
207
207
|
name = "MalformedPolicyDocumentException";
|
|
208
208
|
$fault = "client";
|
|
209
209
|
Message;
|
|
@@ -216,8 +216,8 @@ let MalformedPolicyDocumentException$1 = class MalformedPolicyDocumentException
|
|
|
216
216
|
Object.setPrototypeOf(this, MalformedPolicyDocumentException.prototype);
|
|
217
217
|
this.Message = opts.Message;
|
|
218
218
|
}
|
|
219
|
-
}
|
|
220
|
-
|
|
219
|
+
}
|
|
220
|
+
class PolicyCountLimitExceededException extends XRayServiceException {
|
|
221
221
|
name = "PolicyCountLimitExceededException";
|
|
222
222
|
$fault = "client";
|
|
223
223
|
Message;
|
|
@@ -230,8 +230,8 @@ let PolicyCountLimitExceededException$1 = class PolicyCountLimitExceededExceptio
|
|
|
230
230
|
Object.setPrototypeOf(this, PolicyCountLimitExceededException.prototype);
|
|
231
231
|
this.Message = opts.Message;
|
|
232
232
|
}
|
|
233
|
-
}
|
|
234
|
-
|
|
233
|
+
}
|
|
234
|
+
class PolicySizeLimitExceededException extends XRayServiceException {
|
|
235
235
|
name = "PolicySizeLimitExceededException";
|
|
236
236
|
$fault = "client";
|
|
237
237
|
Message;
|
|
@@ -244,8 +244,8 @@ let PolicySizeLimitExceededException$1 = class PolicySizeLimitExceededException
|
|
|
244
244
|
Object.setPrototypeOf(this, PolicySizeLimitExceededException.prototype);
|
|
245
245
|
this.Message = opts.Message;
|
|
246
246
|
}
|
|
247
|
-
}
|
|
248
|
-
|
|
247
|
+
}
|
|
248
|
+
class TooManyTagsException extends XRayServiceException {
|
|
249
249
|
name = "TooManyTagsException";
|
|
250
250
|
$fault = "client";
|
|
251
251
|
Message;
|
|
@@ -260,7 +260,7 @@ let TooManyTagsException$1 = class TooManyTagsException extends XRayServiceExcep
|
|
|
260
260
|
this.Message = opts.Message;
|
|
261
261
|
this.ResourceName = opts.ResourceName;
|
|
262
262
|
}
|
|
263
|
-
}
|
|
263
|
+
}
|
|
264
264
|
|
|
265
265
|
const _A = "Alias";
|
|
266
266
|
const _AC = "AnomalyCount";
|
|
@@ -679,10 +679,10 @@ const _h = "http";
|
|
|
679
679
|
const _hE = "httpError";
|
|
680
680
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.xray";
|
|
681
681
|
const n0 = "com.amazonaws.xray";
|
|
682
|
-
var Alias = [3, n0, _A, 0, [_N, _Na, _T], [0, 64 | 0, 0]];
|
|
683
|
-
var AnomalousService = [3, n0, _AS, 0, [_SI], [() => ServiceId]];
|
|
684
|
-
var AvailabilityZoneDetail = [3, n0, _AZD, 0, [_N], [0]];
|
|
685
|
-
var BackendConnectionErrors = [
|
|
682
|
+
var Alias$ = [3, n0, _A, 0, [_N, _Na, _T], [0, 64 | 0, 0]];
|
|
683
|
+
var AnomalousService$ = [3, n0, _AS, 0, [_SI], [() => ServiceId$]];
|
|
684
|
+
var AvailabilityZoneDetail$ = [3, n0, _AZD, 0, [_N], [0]];
|
|
685
|
+
var BackendConnectionErrors$ = [
|
|
686
686
|
3,
|
|
687
687
|
n0,
|
|
688
688
|
_BCE,
|
|
@@ -690,8 +690,8 @@ var BackendConnectionErrors = [
|
|
|
690
690
|
[_TC, _CRC, _HTTPCXXC, _HTTPCXXCo, _UHC, _OC],
|
|
691
691
|
[1, 1, 1, 1, 1, 1],
|
|
692
692
|
];
|
|
693
|
-
var BatchGetTracesRequest = [3, n0, _BGTR, 0, [_TI, _NT], [64 | 0, 0]];
|
|
694
|
-
var BatchGetTracesResult = [
|
|
693
|
+
var BatchGetTracesRequest$ = [3, n0, _BGTR, 0, [_TI, _NT], [64 | 0, 0]];
|
|
694
|
+
var BatchGetTracesResult$ = [
|
|
695
695
|
3,
|
|
696
696
|
n0,
|
|
697
697
|
_BGTRa,
|
|
@@ -699,51 +699,51 @@ var BatchGetTracesResult = [
|
|
|
699
699
|
[_Tr, _UTI, _NT],
|
|
700
700
|
[() => TraceList, 64 | 0, 0],
|
|
701
701
|
];
|
|
702
|
-
var CancelTraceRetrievalRequest = [3, n0, _CTRR, 0, [_RT], [0]];
|
|
703
|
-
var CancelTraceRetrievalResult = [3, n0, _CTRRa, 0, [], []];
|
|
704
|
-
var CreateGroupRequest = [
|
|
702
|
+
var CancelTraceRetrievalRequest$ = [3, n0, _CTRR, 0, [_RT], [0]];
|
|
703
|
+
var CancelTraceRetrievalResult$ = [3, n0, _CTRRa, 0, [], []];
|
|
704
|
+
var CreateGroupRequest$ = [
|
|
705
705
|
3,
|
|
706
706
|
n0,
|
|
707
707
|
_CGR,
|
|
708
708
|
0,
|
|
709
709
|
[_GN, _FE, _IC, _Ta],
|
|
710
|
-
[0, 0, () => InsightsConfiguration
|
|
710
|
+
[0, 0, () => InsightsConfiguration$, () => TagList],
|
|
711
711
|
];
|
|
712
|
-
var CreateGroupResult = [3, n0, _CGRr, 0, [_G], [() => Group]];
|
|
713
|
-
var CreateSamplingRuleRequest = [
|
|
712
|
+
var CreateGroupResult$ = [3, n0, _CGRr, 0, [_G], [() => Group$]];
|
|
713
|
+
var CreateSamplingRuleRequest$ = [
|
|
714
714
|
3,
|
|
715
715
|
n0,
|
|
716
716
|
_CSRR,
|
|
717
717
|
0,
|
|
718
718
|
[_SR, _Ta],
|
|
719
|
-
[() => SamplingRule
|
|
720
|
-
];
|
|
721
|
-
var CreateSamplingRuleResult = [3, n0, _CSRRr, 0, [_SRR], [() => SamplingRuleRecord]];
|
|
722
|
-
var DeleteGroupRequest = [3, n0, _DGR, 0, [_GN, _GARN], [0, 0]];
|
|
723
|
-
var DeleteGroupResult = [3, n0, _DGRe, 0, [], []];
|
|
724
|
-
var DeleteResourcePolicyRequest = [3, n0, _DRPR, 0, [_PN, _PRI], [0, 0]];
|
|
725
|
-
var DeleteResourcePolicyResult = [3, n0, _DRPRe, 0, [], []];
|
|
726
|
-
var DeleteSamplingRuleRequest = [3, n0, _DSRR, 0, [_RN, _RARN], [0, 0]];
|
|
727
|
-
var DeleteSamplingRuleResult = [3, n0, _DSRRe, 0, [_SRR], [() => SamplingRuleRecord]];
|
|
728
|
-
var Edge = [
|
|
719
|
+
[() => SamplingRule$, () => TagList],
|
|
720
|
+
];
|
|
721
|
+
var CreateSamplingRuleResult$ = [3, n0, _CSRRr, 0, [_SRR], [() => SamplingRuleRecord$]];
|
|
722
|
+
var DeleteGroupRequest$ = [3, n0, _DGR, 0, [_GN, _GARN], [0, 0]];
|
|
723
|
+
var DeleteGroupResult$ = [3, n0, _DGRe, 0, [], []];
|
|
724
|
+
var DeleteResourcePolicyRequest$ = [3, n0, _DRPR, 0, [_PN, _PRI], [0, 0]];
|
|
725
|
+
var DeleteResourcePolicyResult$ = [3, n0, _DRPRe, 0, [], []];
|
|
726
|
+
var DeleteSamplingRuleRequest$ = [3, n0, _DSRR, 0, [_RN, _RARN], [0, 0]];
|
|
727
|
+
var DeleteSamplingRuleResult$ = [3, n0, _DSRRe, 0, [_SRR], [() => SamplingRuleRecord$]];
|
|
728
|
+
var Edge$ = [
|
|
729
729
|
3,
|
|
730
730
|
n0,
|
|
731
731
|
_E,
|
|
732
732
|
0,
|
|
733
733
|
[_RI, _ST, _ET, _SS, _RTH, _Al, _ETd, _REAH],
|
|
734
|
-
[1, 4, 4, () => EdgeStatistics
|
|
734
|
+
[1, 4, 4, () => EdgeStatistics$, () => Histogram, () => AliasList, 0, () => Histogram],
|
|
735
735
|
];
|
|
736
|
-
var EdgeStatistics = [
|
|
736
|
+
var EdgeStatistics$ = [
|
|
737
737
|
3,
|
|
738
738
|
n0,
|
|
739
739
|
_ES,
|
|
740
740
|
0,
|
|
741
741
|
[_OCk, _ESr, _FS, _TCo, _TRT],
|
|
742
|
-
[1, () => ErrorStatistics
|
|
742
|
+
[1, () => ErrorStatistics$, () => FaultStatistics$, 1, 1],
|
|
743
743
|
];
|
|
744
|
-
var EncryptionConfig = [3, n0, _EC, 0, [_KI, _S, _T], [0, 0, 0]];
|
|
745
|
-
var ErrorRootCause = [3, n0, _ERC, 0, [_Se, _CI], [() => ErrorRootCauseServices, 2]];
|
|
746
|
-
var ErrorRootCauseEntity = [
|
|
744
|
+
var EncryptionConfig$ = [3, n0, _EC, 0, [_KI, _S, _T], [0, 0, 0]];
|
|
745
|
+
var ErrorRootCause$ = [3, n0, _ERC, 0, [_Se, _CI], [() => ErrorRootCauseServices, 2]];
|
|
746
|
+
var ErrorRootCauseEntity$ = [
|
|
747
747
|
3,
|
|
748
748
|
n0,
|
|
749
749
|
_ERCE,
|
|
@@ -751,7 +751,7 @@ var ErrorRootCauseEntity = [
|
|
|
751
751
|
[_N, _Ex, _R],
|
|
752
752
|
[0, () => RootCauseExceptions, 2],
|
|
753
753
|
];
|
|
754
|
-
var ErrorRootCauseService = [
|
|
754
|
+
var ErrorRootCauseService$ = [
|
|
755
755
|
3,
|
|
756
756
|
n0,
|
|
757
757
|
_ERCS,
|
|
@@ -759,9 +759,9 @@ var ErrorRootCauseService = [
|
|
|
759
759
|
[_N, _Na, _T, _AI, _EP, _I],
|
|
760
760
|
[0, 64 | 0, 0, 0, () => ErrorRootCauseEntityPath, 2],
|
|
761
761
|
];
|
|
762
|
-
var ErrorStatistics = [3, n0, _ESr, 0, [_TCh, _OC, _TCo], [1, 1, 1]];
|
|
763
|
-
var FaultRootCause = [3, n0, _FRC, 0, [_Se, _CI], [() => FaultRootCauseServices, 2]];
|
|
764
|
-
var FaultRootCauseEntity = [
|
|
762
|
+
var ErrorStatistics$ = [3, n0, _ESr, 0, [_TCh, _OC, _TCo], [1, 1, 1]];
|
|
763
|
+
var FaultRootCause$ = [3, n0, _FRC, 0, [_Se, _CI], [() => FaultRootCauseServices, 2]];
|
|
764
|
+
var FaultRootCauseEntity$ = [
|
|
765
765
|
3,
|
|
766
766
|
n0,
|
|
767
767
|
_FRCE,
|
|
@@ -769,7 +769,7 @@ var FaultRootCauseEntity = [
|
|
|
769
769
|
[_N, _Ex, _R],
|
|
770
770
|
[0, () => RootCauseExceptions, 2],
|
|
771
771
|
];
|
|
772
|
-
var FaultRootCauseService = [
|
|
772
|
+
var FaultRootCauseService$ = [
|
|
773
773
|
3,
|
|
774
774
|
n0,
|
|
775
775
|
_FRCS,
|
|
@@ -777,20 +777,27 @@ var FaultRootCauseService = [
|
|
|
777
777
|
[_N, _Na, _T, _AI, _EP, _I],
|
|
778
778
|
[0, 64 | 0, 0, 0, () => FaultRootCauseEntityPath, 2],
|
|
779
779
|
];
|
|
780
|
-
var FaultStatistics = [3, n0, _FS, 0, [_OC, _TCo], [1, 1]];
|
|
781
|
-
var ForecastStatistics = [3, n0, _FSo, 0, [_FCH, _FCL], [1, 1]];
|
|
782
|
-
var GetEncryptionConfigRequest = [3, n0, _GECR, 0, [], []];
|
|
783
|
-
var GetEncryptionConfigResult = [3, n0, _GECRe, 0, [_EC], [() => EncryptionConfig]];
|
|
784
|
-
var GetGroupRequest = [3, n0, _GGR, 0, [_GN, _GARN], [0, 0]];
|
|
785
|
-
var GetGroupResult = [3, n0, _GGRe, 0, [_G], [() => Group]];
|
|
786
|
-
var GetGroupsRequest = [3, n0, _GGRet, 0, [_NT], [0]];
|
|
787
|
-
var GetGroupsResult = [3, n0, _GGRetr, 0, [_Gr, _NT], [() => GroupSummaryList, 0]];
|
|
788
|
-
var GetIndexingRulesRequest = [3, n0, _GIRR, 0, [_NT], [0]];
|
|
789
|
-
var GetIndexingRulesResult = [3, n0, _GIRRe, 0, [_IR, _NT], [() => IndexingRuleList, 0]];
|
|
790
|
-
var GetInsightEventsRequest = [3, n0, _GIER, 0, [_II, _MR, _NT], [0, 1, 0]];
|
|
791
|
-
var GetInsightEventsResult = [3, n0, _GIERe, 0, [_IE, _NT], [() => InsightEventList, 0]];
|
|
792
|
-
var GetInsightImpactGraphRequest = [
|
|
793
|
-
|
|
780
|
+
var FaultStatistics$ = [3, n0, _FS, 0, [_OC, _TCo], [1, 1]];
|
|
781
|
+
var ForecastStatistics$ = [3, n0, _FSo, 0, [_FCH, _FCL], [1, 1]];
|
|
782
|
+
var GetEncryptionConfigRequest$ = [3, n0, _GECR, 0, [], []];
|
|
783
|
+
var GetEncryptionConfigResult$ = [3, n0, _GECRe, 0, [_EC], [() => EncryptionConfig$]];
|
|
784
|
+
var GetGroupRequest$ = [3, n0, _GGR, 0, [_GN, _GARN], [0, 0]];
|
|
785
|
+
var GetGroupResult$ = [3, n0, _GGRe, 0, [_G], [() => Group$]];
|
|
786
|
+
var GetGroupsRequest$ = [3, n0, _GGRet, 0, [_NT], [0]];
|
|
787
|
+
var GetGroupsResult$ = [3, n0, _GGRetr, 0, [_Gr, _NT], [() => GroupSummaryList, 0]];
|
|
788
|
+
var GetIndexingRulesRequest$ = [3, n0, _GIRR, 0, [_NT], [0]];
|
|
789
|
+
var GetIndexingRulesResult$ = [3, n0, _GIRRe, 0, [_IR, _NT], [() => IndexingRuleList, 0]];
|
|
790
|
+
var GetInsightEventsRequest$ = [3, n0, _GIER, 0, [_II, _MR, _NT], [0, 1, 0]];
|
|
791
|
+
var GetInsightEventsResult$ = [3, n0, _GIERe, 0, [_IE, _NT], [() => InsightEventList, 0]];
|
|
792
|
+
var GetInsightImpactGraphRequest$ = [
|
|
793
|
+
3,
|
|
794
|
+
n0,
|
|
795
|
+
_GIIGR,
|
|
796
|
+
0,
|
|
797
|
+
[_II, _ST, _ET, _NT],
|
|
798
|
+
[0, 4, 4, 0],
|
|
799
|
+
];
|
|
800
|
+
var GetInsightImpactGraphResult$ = [
|
|
794
801
|
3,
|
|
795
802
|
n0,
|
|
796
803
|
_GIIGRe,
|
|
@@ -798,9 +805,9 @@ var GetInsightImpactGraphResult = [
|
|
|
798
805
|
[_II, _ST, _ET, _SGST, _SGET, _Se, _NT],
|
|
799
806
|
[0, 4, 4, 4, 4, () => InsightImpactGraphServiceList, 0],
|
|
800
807
|
];
|
|
801
|
-
var GetInsightRequest = [3, n0, _GIR, 0, [_II], [0]];
|
|
802
|
-
var GetInsightResult = [3, n0, _GIRe, 0, [_In], [() => Insight]];
|
|
803
|
-
var GetInsightSummariesRequest = [
|
|
808
|
+
var GetInsightRequest$ = [3, n0, _GIR, 0, [_II], [0]];
|
|
809
|
+
var GetInsightResult$ = [3, n0, _GIRe, 0, [_In], [() => Insight$]];
|
|
810
|
+
var GetInsightSummariesRequest$ = [
|
|
804
811
|
3,
|
|
805
812
|
n0,
|
|
806
813
|
_GISR,
|
|
@@ -808,7 +815,7 @@ var GetInsightSummariesRequest = [
|
|
|
808
815
|
[_St, _GARN, _GN, _ST, _ET, _MR, _NT],
|
|
809
816
|
[64 | 0, 0, 0, 4, 4, 1, 0],
|
|
810
817
|
];
|
|
811
|
-
var GetInsightSummariesResult = [
|
|
818
|
+
var GetInsightSummariesResult$ = [
|
|
812
819
|
3,
|
|
813
820
|
n0,
|
|
814
821
|
_GISRe,
|
|
@@ -816,8 +823,8 @@ var GetInsightSummariesResult = [
|
|
|
816
823
|
[_IS, _NT],
|
|
817
824
|
[() => InsightSummaryList, 0],
|
|
818
825
|
];
|
|
819
|
-
var GetRetrievedTracesGraphRequest = [3, n0, _GRTGR, 0, [_RT, _NT], [0, 0]];
|
|
820
|
-
var GetRetrievedTracesGraphResult = [
|
|
826
|
+
var GetRetrievedTracesGraphRequest$ = [3, n0, _GRTGR, 0, [_RT, _NT], [0, 0]];
|
|
827
|
+
var GetRetrievedTracesGraphResult$ = [
|
|
821
828
|
3,
|
|
822
829
|
n0,
|
|
823
830
|
_GRTGRe,
|
|
@@ -825,8 +832,8 @@ var GetRetrievedTracesGraphResult = [
|
|
|
825
832
|
[_RS, _Se, _NT],
|
|
826
833
|
[0, () => RetrievedServicesList, 0],
|
|
827
834
|
];
|
|
828
|
-
var GetSamplingRulesRequest = [3, n0, _GSRR, 0, [_NT], [0]];
|
|
829
|
-
var GetSamplingRulesResult = [
|
|
835
|
+
var GetSamplingRulesRequest$ = [3, n0, _GSRR, 0, [_NT], [0]];
|
|
836
|
+
var GetSamplingRulesResult$ = [
|
|
830
837
|
3,
|
|
831
838
|
n0,
|
|
832
839
|
_GSRRe,
|
|
@@ -834,8 +841,8 @@ var GetSamplingRulesResult = [
|
|
|
834
841
|
[_SRRa, _NT],
|
|
835
842
|
[() => SamplingRuleRecordList, 0],
|
|
836
843
|
];
|
|
837
|
-
var GetSamplingStatisticSummariesRequest = [3, n0, _GSSSR, 0, [_NT], [0]];
|
|
838
|
-
var GetSamplingStatisticSummariesResult = [
|
|
844
|
+
var GetSamplingStatisticSummariesRequest$ = [3, n0, _GSSSR, 0, [_NT], [0]];
|
|
845
|
+
var GetSamplingStatisticSummariesResult$ = [
|
|
839
846
|
3,
|
|
840
847
|
n0,
|
|
841
848
|
_GSSSRe,
|
|
@@ -843,7 +850,7 @@ var GetSamplingStatisticSummariesResult = [
|
|
|
843
850
|
[_SSS, _NT],
|
|
844
851
|
[() => SamplingStatisticSummaryList, 0],
|
|
845
852
|
];
|
|
846
|
-
var GetSamplingTargetsRequest = [
|
|
853
|
+
var GetSamplingTargetsRequest$ = [
|
|
847
854
|
3,
|
|
848
855
|
n0,
|
|
849
856
|
_GSTR,
|
|
@@ -851,7 +858,7 @@ var GetSamplingTargetsRequest = [
|
|
|
851
858
|
[_SSD, _SBSD],
|
|
852
859
|
[() => SamplingStatisticsDocumentList, () => SamplingBoostStatisticsDocumentList],
|
|
853
860
|
];
|
|
854
|
-
var GetSamplingTargetsResult = [
|
|
861
|
+
var GetSamplingTargetsResult$ = [
|
|
855
862
|
3,
|
|
856
863
|
n0,
|
|
857
864
|
_GSTRe,
|
|
@@ -859,7 +866,7 @@ var GetSamplingTargetsResult = [
|
|
|
859
866
|
[_STD, _LRM, _US, _UBS],
|
|
860
867
|
[() => SamplingTargetDocumentList, 4, () => UnprocessedStatisticsList, () => UnprocessedStatisticsList],
|
|
861
868
|
];
|
|
862
|
-
var GetServiceGraphRequest = [
|
|
869
|
+
var GetServiceGraphRequest$ = [
|
|
863
870
|
3,
|
|
864
871
|
n0,
|
|
865
872
|
_GSGR,
|
|
@@ -867,7 +874,7 @@ var GetServiceGraphRequest = [
|
|
|
867
874
|
[_ST, _ET, _GN, _GARN, _NT],
|
|
868
875
|
[4, 4, 0, 0, 0],
|
|
869
876
|
];
|
|
870
|
-
var GetServiceGraphResult = [
|
|
877
|
+
var GetServiceGraphResult$ = [
|
|
871
878
|
3,
|
|
872
879
|
n0,
|
|
873
880
|
_GSGRe,
|
|
@@ -875,7 +882,7 @@ var GetServiceGraphResult = [
|
|
|
875
882
|
[_ST, _ET, _Se, _COGV, _NT],
|
|
876
883
|
[4, 4, () => ServiceList, 2, 0],
|
|
877
884
|
];
|
|
878
|
-
var GetTimeSeriesServiceStatisticsRequest = [
|
|
885
|
+
var GetTimeSeriesServiceStatisticsRequest$ = [
|
|
879
886
|
3,
|
|
880
887
|
n0,
|
|
881
888
|
_GTSSSR,
|
|
@@ -883,7 +890,7 @@ var GetTimeSeriesServiceStatisticsRequest = [
|
|
|
883
890
|
[_ST, _ET, _GN, _GARN, _ESE, _P, _FSo, _NT],
|
|
884
891
|
[4, 4, 0, 0, 0, 1, 2, 0],
|
|
885
892
|
];
|
|
886
|
-
var GetTimeSeriesServiceStatisticsResult = [
|
|
893
|
+
var GetTimeSeriesServiceStatisticsResult$ = [
|
|
887
894
|
3,
|
|
888
895
|
n0,
|
|
889
896
|
_GTSSSRe,
|
|
@@ -891,19 +898,19 @@ var GetTimeSeriesServiceStatisticsResult = [
|
|
|
891
898
|
[_TSSS, _COGV, _NT],
|
|
892
899
|
[() => TimeSeriesServiceStatisticsList, 2, 0],
|
|
893
900
|
];
|
|
894
|
-
var GetTraceGraphRequest = [3, n0, _GTGR, 0, [_TI, _NT], [64 | 0, 0]];
|
|
895
|
-
var GetTraceGraphResult = [3, n0, _GTGRe, 0, [_Se, _NT], [() => ServiceList, 0]];
|
|
896
|
-
var GetTraceSegmentDestinationRequest = [3, n0, _GTSDR, 0, [], []];
|
|
897
|
-
var GetTraceSegmentDestinationResult = [3, n0, _GTSDRe, 0, [_D, _S], [0, 0]];
|
|
898
|
-
var GetTraceSummariesRequest = [
|
|
901
|
+
var GetTraceGraphRequest$ = [3, n0, _GTGR, 0, [_TI, _NT], [64 | 0, 0]];
|
|
902
|
+
var GetTraceGraphResult$ = [3, n0, _GTGRe, 0, [_Se, _NT], [() => ServiceList, 0]];
|
|
903
|
+
var GetTraceSegmentDestinationRequest$ = [3, n0, _GTSDR, 0, [], []];
|
|
904
|
+
var GetTraceSegmentDestinationResult$ = [3, n0, _GTSDRe, 0, [_D, _S], [0, 0]];
|
|
905
|
+
var GetTraceSummariesRequest$ = [
|
|
899
906
|
3,
|
|
900
907
|
n0,
|
|
901
908
|
_GTSR,
|
|
902
909
|
0,
|
|
903
910
|
[_ST, _ET, _TRTi, _Sa, _SSa, _FE, _NT],
|
|
904
|
-
[4, 4, 0, 2, () => SamplingStrategy
|
|
911
|
+
[4, 4, 0, 2, () => SamplingStrategy$, 0, 0],
|
|
905
912
|
];
|
|
906
|
-
var GetTraceSummariesResult = [
|
|
913
|
+
var GetTraceSummariesResult$ = [
|
|
907
914
|
3,
|
|
908
915
|
n0,
|
|
909
916
|
_GTSRe,
|
|
@@ -911,27 +918,27 @@ var GetTraceSummariesResult = [
|
|
|
911
918
|
[_TS, _AT, _TPC, _NT],
|
|
912
919
|
[() => TraceSummaryList, 4, 1, 0],
|
|
913
920
|
];
|
|
914
|
-
var GraphLink = [3, n0, _GL, 0, [_RTe, _STI, _DTI], [0, 0, 64 | 0]];
|
|
915
|
-
var Group = [
|
|
921
|
+
var GraphLink$ = [3, n0, _GL, 0, [_RTe, _STI, _DTI], [0, 0, 64 | 0]];
|
|
922
|
+
var Group$ = [
|
|
916
923
|
3,
|
|
917
924
|
n0,
|
|
918
925
|
_G,
|
|
919
926
|
0,
|
|
920
927
|
[_GN, _GARN, _FE, _IC],
|
|
921
|
-
[0, 0, 0, () => InsightsConfiguration],
|
|
928
|
+
[0, 0, 0, () => InsightsConfiguration$],
|
|
922
929
|
];
|
|
923
|
-
var GroupSummary = [
|
|
930
|
+
var GroupSummary$ = [
|
|
924
931
|
3,
|
|
925
932
|
n0,
|
|
926
933
|
_GS,
|
|
927
934
|
0,
|
|
928
935
|
[_GN, _GARN, _FE, _IC],
|
|
929
|
-
[0, 0, 0, () => InsightsConfiguration],
|
|
936
|
+
[0, 0, 0, () => InsightsConfiguration$],
|
|
930
937
|
];
|
|
931
|
-
var HistogramEntry = [3, n0, _HE, 0, [_V, _C], [1, 1]];
|
|
932
|
-
var Http = [3, n0, _H, 0, [_HURL, _HS, _HM, _UA, _CIl], [0, 1, 0, 0, 0]];
|
|
933
|
-
var IndexingRule = [3, n0, _IRn, 0, [_N, _MA, _Ru], [0, 4, () => IndexingRuleValue]];
|
|
934
|
-
var Insight = [
|
|
938
|
+
var HistogramEntry$ = [3, n0, _HE, 0, [_V, _C], [1, 1]];
|
|
939
|
+
var Http$ = [3, n0, _H, 0, [_HURL, _HS, _HM, _UA, _CIl], [0, 1, 0, 0, 0]];
|
|
940
|
+
var IndexingRule$ = [3, n0, _IRn, 0, [_N, _MA, _Ru], [0, 4, () => IndexingRuleValue$]];
|
|
941
|
+
var Insight$ = [
|
|
935
942
|
3,
|
|
936
943
|
n0,
|
|
937
944
|
_In,
|
|
@@ -941,27 +948,27 @@ var Insight = [
|
|
|
941
948
|
0,
|
|
942
949
|
0,
|
|
943
950
|
0,
|
|
944
|
-
() => ServiceId
|
|
951
|
+
() => ServiceId$,
|
|
945
952
|
64 | 0,
|
|
946
953
|
0,
|
|
947
954
|
4,
|
|
948
955
|
4,
|
|
949
956
|
0,
|
|
950
|
-
() => RequestImpactStatistics
|
|
951
|
-
() => RequestImpactStatistics
|
|
957
|
+
() => RequestImpactStatistics$,
|
|
958
|
+
() => RequestImpactStatistics$,
|
|
952
959
|
() => AnomalousServiceList,
|
|
953
960
|
],
|
|
954
961
|
];
|
|
955
|
-
var InsightEvent = [
|
|
962
|
+
var InsightEvent$ = [
|
|
956
963
|
3,
|
|
957
964
|
n0,
|
|
958
965
|
_IEn,
|
|
959
966
|
0,
|
|
960
967
|
[_Su, _ETv, _CRIS, _RCSRIS, _TAS],
|
|
961
|
-
[0, 4, () => RequestImpactStatistics
|
|
968
|
+
[0, 4, () => RequestImpactStatistics$, () => RequestImpactStatistics$, () => AnomalousServiceList],
|
|
962
969
|
];
|
|
963
|
-
var InsightImpactGraphEdge = [3, n0, _IIGE, 0, [_RI], [1]];
|
|
964
|
-
var InsightImpactGraphService = [
|
|
970
|
+
var InsightImpactGraphEdge$ = [3, n0, _IIGE, 0, [_RI], [1]];
|
|
971
|
+
var InsightImpactGraphService$ = [
|
|
965
972
|
3,
|
|
966
973
|
n0,
|
|
967
974
|
_IIGS,
|
|
@@ -969,8 +976,8 @@ var InsightImpactGraphService = [
|
|
|
969
976
|
[_RI, _T, _N, _Na, _AI, _Ed],
|
|
970
977
|
[1, 0, 0, 64 | 0, 0, () => InsightImpactGraphEdgeList],
|
|
971
978
|
];
|
|
972
|
-
var InsightsConfiguration = [3, n0, _IC, 0, [_IEns, _NE], [2, 2]];
|
|
973
|
-
var InsightSummary = [
|
|
979
|
+
var InsightsConfiguration$ = [3, n0, _IC, 0, [_IEns, _NE], [2, 2]];
|
|
980
|
+
var InsightSummary$ = [
|
|
974
981
|
3,
|
|
975
982
|
n0,
|
|
976
983
|
_ISn,
|
|
@@ -980,25 +987,25 @@ var InsightSummary = [
|
|
|
980
987
|
0,
|
|
981
988
|
0,
|
|
982
989
|
0,
|
|
983
|
-
() => ServiceId
|
|
990
|
+
() => ServiceId$,
|
|
984
991
|
64 | 0,
|
|
985
992
|
0,
|
|
986
993
|
4,
|
|
987
994
|
4,
|
|
988
995
|
0,
|
|
989
|
-
() => RequestImpactStatistics
|
|
990
|
-
() => RequestImpactStatistics
|
|
996
|
+
() => RequestImpactStatistics$,
|
|
997
|
+
() => RequestImpactStatistics$,
|
|
991
998
|
() => AnomalousServiceList,
|
|
992
999
|
4,
|
|
993
1000
|
],
|
|
994
1001
|
];
|
|
995
|
-
var InstanceIdDetail = [3, n0, _IID, 0, [_Id], [0]];
|
|
996
|
-
var InvalidPolicyRevisionIdException = [-3, n0, _IPRIE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
997
|
-
schema.TypeRegistry.for(n0).registerError(InvalidPolicyRevisionIdException
|
|
998
|
-
var InvalidRequestException = [-3, n0, _IRE, { [_e]: _c }, [_M], [0]];
|
|
999
|
-
schema.TypeRegistry.for(n0).registerError(InvalidRequestException
|
|
1000
|
-
var ListResourcePoliciesRequest = [3, n0, _LRPR, 0, [_NT], [0]];
|
|
1001
|
-
var ListResourcePoliciesResult = [
|
|
1002
|
+
var InstanceIdDetail$ = [3, n0, _IID, 0, [_Id], [0]];
|
|
1003
|
+
var InvalidPolicyRevisionIdException$ = [-3, n0, _IPRIE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
1004
|
+
schema.TypeRegistry.for(n0).registerError(InvalidPolicyRevisionIdException$, InvalidPolicyRevisionIdException);
|
|
1005
|
+
var InvalidRequestException$ = [-3, n0, _IRE, { [_e]: _c }, [_M], [0]];
|
|
1006
|
+
schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
|
|
1007
|
+
var ListResourcePoliciesRequest$ = [3, n0, _LRPR, 0, [_NT], [0]];
|
|
1008
|
+
var ListResourcePoliciesResult$ = [
|
|
1002
1009
|
3,
|
|
1003
1010
|
n0,
|
|
1004
1011
|
_LRPRi,
|
|
@@ -1006,8 +1013,8 @@ var ListResourcePoliciesResult = [
|
|
|
1006
1013
|
[_RP, _NT],
|
|
1007
1014
|
[() => ResourcePolicyList, 0],
|
|
1008
1015
|
];
|
|
1009
|
-
var ListRetrievedTracesRequest = [3, n0, _LRTR, 0, [_RT, _TF, _NT], [0, 0, 0]];
|
|
1010
|
-
var ListRetrievedTracesResult = [
|
|
1016
|
+
var ListRetrievedTracesRequest$ = [3, n0, _LRTR, 0, [_RT, _TF, _NT], [0, 0, 0]];
|
|
1017
|
+
var ListRetrievedTracesResult$ = [
|
|
1011
1018
|
3,
|
|
1012
1019
|
n0,
|
|
1013
1020
|
_LRTRi,
|
|
@@ -1015,23 +1022,30 @@ var ListRetrievedTracesResult = [
|
|
|
1015
1022
|
[_RS, _TF, _Tr, _NT],
|
|
1016
1023
|
[0, 0, () => TraceSpanList, 0],
|
|
1017
1024
|
];
|
|
1018
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RARNe, _NT], [0, 0]];
|
|
1019
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta, _NT], [() => TagList, 0]];
|
|
1020
|
-
var LockoutPreventionException = [-3, n0, _LPE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
1021
|
-
schema.TypeRegistry.for(n0).registerError(LockoutPreventionException
|
|
1022
|
-
var MalformedPolicyDocumentException = [-3, n0, _MPDE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
1023
|
-
schema.TypeRegistry.for(n0).registerError(MalformedPolicyDocumentException
|
|
1024
|
-
var PolicyCountLimitExceededException = [
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
var
|
|
1034
|
-
|
|
1025
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_RARNe, _NT], [0, 0]];
|
|
1026
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_Ta, _NT], [() => TagList, 0]];
|
|
1027
|
+
var LockoutPreventionException$ = [-3, n0, _LPE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
1028
|
+
schema.TypeRegistry.for(n0).registerError(LockoutPreventionException$, LockoutPreventionException);
|
|
1029
|
+
var MalformedPolicyDocumentException$ = [-3, n0, _MPDE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
1030
|
+
schema.TypeRegistry.for(n0).registerError(MalformedPolicyDocumentException$, MalformedPolicyDocumentException);
|
|
1031
|
+
var PolicyCountLimitExceededException$ = [
|
|
1032
|
+
-3,
|
|
1033
|
+
n0,
|
|
1034
|
+
_PCLEE,
|
|
1035
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1036
|
+
[_M],
|
|
1037
|
+
[0],
|
|
1038
|
+
];
|
|
1039
|
+
schema.TypeRegistry.for(n0).registerError(PolicyCountLimitExceededException$, PolicyCountLimitExceededException);
|
|
1040
|
+
var PolicySizeLimitExceededException$ = [-3, n0, _PSLEE, { [_e]: _c, [_hE]: 400 }, [_M], [0]];
|
|
1041
|
+
schema.TypeRegistry.for(n0).registerError(PolicySizeLimitExceededException$, PolicySizeLimitExceededException);
|
|
1042
|
+
var ProbabilisticRuleValue$ = [3, n0, _PRV, 0, [_DSP, _ASP], [1, 1]];
|
|
1043
|
+
var ProbabilisticRuleValueUpdate$ = [3, n0, _PRVU, 0, [_DSP], [1]];
|
|
1044
|
+
var PutEncryptionConfigRequest$ = [3, n0, _PECR, 0, [_KI, _T], [0, 0]];
|
|
1045
|
+
var PutEncryptionConfigResult$ = [3, n0, _PECRu, 0, [_EC], [() => EncryptionConfig$]];
|
|
1046
|
+
var PutResourcePolicyRequest$ = [3, n0, _PRPR, 0, [_PN, _PD, _PRI, _BPLC], [0, 0, 0, 2]];
|
|
1047
|
+
var PutResourcePolicyResult$ = [3, n0, _PRPRu, 0, [_RPe], [() => ResourcePolicy$]];
|
|
1048
|
+
var PutTelemetryRecordsRequest$ = [
|
|
1035
1049
|
3,
|
|
1036
1050
|
n0,
|
|
1037
1051
|
_PTRR,
|
|
@@ -1039,9 +1053,9 @@ var PutTelemetryRecordsRequest = [
|
|
|
1039
1053
|
[_TR, _ECII, _Ho, _RARNe],
|
|
1040
1054
|
[() => TelemetryRecordList, 0, 0, 0],
|
|
1041
1055
|
];
|
|
1042
|
-
var PutTelemetryRecordsResult = [3, n0, _PTRRu, 0, [], []];
|
|
1043
|
-
var PutTraceSegmentsRequest = [3, n0, _PTSR, 0, [_TSD], [64 | 0]];
|
|
1044
|
-
var PutTraceSegmentsResult = [
|
|
1056
|
+
var PutTelemetryRecordsResult$ = [3, n0, _PTRRu, 0, [], []];
|
|
1057
|
+
var PutTraceSegmentsRequest$ = [3, n0, _PTSR, 0, [_TSD], [64 | 0]];
|
|
1058
|
+
var PutTraceSegmentsResult$ = [
|
|
1045
1059
|
3,
|
|
1046
1060
|
n0,
|
|
1047
1061
|
_PTSRu,
|
|
@@ -1049,12 +1063,19 @@ var PutTraceSegmentsResult = [
|
|
|
1049
1063
|
[_UTS],
|
|
1050
1064
|
[() => UnprocessedTraceSegmentList],
|
|
1051
1065
|
];
|
|
1052
|
-
var RequestImpactStatistics = [3, n0, _RIS, 0, [_FC, _OCk, _TCo], [1, 1, 1]];
|
|
1053
|
-
var ResourceARNDetail = [3, n0, _RARND, 0, [_ARN], [0]];
|
|
1054
|
-
var ResourceNotFoundException = [
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1066
|
+
var RequestImpactStatistics$ = [3, n0, _RIS, 0, [_FC, _OCk, _TCo], [1, 1, 1]];
|
|
1067
|
+
var ResourceARNDetail$ = [3, n0, _RARND, 0, [_ARN], [0]];
|
|
1068
|
+
var ResourceNotFoundException$ = [
|
|
1069
|
+
-3,
|
|
1070
|
+
n0,
|
|
1071
|
+
_RNFE,
|
|
1072
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1073
|
+
[_M, _RNe],
|
|
1074
|
+
[0, 0],
|
|
1075
|
+
];
|
|
1076
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1077
|
+
var ResourcePolicy$ = [3, n0, _RPe, 0, [_PN, _PD, _PRI, _LUTa], [0, 0, 0, 4]];
|
|
1078
|
+
var ResponseTimeRootCause$ = [
|
|
1058
1079
|
3,
|
|
1059
1080
|
n0,
|
|
1060
1081
|
_RTRC,
|
|
@@ -1062,8 +1083,8 @@ var ResponseTimeRootCause = [
|
|
|
1062
1083
|
[_Se, _CI],
|
|
1063
1084
|
[() => ResponseTimeRootCauseServices, 2],
|
|
1064
1085
|
];
|
|
1065
|
-
var ResponseTimeRootCauseEntity = [3, n0, _RTRCE, 0, [_N, _Co, _R], [0, 1, 2]];
|
|
1066
|
-
var ResponseTimeRootCauseService = [
|
|
1086
|
+
var ResponseTimeRootCauseEntity$ = [3, n0, _RTRCE, 0, [_N, _Co, _R], [0, 1, 2]];
|
|
1087
|
+
var ResponseTimeRootCauseService$ = [
|
|
1067
1088
|
3,
|
|
1068
1089
|
n0,
|
|
1069
1090
|
_RTRCS,
|
|
@@ -1071,13 +1092,13 @@ var ResponseTimeRootCauseService = [
|
|
|
1071
1092
|
[_N, _Na, _T, _AI, _EP, _I],
|
|
1072
1093
|
[0, 64 | 0, 0, 0, () => ResponseTimeRootCauseEntityPath, 2],
|
|
1073
1094
|
];
|
|
1074
|
-
var RetrievedService = [3, n0, _RSe, 0, [_Ser, _L], [() => Service
|
|
1075
|
-
var RetrievedTrace = [3, n0, _RTet, 0, [_Id, _Du, _Sp], [0, 1, () => SpanList]];
|
|
1076
|
-
var RootCauseException = [3, n0, _RCE, 0, [_N, _M], [0, 0]];
|
|
1077
|
-
var RuleLimitExceededException = [-3, n0, _RLEE, { [_e]: _c }, [_M], [0]];
|
|
1078
|
-
schema.TypeRegistry.for(n0).registerError(RuleLimitExceededException
|
|
1079
|
-
var SamplingBoost = [3, n0, _SB, 0, [_BR, _BRTTL], [1, 4]];
|
|
1080
|
-
var SamplingBoostStatisticsDocument = [
|
|
1095
|
+
var RetrievedService$ = [3, n0, _RSe, 0, [_Ser, _L], [() => Service$, () => LinksList]];
|
|
1096
|
+
var RetrievedTrace$ = [3, n0, _RTet, 0, [_Id, _Du, _Sp], [0, 1, () => SpanList]];
|
|
1097
|
+
var RootCauseException$ = [3, n0, _RCE, 0, [_N, _M], [0, 0]];
|
|
1098
|
+
var RuleLimitExceededException$ = [-3, n0, _RLEE, { [_e]: _c }, [_M], [0]];
|
|
1099
|
+
schema.TypeRegistry.for(n0).registerError(RuleLimitExceededException$, RuleLimitExceededException);
|
|
1100
|
+
var SamplingBoost$ = [3, n0, _SB, 0, [_BR, _BRTTL], [1, 4]];
|
|
1101
|
+
var SamplingBoostStatisticsDocument$ = [
|
|
1081
1102
|
3,
|
|
1082
1103
|
n0,
|
|
1083
1104
|
_SBSDa,
|
|
@@ -1085,25 +1106,25 @@ var SamplingBoostStatisticsDocument = [
|
|
|
1085
1106
|
[_RN, _SN, _Ti, _AC, _TCo, _SAC],
|
|
1086
1107
|
[0, 0, 4, 1, 1, 1],
|
|
1087
1108
|
];
|
|
1088
|
-
var SamplingRateBoost = [3, n0, _SRB, 0, [_MRa, _CWM], [1, 1]];
|
|
1089
|
-
var SamplingRule = [
|
|
1109
|
+
var SamplingRateBoost$ = [3, n0, _SRB, 0, [_MRa, _CWM], [1, 1]];
|
|
1110
|
+
var SamplingRule$ = [
|
|
1090
1111
|
3,
|
|
1091
1112
|
n0,
|
|
1092
1113
|
_SR,
|
|
1093
1114
|
0,
|
|
1094
1115
|
[_RN, _RARN, _RARNe, _Pr, _FR, _RSes, _SN, _STe, _Hos, _HTTPM, _URLP, _Ve, _At, _SRB],
|
|
1095
|
-
[0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 128 | 0, () => SamplingRateBoost],
|
|
1116
|
+
[0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 128 | 0, () => SamplingRateBoost$],
|
|
1096
1117
|
];
|
|
1097
|
-
var SamplingRuleRecord = [3, n0, _SRR, 0, [_SR, _CA, _MA], [() => SamplingRule
|
|
1098
|
-
var SamplingRuleUpdate = [
|
|
1118
|
+
var SamplingRuleRecord$ = [3, n0, _SRR, 0, [_SR, _CA, _MA], [() => SamplingRule$, 4, 4]];
|
|
1119
|
+
var SamplingRuleUpdate$ = [
|
|
1099
1120
|
3,
|
|
1100
1121
|
n0,
|
|
1101
1122
|
_SRU,
|
|
1102
1123
|
0,
|
|
1103
1124
|
[_RN, _RARN, _RARNe, _Pr, _FR, _RSes, _Hos, _SN, _STe, _HTTPM, _URLP, _At, _SRB],
|
|
1104
|
-
[0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 128 | 0, () => SamplingRateBoost],
|
|
1125
|
+
[0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 128 | 0, () => SamplingRateBoost$],
|
|
1105
1126
|
];
|
|
1106
|
-
var SamplingStatisticsDocument = [
|
|
1127
|
+
var SamplingStatisticsDocument$ = [
|
|
1107
1128
|
3,
|
|
1108
1129
|
n0,
|
|
1109
1130
|
_SSDa,
|
|
@@ -1111,7 +1132,7 @@ var SamplingStatisticsDocument = [
|
|
|
1111
1132
|
[_RN, _CID, _Ti, _RC, _SC, _BC],
|
|
1112
1133
|
[0, 0, 4, 1, 1, 1],
|
|
1113
1134
|
];
|
|
1114
|
-
var SamplingStatisticSummary = [
|
|
1135
|
+
var SamplingStatisticSummary$ = [
|
|
1115
1136
|
3,
|
|
1116
1137
|
n0,
|
|
1117
1138
|
_SSSa,
|
|
@@ -1119,61 +1140,61 @@ var SamplingStatisticSummary = [
|
|
|
1119
1140
|
[_RN, _Ti, _RC, _BC, _SC],
|
|
1120
1141
|
[0, 4, 1, 1, 1],
|
|
1121
1142
|
];
|
|
1122
|
-
var SamplingStrategy = [3, n0, _SSa, 0, [_N, _V], [0, 1]];
|
|
1123
|
-
var SamplingTargetDocument = [
|
|
1143
|
+
var SamplingStrategy$ = [3, n0, _SSa, 0, [_N, _V], [0, 1]];
|
|
1144
|
+
var SamplingTargetDocument$ = [
|
|
1124
1145
|
3,
|
|
1125
1146
|
n0,
|
|
1126
1147
|
_STDa,
|
|
1127
1148
|
0,
|
|
1128
1149
|
[_RN, _FR, _RQ, _RQTTL, _Int, _SB],
|
|
1129
|
-
[0, 1, 1, 4, 1, () => SamplingBoost],
|
|
1150
|
+
[0, 1, 1, 4, 1, () => SamplingBoost$],
|
|
1130
1151
|
];
|
|
1131
|
-
var Segment = [3, n0, _Seg, 0, [_Id, _Do], [0, 0]];
|
|
1132
|
-
var Service = [
|
|
1152
|
+
var Segment$ = [3, n0, _Seg, 0, [_Id, _Do], [0, 0]];
|
|
1153
|
+
var Service$ = [
|
|
1133
1154
|
3,
|
|
1134
1155
|
n0,
|
|
1135
1156
|
_Ser,
|
|
1136
1157
|
0,
|
|
1137
1158
|
[_RI, _N, _Na, _Ro, _AI, _T, _Sta, _ST, _ET, _Ed, _SS, _DH, _RTH],
|
|
1138
|
-
[1, 0, 64 | 0, 2, 0, 0, 0, 4, 4, () => EdgeList, () => ServiceStatistics
|
|
1159
|
+
[1, 0, 64 | 0, 2, 0, 0, 0, 4, 4, () => EdgeList, () => ServiceStatistics$, () => Histogram, () => Histogram],
|
|
1139
1160
|
];
|
|
1140
|
-
var ServiceId = [3, n0, _SI, 0, [_N, _Na, _AI, _T], [0, 64 | 0, 0, 0]];
|
|
1141
|
-
var ServiceStatistics = [
|
|
1161
|
+
var ServiceId$ = [3, n0, _SI, 0, [_N, _Na, _AI, _T], [0, 64 | 0, 0, 0]];
|
|
1162
|
+
var ServiceStatistics$ = [
|
|
1142
1163
|
3,
|
|
1143
1164
|
n0,
|
|
1144
1165
|
_SSe,
|
|
1145
1166
|
0,
|
|
1146
1167
|
[_OCk, _ESr, _FS, _TCo, _TRT],
|
|
1147
|
-
[1, () => ErrorStatistics
|
|
1148
|
-
];
|
|
1149
|
-
var Span = [3, n0, _Spa, 0, [_Id, _Do], [0, 0]];
|
|
1150
|
-
var StartTraceRetrievalRequest = [3, n0, _STRR, 0, [_TI, _ST, _ET], [64 | 0, 4, 4]];
|
|
1151
|
-
var StartTraceRetrievalResult = [3, n0, _STRRt, 0, [_RT], [0]];
|
|
1152
|
-
var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
|
|
1153
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_RARNe, _Ta], [0, () => TagList]];
|
|
1154
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1155
|
-
var TelemetryRecord = [
|
|
1168
|
+
[1, () => ErrorStatistics$, () => FaultStatistics$, 1, 1],
|
|
1169
|
+
];
|
|
1170
|
+
var Span$ = [3, n0, _Spa, 0, [_Id, _Do], [0, 0]];
|
|
1171
|
+
var StartTraceRetrievalRequest$ = [3, n0, _STRR, 0, [_TI, _ST, _ET], [64 | 0, 4, 4]];
|
|
1172
|
+
var StartTraceRetrievalResult$ = [3, n0, _STRRt, 0, [_RT], [0]];
|
|
1173
|
+
var Tag$ = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
|
|
1174
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_RARNe, _Ta], [0, () => TagList]];
|
|
1175
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
1176
|
+
var TelemetryRecord$ = [
|
|
1156
1177
|
3,
|
|
1157
1178
|
n0,
|
|
1158
1179
|
_TRe,
|
|
1159
1180
|
0,
|
|
1160
1181
|
[_Ti, _SRC, _SSC, _SSCe, _SRCe, _BCE],
|
|
1161
|
-
[4, 1, 1, 1, 1, () => BackendConnectionErrors],
|
|
1182
|
+
[4, 1, 1, 1, 1, () => BackendConnectionErrors$],
|
|
1162
1183
|
];
|
|
1163
|
-
var ThrottledException = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
1164
|
-
schema.TypeRegistry.for(n0).registerError(ThrottledException
|
|
1165
|
-
var TimeSeriesServiceStatistics = [
|
|
1184
|
+
var ThrottledException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_M], [0]];
|
|
1185
|
+
schema.TypeRegistry.for(n0).registerError(ThrottledException$, ThrottledException);
|
|
1186
|
+
var TimeSeriesServiceStatistics$ = [
|
|
1166
1187
|
3,
|
|
1167
1188
|
n0,
|
|
1168
1189
|
_TSSS,
|
|
1169
1190
|
0,
|
|
1170
1191
|
[_Ti, _ESS, _SSSe, _SFS, _RTH],
|
|
1171
|
-
[4, () => EdgeStatistics
|
|
1192
|
+
[4, () => EdgeStatistics$, () => ServiceStatistics$, () => ForecastStatistics$, () => Histogram],
|
|
1172
1193
|
];
|
|
1173
|
-
var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_M, _RNe], [0, 0]];
|
|
1174
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException
|
|
1175
|
-
var Trace = [3, n0, _Tra, 0, [_Id, _Du, _LE, _Segm], [0, 1, 2, () => SegmentList]];
|
|
1176
|
-
var TraceSummary = [
|
|
1194
|
+
var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c, [_hE]: 400 }, [_M, _RNe], [0, 0]];
|
|
1195
|
+
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
1196
|
+
var Trace$ = [3, n0, _Tra, 0, [_Id, _Du, _LE, _Segm], [0, 1, 2, () => SegmentList]];
|
|
1197
|
+
var TraceSummary$ = [
|
|
1177
1198
|
3,
|
|
1178
1199
|
n0,
|
|
1179
1200
|
_TSr,
|
|
@@ -1210,14 +1231,14 @@ var TraceSummary = [
|
|
|
1210
1231
|
2,
|
|
1211
1232
|
2,
|
|
1212
1233
|
2,
|
|
1213
|
-
() => Http
|
|
1234
|
+
() => Http$,
|
|
1214
1235
|
() => Annotations,
|
|
1215
1236
|
() => TraceUsers,
|
|
1216
1237
|
() => ServiceIds,
|
|
1217
1238
|
() => TraceResourceARNs,
|
|
1218
1239
|
() => TraceInstanceIds,
|
|
1219
1240
|
() => TraceAvailabilityZones,
|
|
1220
|
-
() => ServiceId
|
|
1241
|
+
() => ServiceId$,
|
|
1221
1242
|
() => FaultRootCauses,
|
|
1222
1243
|
() => ErrorRootCauses,
|
|
1223
1244
|
() => ResponseTimeRootCauses,
|
|
@@ -1225,408 +1246,402 @@ var TraceSummary = [
|
|
|
1225
1246
|
4,
|
|
1226
1247
|
],
|
|
1227
1248
|
];
|
|
1228
|
-
var TraceUser = [3, n0, _TU, 0, [_UN, _SIe], [0, () => ServiceIds]];
|
|
1229
|
-
var UnprocessedStatistics = [3, n0, _US, 0, [_RN, _ECr, _M], [0, 0, 0]];
|
|
1230
|
-
var UnprocessedTraceSegment = [3, n0, _UTSn, 0, [_Id, _ECr, _M], [0, 0, 0]];
|
|
1231
|
-
var UntagResourceRequest = [3, n0, _URR, 0, [_RARNe, _TK], [0, 64 | 0]];
|
|
1232
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1233
|
-
var UpdateGroupRequest = [
|
|
1249
|
+
var TraceUser$ = [3, n0, _TU, 0, [_UN, _SIe], [0, () => ServiceIds]];
|
|
1250
|
+
var UnprocessedStatistics$ = [3, n0, _US, 0, [_RN, _ECr, _M], [0, 0, 0]];
|
|
1251
|
+
var UnprocessedTraceSegment$ = [3, n0, _UTSn, 0, [_Id, _ECr, _M], [0, 0, 0]];
|
|
1252
|
+
var UntagResourceRequest$ = [3, n0, _URR, 0, [_RARNe, _TK], [0, 64 | 0]];
|
|
1253
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
1254
|
+
var UpdateGroupRequest$ = [
|
|
1234
1255
|
3,
|
|
1235
1256
|
n0,
|
|
1236
1257
|
_UGR,
|
|
1237
1258
|
0,
|
|
1238
1259
|
[_GN, _GARN, _FE, _IC],
|
|
1239
|
-
[0, 0, 0, () => InsightsConfiguration],
|
|
1260
|
+
[0, 0, 0, () => InsightsConfiguration$],
|
|
1240
1261
|
];
|
|
1241
|
-
var UpdateGroupResult = [3, n0, _UGRp, 0, [_G], [() => Group]];
|
|
1242
|
-
var UpdateIndexingRuleRequest = [
|
|
1262
|
+
var UpdateGroupResult$ = [3, n0, _UGRp, 0, [_G], [() => Group$]];
|
|
1263
|
+
var UpdateIndexingRuleRequest$ = [
|
|
1243
1264
|
3,
|
|
1244
1265
|
n0,
|
|
1245
1266
|
_UIRR,
|
|
1246
1267
|
0,
|
|
1247
1268
|
[_N, _Ru],
|
|
1248
|
-
[0, () => IndexingRuleValueUpdate],
|
|
1249
|
-
];
|
|
1250
|
-
var UpdateIndexingRuleResult = [3, n0, _UIRRp, 0, [_IRn], [() => IndexingRule]];
|
|
1251
|
-
var UpdateSamplingRuleRequest = [3, n0, _USRR, 0, [_SRU], [() => SamplingRuleUpdate]];
|
|
1252
|
-
var UpdateSamplingRuleResult = [3, n0, _USRRp, 0, [_SRR], [() => SamplingRuleRecord]];
|
|
1253
|
-
var UpdateTraceSegmentDestinationRequest = [3, n0, _UTSDR, 0, [_D], [0]];
|
|
1254
|
-
var UpdateTraceSegmentDestinationResult = [3, n0, _UTSDRp, 0, [_D, _S], [0, 0]];
|
|
1255
|
-
var ValueWithServiceIds = [
|
|
1269
|
+
[0, () => IndexingRuleValueUpdate$],
|
|
1270
|
+
];
|
|
1271
|
+
var UpdateIndexingRuleResult$ = [3, n0, _UIRRp, 0, [_IRn], [() => IndexingRule$]];
|
|
1272
|
+
var UpdateSamplingRuleRequest$ = [3, n0, _USRR, 0, [_SRU], [() => SamplingRuleUpdate$]];
|
|
1273
|
+
var UpdateSamplingRuleResult$ = [3, n0, _USRRp, 0, [_SRR], [() => SamplingRuleRecord$]];
|
|
1274
|
+
var UpdateTraceSegmentDestinationRequest$ = [3, n0, _UTSDR, 0, [_D], [0]];
|
|
1275
|
+
var UpdateTraceSegmentDestinationResult$ = [3, n0, _UTSDRp, 0, [_D, _S], [0, 0]];
|
|
1276
|
+
var ValueWithServiceIds$ = [
|
|
1256
1277
|
3,
|
|
1257
1278
|
n0,
|
|
1258
1279
|
_VWSI,
|
|
1259
1280
|
0,
|
|
1260
1281
|
[_AV, _SIe],
|
|
1261
|
-
[() => AnnotationValue
|
|
1262
|
-
];
|
|
1263
|
-
var XRayServiceException = [-3, _s, "XRayServiceException", 0, [], []];
|
|
1264
|
-
schema.TypeRegistry.for(_s).registerError(XRayServiceException
|
|
1265
|
-
var AliasList = [1, n0, _AL, 0, () => Alias];
|
|
1266
|
-
var AnomalousServiceList = [1, n0, _ASL, 0, () => AnomalousService];
|
|
1267
|
-
var EdgeList = [1, n0, _EL, 0, () => Edge];
|
|
1268
|
-
var ErrorRootCauseEntityPath = [1, n0, _ERCEP, 0, () => ErrorRootCauseEntity];
|
|
1269
|
-
var ErrorRootCauses = [1, n0, _ERCr, 0, () => ErrorRootCause];
|
|
1270
|
-
var ErrorRootCauseServices = [1, n0, _ERCSr, 0, () => ErrorRootCauseService];
|
|
1271
|
-
var FaultRootCauseEntityPath = [1, n0, _FRCEP, 0, () => FaultRootCauseEntity];
|
|
1272
|
-
var FaultRootCauses = [1, n0, _FRCa, 0, () => FaultRootCause];
|
|
1273
|
-
var FaultRootCauseServices = [1, n0, _FRCSa, 0, () => FaultRootCauseService];
|
|
1274
|
-
var GroupSummaryList = [1, n0, _GSL, 0, () => GroupSummary];
|
|
1275
|
-
var Histogram = [1, n0, _Hi, 0, () => HistogramEntry];
|
|
1276
|
-
var IndexingRuleList = [1, n0, _IRL, 0, () => IndexingRule];
|
|
1277
|
-
var InsightEventList = [1, n0, _IEL, 0, () => InsightEvent];
|
|
1278
|
-
var InsightImpactGraphEdgeList = [1, n0, _IIGEL, 0, () => InsightImpactGraphEdge];
|
|
1279
|
-
var InsightImpactGraphServiceList = [1, n0, _IIGSL, 0, () => InsightImpactGraphService];
|
|
1280
|
-
var InsightSummaryList = [1, n0, _ISL, 0, () => InsightSummary];
|
|
1281
|
-
var LinksList = [1, n0, _LL, 0, () => GraphLink];
|
|
1282
|
-
var ResourcePolicyList = [1, n0, _RPL, 0, () => ResourcePolicy];
|
|
1283
|
-
var ResponseTimeRootCauseEntityPath = [1, n0, _RTRCEP, 0, () => ResponseTimeRootCauseEntity];
|
|
1284
|
-
var ResponseTimeRootCauses = [1, n0, _RTRCe, 0, () => ResponseTimeRootCause];
|
|
1285
|
-
var ResponseTimeRootCauseServices = [1, n0, _RTRCSe, 0, () => ResponseTimeRootCauseService];
|
|
1286
|
-
var RetrievedServicesList = [1, n0, _RSL, 0, () => RetrievedService];
|
|
1287
|
-
var RootCauseExceptions = [1, n0, _RCEo, 0, () => RootCauseException];
|
|
1288
|
-
var SamplingBoostStatisticsDocumentList = [
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
];
|
|
1295
|
-
var
|
|
1296
|
-
var
|
|
1297
|
-
var
|
|
1298
|
-
var
|
|
1299
|
-
var
|
|
1300
|
-
var
|
|
1301
|
-
var
|
|
1302
|
-
var
|
|
1303
|
-
var
|
|
1304
|
-
var
|
|
1305
|
-
var
|
|
1306
|
-
var
|
|
1307
|
-
var
|
|
1308
|
-
var
|
|
1309
|
-
var
|
|
1310
|
-
var TraceSpanList = [1, n0, _TSL, 0, () => RetrievedTrace];
|
|
1311
|
-
var TraceSummaryList = [1, n0, _TSLr, 0, () => TraceSummary];
|
|
1312
|
-
var TraceUsers = [1, n0, _TUr, 0, () => TraceUser];
|
|
1313
|
-
var UnprocessedStatisticsList = [1, n0, _USL, 0, () => UnprocessedStatistics];
|
|
1314
|
-
var UnprocessedTraceSegmentList = [1, n0, _UTSL, 0, () => UnprocessedTraceSegment];
|
|
1315
|
-
var ValuesWithServiceIds = [1, n0, _VWSIa, 0, () => ValueWithServiceIds];
|
|
1282
|
+
[() => AnnotationValue$, () => ServiceIds],
|
|
1283
|
+
];
|
|
1284
|
+
var XRayServiceException$ = [-3, _s, "XRayServiceException", 0, [], []];
|
|
1285
|
+
schema.TypeRegistry.for(_s).registerError(XRayServiceException$, XRayServiceException);
|
|
1286
|
+
var AliasList = [1, n0, _AL, 0, () => Alias$];
|
|
1287
|
+
var AnomalousServiceList = [1, n0, _ASL, 0, () => AnomalousService$];
|
|
1288
|
+
var EdgeList = [1, n0, _EL, 0, () => Edge$];
|
|
1289
|
+
var ErrorRootCauseEntityPath = [1, n0, _ERCEP, 0, () => ErrorRootCauseEntity$];
|
|
1290
|
+
var ErrorRootCauses = [1, n0, _ERCr, 0, () => ErrorRootCause$];
|
|
1291
|
+
var ErrorRootCauseServices = [1, n0, _ERCSr, 0, () => ErrorRootCauseService$];
|
|
1292
|
+
var FaultRootCauseEntityPath = [1, n0, _FRCEP, 0, () => FaultRootCauseEntity$];
|
|
1293
|
+
var FaultRootCauses = [1, n0, _FRCa, 0, () => FaultRootCause$];
|
|
1294
|
+
var FaultRootCauseServices = [1, n0, _FRCSa, 0, () => FaultRootCauseService$];
|
|
1295
|
+
var GroupSummaryList = [1, n0, _GSL, 0, () => GroupSummary$];
|
|
1296
|
+
var Histogram = [1, n0, _Hi, 0, () => HistogramEntry$];
|
|
1297
|
+
var IndexingRuleList = [1, n0, _IRL, 0, () => IndexingRule$];
|
|
1298
|
+
var InsightEventList = [1, n0, _IEL, 0, () => InsightEvent$];
|
|
1299
|
+
var InsightImpactGraphEdgeList = [1, n0, _IIGEL, 0, () => InsightImpactGraphEdge$];
|
|
1300
|
+
var InsightImpactGraphServiceList = [1, n0, _IIGSL, 0, () => InsightImpactGraphService$];
|
|
1301
|
+
var InsightSummaryList = [1, n0, _ISL, 0, () => InsightSummary$];
|
|
1302
|
+
var LinksList = [1, n0, _LL, 0, () => GraphLink$];
|
|
1303
|
+
var ResourcePolicyList = [1, n0, _RPL, 0, () => ResourcePolicy$];
|
|
1304
|
+
var ResponseTimeRootCauseEntityPath = [1, n0, _RTRCEP, 0, () => ResponseTimeRootCauseEntity$];
|
|
1305
|
+
var ResponseTimeRootCauses = [1, n0, _RTRCe, 0, () => ResponseTimeRootCause$];
|
|
1306
|
+
var ResponseTimeRootCauseServices = [1, n0, _RTRCSe, 0, () => ResponseTimeRootCauseService$];
|
|
1307
|
+
var RetrievedServicesList = [1, n0, _RSL, 0, () => RetrievedService$];
|
|
1308
|
+
var RootCauseExceptions = [1, n0, _RCEo, 0, () => RootCauseException$];
|
|
1309
|
+
var SamplingBoostStatisticsDocumentList = [1, n0, _SBSDL, 0, () => SamplingBoostStatisticsDocument$];
|
|
1310
|
+
var SamplingRuleRecordList = [1, n0, _SRRL, 0, () => SamplingRuleRecord$];
|
|
1311
|
+
var SamplingStatisticsDocumentList = [1, n0, _SSDL, 0, () => SamplingStatisticsDocument$];
|
|
1312
|
+
var SamplingStatisticSummaryList = [1, n0, _SSSL, 0, () => SamplingStatisticSummary$];
|
|
1313
|
+
var SamplingTargetDocumentList = [1, n0, _STDL, 0, () => SamplingTargetDocument$];
|
|
1314
|
+
var SegmentList = [1, n0, _SL, 0, () => Segment$];
|
|
1315
|
+
var ServiceIds = [1, n0, _SIe, 0, () => ServiceId$];
|
|
1316
|
+
var ServiceList = [1, n0, _SLe, 0, () => Service$];
|
|
1317
|
+
var SpanList = [1, n0, _SLp, 0, () => Span$];
|
|
1318
|
+
var TagList = [1, n0, _TL, 0, () => Tag$];
|
|
1319
|
+
var TelemetryRecordList = [1, n0, _TRL, 0, () => TelemetryRecord$];
|
|
1320
|
+
var TimeSeriesServiceStatisticsList = [1, n0, _TSSSL, 0, () => TimeSeriesServiceStatistics$];
|
|
1321
|
+
var TraceAvailabilityZones = [1, n0, _TAZ, 0, () => AvailabilityZoneDetail$];
|
|
1322
|
+
var TraceInstanceIds = [1, n0, _TII, 0, () => InstanceIdDetail$];
|
|
1323
|
+
var TraceList = [1, n0, _TLr, 0, () => Trace$];
|
|
1324
|
+
var TraceResourceARNs = [1, n0, _TRARN, 0, () => ResourceARNDetail$];
|
|
1325
|
+
var TraceSpanList = [1, n0, _TSL, 0, () => RetrievedTrace$];
|
|
1326
|
+
var TraceSummaryList = [1, n0, _TSLr, 0, () => TraceSummary$];
|
|
1327
|
+
var TraceUsers = [1, n0, _TUr, 0, () => TraceUser$];
|
|
1328
|
+
var UnprocessedStatisticsList = [1, n0, _USL, 0, () => UnprocessedStatistics$];
|
|
1329
|
+
var UnprocessedTraceSegmentList = [1, n0, _UTSL, 0, () => UnprocessedTraceSegment$];
|
|
1330
|
+
var ValuesWithServiceIds = [1, n0, _VWSIa, 0, () => ValueWithServiceIds$];
|
|
1316
1331
|
var Annotations = [2, n0, _An, 0, 0, () => ValuesWithServiceIds];
|
|
1317
|
-
var AnnotationValue = [3, n0, _AV, 0, [_NV, _BV, _SV], [1, 2, 0]];
|
|
1318
|
-
var IndexingRuleValue = [3, n0, _IRV, 0, [_Pro], [() => ProbabilisticRuleValue]];
|
|
1319
|
-
var IndexingRuleValueUpdate = [
|
|
1332
|
+
var AnnotationValue$ = [3, n0, _AV, 0, [_NV, _BV, _SV], [1, 2, 0]];
|
|
1333
|
+
var IndexingRuleValue$ = [3, n0, _IRV, 0, [_Pro], [() => ProbabilisticRuleValue$]];
|
|
1334
|
+
var IndexingRuleValueUpdate$ = [
|
|
1320
1335
|
3,
|
|
1321
1336
|
n0,
|
|
1322
1337
|
_IRVU,
|
|
1323
1338
|
0,
|
|
1324
1339
|
[_Pro],
|
|
1325
|
-
[() => ProbabilisticRuleValueUpdate],
|
|
1340
|
+
[() => ProbabilisticRuleValueUpdate$],
|
|
1326
1341
|
];
|
|
1327
|
-
var BatchGetTraces = [
|
|
1342
|
+
var BatchGetTraces$ = [
|
|
1328
1343
|
9,
|
|
1329
1344
|
n0,
|
|
1330
1345
|
_BGT,
|
|
1331
1346
|
{ [_h]: ["POST", "/Traces", 200] },
|
|
1332
|
-
() => BatchGetTracesRequest
|
|
1333
|
-
() => BatchGetTracesResult
|
|
1347
|
+
() => BatchGetTracesRequest$,
|
|
1348
|
+
() => BatchGetTracesResult$,
|
|
1334
1349
|
];
|
|
1335
|
-
var CancelTraceRetrieval = [
|
|
1350
|
+
var CancelTraceRetrieval$ = [
|
|
1336
1351
|
9,
|
|
1337
1352
|
n0,
|
|
1338
1353
|
_CTR,
|
|
1339
1354
|
{ [_h]: ["POST", "/CancelTraceRetrieval", 200] },
|
|
1340
|
-
() => CancelTraceRetrievalRequest
|
|
1341
|
-
() => CancelTraceRetrievalResult
|
|
1355
|
+
() => CancelTraceRetrievalRequest$,
|
|
1356
|
+
() => CancelTraceRetrievalResult$,
|
|
1342
1357
|
];
|
|
1343
|
-
var CreateGroup = [
|
|
1358
|
+
var CreateGroup$ = [
|
|
1344
1359
|
9,
|
|
1345
1360
|
n0,
|
|
1346
1361
|
_CG,
|
|
1347
1362
|
{ [_h]: ["POST", "/CreateGroup", 200] },
|
|
1348
|
-
() => CreateGroupRequest
|
|
1349
|
-
() => CreateGroupResult
|
|
1363
|
+
() => CreateGroupRequest$,
|
|
1364
|
+
() => CreateGroupResult$,
|
|
1350
1365
|
];
|
|
1351
|
-
var CreateSamplingRule = [
|
|
1366
|
+
var CreateSamplingRule$ = [
|
|
1352
1367
|
9,
|
|
1353
1368
|
n0,
|
|
1354
1369
|
_CSR,
|
|
1355
1370
|
{ [_h]: ["POST", "/CreateSamplingRule", 200] },
|
|
1356
|
-
() => CreateSamplingRuleRequest
|
|
1357
|
-
() => CreateSamplingRuleResult
|
|
1371
|
+
() => CreateSamplingRuleRequest$,
|
|
1372
|
+
() => CreateSamplingRuleResult$,
|
|
1358
1373
|
];
|
|
1359
|
-
var DeleteGroup = [
|
|
1374
|
+
var DeleteGroup$ = [
|
|
1360
1375
|
9,
|
|
1361
1376
|
n0,
|
|
1362
1377
|
_DG,
|
|
1363
1378
|
{ [_h]: ["POST", "/DeleteGroup", 200] },
|
|
1364
|
-
() => DeleteGroupRequest
|
|
1365
|
-
() => DeleteGroupResult
|
|
1379
|
+
() => DeleteGroupRequest$,
|
|
1380
|
+
() => DeleteGroupResult$,
|
|
1366
1381
|
];
|
|
1367
|
-
var DeleteResourcePolicy = [
|
|
1382
|
+
var DeleteResourcePolicy$ = [
|
|
1368
1383
|
9,
|
|
1369
1384
|
n0,
|
|
1370
1385
|
_DRP,
|
|
1371
1386
|
{ [_h]: ["POST", "/DeleteResourcePolicy", 200] },
|
|
1372
|
-
() => DeleteResourcePolicyRequest
|
|
1373
|
-
() => DeleteResourcePolicyResult
|
|
1387
|
+
() => DeleteResourcePolicyRequest$,
|
|
1388
|
+
() => DeleteResourcePolicyResult$,
|
|
1374
1389
|
];
|
|
1375
|
-
var DeleteSamplingRule = [
|
|
1390
|
+
var DeleteSamplingRule$ = [
|
|
1376
1391
|
9,
|
|
1377
1392
|
n0,
|
|
1378
1393
|
_DSR,
|
|
1379
1394
|
{ [_h]: ["POST", "/DeleteSamplingRule", 200] },
|
|
1380
|
-
() => DeleteSamplingRuleRequest
|
|
1381
|
-
() => DeleteSamplingRuleResult
|
|
1395
|
+
() => DeleteSamplingRuleRequest$,
|
|
1396
|
+
() => DeleteSamplingRuleResult$,
|
|
1382
1397
|
];
|
|
1383
|
-
var GetEncryptionConfig = [
|
|
1398
|
+
var GetEncryptionConfig$ = [
|
|
1384
1399
|
9,
|
|
1385
1400
|
n0,
|
|
1386
1401
|
_GEC,
|
|
1387
1402
|
{ [_h]: ["POST", "/EncryptionConfig", 200] },
|
|
1388
|
-
() => GetEncryptionConfigRequest
|
|
1389
|
-
() => GetEncryptionConfigResult
|
|
1403
|
+
() => GetEncryptionConfigRequest$,
|
|
1404
|
+
() => GetEncryptionConfigResult$,
|
|
1390
1405
|
];
|
|
1391
|
-
var GetGroup = [
|
|
1406
|
+
var GetGroup$ = [
|
|
1392
1407
|
9,
|
|
1393
1408
|
n0,
|
|
1394
1409
|
_GG,
|
|
1395
1410
|
{ [_h]: ["POST", "/GetGroup", 200] },
|
|
1396
|
-
() => GetGroupRequest
|
|
1397
|
-
() => GetGroupResult
|
|
1411
|
+
() => GetGroupRequest$,
|
|
1412
|
+
() => GetGroupResult$,
|
|
1398
1413
|
];
|
|
1399
|
-
var GetGroups = [
|
|
1414
|
+
var GetGroups$ = [
|
|
1400
1415
|
9,
|
|
1401
1416
|
n0,
|
|
1402
1417
|
_GGe,
|
|
1403
1418
|
{ [_h]: ["POST", "/Groups", 200] },
|
|
1404
|
-
() => GetGroupsRequest
|
|
1405
|
-
() => GetGroupsResult
|
|
1419
|
+
() => GetGroupsRequest$,
|
|
1420
|
+
() => GetGroupsResult$,
|
|
1406
1421
|
];
|
|
1407
|
-
var GetIndexingRules = [
|
|
1422
|
+
var GetIndexingRules$ = [
|
|
1408
1423
|
9,
|
|
1409
1424
|
n0,
|
|
1410
1425
|
_GIRet,
|
|
1411
1426
|
{ [_h]: ["POST", "/GetIndexingRules", 200] },
|
|
1412
|
-
() => GetIndexingRulesRequest
|
|
1413
|
-
() => GetIndexingRulesResult
|
|
1427
|
+
() => GetIndexingRulesRequest$,
|
|
1428
|
+
() => GetIndexingRulesResult$,
|
|
1414
1429
|
];
|
|
1415
|
-
var GetInsight = [
|
|
1430
|
+
var GetInsight$ = [
|
|
1416
1431
|
9,
|
|
1417
1432
|
n0,
|
|
1418
1433
|
_GI,
|
|
1419
1434
|
{ [_h]: ["POST", "/Insight", 200] },
|
|
1420
|
-
() => GetInsightRequest
|
|
1421
|
-
() => GetInsightResult
|
|
1435
|
+
() => GetInsightRequest$,
|
|
1436
|
+
() => GetInsightResult$,
|
|
1422
1437
|
];
|
|
1423
|
-
var GetInsightEvents = [
|
|
1438
|
+
var GetInsightEvents$ = [
|
|
1424
1439
|
9,
|
|
1425
1440
|
n0,
|
|
1426
1441
|
_GIE,
|
|
1427
1442
|
{ [_h]: ["POST", "/InsightEvents", 200] },
|
|
1428
|
-
() => GetInsightEventsRequest
|
|
1429
|
-
() => GetInsightEventsResult
|
|
1443
|
+
() => GetInsightEventsRequest$,
|
|
1444
|
+
() => GetInsightEventsResult$,
|
|
1430
1445
|
];
|
|
1431
|
-
var GetInsightImpactGraph = [
|
|
1446
|
+
var GetInsightImpactGraph$ = [
|
|
1432
1447
|
9,
|
|
1433
1448
|
n0,
|
|
1434
1449
|
_GIIG,
|
|
1435
1450
|
{ [_h]: ["POST", "/InsightImpactGraph", 200] },
|
|
1436
|
-
() => GetInsightImpactGraphRequest
|
|
1437
|
-
() => GetInsightImpactGraphResult
|
|
1451
|
+
() => GetInsightImpactGraphRequest$,
|
|
1452
|
+
() => GetInsightImpactGraphResult$,
|
|
1438
1453
|
];
|
|
1439
|
-
var GetInsightSummaries = [
|
|
1454
|
+
var GetInsightSummaries$ = [
|
|
1440
1455
|
9,
|
|
1441
1456
|
n0,
|
|
1442
1457
|
_GIS,
|
|
1443
1458
|
{ [_h]: ["POST", "/InsightSummaries", 200] },
|
|
1444
|
-
() => GetInsightSummariesRequest
|
|
1445
|
-
() => GetInsightSummariesResult
|
|
1459
|
+
() => GetInsightSummariesRequest$,
|
|
1460
|
+
() => GetInsightSummariesResult$,
|
|
1446
1461
|
];
|
|
1447
|
-
var GetRetrievedTracesGraph = [
|
|
1462
|
+
var GetRetrievedTracesGraph$ = [
|
|
1448
1463
|
9,
|
|
1449
1464
|
n0,
|
|
1450
1465
|
_GRTG,
|
|
1451
1466
|
{ [_h]: ["POST", "/GetRetrievedTracesGraph", 200] },
|
|
1452
|
-
() => GetRetrievedTracesGraphRequest
|
|
1453
|
-
() => GetRetrievedTracesGraphResult
|
|
1467
|
+
() => GetRetrievedTracesGraphRequest$,
|
|
1468
|
+
() => GetRetrievedTracesGraphResult$,
|
|
1454
1469
|
];
|
|
1455
|
-
var GetSamplingRules = [
|
|
1470
|
+
var GetSamplingRules$ = [
|
|
1456
1471
|
9,
|
|
1457
1472
|
n0,
|
|
1458
1473
|
_GSR,
|
|
1459
1474
|
{ [_h]: ["POST", "/GetSamplingRules", 200] },
|
|
1460
|
-
() => GetSamplingRulesRequest
|
|
1461
|
-
() => GetSamplingRulesResult
|
|
1475
|
+
() => GetSamplingRulesRequest$,
|
|
1476
|
+
() => GetSamplingRulesResult$,
|
|
1462
1477
|
];
|
|
1463
|
-
var GetSamplingStatisticSummaries = [
|
|
1478
|
+
var GetSamplingStatisticSummaries$ = [
|
|
1464
1479
|
9,
|
|
1465
1480
|
n0,
|
|
1466
1481
|
_GSSS,
|
|
1467
1482
|
{ [_h]: ["POST", "/SamplingStatisticSummaries", 200] },
|
|
1468
|
-
() => GetSamplingStatisticSummariesRequest
|
|
1469
|
-
() => GetSamplingStatisticSummariesResult
|
|
1483
|
+
() => GetSamplingStatisticSummariesRequest$,
|
|
1484
|
+
() => GetSamplingStatisticSummariesResult$,
|
|
1470
1485
|
];
|
|
1471
|
-
var GetSamplingTargets = [
|
|
1486
|
+
var GetSamplingTargets$ = [
|
|
1472
1487
|
9,
|
|
1473
1488
|
n0,
|
|
1474
1489
|
_GST,
|
|
1475
1490
|
{ [_h]: ["POST", "/SamplingTargets", 200] },
|
|
1476
|
-
() => GetSamplingTargetsRequest
|
|
1477
|
-
() => GetSamplingTargetsResult
|
|
1491
|
+
() => GetSamplingTargetsRequest$,
|
|
1492
|
+
() => GetSamplingTargetsResult$,
|
|
1478
1493
|
];
|
|
1479
|
-
var GetServiceGraph = [
|
|
1494
|
+
var GetServiceGraph$ = [
|
|
1480
1495
|
9,
|
|
1481
1496
|
n0,
|
|
1482
1497
|
_GSG,
|
|
1483
1498
|
{ [_h]: ["POST", "/ServiceGraph", 200] },
|
|
1484
|
-
() => GetServiceGraphRequest
|
|
1485
|
-
() => GetServiceGraphResult
|
|
1499
|
+
() => GetServiceGraphRequest$,
|
|
1500
|
+
() => GetServiceGraphResult$,
|
|
1486
1501
|
];
|
|
1487
|
-
var GetTimeSeriesServiceStatistics = [
|
|
1502
|
+
var GetTimeSeriesServiceStatistics$ = [
|
|
1488
1503
|
9,
|
|
1489
1504
|
n0,
|
|
1490
1505
|
_GTSSS,
|
|
1491
1506
|
{ [_h]: ["POST", "/TimeSeriesServiceStatistics", 200] },
|
|
1492
|
-
() => GetTimeSeriesServiceStatisticsRequest
|
|
1493
|
-
() => GetTimeSeriesServiceStatisticsResult
|
|
1507
|
+
() => GetTimeSeriesServiceStatisticsRequest$,
|
|
1508
|
+
() => GetTimeSeriesServiceStatisticsResult$,
|
|
1494
1509
|
];
|
|
1495
|
-
var GetTraceGraph = [
|
|
1510
|
+
var GetTraceGraph$ = [
|
|
1496
1511
|
9,
|
|
1497
1512
|
n0,
|
|
1498
1513
|
_GTG,
|
|
1499
1514
|
{ [_h]: ["POST", "/TraceGraph", 200] },
|
|
1500
|
-
() => GetTraceGraphRequest
|
|
1501
|
-
() => GetTraceGraphResult
|
|
1515
|
+
() => GetTraceGraphRequest$,
|
|
1516
|
+
() => GetTraceGraphResult$,
|
|
1502
1517
|
];
|
|
1503
|
-
var GetTraceSegmentDestination = [
|
|
1518
|
+
var GetTraceSegmentDestination$ = [
|
|
1504
1519
|
9,
|
|
1505
1520
|
n0,
|
|
1506
1521
|
_GTSD,
|
|
1507
1522
|
{ [_h]: ["POST", "/GetTraceSegmentDestination", 200] },
|
|
1508
|
-
() => GetTraceSegmentDestinationRequest
|
|
1509
|
-
() => GetTraceSegmentDestinationResult
|
|
1523
|
+
() => GetTraceSegmentDestinationRequest$,
|
|
1524
|
+
() => GetTraceSegmentDestinationResult$,
|
|
1510
1525
|
];
|
|
1511
|
-
var GetTraceSummaries = [
|
|
1526
|
+
var GetTraceSummaries$ = [
|
|
1512
1527
|
9,
|
|
1513
1528
|
n0,
|
|
1514
1529
|
_GTS,
|
|
1515
1530
|
{ [_h]: ["POST", "/TraceSummaries", 200] },
|
|
1516
|
-
() => GetTraceSummariesRequest
|
|
1517
|
-
() => GetTraceSummariesResult
|
|
1531
|
+
() => GetTraceSummariesRequest$,
|
|
1532
|
+
() => GetTraceSummariesResult$,
|
|
1518
1533
|
];
|
|
1519
|
-
var ListResourcePolicies = [
|
|
1534
|
+
var ListResourcePolicies$ = [
|
|
1520
1535
|
9,
|
|
1521
1536
|
n0,
|
|
1522
1537
|
_LRP,
|
|
1523
1538
|
{ [_h]: ["POST", "/ListResourcePolicies", 200] },
|
|
1524
|
-
() => ListResourcePoliciesRequest
|
|
1525
|
-
() => ListResourcePoliciesResult
|
|
1539
|
+
() => ListResourcePoliciesRequest$,
|
|
1540
|
+
() => ListResourcePoliciesResult$,
|
|
1526
1541
|
];
|
|
1527
|
-
var ListRetrievedTraces = [
|
|
1542
|
+
var ListRetrievedTraces$ = [
|
|
1528
1543
|
9,
|
|
1529
1544
|
n0,
|
|
1530
1545
|
_LRT,
|
|
1531
1546
|
{ [_h]: ["POST", "/ListRetrievedTraces", 200] },
|
|
1532
|
-
() => ListRetrievedTracesRequest
|
|
1533
|
-
() => ListRetrievedTracesResult
|
|
1547
|
+
() => ListRetrievedTracesRequest$,
|
|
1548
|
+
() => ListRetrievedTracesResult$,
|
|
1534
1549
|
];
|
|
1535
|
-
var ListTagsForResource = [
|
|
1550
|
+
var ListTagsForResource$ = [
|
|
1536
1551
|
9,
|
|
1537
1552
|
n0,
|
|
1538
1553
|
_LTFR,
|
|
1539
1554
|
{ [_h]: ["POST", "/ListTagsForResource", 200] },
|
|
1540
|
-
() => ListTagsForResourceRequest
|
|
1541
|
-
() => ListTagsForResourceResponse
|
|
1555
|
+
() => ListTagsForResourceRequest$,
|
|
1556
|
+
() => ListTagsForResourceResponse$,
|
|
1542
1557
|
];
|
|
1543
|
-
var PutEncryptionConfig = [
|
|
1558
|
+
var PutEncryptionConfig$ = [
|
|
1544
1559
|
9,
|
|
1545
1560
|
n0,
|
|
1546
1561
|
_PEC,
|
|
1547
1562
|
{ [_h]: ["POST", "/PutEncryptionConfig", 200] },
|
|
1548
|
-
() => PutEncryptionConfigRequest
|
|
1549
|
-
() => PutEncryptionConfigResult
|
|
1563
|
+
() => PutEncryptionConfigRequest$,
|
|
1564
|
+
() => PutEncryptionConfigResult$,
|
|
1550
1565
|
];
|
|
1551
|
-
var PutResourcePolicy = [
|
|
1566
|
+
var PutResourcePolicy$ = [
|
|
1552
1567
|
9,
|
|
1553
1568
|
n0,
|
|
1554
1569
|
_PRP,
|
|
1555
1570
|
{ [_h]: ["POST", "/PutResourcePolicy", 200] },
|
|
1556
|
-
() => PutResourcePolicyRequest
|
|
1557
|
-
() => PutResourcePolicyResult
|
|
1571
|
+
() => PutResourcePolicyRequest$,
|
|
1572
|
+
() => PutResourcePolicyResult$,
|
|
1558
1573
|
];
|
|
1559
|
-
var PutTelemetryRecords = [
|
|
1574
|
+
var PutTelemetryRecords$ = [
|
|
1560
1575
|
9,
|
|
1561
1576
|
n0,
|
|
1562
1577
|
_PTR,
|
|
1563
1578
|
{ [_h]: ["POST", "/TelemetryRecords", 200] },
|
|
1564
|
-
() => PutTelemetryRecordsRequest
|
|
1565
|
-
() => PutTelemetryRecordsResult
|
|
1579
|
+
() => PutTelemetryRecordsRequest$,
|
|
1580
|
+
() => PutTelemetryRecordsResult$,
|
|
1566
1581
|
];
|
|
1567
|
-
var PutTraceSegments = [
|
|
1582
|
+
var PutTraceSegments$ = [
|
|
1568
1583
|
9,
|
|
1569
1584
|
n0,
|
|
1570
1585
|
_PTS,
|
|
1571
1586
|
{ [_h]: ["POST", "/TraceSegments", 200] },
|
|
1572
|
-
() => PutTraceSegmentsRequest
|
|
1573
|
-
() => PutTraceSegmentsResult
|
|
1587
|
+
() => PutTraceSegmentsRequest$,
|
|
1588
|
+
() => PutTraceSegmentsResult$,
|
|
1574
1589
|
];
|
|
1575
|
-
var StartTraceRetrieval = [
|
|
1590
|
+
var StartTraceRetrieval$ = [
|
|
1576
1591
|
9,
|
|
1577
1592
|
n0,
|
|
1578
1593
|
_STR,
|
|
1579
1594
|
{ [_h]: ["POST", "/StartTraceRetrieval", 200] },
|
|
1580
|
-
() => StartTraceRetrievalRequest
|
|
1581
|
-
() => StartTraceRetrievalResult
|
|
1595
|
+
() => StartTraceRetrievalRequest$,
|
|
1596
|
+
() => StartTraceRetrievalResult$,
|
|
1582
1597
|
];
|
|
1583
|
-
var TagResource = [
|
|
1598
|
+
var TagResource$ = [
|
|
1584
1599
|
9,
|
|
1585
1600
|
n0,
|
|
1586
1601
|
_TRa,
|
|
1587
1602
|
{ [_h]: ["POST", "/TagResource", 200] },
|
|
1588
|
-
() => TagResourceRequest
|
|
1589
|
-
() => TagResourceResponse
|
|
1603
|
+
() => TagResourceRequest$,
|
|
1604
|
+
() => TagResourceResponse$,
|
|
1590
1605
|
];
|
|
1591
|
-
var UntagResource = [
|
|
1606
|
+
var UntagResource$ = [
|
|
1592
1607
|
9,
|
|
1593
1608
|
n0,
|
|
1594
1609
|
_UR,
|
|
1595
1610
|
{ [_h]: ["POST", "/UntagResource", 200] },
|
|
1596
|
-
() => UntagResourceRequest
|
|
1597
|
-
() => UntagResourceResponse
|
|
1611
|
+
() => UntagResourceRequest$,
|
|
1612
|
+
() => UntagResourceResponse$,
|
|
1598
1613
|
];
|
|
1599
|
-
var UpdateGroup = [
|
|
1614
|
+
var UpdateGroup$ = [
|
|
1600
1615
|
9,
|
|
1601
1616
|
n0,
|
|
1602
1617
|
_UG,
|
|
1603
1618
|
{ [_h]: ["POST", "/UpdateGroup", 200] },
|
|
1604
|
-
() => UpdateGroupRequest
|
|
1605
|
-
() => UpdateGroupResult
|
|
1619
|
+
() => UpdateGroupRequest$,
|
|
1620
|
+
() => UpdateGroupResult$,
|
|
1606
1621
|
];
|
|
1607
|
-
var UpdateIndexingRule = [
|
|
1622
|
+
var UpdateIndexingRule$ = [
|
|
1608
1623
|
9,
|
|
1609
1624
|
n0,
|
|
1610
1625
|
_UIR,
|
|
1611
1626
|
{ [_h]: ["POST", "/UpdateIndexingRule", 200] },
|
|
1612
|
-
() => UpdateIndexingRuleRequest
|
|
1613
|
-
() => UpdateIndexingRuleResult
|
|
1627
|
+
() => UpdateIndexingRuleRequest$,
|
|
1628
|
+
() => UpdateIndexingRuleResult$,
|
|
1614
1629
|
];
|
|
1615
|
-
var UpdateSamplingRule = [
|
|
1630
|
+
var UpdateSamplingRule$ = [
|
|
1616
1631
|
9,
|
|
1617
1632
|
n0,
|
|
1618
1633
|
_USR,
|
|
1619
1634
|
{ [_h]: ["POST", "/UpdateSamplingRule", 200] },
|
|
1620
|
-
() => UpdateSamplingRuleRequest
|
|
1621
|
-
() => UpdateSamplingRuleResult
|
|
1635
|
+
() => UpdateSamplingRuleRequest$,
|
|
1636
|
+
() => UpdateSamplingRuleResult$,
|
|
1622
1637
|
];
|
|
1623
|
-
var UpdateTraceSegmentDestination = [
|
|
1638
|
+
var UpdateTraceSegmentDestination$ = [
|
|
1624
1639
|
9,
|
|
1625
1640
|
n0,
|
|
1626
1641
|
_UTSD,
|
|
1627
1642
|
{ [_h]: ["POST", "/UpdateTraceSegmentDestination", 200] },
|
|
1628
|
-
() => UpdateTraceSegmentDestinationRequest
|
|
1629
|
-
() => UpdateTraceSegmentDestinationResult
|
|
1643
|
+
() => UpdateTraceSegmentDestinationRequest$,
|
|
1644
|
+
() => UpdateTraceSegmentDestinationResult$,
|
|
1630
1645
|
];
|
|
1631
1646
|
|
|
1632
1647
|
class BatchGetTracesCommand extends smithyClient.Command
|
|
@@ -1637,7 +1652,7 @@ class BatchGetTracesCommand extends smithyClient.Command
|
|
|
1637
1652
|
})
|
|
1638
1653
|
.s("AWSXRay", "BatchGetTraces", {})
|
|
1639
1654
|
.n("XRayClient", "BatchGetTracesCommand")
|
|
1640
|
-
.sc(BatchGetTraces)
|
|
1655
|
+
.sc(BatchGetTraces$)
|
|
1641
1656
|
.build() {
|
|
1642
1657
|
}
|
|
1643
1658
|
|
|
@@ -1649,7 +1664,7 @@ class CancelTraceRetrievalCommand extends smithyClient.Command
|
|
|
1649
1664
|
})
|
|
1650
1665
|
.s("AWSXRay", "CancelTraceRetrieval", {})
|
|
1651
1666
|
.n("XRayClient", "CancelTraceRetrievalCommand")
|
|
1652
|
-
.sc(CancelTraceRetrieval)
|
|
1667
|
+
.sc(CancelTraceRetrieval$)
|
|
1653
1668
|
.build() {
|
|
1654
1669
|
}
|
|
1655
1670
|
|
|
@@ -1661,7 +1676,7 @@ class CreateGroupCommand extends smithyClient.Command
|
|
|
1661
1676
|
})
|
|
1662
1677
|
.s("AWSXRay", "CreateGroup", {})
|
|
1663
1678
|
.n("XRayClient", "CreateGroupCommand")
|
|
1664
|
-
.sc(CreateGroup)
|
|
1679
|
+
.sc(CreateGroup$)
|
|
1665
1680
|
.build() {
|
|
1666
1681
|
}
|
|
1667
1682
|
|
|
@@ -1673,7 +1688,7 @@ class CreateSamplingRuleCommand extends smithyClient.Command
|
|
|
1673
1688
|
})
|
|
1674
1689
|
.s("AWSXRay", "CreateSamplingRule", {})
|
|
1675
1690
|
.n("XRayClient", "CreateSamplingRuleCommand")
|
|
1676
|
-
.sc(CreateSamplingRule)
|
|
1691
|
+
.sc(CreateSamplingRule$)
|
|
1677
1692
|
.build() {
|
|
1678
1693
|
}
|
|
1679
1694
|
|
|
@@ -1685,7 +1700,7 @@ class DeleteGroupCommand extends smithyClient.Command
|
|
|
1685
1700
|
})
|
|
1686
1701
|
.s("AWSXRay", "DeleteGroup", {})
|
|
1687
1702
|
.n("XRayClient", "DeleteGroupCommand")
|
|
1688
|
-
.sc(DeleteGroup)
|
|
1703
|
+
.sc(DeleteGroup$)
|
|
1689
1704
|
.build() {
|
|
1690
1705
|
}
|
|
1691
1706
|
|
|
@@ -1697,7 +1712,7 @@ class DeleteResourcePolicyCommand extends smithyClient.Command
|
|
|
1697
1712
|
})
|
|
1698
1713
|
.s("AWSXRay", "DeleteResourcePolicy", {})
|
|
1699
1714
|
.n("XRayClient", "DeleteResourcePolicyCommand")
|
|
1700
|
-
.sc(DeleteResourcePolicy)
|
|
1715
|
+
.sc(DeleteResourcePolicy$)
|
|
1701
1716
|
.build() {
|
|
1702
1717
|
}
|
|
1703
1718
|
|
|
@@ -1709,7 +1724,7 @@ class DeleteSamplingRuleCommand extends smithyClient.Command
|
|
|
1709
1724
|
})
|
|
1710
1725
|
.s("AWSXRay", "DeleteSamplingRule", {})
|
|
1711
1726
|
.n("XRayClient", "DeleteSamplingRuleCommand")
|
|
1712
|
-
.sc(DeleteSamplingRule)
|
|
1727
|
+
.sc(DeleteSamplingRule$)
|
|
1713
1728
|
.build() {
|
|
1714
1729
|
}
|
|
1715
1730
|
|
|
@@ -1721,7 +1736,7 @@ class GetEncryptionConfigCommand extends smithyClient.Command
|
|
|
1721
1736
|
})
|
|
1722
1737
|
.s("AWSXRay", "GetEncryptionConfig", {})
|
|
1723
1738
|
.n("XRayClient", "GetEncryptionConfigCommand")
|
|
1724
|
-
.sc(GetEncryptionConfig)
|
|
1739
|
+
.sc(GetEncryptionConfig$)
|
|
1725
1740
|
.build() {
|
|
1726
1741
|
}
|
|
1727
1742
|
|
|
@@ -1733,7 +1748,7 @@ class GetGroupCommand extends smithyClient.Command
|
|
|
1733
1748
|
})
|
|
1734
1749
|
.s("AWSXRay", "GetGroup", {})
|
|
1735
1750
|
.n("XRayClient", "GetGroupCommand")
|
|
1736
|
-
.sc(GetGroup)
|
|
1751
|
+
.sc(GetGroup$)
|
|
1737
1752
|
.build() {
|
|
1738
1753
|
}
|
|
1739
1754
|
|
|
@@ -1745,7 +1760,7 @@ class GetGroupsCommand extends smithyClient.Command
|
|
|
1745
1760
|
})
|
|
1746
1761
|
.s("AWSXRay", "GetGroups", {})
|
|
1747
1762
|
.n("XRayClient", "GetGroupsCommand")
|
|
1748
|
-
.sc(GetGroups)
|
|
1763
|
+
.sc(GetGroups$)
|
|
1749
1764
|
.build() {
|
|
1750
1765
|
}
|
|
1751
1766
|
|
|
@@ -1757,7 +1772,7 @@ class GetIndexingRulesCommand extends smithyClient.Command
|
|
|
1757
1772
|
})
|
|
1758
1773
|
.s("AWSXRay", "GetIndexingRules", {})
|
|
1759
1774
|
.n("XRayClient", "GetIndexingRulesCommand")
|
|
1760
|
-
.sc(GetIndexingRules)
|
|
1775
|
+
.sc(GetIndexingRules$)
|
|
1761
1776
|
.build() {
|
|
1762
1777
|
}
|
|
1763
1778
|
|
|
@@ -1769,7 +1784,7 @@ class GetInsightCommand extends smithyClient.Command
|
|
|
1769
1784
|
})
|
|
1770
1785
|
.s("AWSXRay", "GetInsight", {})
|
|
1771
1786
|
.n("XRayClient", "GetInsightCommand")
|
|
1772
|
-
.sc(GetInsight)
|
|
1787
|
+
.sc(GetInsight$)
|
|
1773
1788
|
.build() {
|
|
1774
1789
|
}
|
|
1775
1790
|
|
|
@@ -1781,7 +1796,7 @@ class GetInsightEventsCommand extends smithyClient.Command
|
|
|
1781
1796
|
})
|
|
1782
1797
|
.s("AWSXRay", "GetInsightEvents", {})
|
|
1783
1798
|
.n("XRayClient", "GetInsightEventsCommand")
|
|
1784
|
-
.sc(GetInsightEvents)
|
|
1799
|
+
.sc(GetInsightEvents$)
|
|
1785
1800
|
.build() {
|
|
1786
1801
|
}
|
|
1787
1802
|
|
|
@@ -1793,7 +1808,7 @@ class GetInsightImpactGraphCommand extends smithyClient.Command
|
|
|
1793
1808
|
})
|
|
1794
1809
|
.s("AWSXRay", "GetInsightImpactGraph", {})
|
|
1795
1810
|
.n("XRayClient", "GetInsightImpactGraphCommand")
|
|
1796
|
-
.sc(GetInsightImpactGraph)
|
|
1811
|
+
.sc(GetInsightImpactGraph$)
|
|
1797
1812
|
.build() {
|
|
1798
1813
|
}
|
|
1799
1814
|
|
|
@@ -1805,7 +1820,7 @@ class GetInsightSummariesCommand extends smithyClient.Command
|
|
|
1805
1820
|
})
|
|
1806
1821
|
.s("AWSXRay", "GetInsightSummaries", {})
|
|
1807
1822
|
.n("XRayClient", "GetInsightSummariesCommand")
|
|
1808
|
-
.sc(GetInsightSummaries)
|
|
1823
|
+
.sc(GetInsightSummaries$)
|
|
1809
1824
|
.build() {
|
|
1810
1825
|
}
|
|
1811
1826
|
|
|
@@ -1817,7 +1832,7 @@ class GetRetrievedTracesGraphCommand extends smithyClient.Command
|
|
|
1817
1832
|
})
|
|
1818
1833
|
.s("AWSXRay", "GetRetrievedTracesGraph", {})
|
|
1819
1834
|
.n("XRayClient", "GetRetrievedTracesGraphCommand")
|
|
1820
|
-
.sc(GetRetrievedTracesGraph)
|
|
1835
|
+
.sc(GetRetrievedTracesGraph$)
|
|
1821
1836
|
.build() {
|
|
1822
1837
|
}
|
|
1823
1838
|
|
|
@@ -1829,7 +1844,7 @@ class GetSamplingRulesCommand extends smithyClient.Command
|
|
|
1829
1844
|
})
|
|
1830
1845
|
.s("AWSXRay", "GetSamplingRules", {})
|
|
1831
1846
|
.n("XRayClient", "GetSamplingRulesCommand")
|
|
1832
|
-
.sc(GetSamplingRules)
|
|
1847
|
+
.sc(GetSamplingRules$)
|
|
1833
1848
|
.build() {
|
|
1834
1849
|
}
|
|
1835
1850
|
|
|
@@ -1841,7 +1856,7 @@ class GetSamplingStatisticSummariesCommand extends smithyClient.Command
|
|
|
1841
1856
|
})
|
|
1842
1857
|
.s("AWSXRay", "GetSamplingStatisticSummaries", {})
|
|
1843
1858
|
.n("XRayClient", "GetSamplingStatisticSummariesCommand")
|
|
1844
|
-
.sc(GetSamplingStatisticSummaries)
|
|
1859
|
+
.sc(GetSamplingStatisticSummaries$)
|
|
1845
1860
|
.build() {
|
|
1846
1861
|
}
|
|
1847
1862
|
|
|
@@ -1853,7 +1868,7 @@ class GetSamplingTargetsCommand extends smithyClient.Command
|
|
|
1853
1868
|
})
|
|
1854
1869
|
.s("AWSXRay", "GetSamplingTargets", {})
|
|
1855
1870
|
.n("XRayClient", "GetSamplingTargetsCommand")
|
|
1856
|
-
.sc(GetSamplingTargets)
|
|
1871
|
+
.sc(GetSamplingTargets$)
|
|
1857
1872
|
.build() {
|
|
1858
1873
|
}
|
|
1859
1874
|
|
|
@@ -1865,7 +1880,7 @@ class GetServiceGraphCommand extends smithyClient.Command
|
|
|
1865
1880
|
})
|
|
1866
1881
|
.s("AWSXRay", "GetServiceGraph", {})
|
|
1867
1882
|
.n("XRayClient", "GetServiceGraphCommand")
|
|
1868
|
-
.sc(GetServiceGraph)
|
|
1883
|
+
.sc(GetServiceGraph$)
|
|
1869
1884
|
.build() {
|
|
1870
1885
|
}
|
|
1871
1886
|
|
|
@@ -1877,7 +1892,7 @@ class GetTimeSeriesServiceStatisticsCommand extends smithyClient.Command
|
|
|
1877
1892
|
})
|
|
1878
1893
|
.s("AWSXRay", "GetTimeSeriesServiceStatistics", {})
|
|
1879
1894
|
.n("XRayClient", "GetTimeSeriesServiceStatisticsCommand")
|
|
1880
|
-
.sc(GetTimeSeriesServiceStatistics)
|
|
1895
|
+
.sc(GetTimeSeriesServiceStatistics$)
|
|
1881
1896
|
.build() {
|
|
1882
1897
|
}
|
|
1883
1898
|
|
|
@@ -1889,7 +1904,7 @@ class GetTraceGraphCommand extends smithyClient.Command
|
|
|
1889
1904
|
})
|
|
1890
1905
|
.s("AWSXRay", "GetTraceGraph", {})
|
|
1891
1906
|
.n("XRayClient", "GetTraceGraphCommand")
|
|
1892
|
-
.sc(GetTraceGraph)
|
|
1907
|
+
.sc(GetTraceGraph$)
|
|
1893
1908
|
.build() {
|
|
1894
1909
|
}
|
|
1895
1910
|
|
|
@@ -1901,7 +1916,7 @@ class GetTraceSegmentDestinationCommand extends smithyClient.Command
|
|
|
1901
1916
|
})
|
|
1902
1917
|
.s("AWSXRay", "GetTraceSegmentDestination", {})
|
|
1903
1918
|
.n("XRayClient", "GetTraceSegmentDestinationCommand")
|
|
1904
|
-
.sc(GetTraceSegmentDestination)
|
|
1919
|
+
.sc(GetTraceSegmentDestination$)
|
|
1905
1920
|
.build() {
|
|
1906
1921
|
}
|
|
1907
1922
|
|
|
@@ -1913,7 +1928,7 @@ class GetTraceSummariesCommand extends smithyClient.Command
|
|
|
1913
1928
|
})
|
|
1914
1929
|
.s("AWSXRay", "GetTraceSummaries", {})
|
|
1915
1930
|
.n("XRayClient", "GetTraceSummariesCommand")
|
|
1916
|
-
.sc(GetTraceSummaries)
|
|
1931
|
+
.sc(GetTraceSummaries$)
|
|
1917
1932
|
.build() {
|
|
1918
1933
|
}
|
|
1919
1934
|
|
|
@@ -1925,7 +1940,7 @@ class ListResourcePoliciesCommand extends smithyClient.Command
|
|
|
1925
1940
|
})
|
|
1926
1941
|
.s("AWSXRay", "ListResourcePolicies", {})
|
|
1927
1942
|
.n("XRayClient", "ListResourcePoliciesCommand")
|
|
1928
|
-
.sc(ListResourcePolicies)
|
|
1943
|
+
.sc(ListResourcePolicies$)
|
|
1929
1944
|
.build() {
|
|
1930
1945
|
}
|
|
1931
1946
|
|
|
@@ -1937,7 +1952,7 @@ class ListRetrievedTracesCommand extends smithyClient.Command
|
|
|
1937
1952
|
})
|
|
1938
1953
|
.s("AWSXRay", "ListRetrievedTraces", {})
|
|
1939
1954
|
.n("XRayClient", "ListRetrievedTracesCommand")
|
|
1940
|
-
.sc(ListRetrievedTraces)
|
|
1955
|
+
.sc(ListRetrievedTraces$)
|
|
1941
1956
|
.build() {
|
|
1942
1957
|
}
|
|
1943
1958
|
|
|
@@ -1949,7 +1964,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1949
1964
|
})
|
|
1950
1965
|
.s("AWSXRay", "ListTagsForResource", {})
|
|
1951
1966
|
.n("XRayClient", "ListTagsForResourceCommand")
|
|
1952
|
-
.sc(ListTagsForResource)
|
|
1967
|
+
.sc(ListTagsForResource$)
|
|
1953
1968
|
.build() {
|
|
1954
1969
|
}
|
|
1955
1970
|
|
|
@@ -1961,7 +1976,7 @@ class PutEncryptionConfigCommand extends smithyClient.Command
|
|
|
1961
1976
|
})
|
|
1962
1977
|
.s("AWSXRay", "PutEncryptionConfig", {})
|
|
1963
1978
|
.n("XRayClient", "PutEncryptionConfigCommand")
|
|
1964
|
-
.sc(PutEncryptionConfig)
|
|
1979
|
+
.sc(PutEncryptionConfig$)
|
|
1965
1980
|
.build() {
|
|
1966
1981
|
}
|
|
1967
1982
|
|
|
@@ -1973,7 +1988,7 @@ class PutResourcePolicyCommand extends smithyClient.Command
|
|
|
1973
1988
|
})
|
|
1974
1989
|
.s("AWSXRay", "PutResourcePolicy", {})
|
|
1975
1990
|
.n("XRayClient", "PutResourcePolicyCommand")
|
|
1976
|
-
.sc(PutResourcePolicy)
|
|
1991
|
+
.sc(PutResourcePolicy$)
|
|
1977
1992
|
.build() {
|
|
1978
1993
|
}
|
|
1979
1994
|
|
|
@@ -1985,7 +2000,7 @@ class PutTelemetryRecordsCommand extends smithyClient.Command
|
|
|
1985
2000
|
})
|
|
1986
2001
|
.s("AWSXRay", "PutTelemetryRecords", {})
|
|
1987
2002
|
.n("XRayClient", "PutTelemetryRecordsCommand")
|
|
1988
|
-
.sc(PutTelemetryRecords)
|
|
2003
|
+
.sc(PutTelemetryRecords$)
|
|
1989
2004
|
.build() {
|
|
1990
2005
|
}
|
|
1991
2006
|
|
|
@@ -1997,7 +2012,7 @@ class PutTraceSegmentsCommand extends smithyClient.Command
|
|
|
1997
2012
|
})
|
|
1998
2013
|
.s("AWSXRay", "PutTraceSegments", {})
|
|
1999
2014
|
.n("XRayClient", "PutTraceSegmentsCommand")
|
|
2000
|
-
.sc(PutTraceSegments)
|
|
2015
|
+
.sc(PutTraceSegments$)
|
|
2001
2016
|
.build() {
|
|
2002
2017
|
}
|
|
2003
2018
|
|
|
@@ -2009,7 +2024,7 @@ class StartTraceRetrievalCommand extends smithyClient.Command
|
|
|
2009
2024
|
})
|
|
2010
2025
|
.s("AWSXRay", "StartTraceRetrieval", {})
|
|
2011
2026
|
.n("XRayClient", "StartTraceRetrievalCommand")
|
|
2012
|
-
.sc(StartTraceRetrieval)
|
|
2027
|
+
.sc(StartTraceRetrieval$)
|
|
2013
2028
|
.build() {
|
|
2014
2029
|
}
|
|
2015
2030
|
|
|
@@ -2021,7 +2036,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2021
2036
|
})
|
|
2022
2037
|
.s("AWSXRay", "TagResource", {})
|
|
2023
2038
|
.n("XRayClient", "TagResourceCommand")
|
|
2024
|
-
.sc(TagResource)
|
|
2039
|
+
.sc(TagResource$)
|
|
2025
2040
|
.build() {
|
|
2026
2041
|
}
|
|
2027
2042
|
|
|
@@ -2033,7 +2048,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2033
2048
|
})
|
|
2034
2049
|
.s("AWSXRay", "UntagResource", {})
|
|
2035
2050
|
.n("XRayClient", "UntagResourceCommand")
|
|
2036
|
-
.sc(UntagResource)
|
|
2051
|
+
.sc(UntagResource$)
|
|
2037
2052
|
.build() {
|
|
2038
2053
|
}
|
|
2039
2054
|
|
|
@@ -2045,7 +2060,7 @@ class UpdateGroupCommand extends smithyClient.Command
|
|
|
2045
2060
|
})
|
|
2046
2061
|
.s("AWSXRay", "UpdateGroup", {})
|
|
2047
2062
|
.n("XRayClient", "UpdateGroupCommand")
|
|
2048
|
-
.sc(UpdateGroup)
|
|
2063
|
+
.sc(UpdateGroup$)
|
|
2049
2064
|
.build() {
|
|
2050
2065
|
}
|
|
2051
2066
|
|
|
@@ -2057,7 +2072,7 @@ class UpdateIndexingRuleCommand extends smithyClient.Command
|
|
|
2057
2072
|
})
|
|
2058
2073
|
.s("AWSXRay", "UpdateIndexingRule", {})
|
|
2059
2074
|
.n("XRayClient", "UpdateIndexingRuleCommand")
|
|
2060
|
-
.sc(UpdateIndexingRule)
|
|
2075
|
+
.sc(UpdateIndexingRule$)
|
|
2061
2076
|
.build() {
|
|
2062
2077
|
}
|
|
2063
2078
|
|
|
@@ -2069,7 +2084,7 @@ class UpdateSamplingRuleCommand extends smithyClient.Command
|
|
|
2069
2084
|
})
|
|
2070
2085
|
.s("AWSXRay", "UpdateSamplingRule", {})
|
|
2071
2086
|
.n("XRayClient", "UpdateSamplingRuleCommand")
|
|
2072
|
-
.sc(UpdateSamplingRule)
|
|
2087
|
+
.sc(UpdateSamplingRule$)
|
|
2073
2088
|
.build() {
|
|
2074
2089
|
}
|
|
2075
2090
|
|
|
@@ -2081,7 +2096,7 @@ class UpdateTraceSegmentDestinationCommand extends smithyClient.Command
|
|
|
2081
2096
|
})
|
|
2082
2097
|
.s("AWSXRay", "UpdateTraceSegmentDestination", {})
|
|
2083
2098
|
.n("XRayClient", "UpdateTraceSegmentDestinationCommand")
|
|
2084
|
-
.sc(UpdateTraceSegmentDestination)
|
|
2099
|
+
.sc(UpdateTraceSegmentDestination$)
|
|
2085
2100
|
.build() {
|
|
2086
2101
|
}
|
|
2087
2102
|
|
|
@@ -2206,67 +2221,259 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2206
2221
|
enumerable: true,
|
|
2207
2222
|
get: function () { return smithyClient.Client; }
|
|
2208
2223
|
});
|
|
2224
|
+
exports.Alias$ = Alias$;
|
|
2225
|
+
exports.AnnotationValue$ = AnnotationValue$;
|
|
2226
|
+
exports.AnomalousService$ = AnomalousService$;
|
|
2227
|
+
exports.AvailabilityZoneDetail$ = AvailabilityZoneDetail$;
|
|
2228
|
+
exports.BackendConnectionErrors$ = BackendConnectionErrors$;
|
|
2229
|
+
exports.BatchGetTraces$ = BatchGetTraces$;
|
|
2209
2230
|
exports.BatchGetTracesCommand = BatchGetTracesCommand;
|
|
2231
|
+
exports.BatchGetTracesRequest$ = BatchGetTracesRequest$;
|
|
2232
|
+
exports.BatchGetTracesResult$ = BatchGetTracesResult$;
|
|
2233
|
+
exports.CancelTraceRetrieval$ = CancelTraceRetrieval$;
|
|
2210
2234
|
exports.CancelTraceRetrievalCommand = CancelTraceRetrievalCommand;
|
|
2235
|
+
exports.CancelTraceRetrievalRequest$ = CancelTraceRetrievalRequest$;
|
|
2236
|
+
exports.CancelTraceRetrievalResult$ = CancelTraceRetrievalResult$;
|
|
2237
|
+
exports.CreateGroup$ = CreateGroup$;
|
|
2211
2238
|
exports.CreateGroupCommand = CreateGroupCommand;
|
|
2239
|
+
exports.CreateGroupRequest$ = CreateGroupRequest$;
|
|
2240
|
+
exports.CreateGroupResult$ = CreateGroupResult$;
|
|
2241
|
+
exports.CreateSamplingRule$ = CreateSamplingRule$;
|
|
2212
2242
|
exports.CreateSamplingRuleCommand = CreateSamplingRuleCommand;
|
|
2243
|
+
exports.CreateSamplingRuleRequest$ = CreateSamplingRuleRequest$;
|
|
2244
|
+
exports.CreateSamplingRuleResult$ = CreateSamplingRuleResult$;
|
|
2245
|
+
exports.DeleteGroup$ = DeleteGroup$;
|
|
2213
2246
|
exports.DeleteGroupCommand = DeleteGroupCommand;
|
|
2247
|
+
exports.DeleteGroupRequest$ = DeleteGroupRequest$;
|
|
2248
|
+
exports.DeleteGroupResult$ = DeleteGroupResult$;
|
|
2249
|
+
exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
|
|
2214
2250
|
exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
|
|
2251
|
+
exports.DeleteResourcePolicyRequest$ = DeleteResourcePolicyRequest$;
|
|
2252
|
+
exports.DeleteResourcePolicyResult$ = DeleteResourcePolicyResult$;
|
|
2253
|
+
exports.DeleteSamplingRule$ = DeleteSamplingRule$;
|
|
2215
2254
|
exports.DeleteSamplingRuleCommand = DeleteSamplingRuleCommand;
|
|
2255
|
+
exports.DeleteSamplingRuleRequest$ = DeleteSamplingRuleRequest$;
|
|
2256
|
+
exports.DeleteSamplingRuleResult$ = DeleteSamplingRuleResult$;
|
|
2257
|
+
exports.Edge$ = Edge$;
|
|
2258
|
+
exports.EdgeStatistics$ = EdgeStatistics$;
|
|
2259
|
+
exports.EncryptionConfig$ = EncryptionConfig$;
|
|
2216
2260
|
exports.EncryptionStatus = EncryptionStatus;
|
|
2217
2261
|
exports.EncryptionType = EncryptionType;
|
|
2262
|
+
exports.ErrorRootCause$ = ErrorRootCause$;
|
|
2263
|
+
exports.ErrorRootCauseEntity$ = ErrorRootCauseEntity$;
|
|
2264
|
+
exports.ErrorRootCauseService$ = ErrorRootCauseService$;
|
|
2265
|
+
exports.ErrorStatistics$ = ErrorStatistics$;
|
|
2266
|
+
exports.FaultRootCause$ = FaultRootCause$;
|
|
2267
|
+
exports.FaultRootCauseEntity$ = FaultRootCauseEntity$;
|
|
2268
|
+
exports.FaultRootCauseService$ = FaultRootCauseService$;
|
|
2269
|
+
exports.FaultStatistics$ = FaultStatistics$;
|
|
2270
|
+
exports.ForecastStatistics$ = ForecastStatistics$;
|
|
2271
|
+
exports.GetEncryptionConfig$ = GetEncryptionConfig$;
|
|
2218
2272
|
exports.GetEncryptionConfigCommand = GetEncryptionConfigCommand;
|
|
2273
|
+
exports.GetEncryptionConfigRequest$ = GetEncryptionConfigRequest$;
|
|
2274
|
+
exports.GetEncryptionConfigResult$ = GetEncryptionConfigResult$;
|
|
2275
|
+
exports.GetGroup$ = GetGroup$;
|
|
2219
2276
|
exports.GetGroupCommand = GetGroupCommand;
|
|
2277
|
+
exports.GetGroupRequest$ = GetGroupRequest$;
|
|
2278
|
+
exports.GetGroupResult$ = GetGroupResult$;
|
|
2279
|
+
exports.GetGroups$ = GetGroups$;
|
|
2220
2280
|
exports.GetGroupsCommand = GetGroupsCommand;
|
|
2281
|
+
exports.GetGroupsRequest$ = GetGroupsRequest$;
|
|
2282
|
+
exports.GetGroupsResult$ = GetGroupsResult$;
|
|
2283
|
+
exports.GetIndexingRules$ = GetIndexingRules$;
|
|
2221
2284
|
exports.GetIndexingRulesCommand = GetIndexingRulesCommand;
|
|
2285
|
+
exports.GetIndexingRulesRequest$ = GetIndexingRulesRequest$;
|
|
2286
|
+
exports.GetIndexingRulesResult$ = GetIndexingRulesResult$;
|
|
2287
|
+
exports.GetInsight$ = GetInsight$;
|
|
2222
2288
|
exports.GetInsightCommand = GetInsightCommand;
|
|
2289
|
+
exports.GetInsightEvents$ = GetInsightEvents$;
|
|
2223
2290
|
exports.GetInsightEventsCommand = GetInsightEventsCommand;
|
|
2291
|
+
exports.GetInsightEventsRequest$ = GetInsightEventsRequest$;
|
|
2292
|
+
exports.GetInsightEventsResult$ = GetInsightEventsResult$;
|
|
2293
|
+
exports.GetInsightImpactGraph$ = GetInsightImpactGraph$;
|
|
2224
2294
|
exports.GetInsightImpactGraphCommand = GetInsightImpactGraphCommand;
|
|
2295
|
+
exports.GetInsightImpactGraphRequest$ = GetInsightImpactGraphRequest$;
|
|
2296
|
+
exports.GetInsightImpactGraphResult$ = GetInsightImpactGraphResult$;
|
|
2297
|
+
exports.GetInsightRequest$ = GetInsightRequest$;
|
|
2298
|
+
exports.GetInsightResult$ = GetInsightResult$;
|
|
2299
|
+
exports.GetInsightSummaries$ = GetInsightSummaries$;
|
|
2225
2300
|
exports.GetInsightSummariesCommand = GetInsightSummariesCommand;
|
|
2301
|
+
exports.GetInsightSummariesRequest$ = GetInsightSummariesRequest$;
|
|
2302
|
+
exports.GetInsightSummariesResult$ = GetInsightSummariesResult$;
|
|
2303
|
+
exports.GetRetrievedTracesGraph$ = GetRetrievedTracesGraph$;
|
|
2226
2304
|
exports.GetRetrievedTracesGraphCommand = GetRetrievedTracesGraphCommand;
|
|
2305
|
+
exports.GetRetrievedTracesGraphRequest$ = GetRetrievedTracesGraphRequest$;
|
|
2306
|
+
exports.GetRetrievedTracesGraphResult$ = GetRetrievedTracesGraphResult$;
|
|
2307
|
+
exports.GetSamplingRules$ = GetSamplingRules$;
|
|
2227
2308
|
exports.GetSamplingRulesCommand = GetSamplingRulesCommand;
|
|
2309
|
+
exports.GetSamplingRulesRequest$ = GetSamplingRulesRequest$;
|
|
2310
|
+
exports.GetSamplingRulesResult$ = GetSamplingRulesResult$;
|
|
2311
|
+
exports.GetSamplingStatisticSummaries$ = GetSamplingStatisticSummaries$;
|
|
2228
2312
|
exports.GetSamplingStatisticSummariesCommand = GetSamplingStatisticSummariesCommand;
|
|
2313
|
+
exports.GetSamplingStatisticSummariesRequest$ = GetSamplingStatisticSummariesRequest$;
|
|
2314
|
+
exports.GetSamplingStatisticSummariesResult$ = GetSamplingStatisticSummariesResult$;
|
|
2315
|
+
exports.GetSamplingTargets$ = GetSamplingTargets$;
|
|
2229
2316
|
exports.GetSamplingTargetsCommand = GetSamplingTargetsCommand;
|
|
2317
|
+
exports.GetSamplingTargetsRequest$ = GetSamplingTargetsRequest$;
|
|
2318
|
+
exports.GetSamplingTargetsResult$ = GetSamplingTargetsResult$;
|
|
2319
|
+
exports.GetServiceGraph$ = GetServiceGraph$;
|
|
2230
2320
|
exports.GetServiceGraphCommand = GetServiceGraphCommand;
|
|
2321
|
+
exports.GetServiceGraphRequest$ = GetServiceGraphRequest$;
|
|
2322
|
+
exports.GetServiceGraphResult$ = GetServiceGraphResult$;
|
|
2323
|
+
exports.GetTimeSeriesServiceStatistics$ = GetTimeSeriesServiceStatistics$;
|
|
2231
2324
|
exports.GetTimeSeriesServiceStatisticsCommand = GetTimeSeriesServiceStatisticsCommand;
|
|
2325
|
+
exports.GetTimeSeriesServiceStatisticsRequest$ = GetTimeSeriesServiceStatisticsRequest$;
|
|
2326
|
+
exports.GetTimeSeriesServiceStatisticsResult$ = GetTimeSeriesServiceStatisticsResult$;
|
|
2327
|
+
exports.GetTraceGraph$ = GetTraceGraph$;
|
|
2232
2328
|
exports.GetTraceGraphCommand = GetTraceGraphCommand;
|
|
2329
|
+
exports.GetTraceGraphRequest$ = GetTraceGraphRequest$;
|
|
2330
|
+
exports.GetTraceGraphResult$ = GetTraceGraphResult$;
|
|
2331
|
+
exports.GetTraceSegmentDestination$ = GetTraceSegmentDestination$;
|
|
2233
2332
|
exports.GetTraceSegmentDestinationCommand = GetTraceSegmentDestinationCommand;
|
|
2333
|
+
exports.GetTraceSegmentDestinationRequest$ = GetTraceSegmentDestinationRequest$;
|
|
2334
|
+
exports.GetTraceSegmentDestinationResult$ = GetTraceSegmentDestinationResult$;
|
|
2335
|
+
exports.GetTraceSummaries$ = GetTraceSummaries$;
|
|
2234
2336
|
exports.GetTraceSummariesCommand = GetTraceSummariesCommand;
|
|
2337
|
+
exports.GetTraceSummariesRequest$ = GetTraceSummariesRequest$;
|
|
2338
|
+
exports.GetTraceSummariesResult$ = GetTraceSummariesResult$;
|
|
2339
|
+
exports.GraphLink$ = GraphLink$;
|
|
2340
|
+
exports.Group$ = Group$;
|
|
2341
|
+
exports.GroupSummary$ = GroupSummary$;
|
|
2342
|
+
exports.HistogramEntry$ = HistogramEntry$;
|
|
2343
|
+
exports.Http$ = Http$;
|
|
2344
|
+
exports.IndexingRule$ = IndexingRule$;
|
|
2345
|
+
exports.IndexingRuleValue$ = IndexingRuleValue$;
|
|
2346
|
+
exports.IndexingRuleValueUpdate$ = IndexingRuleValueUpdate$;
|
|
2347
|
+
exports.Insight$ = Insight$;
|
|
2235
2348
|
exports.InsightCategory = InsightCategory;
|
|
2349
|
+
exports.InsightEvent$ = InsightEvent$;
|
|
2350
|
+
exports.InsightImpactGraphEdge$ = InsightImpactGraphEdge$;
|
|
2351
|
+
exports.InsightImpactGraphService$ = InsightImpactGraphService$;
|
|
2236
2352
|
exports.InsightState = InsightState;
|
|
2237
|
-
exports.
|
|
2238
|
-
exports.
|
|
2353
|
+
exports.InsightSummary$ = InsightSummary$;
|
|
2354
|
+
exports.InsightsConfiguration$ = InsightsConfiguration$;
|
|
2355
|
+
exports.InstanceIdDetail$ = InstanceIdDetail$;
|
|
2356
|
+
exports.InvalidPolicyRevisionIdException = InvalidPolicyRevisionIdException;
|
|
2357
|
+
exports.InvalidPolicyRevisionIdException$ = InvalidPolicyRevisionIdException$;
|
|
2358
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
2359
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
2360
|
+
exports.ListResourcePolicies$ = ListResourcePolicies$;
|
|
2239
2361
|
exports.ListResourcePoliciesCommand = ListResourcePoliciesCommand;
|
|
2362
|
+
exports.ListResourcePoliciesRequest$ = ListResourcePoliciesRequest$;
|
|
2363
|
+
exports.ListResourcePoliciesResult$ = ListResourcePoliciesResult$;
|
|
2364
|
+
exports.ListRetrievedTraces$ = ListRetrievedTraces$;
|
|
2240
2365
|
exports.ListRetrievedTracesCommand = ListRetrievedTracesCommand;
|
|
2366
|
+
exports.ListRetrievedTracesRequest$ = ListRetrievedTracesRequest$;
|
|
2367
|
+
exports.ListRetrievedTracesResult$ = ListRetrievedTracesResult$;
|
|
2368
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2241
2369
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2242
|
-
exports.
|
|
2243
|
-
exports.
|
|
2244
|
-
exports.
|
|
2245
|
-
exports.
|
|
2370
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2371
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2372
|
+
exports.LockoutPreventionException = LockoutPreventionException;
|
|
2373
|
+
exports.LockoutPreventionException$ = LockoutPreventionException$;
|
|
2374
|
+
exports.MalformedPolicyDocumentException = MalformedPolicyDocumentException;
|
|
2375
|
+
exports.MalformedPolicyDocumentException$ = MalformedPolicyDocumentException$;
|
|
2376
|
+
exports.PolicyCountLimitExceededException = PolicyCountLimitExceededException;
|
|
2377
|
+
exports.PolicyCountLimitExceededException$ = PolicyCountLimitExceededException$;
|
|
2378
|
+
exports.PolicySizeLimitExceededException = PolicySizeLimitExceededException;
|
|
2379
|
+
exports.PolicySizeLimitExceededException$ = PolicySizeLimitExceededException$;
|
|
2380
|
+
exports.ProbabilisticRuleValue$ = ProbabilisticRuleValue$;
|
|
2381
|
+
exports.ProbabilisticRuleValueUpdate$ = ProbabilisticRuleValueUpdate$;
|
|
2382
|
+
exports.PutEncryptionConfig$ = PutEncryptionConfig$;
|
|
2246
2383
|
exports.PutEncryptionConfigCommand = PutEncryptionConfigCommand;
|
|
2384
|
+
exports.PutEncryptionConfigRequest$ = PutEncryptionConfigRequest$;
|
|
2385
|
+
exports.PutEncryptionConfigResult$ = PutEncryptionConfigResult$;
|
|
2386
|
+
exports.PutResourcePolicy$ = PutResourcePolicy$;
|
|
2247
2387
|
exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
|
|
2388
|
+
exports.PutResourcePolicyRequest$ = PutResourcePolicyRequest$;
|
|
2389
|
+
exports.PutResourcePolicyResult$ = PutResourcePolicyResult$;
|
|
2390
|
+
exports.PutTelemetryRecords$ = PutTelemetryRecords$;
|
|
2248
2391
|
exports.PutTelemetryRecordsCommand = PutTelemetryRecordsCommand;
|
|
2392
|
+
exports.PutTelemetryRecordsRequest$ = PutTelemetryRecordsRequest$;
|
|
2393
|
+
exports.PutTelemetryRecordsResult$ = PutTelemetryRecordsResult$;
|
|
2394
|
+
exports.PutTraceSegments$ = PutTraceSegments$;
|
|
2249
2395
|
exports.PutTraceSegmentsCommand = PutTraceSegmentsCommand;
|
|
2250
|
-
exports.
|
|
2396
|
+
exports.PutTraceSegmentsRequest$ = PutTraceSegmentsRequest$;
|
|
2397
|
+
exports.PutTraceSegmentsResult$ = PutTraceSegmentsResult$;
|
|
2398
|
+
exports.RequestImpactStatistics$ = RequestImpactStatistics$;
|
|
2399
|
+
exports.ResourceARNDetail$ = ResourceARNDetail$;
|
|
2400
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2401
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2402
|
+
exports.ResourcePolicy$ = ResourcePolicy$;
|
|
2403
|
+
exports.ResponseTimeRootCause$ = ResponseTimeRootCause$;
|
|
2404
|
+
exports.ResponseTimeRootCauseEntity$ = ResponseTimeRootCauseEntity$;
|
|
2405
|
+
exports.ResponseTimeRootCauseService$ = ResponseTimeRootCauseService$;
|
|
2251
2406
|
exports.RetrievalStatus = RetrievalStatus;
|
|
2252
|
-
exports.
|
|
2407
|
+
exports.RetrievedService$ = RetrievedService$;
|
|
2408
|
+
exports.RetrievedTrace$ = RetrievedTrace$;
|
|
2409
|
+
exports.RootCauseException$ = RootCauseException$;
|
|
2410
|
+
exports.RuleLimitExceededException = RuleLimitExceededException;
|
|
2411
|
+
exports.RuleLimitExceededException$ = RuleLimitExceededException$;
|
|
2412
|
+
exports.SamplingBoost$ = SamplingBoost$;
|
|
2413
|
+
exports.SamplingBoostStatisticsDocument$ = SamplingBoostStatisticsDocument$;
|
|
2414
|
+
exports.SamplingRateBoost$ = SamplingRateBoost$;
|
|
2415
|
+
exports.SamplingRule$ = SamplingRule$;
|
|
2416
|
+
exports.SamplingRuleRecord$ = SamplingRuleRecord$;
|
|
2417
|
+
exports.SamplingRuleUpdate$ = SamplingRuleUpdate$;
|
|
2418
|
+
exports.SamplingStatisticSummary$ = SamplingStatisticSummary$;
|
|
2419
|
+
exports.SamplingStatisticsDocument$ = SamplingStatisticsDocument$;
|
|
2420
|
+
exports.SamplingStrategy$ = SamplingStrategy$;
|
|
2253
2421
|
exports.SamplingStrategyName = SamplingStrategyName;
|
|
2422
|
+
exports.SamplingTargetDocument$ = SamplingTargetDocument$;
|
|
2423
|
+
exports.Segment$ = Segment$;
|
|
2424
|
+
exports.Service$ = Service$;
|
|
2425
|
+
exports.ServiceId$ = ServiceId$;
|
|
2426
|
+
exports.ServiceStatistics$ = ServiceStatistics$;
|
|
2427
|
+
exports.Span$ = Span$;
|
|
2428
|
+
exports.StartTraceRetrieval$ = StartTraceRetrieval$;
|
|
2254
2429
|
exports.StartTraceRetrievalCommand = StartTraceRetrievalCommand;
|
|
2430
|
+
exports.StartTraceRetrievalRequest$ = StartTraceRetrievalRequest$;
|
|
2431
|
+
exports.StartTraceRetrievalResult$ = StartTraceRetrievalResult$;
|
|
2432
|
+
exports.Tag$ = Tag$;
|
|
2433
|
+
exports.TagResource$ = TagResource$;
|
|
2255
2434
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2256
|
-
exports.
|
|
2435
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2436
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2437
|
+
exports.TelemetryRecord$ = TelemetryRecord$;
|
|
2438
|
+
exports.ThrottledException = ThrottledException;
|
|
2439
|
+
exports.ThrottledException$ = ThrottledException$;
|
|
2257
2440
|
exports.TimeRangeType = TimeRangeType;
|
|
2258
|
-
exports.
|
|
2441
|
+
exports.TimeSeriesServiceStatistics$ = TimeSeriesServiceStatistics$;
|
|
2442
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
2443
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
2444
|
+
exports.Trace$ = Trace$;
|
|
2259
2445
|
exports.TraceFormatType = TraceFormatType;
|
|
2260
2446
|
exports.TraceSegmentDestination = TraceSegmentDestination;
|
|
2261
2447
|
exports.TraceSegmentDestinationStatus = TraceSegmentDestinationStatus;
|
|
2448
|
+
exports.TraceSummary$ = TraceSummary$;
|
|
2449
|
+
exports.TraceUser$ = TraceUser$;
|
|
2450
|
+
exports.UnprocessedStatistics$ = UnprocessedStatistics$;
|
|
2451
|
+
exports.UnprocessedTraceSegment$ = UnprocessedTraceSegment$;
|
|
2452
|
+
exports.UntagResource$ = UntagResource$;
|
|
2262
2453
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2454
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2455
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2456
|
+
exports.UpdateGroup$ = UpdateGroup$;
|
|
2263
2457
|
exports.UpdateGroupCommand = UpdateGroupCommand;
|
|
2458
|
+
exports.UpdateGroupRequest$ = UpdateGroupRequest$;
|
|
2459
|
+
exports.UpdateGroupResult$ = UpdateGroupResult$;
|
|
2460
|
+
exports.UpdateIndexingRule$ = UpdateIndexingRule$;
|
|
2264
2461
|
exports.UpdateIndexingRuleCommand = UpdateIndexingRuleCommand;
|
|
2462
|
+
exports.UpdateIndexingRuleRequest$ = UpdateIndexingRuleRequest$;
|
|
2463
|
+
exports.UpdateIndexingRuleResult$ = UpdateIndexingRuleResult$;
|
|
2464
|
+
exports.UpdateSamplingRule$ = UpdateSamplingRule$;
|
|
2265
2465
|
exports.UpdateSamplingRuleCommand = UpdateSamplingRuleCommand;
|
|
2466
|
+
exports.UpdateSamplingRuleRequest$ = UpdateSamplingRuleRequest$;
|
|
2467
|
+
exports.UpdateSamplingRuleResult$ = UpdateSamplingRuleResult$;
|
|
2468
|
+
exports.UpdateTraceSegmentDestination$ = UpdateTraceSegmentDestination$;
|
|
2266
2469
|
exports.UpdateTraceSegmentDestinationCommand = UpdateTraceSegmentDestinationCommand;
|
|
2470
|
+
exports.UpdateTraceSegmentDestinationRequest$ = UpdateTraceSegmentDestinationRequest$;
|
|
2471
|
+
exports.UpdateTraceSegmentDestinationResult$ = UpdateTraceSegmentDestinationResult$;
|
|
2472
|
+
exports.ValueWithServiceIds$ = ValueWithServiceIds$;
|
|
2267
2473
|
exports.XRay = XRay;
|
|
2268
2474
|
exports.XRayClient = XRayClient;
|
|
2269
|
-
exports.XRayServiceException = XRayServiceException
|
|
2475
|
+
exports.XRayServiceException = XRayServiceException;
|
|
2476
|
+
exports.XRayServiceException$ = XRayServiceException$;
|
|
2270
2477
|
exports.paginateBatchGetTraces = paginateBatchGetTraces;
|
|
2271
2478
|
exports.paginateGetGroups = paginateGetGroups;
|
|
2272
2479
|
exports.paginateGetInsightEvents = paginateGetInsightEvents;
|