@aws-sdk/client-xray 3.974.0 → 3.978.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 +39 -25
- package/dist-es/XRay.js +27 -1
- package/dist-types/XRay.d.ts +85 -1
- package/dist-types/ts3.4/XRay.d.ts +89 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2165,6 +2165,30 @@ class UpdateTraceSegmentDestinationCommand extends smithyClient.Command
|
|
|
2165
2165
|
.build() {
|
|
2166
2166
|
}
|
|
2167
2167
|
|
|
2168
|
+
const paginateBatchGetTraces = core.createPaginator(XRayClient, BatchGetTracesCommand, "NextToken", "NextToken", "");
|
|
2169
|
+
|
|
2170
|
+
const paginateGetGroups = core.createPaginator(XRayClient, GetGroupsCommand, "NextToken", "NextToken", "");
|
|
2171
|
+
|
|
2172
|
+
const paginateGetInsightEvents = core.createPaginator(XRayClient, GetInsightEventsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2173
|
+
|
|
2174
|
+
const paginateGetInsightSummaries = core.createPaginator(XRayClient, GetInsightSummariesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2175
|
+
|
|
2176
|
+
const paginateGetSamplingRules = core.createPaginator(XRayClient, GetSamplingRulesCommand, "NextToken", "NextToken", "");
|
|
2177
|
+
|
|
2178
|
+
const paginateGetSamplingStatisticSummaries = core.createPaginator(XRayClient, GetSamplingStatisticSummariesCommand, "NextToken", "NextToken", "");
|
|
2179
|
+
|
|
2180
|
+
const paginateGetServiceGraph = core.createPaginator(XRayClient, GetServiceGraphCommand, "NextToken", "NextToken", "");
|
|
2181
|
+
|
|
2182
|
+
const paginateGetTimeSeriesServiceStatistics = core.createPaginator(XRayClient, GetTimeSeriesServiceStatisticsCommand, "NextToken", "NextToken", "");
|
|
2183
|
+
|
|
2184
|
+
const paginateGetTraceGraph = core.createPaginator(XRayClient, GetTraceGraphCommand, "NextToken", "NextToken", "");
|
|
2185
|
+
|
|
2186
|
+
const paginateGetTraceSummaries = core.createPaginator(XRayClient, GetTraceSummariesCommand, "NextToken", "NextToken", "");
|
|
2187
|
+
|
|
2188
|
+
const paginateListResourcePolicies = core.createPaginator(XRayClient, ListResourcePoliciesCommand, "NextToken", "NextToken", "");
|
|
2189
|
+
|
|
2190
|
+
const paginateListTagsForResource = core.createPaginator(XRayClient, ListTagsForResourceCommand, "NextToken", "NextToken", "");
|
|
2191
|
+
|
|
2168
2192
|
const commands = {
|
|
2169
2193
|
BatchGetTracesCommand,
|
|
2170
2194
|
CancelTraceRetrievalCommand,
|
|
@@ -2205,33 +2229,23 @@ const commands = {
|
|
|
2205
2229
|
UpdateSamplingRuleCommand,
|
|
2206
2230
|
UpdateTraceSegmentDestinationCommand,
|
|
2207
2231
|
};
|
|
2232
|
+
const paginators = {
|
|
2233
|
+
paginateBatchGetTraces,
|
|
2234
|
+
paginateGetGroups,
|
|
2235
|
+
paginateGetInsightEvents,
|
|
2236
|
+
paginateGetInsightSummaries,
|
|
2237
|
+
paginateGetSamplingRules,
|
|
2238
|
+
paginateGetSamplingStatisticSummaries,
|
|
2239
|
+
paginateGetServiceGraph,
|
|
2240
|
+
paginateGetTimeSeriesServiceStatistics,
|
|
2241
|
+
paginateGetTraceGraph,
|
|
2242
|
+
paginateGetTraceSummaries,
|
|
2243
|
+
paginateListResourcePolicies,
|
|
2244
|
+
paginateListTagsForResource,
|
|
2245
|
+
};
|
|
2208
2246
|
class XRay extends XRayClient {
|
|
2209
2247
|
}
|
|
2210
|
-
smithyClient.createAggregatedClient(commands, XRay);
|
|
2211
|
-
|
|
2212
|
-
const paginateBatchGetTraces = core.createPaginator(XRayClient, BatchGetTracesCommand, "NextToken", "NextToken", "");
|
|
2213
|
-
|
|
2214
|
-
const paginateGetGroups = core.createPaginator(XRayClient, GetGroupsCommand, "NextToken", "NextToken", "");
|
|
2215
|
-
|
|
2216
|
-
const paginateGetInsightEvents = core.createPaginator(XRayClient, GetInsightEventsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2217
|
-
|
|
2218
|
-
const paginateGetInsightSummaries = core.createPaginator(XRayClient, GetInsightSummariesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2219
|
-
|
|
2220
|
-
const paginateGetSamplingRules = core.createPaginator(XRayClient, GetSamplingRulesCommand, "NextToken", "NextToken", "");
|
|
2221
|
-
|
|
2222
|
-
const paginateGetSamplingStatisticSummaries = core.createPaginator(XRayClient, GetSamplingStatisticSummariesCommand, "NextToken", "NextToken", "");
|
|
2223
|
-
|
|
2224
|
-
const paginateGetServiceGraph = core.createPaginator(XRayClient, GetServiceGraphCommand, "NextToken", "NextToken", "");
|
|
2225
|
-
|
|
2226
|
-
const paginateGetTimeSeriesServiceStatistics = core.createPaginator(XRayClient, GetTimeSeriesServiceStatisticsCommand, "NextToken", "NextToken", "");
|
|
2227
|
-
|
|
2228
|
-
const paginateGetTraceGraph = core.createPaginator(XRayClient, GetTraceGraphCommand, "NextToken", "NextToken", "");
|
|
2229
|
-
|
|
2230
|
-
const paginateGetTraceSummaries = core.createPaginator(XRayClient, GetTraceSummariesCommand, "NextToken", "NextToken", "");
|
|
2231
|
-
|
|
2232
|
-
const paginateListResourcePolicies = core.createPaginator(XRayClient, ListResourcePoliciesCommand, "NextToken", "NextToken", "");
|
|
2233
|
-
|
|
2234
|
-
const paginateListTagsForResource = core.createPaginator(XRayClient, ListTagsForResourceCommand, "NextToken", "NextToken", "");
|
|
2248
|
+
smithyClient.createAggregatedClient(commands, XRay, { paginators });
|
|
2235
2249
|
|
|
2236
2250
|
const EncryptionStatus = {
|
|
2237
2251
|
ACTIVE: "ACTIVE",
|
package/dist-es/XRay.js
CHANGED
|
@@ -37,6 +37,18 @@ import { UpdateGroupCommand } from "./commands/UpdateGroupCommand";
|
|
|
37
37
|
import { UpdateIndexingRuleCommand, } from "./commands/UpdateIndexingRuleCommand";
|
|
38
38
|
import { UpdateSamplingRuleCommand, } from "./commands/UpdateSamplingRuleCommand";
|
|
39
39
|
import { UpdateTraceSegmentDestinationCommand, } from "./commands/UpdateTraceSegmentDestinationCommand";
|
|
40
|
+
import { paginateBatchGetTraces } from "./pagination/BatchGetTracesPaginator";
|
|
41
|
+
import { paginateGetGroups } from "./pagination/GetGroupsPaginator";
|
|
42
|
+
import { paginateGetInsightEvents } from "./pagination/GetInsightEventsPaginator";
|
|
43
|
+
import { paginateGetInsightSummaries } from "./pagination/GetInsightSummariesPaginator";
|
|
44
|
+
import { paginateGetSamplingRules } from "./pagination/GetSamplingRulesPaginator";
|
|
45
|
+
import { paginateGetSamplingStatisticSummaries } from "./pagination/GetSamplingStatisticSummariesPaginator";
|
|
46
|
+
import { paginateGetServiceGraph } from "./pagination/GetServiceGraphPaginator";
|
|
47
|
+
import { paginateGetTimeSeriesServiceStatistics } from "./pagination/GetTimeSeriesServiceStatisticsPaginator";
|
|
48
|
+
import { paginateGetTraceGraph } from "./pagination/GetTraceGraphPaginator";
|
|
49
|
+
import { paginateGetTraceSummaries } from "./pagination/GetTraceSummariesPaginator";
|
|
50
|
+
import { paginateListResourcePolicies } from "./pagination/ListResourcePoliciesPaginator";
|
|
51
|
+
import { paginateListTagsForResource } from "./pagination/ListTagsForResourcePaginator";
|
|
40
52
|
import { XRayClient } from "./XRayClient";
|
|
41
53
|
const commands = {
|
|
42
54
|
BatchGetTracesCommand,
|
|
@@ -78,6 +90,20 @@ const commands = {
|
|
|
78
90
|
UpdateSamplingRuleCommand,
|
|
79
91
|
UpdateTraceSegmentDestinationCommand,
|
|
80
92
|
};
|
|
93
|
+
const paginators = {
|
|
94
|
+
paginateBatchGetTraces,
|
|
95
|
+
paginateGetGroups,
|
|
96
|
+
paginateGetInsightEvents,
|
|
97
|
+
paginateGetInsightSummaries,
|
|
98
|
+
paginateGetSamplingRules,
|
|
99
|
+
paginateGetSamplingStatisticSummaries,
|
|
100
|
+
paginateGetServiceGraph,
|
|
101
|
+
paginateGetTimeSeriesServiceStatistics,
|
|
102
|
+
paginateGetTraceGraph,
|
|
103
|
+
paginateGetTraceSummaries,
|
|
104
|
+
paginateListResourcePolicies,
|
|
105
|
+
paginateListTagsForResource,
|
|
106
|
+
};
|
|
81
107
|
export class XRay extends XRayClient {
|
|
82
108
|
}
|
|
83
|
-
createAggregatedClient(commands, XRay);
|
|
109
|
+
createAggregatedClient(commands, XRay, { paginators });
|
package/dist-types/XRay.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { BatchGetTracesCommandInput, BatchGetTracesCommandOutput } from "./commands/BatchGetTracesCommand";
|
|
3
3
|
import { CancelTraceRetrievalCommandInput, CancelTraceRetrievalCommandOutput } from "./commands/CancelTraceRetrievalCommand";
|
|
4
4
|
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
@@ -279,6 +279,90 @@ export interface XRay {
|
|
|
279
279
|
updateTraceSegmentDestination(args: UpdateTraceSegmentDestinationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTraceSegmentDestinationCommandOutput>;
|
|
280
280
|
updateTraceSegmentDestination(args: UpdateTraceSegmentDestinationCommandInput, cb: (err: any, data?: UpdateTraceSegmentDestinationCommandOutput) => void): void;
|
|
281
281
|
updateTraceSegmentDestination(args: UpdateTraceSegmentDestinationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTraceSegmentDestinationCommandOutput) => void): void;
|
|
282
|
+
/**
|
|
283
|
+
* @see {@link BatchGetTracesCommand}
|
|
284
|
+
* @param args - command input.
|
|
285
|
+
* @param paginationConfig - optional pagination config.
|
|
286
|
+
* @returns AsyncIterable of {@link BatchGetTracesCommandOutput}.
|
|
287
|
+
*/
|
|
288
|
+
paginateBatchGetTraces(args: BatchGetTracesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<BatchGetTracesCommandOutput>;
|
|
289
|
+
/**
|
|
290
|
+
* @see {@link GetGroupsCommand}
|
|
291
|
+
* @param args - command input.
|
|
292
|
+
* @param paginationConfig - optional pagination config.
|
|
293
|
+
* @returns AsyncIterable of {@link GetGroupsCommandOutput}.
|
|
294
|
+
*/
|
|
295
|
+
paginateGetGroups(args?: GetGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetGroupsCommandOutput>;
|
|
296
|
+
/**
|
|
297
|
+
* @see {@link GetInsightEventsCommand}
|
|
298
|
+
* @param args - command input.
|
|
299
|
+
* @param paginationConfig - optional pagination config.
|
|
300
|
+
* @returns AsyncIterable of {@link GetInsightEventsCommandOutput}.
|
|
301
|
+
*/
|
|
302
|
+
paginateGetInsightEvents(args: GetInsightEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetInsightEventsCommandOutput>;
|
|
303
|
+
/**
|
|
304
|
+
* @see {@link GetInsightSummariesCommand}
|
|
305
|
+
* @param args - command input.
|
|
306
|
+
* @param paginationConfig - optional pagination config.
|
|
307
|
+
* @returns AsyncIterable of {@link GetInsightSummariesCommandOutput}.
|
|
308
|
+
*/
|
|
309
|
+
paginateGetInsightSummaries(args: GetInsightSummariesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetInsightSummariesCommandOutput>;
|
|
310
|
+
/**
|
|
311
|
+
* @see {@link GetSamplingRulesCommand}
|
|
312
|
+
* @param args - command input.
|
|
313
|
+
* @param paginationConfig - optional pagination config.
|
|
314
|
+
* @returns AsyncIterable of {@link GetSamplingRulesCommandOutput}.
|
|
315
|
+
*/
|
|
316
|
+
paginateGetSamplingRules(args?: GetSamplingRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetSamplingRulesCommandOutput>;
|
|
317
|
+
/**
|
|
318
|
+
* @see {@link GetSamplingStatisticSummariesCommand}
|
|
319
|
+
* @param args - command input.
|
|
320
|
+
* @param paginationConfig - optional pagination config.
|
|
321
|
+
* @returns AsyncIterable of {@link GetSamplingStatisticSummariesCommandOutput}.
|
|
322
|
+
*/
|
|
323
|
+
paginateGetSamplingStatisticSummaries(args?: GetSamplingStatisticSummariesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetSamplingStatisticSummariesCommandOutput>;
|
|
324
|
+
/**
|
|
325
|
+
* @see {@link GetServiceGraphCommand}
|
|
326
|
+
* @param args - command input.
|
|
327
|
+
* @param paginationConfig - optional pagination config.
|
|
328
|
+
* @returns AsyncIterable of {@link GetServiceGraphCommandOutput}.
|
|
329
|
+
*/
|
|
330
|
+
paginateGetServiceGraph(args: GetServiceGraphCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetServiceGraphCommandOutput>;
|
|
331
|
+
/**
|
|
332
|
+
* @see {@link GetTimeSeriesServiceStatisticsCommand}
|
|
333
|
+
* @param args - command input.
|
|
334
|
+
* @param paginationConfig - optional pagination config.
|
|
335
|
+
* @returns AsyncIterable of {@link GetTimeSeriesServiceStatisticsCommandOutput}.
|
|
336
|
+
*/
|
|
337
|
+
paginateGetTimeSeriesServiceStatistics(args: GetTimeSeriesServiceStatisticsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetTimeSeriesServiceStatisticsCommandOutput>;
|
|
338
|
+
/**
|
|
339
|
+
* @see {@link GetTraceGraphCommand}
|
|
340
|
+
* @param args - command input.
|
|
341
|
+
* @param paginationConfig - optional pagination config.
|
|
342
|
+
* @returns AsyncIterable of {@link GetTraceGraphCommandOutput}.
|
|
343
|
+
*/
|
|
344
|
+
paginateGetTraceGraph(args: GetTraceGraphCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetTraceGraphCommandOutput>;
|
|
345
|
+
/**
|
|
346
|
+
* @see {@link GetTraceSummariesCommand}
|
|
347
|
+
* @param args - command input.
|
|
348
|
+
* @param paginationConfig - optional pagination config.
|
|
349
|
+
* @returns AsyncIterable of {@link GetTraceSummariesCommandOutput}.
|
|
350
|
+
*/
|
|
351
|
+
paginateGetTraceSummaries(args: GetTraceSummariesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetTraceSummariesCommandOutput>;
|
|
352
|
+
/**
|
|
353
|
+
* @see {@link ListResourcePoliciesCommand}
|
|
354
|
+
* @param args - command input.
|
|
355
|
+
* @param paginationConfig - optional pagination config.
|
|
356
|
+
* @returns AsyncIterable of {@link ListResourcePoliciesCommandOutput}.
|
|
357
|
+
*/
|
|
358
|
+
paginateListResourcePolicies(args?: ListResourcePoliciesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourcePoliciesCommandOutput>;
|
|
359
|
+
/**
|
|
360
|
+
* @see {@link ListTagsForResourceCommand}
|
|
361
|
+
* @param args - command input.
|
|
362
|
+
* @param paginationConfig - optional pagination config.
|
|
363
|
+
* @returns AsyncIterable of {@link ListTagsForResourceCommandOutput}.
|
|
364
|
+
*/
|
|
365
|
+
paginateListTagsForResource(args: ListTagsForResourceCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTagsForResourceCommandOutput>;
|
|
282
366
|
}
|
|
283
367
|
/**
|
|
284
368
|
* <p>Amazon Web Services X-Ray provides APIs for managing debug traces and retrieving service maps
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
BatchGetTracesCommandInput,
|
|
4
8
|
BatchGetTracesCommandOutput,
|
|
@@ -659,5 +663,89 @@ export interface XRay {
|
|
|
659
663
|
options: __HttpHandlerOptions,
|
|
660
664
|
cb: (err: any, data?: UpdateTraceSegmentDestinationCommandOutput) => void
|
|
661
665
|
): void;
|
|
666
|
+
paginateBatchGetTraces(
|
|
667
|
+
args: BatchGetTracesCommandInput,
|
|
668
|
+
paginationConfig?: Pick<
|
|
669
|
+
PaginationConfiguration,
|
|
670
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
671
|
+
>
|
|
672
|
+
): Paginator<BatchGetTracesCommandOutput>;
|
|
673
|
+
paginateGetGroups(
|
|
674
|
+
args?: GetGroupsCommandInput,
|
|
675
|
+
paginationConfig?: Pick<
|
|
676
|
+
PaginationConfiguration,
|
|
677
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
678
|
+
>
|
|
679
|
+
): Paginator<GetGroupsCommandOutput>;
|
|
680
|
+
paginateGetInsightEvents(
|
|
681
|
+
args: GetInsightEventsCommandInput,
|
|
682
|
+
paginationConfig?: Pick<
|
|
683
|
+
PaginationConfiguration,
|
|
684
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
685
|
+
>
|
|
686
|
+
): Paginator<GetInsightEventsCommandOutput>;
|
|
687
|
+
paginateGetInsightSummaries(
|
|
688
|
+
args: GetInsightSummariesCommandInput,
|
|
689
|
+
paginationConfig?: Pick<
|
|
690
|
+
PaginationConfiguration,
|
|
691
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
692
|
+
>
|
|
693
|
+
): Paginator<GetInsightSummariesCommandOutput>;
|
|
694
|
+
paginateGetSamplingRules(
|
|
695
|
+
args?: GetSamplingRulesCommandInput,
|
|
696
|
+
paginationConfig?: Pick<
|
|
697
|
+
PaginationConfiguration,
|
|
698
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
699
|
+
>
|
|
700
|
+
): Paginator<GetSamplingRulesCommandOutput>;
|
|
701
|
+
paginateGetSamplingStatisticSummaries(
|
|
702
|
+
args?: GetSamplingStatisticSummariesCommandInput,
|
|
703
|
+
paginationConfig?: Pick<
|
|
704
|
+
PaginationConfiguration,
|
|
705
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
706
|
+
>
|
|
707
|
+
): Paginator<GetSamplingStatisticSummariesCommandOutput>;
|
|
708
|
+
paginateGetServiceGraph(
|
|
709
|
+
args: GetServiceGraphCommandInput,
|
|
710
|
+
paginationConfig?: Pick<
|
|
711
|
+
PaginationConfiguration,
|
|
712
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
713
|
+
>
|
|
714
|
+
): Paginator<GetServiceGraphCommandOutput>;
|
|
715
|
+
paginateGetTimeSeriesServiceStatistics(
|
|
716
|
+
args: GetTimeSeriesServiceStatisticsCommandInput,
|
|
717
|
+
paginationConfig?: Pick<
|
|
718
|
+
PaginationConfiguration,
|
|
719
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
720
|
+
>
|
|
721
|
+
): Paginator<GetTimeSeriesServiceStatisticsCommandOutput>;
|
|
722
|
+
paginateGetTraceGraph(
|
|
723
|
+
args: GetTraceGraphCommandInput,
|
|
724
|
+
paginationConfig?: Pick<
|
|
725
|
+
PaginationConfiguration,
|
|
726
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
727
|
+
>
|
|
728
|
+
): Paginator<GetTraceGraphCommandOutput>;
|
|
729
|
+
paginateGetTraceSummaries(
|
|
730
|
+
args: GetTraceSummariesCommandInput,
|
|
731
|
+
paginationConfig?: Pick<
|
|
732
|
+
PaginationConfiguration,
|
|
733
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
734
|
+
>
|
|
735
|
+
): Paginator<GetTraceSummariesCommandOutput>;
|
|
736
|
+
paginateListResourcePolicies(
|
|
737
|
+
args?: ListResourcePoliciesCommandInput,
|
|
738
|
+
paginationConfig?: Pick<
|
|
739
|
+
PaginationConfiguration,
|
|
740
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
741
|
+
>
|
|
742
|
+
): Paginator<ListResourcePoliciesCommandOutput>;
|
|
743
|
+
paginateListTagsForResource(
|
|
744
|
+
args: ListTagsForResourceCommandInput,
|
|
745
|
+
paginationConfig?: Pick<
|
|
746
|
+
PaginationConfiguration,
|
|
747
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
748
|
+
>
|
|
749
|
+
): Paginator<ListTagsForResourceCommandOutput>;
|
|
662
750
|
}
|
|
663
751
|
export declare class XRay extends XRayClient implements XRay {}
|
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.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-xray",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|