@aws-sdk/client-xray 3.696.0 → 3.699.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/README.md +64 -0
- package/dist-cjs/index.js +506 -24
- package/dist-es/XRay.js +16 -0
- package/dist-es/commands/CancelTraceRetrievalCommand.js +22 -0
- package/dist-es/commands/GetIndexingRulesCommand.js +22 -0
- package/dist-es/commands/GetRetrievedTracesGraphCommand.js +22 -0
- package/dist-es/commands/GetTraceSegmentDestinationCommand.js +22 -0
- package/dist-es/commands/ListRetrievedTracesCommand.js +22 -0
- package/dist-es/commands/StartTraceRetrievalCommand.js +22 -0
- package/dist-es/commands/UpdateIndexingRuleCommand.js +22 -0
- package/dist-es/commands/UpdateTraceSegmentDestinationCommand.js +22 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +50 -14
- package/dist-es/protocols/Aws_restJson1.js +294 -4
- package/dist-types/XRay.d.ts +59 -0
- package/dist-types/XRayClient.d.ts +10 -2
- package/dist-types/commands/BatchGetTracesCommand.d.ts +4 -1
- package/dist-types/commands/CancelTraceRetrievalCommand.d.ts +81 -0
- package/dist-types/commands/GetIndexingRulesCommand.d.ts +91 -0
- package/dist-types/commands/GetRetrievedTracesGraphCommand.d.ts +185 -0
- package/dist-types/commands/GetTraceSegmentDestinationCommand.d.ts +78 -0
- package/dist-types/commands/GetTraceSummariesCommand.d.ts +2 -2
- package/dist-types/commands/ListRetrievedTracesCommand.d.ts +104 -0
- package/dist-types/commands/PutTraceSegmentsCommand.d.ts +14 -4
- package/dist-types/commands/StartTraceRetrievalCommand.d.ts +90 -0
- package/dist-types/commands/UpdateIndexingRuleCommand.d.ts +98 -0
- package/dist-types/commands/UpdateTraceSegmentDestinationCommand.d.ts +80 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +826 -256
- package/dist-types/protocols/Aws_restJson1.d.ts +72 -0
- package/dist-types/ts3.4/XRay.d.ts +139 -0
- package/dist-types/ts3.4/XRayClient.d.ts +50 -2
- package/dist-types/ts3.4/commands/CancelTraceRetrievalCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetIndexingRulesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetRetrievedTracesGraphCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTraceSegmentDestinationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRetrievedTracesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartTraceRetrievalCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateIndexingRuleCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTraceSegmentDestinationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +213 -61
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +96 -0
- package/package.json +4 -4
|
@@ -92,6 +92,19 @@ export declare class ThrottledException extends __BaseException {
|
|
|
92
92
|
Message?: string | undefined;
|
|
93
93
|
constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
|
|
94
94
|
}
|
|
95
|
+
export interface CancelTraceRetrievalRequest {
|
|
96
|
+
RetrievalToken: string | undefined;
|
|
97
|
+
}
|
|
98
|
+
export interface CancelTraceRetrievalResult {}
|
|
99
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
100
|
+
readonly name: "ResourceNotFoundException";
|
|
101
|
+
readonly $fault: "client";
|
|
102
|
+
Message?: string | undefined;
|
|
103
|
+
ResourceName?: string | undefined;
|
|
104
|
+
constructor(
|
|
105
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
106
|
+
);
|
|
107
|
+
}
|
|
95
108
|
export interface InsightsConfiguration {
|
|
96
109
|
InsightsEnabled?: boolean | undefined;
|
|
97
110
|
NotificationsEnabled?: boolean | undefined;
|
|
@@ -219,6 +232,40 @@ export interface GetGroupsResult {
|
|
|
219
232
|
Groups?: GroupSummary[] | undefined;
|
|
220
233
|
NextToken?: string | undefined;
|
|
221
234
|
}
|
|
235
|
+
export interface GetIndexingRulesRequest {
|
|
236
|
+
NextToken?: string | undefined;
|
|
237
|
+
}
|
|
238
|
+
export interface ProbabilisticRuleValue {
|
|
239
|
+
DesiredSamplingPercentage: number | undefined;
|
|
240
|
+
ActualSamplingPercentage?: number | undefined;
|
|
241
|
+
}
|
|
242
|
+
export type IndexingRuleValue =
|
|
243
|
+
| IndexingRuleValue.ProbabilisticMember
|
|
244
|
+
| IndexingRuleValue.$UnknownMember;
|
|
245
|
+
export declare namespace IndexingRuleValue {
|
|
246
|
+
interface ProbabilisticMember {
|
|
247
|
+
Probabilistic: ProbabilisticRuleValue;
|
|
248
|
+
$unknown?: never;
|
|
249
|
+
}
|
|
250
|
+
interface $UnknownMember {
|
|
251
|
+
Probabilistic?: never;
|
|
252
|
+
$unknown: [string, any];
|
|
253
|
+
}
|
|
254
|
+
interface Visitor<T> {
|
|
255
|
+
Probabilistic: (value: ProbabilisticRuleValue) => T;
|
|
256
|
+
_: (name: string, value: any) => T;
|
|
257
|
+
}
|
|
258
|
+
const visit: <T>(value: IndexingRuleValue, visitor: Visitor<T>) => T;
|
|
259
|
+
}
|
|
260
|
+
export interface IndexingRule {
|
|
261
|
+
Name?: string | undefined;
|
|
262
|
+
ModifiedAt?: Date | undefined;
|
|
263
|
+
Rule?: IndexingRuleValue | undefined;
|
|
264
|
+
}
|
|
265
|
+
export interface GetIndexingRulesResult {
|
|
266
|
+
IndexingRules?: IndexingRule[] | undefined;
|
|
267
|
+
NextToken?: string | undefined;
|
|
268
|
+
}
|
|
222
269
|
export interface GetInsightRequest {
|
|
223
270
|
InsightId: string | undefined;
|
|
224
271
|
}
|
|
@@ -324,6 +371,86 @@ export interface GetInsightSummariesResult {
|
|
|
324
371
|
InsightSummaries?: InsightSummary[] | undefined;
|
|
325
372
|
NextToken?: string | undefined;
|
|
326
373
|
}
|
|
374
|
+
export interface GetRetrievedTracesGraphRequest {
|
|
375
|
+
RetrievalToken: string | undefined;
|
|
376
|
+
NextToken?: string | undefined;
|
|
377
|
+
}
|
|
378
|
+
export declare const RetrievalStatus: {
|
|
379
|
+
readonly CANCELLED: "CANCELLED";
|
|
380
|
+
readonly COMPLETE: "COMPLETE";
|
|
381
|
+
readonly FAILED: "FAILED";
|
|
382
|
+
readonly RUNNING: "RUNNING";
|
|
383
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
384
|
+
readonly TIMEOUT: "TIMEOUT";
|
|
385
|
+
};
|
|
386
|
+
export type RetrievalStatus =
|
|
387
|
+
(typeof RetrievalStatus)[keyof typeof RetrievalStatus];
|
|
388
|
+
export interface GraphLink {
|
|
389
|
+
ReferenceType?: string | undefined;
|
|
390
|
+
SourceTraceId?: string | undefined;
|
|
391
|
+
DestinationTraceIds?: string[] | undefined;
|
|
392
|
+
}
|
|
393
|
+
export interface HistogramEntry {
|
|
394
|
+
Value?: number | undefined;
|
|
395
|
+
Count?: number | undefined;
|
|
396
|
+
}
|
|
397
|
+
export interface ErrorStatistics {
|
|
398
|
+
ThrottleCount?: number | undefined;
|
|
399
|
+
OtherCount?: number | undefined;
|
|
400
|
+
TotalCount?: number | undefined;
|
|
401
|
+
}
|
|
402
|
+
export interface FaultStatistics {
|
|
403
|
+
OtherCount?: number | undefined;
|
|
404
|
+
TotalCount?: number | undefined;
|
|
405
|
+
}
|
|
406
|
+
export interface EdgeStatistics {
|
|
407
|
+
OkCount?: number | undefined;
|
|
408
|
+
ErrorStatistics?: ErrorStatistics | undefined;
|
|
409
|
+
FaultStatistics?: FaultStatistics | undefined;
|
|
410
|
+
TotalCount?: number | undefined;
|
|
411
|
+
TotalResponseTime?: number | undefined;
|
|
412
|
+
}
|
|
413
|
+
export interface Edge {
|
|
414
|
+
ReferenceId?: number | undefined;
|
|
415
|
+
StartTime?: Date | undefined;
|
|
416
|
+
EndTime?: Date | undefined;
|
|
417
|
+
SummaryStatistics?: EdgeStatistics | undefined;
|
|
418
|
+
ResponseTimeHistogram?: HistogramEntry[] | undefined;
|
|
419
|
+
Aliases?: Alias[] | undefined;
|
|
420
|
+
EdgeType?: string | undefined;
|
|
421
|
+
ReceivedEventAgeHistogram?: HistogramEntry[] | undefined;
|
|
422
|
+
}
|
|
423
|
+
export interface ServiceStatistics {
|
|
424
|
+
OkCount?: number | undefined;
|
|
425
|
+
ErrorStatistics?: ErrorStatistics | undefined;
|
|
426
|
+
FaultStatistics?: FaultStatistics | undefined;
|
|
427
|
+
TotalCount?: number | undefined;
|
|
428
|
+
TotalResponseTime?: number | undefined;
|
|
429
|
+
}
|
|
430
|
+
export interface Service {
|
|
431
|
+
ReferenceId?: number | undefined;
|
|
432
|
+
Name?: string | undefined;
|
|
433
|
+
Names?: string[] | undefined;
|
|
434
|
+
Root?: boolean | undefined;
|
|
435
|
+
AccountId?: string | undefined;
|
|
436
|
+
Type?: string | undefined;
|
|
437
|
+
State?: string | undefined;
|
|
438
|
+
StartTime?: Date | undefined;
|
|
439
|
+
EndTime?: Date | undefined;
|
|
440
|
+
Edges?: Edge[] | undefined;
|
|
441
|
+
SummaryStatistics?: ServiceStatistics | undefined;
|
|
442
|
+
DurationHistogram?: HistogramEntry[] | undefined;
|
|
443
|
+
ResponseTimeHistogram?: HistogramEntry[] | undefined;
|
|
444
|
+
}
|
|
445
|
+
export interface RetrievedService {
|
|
446
|
+
Service?: Service | undefined;
|
|
447
|
+
Links?: GraphLink[] | undefined;
|
|
448
|
+
}
|
|
449
|
+
export interface GetRetrievedTracesGraphResult {
|
|
450
|
+
RetrievalStatus?: RetrievalStatus | undefined;
|
|
451
|
+
Services?: RetrievedService[] | undefined;
|
|
452
|
+
NextToken?: string | undefined;
|
|
453
|
+
}
|
|
327
454
|
export interface GetSamplingRulesRequest {
|
|
328
455
|
NextToken?: string | undefined;
|
|
329
456
|
}
|
|
@@ -380,58 +507,6 @@ export interface GetServiceGraphRequest {
|
|
|
380
507
|
GroupARN?: string | undefined;
|
|
381
508
|
NextToken?: string | undefined;
|
|
382
509
|
}
|
|
383
|
-
export interface HistogramEntry {
|
|
384
|
-
Value?: number | undefined;
|
|
385
|
-
Count?: number | undefined;
|
|
386
|
-
}
|
|
387
|
-
export interface ErrorStatistics {
|
|
388
|
-
ThrottleCount?: number | undefined;
|
|
389
|
-
OtherCount?: number | undefined;
|
|
390
|
-
TotalCount?: number | undefined;
|
|
391
|
-
}
|
|
392
|
-
export interface FaultStatistics {
|
|
393
|
-
OtherCount?: number | undefined;
|
|
394
|
-
TotalCount?: number | undefined;
|
|
395
|
-
}
|
|
396
|
-
export interface EdgeStatistics {
|
|
397
|
-
OkCount?: number | undefined;
|
|
398
|
-
ErrorStatistics?: ErrorStatistics | undefined;
|
|
399
|
-
FaultStatistics?: FaultStatistics | undefined;
|
|
400
|
-
TotalCount?: number | undefined;
|
|
401
|
-
TotalResponseTime?: number | undefined;
|
|
402
|
-
}
|
|
403
|
-
export interface Edge {
|
|
404
|
-
ReferenceId?: number | undefined;
|
|
405
|
-
StartTime?: Date | undefined;
|
|
406
|
-
EndTime?: Date | undefined;
|
|
407
|
-
SummaryStatistics?: EdgeStatistics | undefined;
|
|
408
|
-
ResponseTimeHistogram?: HistogramEntry[] | undefined;
|
|
409
|
-
Aliases?: Alias[] | undefined;
|
|
410
|
-
EdgeType?: string | undefined;
|
|
411
|
-
ReceivedEventAgeHistogram?: HistogramEntry[] | undefined;
|
|
412
|
-
}
|
|
413
|
-
export interface ServiceStatistics {
|
|
414
|
-
OkCount?: number | undefined;
|
|
415
|
-
ErrorStatistics?: ErrorStatistics | undefined;
|
|
416
|
-
FaultStatistics?: FaultStatistics | undefined;
|
|
417
|
-
TotalCount?: number | undefined;
|
|
418
|
-
TotalResponseTime?: number | undefined;
|
|
419
|
-
}
|
|
420
|
-
export interface Service {
|
|
421
|
-
ReferenceId?: number | undefined;
|
|
422
|
-
Name?: string | undefined;
|
|
423
|
-
Names?: string[] | undefined;
|
|
424
|
-
Root?: boolean | undefined;
|
|
425
|
-
AccountId?: string | undefined;
|
|
426
|
-
Type?: string | undefined;
|
|
427
|
-
State?: string | undefined;
|
|
428
|
-
StartTime?: Date | undefined;
|
|
429
|
-
EndTime?: Date | undefined;
|
|
430
|
-
Edges?: Edge[] | undefined;
|
|
431
|
-
SummaryStatistics?: ServiceStatistics | undefined;
|
|
432
|
-
DurationHistogram?: HistogramEntry[] | undefined;
|
|
433
|
-
ResponseTimeHistogram?: HistogramEntry[] | undefined;
|
|
434
|
-
}
|
|
435
510
|
export interface GetServiceGraphResult {
|
|
436
511
|
StartTime?: Date | undefined;
|
|
437
512
|
EndTime?: Date | undefined;
|
|
@@ -473,6 +548,23 @@ export interface GetTraceGraphResult {
|
|
|
473
548
|
Services?: Service[] | undefined;
|
|
474
549
|
NextToken?: string | undefined;
|
|
475
550
|
}
|
|
551
|
+
export interface GetTraceSegmentDestinationRequest {}
|
|
552
|
+
export declare const TraceSegmentDestination: {
|
|
553
|
+
readonly CloudWatchLogs: "CloudWatchLogs";
|
|
554
|
+
readonly XRay: "XRay";
|
|
555
|
+
};
|
|
556
|
+
export type TraceSegmentDestination =
|
|
557
|
+
(typeof TraceSegmentDestination)[keyof typeof TraceSegmentDestination];
|
|
558
|
+
export declare const TraceSegmentDestinationStatus: {
|
|
559
|
+
readonly ACTIVE: "ACTIVE";
|
|
560
|
+
readonly PENDING: "PENDING";
|
|
561
|
+
};
|
|
562
|
+
export type TraceSegmentDestinationStatus =
|
|
563
|
+
(typeof TraceSegmentDestinationStatus)[keyof typeof TraceSegmentDestinationStatus];
|
|
564
|
+
export interface GetTraceSegmentDestinationResult {
|
|
565
|
+
Destination?: TraceSegmentDestination | undefined;
|
|
566
|
+
Status?: TraceSegmentDestinationStatus | undefined;
|
|
567
|
+
}
|
|
476
568
|
export declare const SamplingStrategyName: {
|
|
477
569
|
readonly FixedRate: "FixedRate";
|
|
478
570
|
readonly PartialScan: "PartialScan";
|
|
@@ -612,6 +704,32 @@ export interface ListResourcePoliciesResult {
|
|
|
612
704
|
ResourcePolicies?: ResourcePolicy[] | undefined;
|
|
613
705
|
NextToken?: string | undefined;
|
|
614
706
|
}
|
|
707
|
+
export declare const TraceFormatType: {
|
|
708
|
+
readonly OTEL: "OTEL";
|
|
709
|
+
readonly XRAY: "XRAY";
|
|
710
|
+
};
|
|
711
|
+
export type TraceFormatType =
|
|
712
|
+
(typeof TraceFormatType)[keyof typeof TraceFormatType];
|
|
713
|
+
export interface ListRetrievedTracesRequest {
|
|
714
|
+
RetrievalToken: string | undefined;
|
|
715
|
+
TraceFormat?: TraceFormatType | undefined;
|
|
716
|
+
NextToken?: string | undefined;
|
|
717
|
+
}
|
|
718
|
+
export interface Span {
|
|
719
|
+
Id?: string | undefined;
|
|
720
|
+
Document?: string | undefined;
|
|
721
|
+
}
|
|
722
|
+
export interface RetrievedTrace {
|
|
723
|
+
Id?: string | undefined;
|
|
724
|
+
Duration?: number | undefined;
|
|
725
|
+
Spans?: Span[] | undefined;
|
|
726
|
+
}
|
|
727
|
+
export interface ListRetrievedTracesResult {
|
|
728
|
+
RetrievalStatus?: RetrievalStatus | undefined;
|
|
729
|
+
TraceFormat?: TraceFormatType | undefined;
|
|
730
|
+
Traces?: RetrievedTrace[] | undefined;
|
|
731
|
+
NextToken?: string | undefined;
|
|
732
|
+
}
|
|
615
733
|
export interface ListTagsForResourceRequest {
|
|
616
734
|
ResourceARN: string | undefined;
|
|
617
735
|
NextToken?: string | undefined;
|
|
@@ -620,15 +738,6 @@ export interface ListTagsForResourceResponse {
|
|
|
620
738
|
Tags?: Tag[] | undefined;
|
|
621
739
|
NextToken?: string | undefined;
|
|
622
740
|
}
|
|
623
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
624
|
-
readonly name: "ResourceNotFoundException";
|
|
625
|
-
readonly $fault: "client";
|
|
626
|
-
Message?: string | undefined;
|
|
627
|
-
ResourceName?: string | undefined;
|
|
628
|
-
constructor(
|
|
629
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
630
|
-
);
|
|
631
|
-
}
|
|
632
741
|
export interface PutEncryptionConfigRequest {
|
|
633
742
|
KeyId?: string | undefined;
|
|
634
743
|
Type: EncryptionType | undefined;
|
|
@@ -720,6 +829,14 @@ export interface UnprocessedTraceSegment {
|
|
|
720
829
|
export interface PutTraceSegmentsResult {
|
|
721
830
|
UnprocessedTraceSegments?: UnprocessedTraceSegment[] | undefined;
|
|
722
831
|
}
|
|
832
|
+
export interface StartTraceRetrievalRequest {
|
|
833
|
+
TraceIds: string[] | undefined;
|
|
834
|
+
StartTime: Date | undefined;
|
|
835
|
+
EndTime: Date | undefined;
|
|
836
|
+
}
|
|
837
|
+
export interface StartTraceRetrievalResult {
|
|
838
|
+
RetrievalToken?: string | undefined;
|
|
839
|
+
}
|
|
723
840
|
export interface TagResourceRequest {
|
|
724
841
|
ResourceARN: string | undefined;
|
|
725
842
|
Tags: Tag[] | undefined;
|
|
@@ -748,6 +865,34 @@ export interface UpdateGroupRequest {
|
|
|
748
865
|
export interface UpdateGroupResult {
|
|
749
866
|
Group?: Group | undefined;
|
|
750
867
|
}
|
|
868
|
+
export interface ProbabilisticRuleValueUpdate {
|
|
869
|
+
DesiredSamplingPercentage: number | undefined;
|
|
870
|
+
}
|
|
871
|
+
export type IndexingRuleValueUpdate =
|
|
872
|
+
| IndexingRuleValueUpdate.ProbabilisticMember
|
|
873
|
+
| IndexingRuleValueUpdate.$UnknownMember;
|
|
874
|
+
export declare namespace IndexingRuleValueUpdate {
|
|
875
|
+
interface ProbabilisticMember {
|
|
876
|
+
Probabilistic: ProbabilisticRuleValueUpdate;
|
|
877
|
+
$unknown?: never;
|
|
878
|
+
}
|
|
879
|
+
interface $UnknownMember {
|
|
880
|
+
Probabilistic?: never;
|
|
881
|
+
$unknown: [string, any];
|
|
882
|
+
}
|
|
883
|
+
interface Visitor<T> {
|
|
884
|
+
Probabilistic: (value: ProbabilisticRuleValueUpdate) => T;
|
|
885
|
+
_: (name: string, value: any) => T;
|
|
886
|
+
}
|
|
887
|
+
const visit: <T>(value: IndexingRuleValueUpdate, visitor: Visitor<T>) => T;
|
|
888
|
+
}
|
|
889
|
+
export interface UpdateIndexingRuleRequest {
|
|
890
|
+
Name: string | undefined;
|
|
891
|
+
Rule: IndexingRuleValueUpdate | undefined;
|
|
892
|
+
}
|
|
893
|
+
export interface UpdateIndexingRuleResult {
|
|
894
|
+
IndexingRule?: IndexingRule | undefined;
|
|
895
|
+
}
|
|
751
896
|
export interface SamplingRuleUpdate {
|
|
752
897
|
RuleName?: string | undefined;
|
|
753
898
|
RuleARN?: string | undefined;
|
|
@@ -768,3 +913,10 @@ export interface UpdateSamplingRuleRequest {
|
|
|
768
913
|
export interface UpdateSamplingRuleResult {
|
|
769
914
|
SamplingRuleRecord?: SamplingRuleRecord | undefined;
|
|
770
915
|
}
|
|
916
|
+
export interface UpdateTraceSegmentDestinationRequest {
|
|
917
|
+
Destination?: TraceSegmentDestination | undefined;
|
|
918
|
+
}
|
|
919
|
+
export interface UpdateTraceSegmentDestinationResult {
|
|
920
|
+
Destination?: TraceSegmentDestination | undefined;
|
|
921
|
+
Status?: TraceSegmentDestinationStatus | undefined;
|
|
922
|
+
}
|
|
@@ -7,6 +7,10 @@ import {
|
|
|
7
7
|
BatchGetTracesCommandInput,
|
|
8
8
|
BatchGetTracesCommandOutput,
|
|
9
9
|
} from "../commands/BatchGetTracesCommand";
|
|
10
|
+
import {
|
|
11
|
+
CancelTraceRetrievalCommandInput,
|
|
12
|
+
CancelTraceRetrievalCommandOutput,
|
|
13
|
+
} from "../commands/CancelTraceRetrievalCommand";
|
|
10
14
|
import {
|
|
11
15
|
CreateGroupCommandInput,
|
|
12
16
|
CreateGroupCommandOutput,
|
|
@@ -39,6 +43,10 @@ import {
|
|
|
39
43
|
GetGroupsCommandInput,
|
|
40
44
|
GetGroupsCommandOutput,
|
|
41
45
|
} from "../commands/GetGroupsCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetIndexingRulesCommandInput,
|
|
48
|
+
GetIndexingRulesCommandOutput,
|
|
49
|
+
} from "../commands/GetIndexingRulesCommand";
|
|
42
50
|
import {
|
|
43
51
|
GetInsightCommandInput,
|
|
44
52
|
GetInsightCommandOutput,
|
|
@@ -55,6 +63,10 @@ import {
|
|
|
55
63
|
GetInsightSummariesCommandInput,
|
|
56
64
|
GetInsightSummariesCommandOutput,
|
|
57
65
|
} from "../commands/GetInsightSummariesCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetRetrievedTracesGraphCommandInput,
|
|
68
|
+
GetRetrievedTracesGraphCommandOutput,
|
|
69
|
+
} from "../commands/GetRetrievedTracesGraphCommand";
|
|
58
70
|
import {
|
|
59
71
|
GetSamplingRulesCommandInput,
|
|
60
72
|
GetSamplingRulesCommandOutput,
|
|
@@ -79,6 +91,10 @@ import {
|
|
|
79
91
|
GetTraceGraphCommandInput,
|
|
80
92
|
GetTraceGraphCommandOutput,
|
|
81
93
|
} from "../commands/GetTraceGraphCommand";
|
|
94
|
+
import {
|
|
95
|
+
GetTraceSegmentDestinationCommandInput,
|
|
96
|
+
GetTraceSegmentDestinationCommandOutput,
|
|
97
|
+
} from "../commands/GetTraceSegmentDestinationCommand";
|
|
82
98
|
import {
|
|
83
99
|
GetTraceSummariesCommandInput,
|
|
84
100
|
GetTraceSummariesCommandOutput,
|
|
@@ -87,6 +103,10 @@ import {
|
|
|
87
103
|
ListResourcePoliciesCommandInput,
|
|
88
104
|
ListResourcePoliciesCommandOutput,
|
|
89
105
|
} from "../commands/ListResourcePoliciesCommand";
|
|
106
|
+
import {
|
|
107
|
+
ListRetrievedTracesCommandInput,
|
|
108
|
+
ListRetrievedTracesCommandOutput,
|
|
109
|
+
} from "../commands/ListRetrievedTracesCommand";
|
|
90
110
|
import {
|
|
91
111
|
ListTagsForResourceCommandInput,
|
|
92
112
|
ListTagsForResourceCommandOutput,
|
|
@@ -107,6 +127,10 @@ import {
|
|
|
107
127
|
PutTraceSegmentsCommandInput,
|
|
108
128
|
PutTraceSegmentsCommandOutput,
|
|
109
129
|
} from "../commands/PutTraceSegmentsCommand";
|
|
130
|
+
import {
|
|
131
|
+
StartTraceRetrievalCommandInput,
|
|
132
|
+
StartTraceRetrievalCommandOutput,
|
|
133
|
+
} from "../commands/StartTraceRetrievalCommand";
|
|
110
134
|
import {
|
|
111
135
|
TagResourceCommandInput,
|
|
112
136
|
TagResourceCommandOutput,
|
|
@@ -119,14 +143,26 @@ import {
|
|
|
119
143
|
UpdateGroupCommandInput,
|
|
120
144
|
UpdateGroupCommandOutput,
|
|
121
145
|
} from "../commands/UpdateGroupCommand";
|
|
146
|
+
import {
|
|
147
|
+
UpdateIndexingRuleCommandInput,
|
|
148
|
+
UpdateIndexingRuleCommandOutput,
|
|
149
|
+
} from "../commands/UpdateIndexingRuleCommand";
|
|
122
150
|
import {
|
|
123
151
|
UpdateSamplingRuleCommandInput,
|
|
124
152
|
UpdateSamplingRuleCommandOutput,
|
|
125
153
|
} from "../commands/UpdateSamplingRuleCommand";
|
|
154
|
+
import {
|
|
155
|
+
UpdateTraceSegmentDestinationCommandInput,
|
|
156
|
+
UpdateTraceSegmentDestinationCommandOutput,
|
|
157
|
+
} from "../commands/UpdateTraceSegmentDestinationCommand";
|
|
126
158
|
export declare const se_BatchGetTracesCommand: (
|
|
127
159
|
input: BatchGetTracesCommandInput,
|
|
128
160
|
context: __SerdeContext
|
|
129
161
|
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const se_CancelTraceRetrievalCommand: (
|
|
163
|
+
input: CancelTraceRetrievalCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
130
166
|
export declare const se_CreateGroupCommand: (
|
|
131
167
|
input: CreateGroupCommandInput,
|
|
132
168
|
context: __SerdeContext
|
|
@@ -159,6 +195,10 @@ export declare const se_GetGroupsCommand: (
|
|
|
159
195
|
input: GetGroupsCommandInput,
|
|
160
196
|
context: __SerdeContext
|
|
161
197
|
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const se_GetIndexingRulesCommand: (
|
|
199
|
+
input: GetIndexingRulesCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
162
202
|
export declare const se_GetInsightCommand: (
|
|
163
203
|
input: GetInsightCommandInput,
|
|
164
204
|
context: __SerdeContext
|
|
@@ -175,6 +215,10 @@ export declare const se_GetInsightSummariesCommand: (
|
|
|
175
215
|
input: GetInsightSummariesCommandInput,
|
|
176
216
|
context: __SerdeContext
|
|
177
217
|
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const se_GetRetrievedTracesGraphCommand: (
|
|
219
|
+
input: GetRetrievedTracesGraphCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
178
222
|
export declare const se_GetSamplingRulesCommand: (
|
|
179
223
|
input: GetSamplingRulesCommandInput,
|
|
180
224
|
context: __SerdeContext
|
|
@@ -199,6 +243,10 @@ export declare const se_GetTraceGraphCommand: (
|
|
|
199
243
|
input: GetTraceGraphCommandInput,
|
|
200
244
|
context: __SerdeContext
|
|
201
245
|
) => Promise<__HttpRequest>;
|
|
246
|
+
export declare const se_GetTraceSegmentDestinationCommand: (
|
|
247
|
+
input: GetTraceSegmentDestinationCommandInput,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<__HttpRequest>;
|
|
202
250
|
export declare const se_GetTraceSummariesCommand: (
|
|
203
251
|
input: GetTraceSummariesCommandInput,
|
|
204
252
|
context: __SerdeContext
|
|
@@ -207,6 +255,10 @@ export declare const se_ListResourcePoliciesCommand: (
|
|
|
207
255
|
input: ListResourcePoliciesCommandInput,
|
|
208
256
|
context: __SerdeContext
|
|
209
257
|
) => Promise<__HttpRequest>;
|
|
258
|
+
export declare const se_ListRetrievedTracesCommand: (
|
|
259
|
+
input: ListRetrievedTracesCommandInput,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<__HttpRequest>;
|
|
210
262
|
export declare const se_ListTagsForResourceCommand: (
|
|
211
263
|
input: ListTagsForResourceCommandInput,
|
|
212
264
|
context: __SerdeContext
|
|
@@ -227,6 +279,10 @@ export declare const se_PutTraceSegmentsCommand: (
|
|
|
227
279
|
input: PutTraceSegmentsCommandInput,
|
|
228
280
|
context: __SerdeContext
|
|
229
281
|
) => Promise<__HttpRequest>;
|
|
282
|
+
export declare const se_StartTraceRetrievalCommand: (
|
|
283
|
+
input: StartTraceRetrievalCommandInput,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<__HttpRequest>;
|
|
230
286
|
export declare const se_TagResourceCommand: (
|
|
231
287
|
input: TagResourceCommandInput,
|
|
232
288
|
context: __SerdeContext
|
|
@@ -239,14 +295,26 @@ export declare const se_UpdateGroupCommand: (
|
|
|
239
295
|
input: UpdateGroupCommandInput,
|
|
240
296
|
context: __SerdeContext
|
|
241
297
|
) => Promise<__HttpRequest>;
|
|
298
|
+
export declare const se_UpdateIndexingRuleCommand: (
|
|
299
|
+
input: UpdateIndexingRuleCommandInput,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<__HttpRequest>;
|
|
242
302
|
export declare const se_UpdateSamplingRuleCommand: (
|
|
243
303
|
input: UpdateSamplingRuleCommandInput,
|
|
244
304
|
context: __SerdeContext
|
|
245
305
|
) => Promise<__HttpRequest>;
|
|
306
|
+
export declare const se_UpdateTraceSegmentDestinationCommand: (
|
|
307
|
+
input: UpdateTraceSegmentDestinationCommandInput,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<__HttpRequest>;
|
|
246
310
|
export declare const de_BatchGetTracesCommand: (
|
|
247
311
|
output: __HttpResponse,
|
|
248
312
|
context: __SerdeContext
|
|
249
313
|
) => Promise<BatchGetTracesCommandOutput>;
|
|
314
|
+
export declare const de_CancelTraceRetrievalCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<CancelTraceRetrievalCommandOutput>;
|
|
250
318
|
export declare const de_CreateGroupCommand: (
|
|
251
319
|
output: __HttpResponse,
|
|
252
320
|
context: __SerdeContext
|
|
@@ -279,6 +347,10 @@ export declare const de_GetGroupsCommand: (
|
|
|
279
347
|
output: __HttpResponse,
|
|
280
348
|
context: __SerdeContext
|
|
281
349
|
) => Promise<GetGroupsCommandOutput>;
|
|
350
|
+
export declare const de_GetIndexingRulesCommand: (
|
|
351
|
+
output: __HttpResponse,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<GetIndexingRulesCommandOutput>;
|
|
282
354
|
export declare const de_GetInsightCommand: (
|
|
283
355
|
output: __HttpResponse,
|
|
284
356
|
context: __SerdeContext
|
|
@@ -295,6 +367,10 @@ export declare const de_GetInsightSummariesCommand: (
|
|
|
295
367
|
output: __HttpResponse,
|
|
296
368
|
context: __SerdeContext
|
|
297
369
|
) => Promise<GetInsightSummariesCommandOutput>;
|
|
370
|
+
export declare const de_GetRetrievedTracesGraphCommand: (
|
|
371
|
+
output: __HttpResponse,
|
|
372
|
+
context: __SerdeContext
|
|
373
|
+
) => Promise<GetRetrievedTracesGraphCommandOutput>;
|
|
298
374
|
export declare const de_GetSamplingRulesCommand: (
|
|
299
375
|
output: __HttpResponse,
|
|
300
376
|
context: __SerdeContext
|
|
@@ -319,6 +395,10 @@ export declare const de_GetTraceGraphCommand: (
|
|
|
319
395
|
output: __HttpResponse,
|
|
320
396
|
context: __SerdeContext
|
|
321
397
|
) => Promise<GetTraceGraphCommandOutput>;
|
|
398
|
+
export declare const de_GetTraceSegmentDestinationCommand: (
|
|
399
|
+
output: __HttpResponse,
|
|
400
|
+
context: __SerdeContext
|
|
401
|
+
) => Promise<GetTraceSegmentDestinationCommandOutput>;
|
|
322
402
|
export declare const de_GetTraceSummariesCommand: (
|
|
323
403
|
output: __HttpResponse,
|
|
324
404
|
context: __SerdeContext
|
|
@@ -327,6 +407,10 @@ export declare const de_ListResourcePoliciesCommand: (
|
|
|
327
407
|
output: __HttpResponse,
|
|
328
408
|
context: __SerdeContext
|
|
329
409
|
) => Promise<ListResourcePoliciesCommandOutput>;
|
|
410
|
+
export declare const de_ListRetrievedTracesCommand: (
|
|
411
|
+
output: __HttpResponse,
|
|
412
|
+
context: __SerdeContext
|
|
413
|
+
) => Promise<ListRetrievedTracesCommandOutput>;
|
|
330
414
|
export declare const de_ListTagsForResourceCommand: (
|
|
331
415
|
output: __HttpResponse,
|
|
332
416
|
context: __SerdeContext
|
|
@@ -347,6 +431,10 @@ export declare const de_PutTraceSegmentsCommand: (
|
|
|
347
431
|
output: __HttpResponse,
|
|
348
432
|
context: __SerdeContext
|
|
349
433
|
) => Promise<PutTraceSegmentsCommandOutput>;
|
|
434
|
+
export declare const de_StartTraceRetrievalCommand: (
|
|
435
|
+
output: __HttpResponse,
|
|
436
|
+
context: __SerdeContext
|
|
437
|
+
) => Promise<StartTraceRetrievalCommandOutput>;
|
|
350
438
|
export declare const de_TagResourceCommand: (
|
|
351
439
|
output: __HttpResponse,
|
|
352
440
|
context: __SerdeContext
|
|
@@ -359,7 +447,15 @@ export declare const de_UpdateGroupCommand: (
|
|
|
359
447
|
output: __HttpResponse,
|
|
360
448
|
context: __SerdeContext
|
|
361
449
|
) => Promise<UpdateGroupCommandOutput>;
|
|
450
|
+
export declare const de_UpdateIndexingRuleCommand: (
|
|
451
|
+
output: __HttpResponse,
|
|
452
|
+
context: __SerdeContext
|
|
453
|
+
) => Promise<UpdateIndexingRuleCommandOutput>;
|
|
362
454
|
export declare const de_UpdateSamplingRuleCommand: (
|
|
363
455
|
output: __HttpResponse,
|
|
364
456
|
context: __SerdeContext
|
|
365
457
|
) => Promise<UpdateSamplingRuleCommandOutput>;
|
|
458
|
+
export declare const de_UpdateTraceSegmentDestinationCommand: (
|
|
459
|
+
output: __HttpResponse,
|
|
460
|
+
context: __SerdeContext
|
|
461
|
+
) => Promise<UpdateTraceSegmentDestinationCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-xray",
|
|
3
3
|
"description": "AWS SDK for JavaScript Xray Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.699.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-xray",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.699.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.699.0",
|
|
25
25
|
"@aws-sdk/core": "3.696.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.699.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|