@aws-sdk/client-xray 3.50.0 → 3.53.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/XRayServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +76 -3
  5. package/dist-cjs/protocols/Aws_restJson1.js +279 -701
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/XRayServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +69 -1
  9. package/dist-es/protocols/Aws_restJson1.js +545 -815
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/XRayServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +37 -16
  13. package/dist-types/ts3.4/XRay.d.ts +140 -0
  14. package/dist-types/ts3.4/XRayClient.d.ts +100 -0
  15. package/dist-types/ts3.4/commands/BatchGetTracesCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/CreateSamplingRuleCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DeleteSamplingRuleCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/GetEncryptionConfigCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/GetGroupsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/GetInsightCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/GetInsightEventsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/GetInsightImpactGraphCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/GetInsightSummariesCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/GetSamplingRulesCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/GetSamplingStatisticSummariesCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/GetSamplingTargetsCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/GetServiceGraphCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/GetTimeSeriesServiceStatisticsCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/GetTraceGraphCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/GetTraceSummariesCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/PutEncryptionConfigCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/PutTelemetryRecordsCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/PutTraceSegmentsCommand.d.ts +17 -0
  38. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/UpdateSamplingRuleCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  43. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  44. package/dist-types/ts3.4/index.d.ts +6 -0
  45. package/dist-types/ts3.4/models/XRayServiceException.d.ts +6 -0
  46. package/dist-types/ts3.4/models/index.d.ts +1 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +1541 -0
  48. package/dist-types/ts3.4/pagination/BatchGetTracesPaginator.d.ts +4 -0
  49. package/dist-types/ts3.4/pagination/GetGroupsPaginator.d.ts +4 -0
  50. package/dist-types/ts3.4/pagination/GetInsightEventsPaginator.d.ts +4 -0
  51. package/dist-types/ts3.4/pagination/GetInsightSummariesPaginator.d.ts +4 -0
  52. package/dist-types/ts3.4/pagination/GetSamplingRulesPaginator.d.ts +4 -0
  53. package/dist-types/ts3.4/pagination/GetSamplingStatisticSummariesPaginator.d.ts +4 -0
  54. package/dist-types/ts3.4/pagination/GetServiceGraphPaginator.d.ts +4 -0
  55. package/dist-types/ts3.4/pagination/GetTimeSeriesServiceStatisticsPaginator.d.ts +4 -0
  56. package/dist-types/ts3.4/pagination/GetTraceGraphPaginator.d.ts +4 -0
  57. package/dist-types/ts3.4/pagination/GetTraceSummariesPaginator.d.ts +4 -0
  58. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  59. package/dist-types/ts3.4/pagination/index.d.ts +11 -0
  60. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +83 -0
  61. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  62. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  63. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  64. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  65. package/package.json +33 -33
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetSamplingTargetsRequest, GetSamplingTargetsResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface GetSamplingTargetsCommandInput extends GetSamplingTargetsRequest {
6
+ }
7
+ export interface GetSamplingTargetsCommandOutput extends GetSamplingTargetsResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetSamplingTargetsCommand extends $Command<GetSamplingTargetsCommandInput, GetSamplingTargetsCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: GetSamplingTargetsCommandInput;
12
+ constructor(input: GetSamplingTargetsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSamplingTargetsCommandInput, GetSamplingTargetsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetServiceGraphRequest, GetServiceGraphResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface GetServiceGraphCommandInput extends GetServiceGraphRequest {
6
+ }
7
+ export interface GetServiceGraphCommandOutput extends GetServiceGraphResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetServiceGraphCommand extends $Command<GetServiceGraphCommandInput, GetServiceGraphCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: GetServiceGraphCommandInput;
12
+ constructor(input: GetServiceGraphCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceGraphCommandInput, GetServiceGraphCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetTimeSeriesServiceStatisticsRequest, GetTimeSeriesServiceStatisticsResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface GetTimeSeriesServiceStatisticsCommandInput extends GetTimeSeriesServiceStatisticsRequest {
6
+ }
7
+ export interface GetTimeSeriesServiceStatisticsCommandOutput extends GetTimeSeriesServiceStatisticsResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetTimeSeriesServiceStatisticsCommand extends $Command<GetTimeSeriesServiceStatisticsCommandInput, GetTimeSeriesServiceStatisticsCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: GetTimeSeriesServiceStatisticsCommandInput;
12
+ constructor(input: GetTimeSeriesServiceStatisticsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTimeSeriesServiceStatisticsCommandInput, GetTimeSeriesServiceStatisticsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetTraceGraphRequest, GetTraceGraphResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface GetTraceGraphCommandInput extends GetTraceGraphRequest {
6
+ }
7
+ export interface GetTraceGraphCommandOutput extends GetTraceGraphResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetTraceGraphCommand extends $Command<GetTraceGraphCommandInput, GetTraceGraphCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: GetTraceGraphCommandInput;
12
+ constructor(input: GetTraceGraphCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTraceGraphCommandInput, GetTraceGraphCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetTraceSummariesRequest, GetTraceSummariesResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface GetTraceSummariesCommandInput extends GetTraceSummariesRequest {
6
+ }
7
+ export interface GetTraceSummariesCommandOutput extends GetTraceSummariesResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetTraceSummariesCommand extends $Command<GetTraceSummariesCommandInput, GetTraceSummariesCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: GetTraceSummariesCommandInput;
12
+ constructor(input: GetTraceSummariesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTraceSummariesCommandInput, GetTraceSummariesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
+ }
7
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: ListTagsForResourceCommandInput;
12
+ constructor(input: ListTagsForResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { PutEncryptionConfigRequest, PutEncryptionConfigResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface PutEncryptionConfigCommandInput extends PutEncryptionConfigRequest {
6
+ }
7
+ export interface PutEncryptionConfigCommandOutput extends PutEncryptionConfigResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutEncryptionConfigCommand extends $Command<PutEncryptionConfigCommandInput, PutEncryptionConfigCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: PutEncryptionConfigCommandInput;
12
+ constructor(input: PutEncryptionConfigCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutEncryptionConfigCommandInput, PutEncryptionConfigCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { PutTelemetryRecordsRequest, PutTelemetryRecordsResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface PutTelemetryRecordsCommandInput extends PutTelemetryRecordsRequest {
6
+ }
7
+ export interface PutTelemetryRecordsCommandOutput extends PutTelemetryRecordsResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutTelemetryRecordsCommand extends $Command<PutTelemetryRecordsCommandInput, PutTelemetryRecordsCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: PutTelemetryRecordsCommandInput;
12
+ constructor(input: PutTelemetryRecordsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutTelemetryRecordsCommandInput, PutTelemetryRecordsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { PutTraceSegmentsRequest, PutTraceSegmentsResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface PutTraceSegmentsCommandInput extends PutTraceSegmentsRequest {
6
+ }
7
+ export interface PutTraceSegmentsCommandOutput extends PutTraceSegmentsResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutTraceSegmentsCommand extends $Command<PutTraceSegmentsCommandInput, PutTraceSegmentsCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: PutTraceSegmentsCommandInput;
12
+ constructor(input: PutTraceSegmentsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutTraceSegmentsCommandInput, PutTraceSegmentsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface TagResourceCommandInput extends TagResourceRequest {
6
+ }
7
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: TagResourceCommandInput;
12
+ constructor(input: TagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
6
+ }
7
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: UntagResourceCommandInput;
12
+ constructor(input: UntagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateGroupRequest, UpdateGroupResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface UpdateGroupCommandInput extends UpdateGroupRequest {
6
+ }
7
+ export interface UpdateGroupCommandOutput extends UpdateGroupResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateGroupCommand extends $Command<UpdateGroupCommandInput, UpdateGroupCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: UpdateGroupCommandInput;
12
+ constructor(input: UpdateGroupCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateGroupCommandInput, UpdateGroupCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { UpdateSamplingRuleRequest, UpdateSamplingRuleResult } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
+ export interface UpdateSamplingRuleCommandInput extends UpdateSamplingRuleRequest {
6
+ }
7
+ export interface UpdateSamplingRuleCommandOutput extends UpdateSamplingRuleResult, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateSamplingRuleCommand extends $Command<UpdateSamplingRuleCommandInput, UpdateSamplingRuleCommandOutput, XRayClientResolvedConfig> {
11
+ readonly input: UpdateSamplingRuleCommandInput;
12
+ constructor(input: UpdateSamplingRuleCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSamplingRuleCommandInput, UpdateSamplingRuleCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,27 @@
1
+ export * from "./BatchGetTracesCommand";
2
+ export * from "./CreateGroupCommand";
3
+ export * from "./CreateSamplingRuleCommand";
4
+ export * from "./DeleteGroupCommand";
5
+ export * from "./DeleteSamplingRuleCommand";
6
+ export * from "./GetEncryptionConfigCommand";
7
+ export * from "./GetGroupCommand";
8
+ export * from "./GetGroupsCommand";
9
+ export * from "./GetInsightCommand";
10
+ export * from "./GetInsightEventsCommand";
11
+ export * from "./GetInsightImpactGraphCommand";
12
+ export * from "./GetInsightSummariesCommand";
13
+ export * from "./GetSamplingRulesCommand";
14
+ export * from "./GetSamplingStatisticSummariesCommand";
15
+ export * from "./GetSamplingTargetsCommand";
16
+ export * from "./GetServiceGraphCommand";
17
+ export * from "./GetTimeSeriesServiceStatisticsCommand";
18
+ export * from "./GetTraceGraphCommand";
19
+ export * from "./GetTraceSummariesCommand";
20
+ export * from "./ListTagsForResourceCommand";
21
+ export * from "./PutEncryptionConfigCommand";
22
+ export * from "./PutTelemetryRecordsCommand";
23
+ export * from "./PutTraceSegmentsCommand";
24
+ export * from "./TagResourceCommand";
25
+ export * from "./UntagResourceCommand";
26
+ export * from "./UpdateGroupCommand";
27
+ export * from "./UpdateSamplingRuleCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./XRay";
2
+ export * from "./XRayClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { XRayServiceException } from "./models/XRayServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class XRayServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";