@aws-sdk/client-xray 3.169.0 → 3.170.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 (54) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/XRay.d.ts +490 -140
  3. package/dist-types/ts3.4/XRayClient.d.ts +291 -100
  4. package/dist-types/ts3.4/commands/BatchGetTracesCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/CreateSamplingRuleCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteSamplingRuleCommand.d.ts +38 -17
  9. package/dist-types/ts3.4/commands/GetEncryptionConfigCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/GetGroupsCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/GetInsightCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetInsightEventsCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/GetInsightImpactGraphCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/GetInsightSummariesCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/GetSamplingRulesCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/GetSamplingStatisticSummariesCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/GetSamplingTargetsCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/GetServiceGraphCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/GetTimeSeriesServiceStatisticsCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/GetTraceGraphCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/GetTraceSummariesCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/PutEncryptionConfigCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/PutTelemetryRecordsCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/PutTraceSegmentsCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/UpdateSamplingRuleCommand.d.ts +38 -17
  31. package/dist-types/ts3.4/commands/index.d.ts +27 -27
  32. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  33. package/dist-types/ts3.4/index.d.ts +6 -6
  34. package/dist-types/ts3.4/models/XRayServiceException.d.ts +8 -6
  35. package/dist-types/ts3.4/models/index.d.ts +1 -1
  36. package/dist-types/ts3.4/models/models_0.d.ts +1408 -1321
  37. package/dist-types/ts3.4/pagination/BatchGetTracesPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/GetGroupsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/GetInsightEventsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/GetInsightSummariesPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/GetSamplingRulesPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/GetSamplingStatisticSummariesPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/GetServiceGraphPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/GetTimeSeriesServiceStatisticsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/GetTraceGraphPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/GetTraceSummariesPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  48. package/dist-types/ts3.4/pagination/index.d.ts +11 -11
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +329 -83
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  54. package/package.json +34 -34
@@ -1,17 +1,38 @@
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 { DeleteSamplingRuleRequest, DeleteSamplingRuleResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface DeleteSamplingRuleCommandInput extends DeleteSamplingRuleRequest {
6
- }
7
- export interface DeleteSamplingRuleCommandOutput extends DeleteSamplingRuleResult, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteSamplingRuleCommand extends $Command<DeleteSamplingRuleCommandInput, DeleteSamplingRuleCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: DeleteSamplingRuleCommandInput;
12
- constructor(input: DeleteSamplingRuleCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSamplingRuleCommandInput, DeleteSamplingRuleCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ DeleteSamplingRuleRequest,
10
+ DeleteSamplingRuleResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ XRayClientResolvedConfig,
16
+ } from "../XRayClient";
17
+ export interface DeleteSamplingRuleCommandInput
18
+ extends DeleteSamplingRuleRequest {}
19
+ export interface DeleteSamplingRuleCommandOutput
20
+ extends DeleteSamplingRuleResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DeleteSamplingRuleCommand extends $Command<
24
+ DeleteSamplingRuleCommandInput,
25
+ DeleteSamplingRuleCommandOutput,
26
+ XRayClientResolvedConfig
27
+ > {
28
+ readonly input: DeleteSamplingRuleCommandInput;
29
+ constructor(input: DeleteSamplingRuleCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: XRayClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DeleteSamplingRuleCommandInput, DeleteSamplingRuleCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,38 @@
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 { GetEncryptionConfigRequest, GetEncryptionConfigResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface GetEncryptionConfigCommandInput extends GetEncryptionConfigRequest {
6
- }
7
- export interface GetEncryptionConfigCommandOutput extends GetEncryptionConfigResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetEncryptionConfigCommand extends $Command<GetEncryptionConfigCommandInput, GetEncryptionConfigCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: GetEncryptionConfigCommandInput;
12
- constructor(input: GetEncryptionConfigCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEncryptionConfigCommandInput, GetEncryptionConfigCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetEncryptionConfigRequest,
10
+ GetEncryptionConfigResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ XRayClientResolvedConfig,
16
+ } from "../XRayClient";
17
+ export interface GetEncryptionConfigCommandInput
18
+ extends GetEncryptionConfigRequest {}
19
+ export interface GetEncryptionConfigCommandOutput
20
+ extends GetEncryptionConfigResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetEncryptionConfigCommand extends $Command<
24
+ GetEncryptionConfigCommandInput,
25
+ GetEncryptionConfigCommandOutput,
26
+ XRayClientResolvedConfig
27
+ > {
28
+ readonly input: GetEncryptionConfigCommandInput;
29
+ constructor(input: GetEncryptionConfigCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: XRayClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetEncryptionConfigCommandInput, GetEncryptionConfigCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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 { GetGroupRequest, GetGroupResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface GetGroupCommandInput extends GetGroupRequest {
6
- }
7
- export interface GetGroupCommandOutput extends GetGroupResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetGroupCommand extends $Command<GetGroupCommandInput, GetGroupCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: GetGroupCommandInput;
12
- constructor(input: GetGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGroupCommandInput, GetGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetGroupRequest, GetGroupResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ XRayClientResolvedConfig,
13
+ } from "../XRayClient";
14
+ export interface GetGroupCommandInput extends GetGroupRequest {}
15
+ export interface GetGroupCommandOutput
16
+ extends GetGroupResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetGroupCommand extends $Command<
20
+ GetGroupCommandInput,
21
+ GetGroupCommandOutput,
22
+ XRayClientResolvedConfig
23
+ > {
24
+ readonly input: GetGroupCommandInput;
25
+ constructor(input: GetGroupCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: XRayClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetGroupCommandInput, GetGroupCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
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 { GetGroupsRequest, GetGroupsResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface GetGroupsCommandInput extends GetGroupsRequest {
6
- }
7
- export interface GetGroupsCommandOutput extends GetGroupsResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetGroupsCommand extends $Command<GetGroupsCommandInput, GetGroupsCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: GetGroupsCommandInput;
12
- constructor(input: GetGroupsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGroupsCommandInput, GetGroupsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetGroupsRequest, GetGroupsResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ XRayClientResolvedConfig,
13
+ } from "../XRayClient";
14
+ export interface GetGroupsCommandInput extends GetGroupsRequest {}
15
+ export interface GetGroupsCommandOutput
16
+ extends GetGroupsResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetGroupsCommand extends $Command<
20
+ GetGroupsCommandInput,
21
+ GetGroupsCommandOutput,
22
+ XRayClientResolvedConfig
23
+ > {
24
+ readonly input: GetGroupsCommandInput;
25
+ constructor(input: GetGroupsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: XRayClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetGroupsCommandInput, GetGroupsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
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 { GetInsightRequest, GetInsightResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface GetInsightCommandInput extends GetInsightRequest {
6
- }
7
- export interface GetInsightCommandOutput extends GetInsightResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetInsightCommand extends $Command<GetInsightCommandInput, GetInsightCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: GetInsightCommandInput;
12
- constructor(input: GetInsightCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInsightCommandInput, GetInsightCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import { GetInsightRequest, GetInsightResult } from "../models/models_0";
9
+ import {
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ XRayClientResolvedConfig,
13
+ } from "../XRayClient";
14
+ export interface GetInsightCommandInput extends GetInsightRequest {}
15
+ export interface GetInsightCommandOutput
16
+ extends GetInsightResult,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetInsightCommand extends $Command<
20
+ GetInsightCommandInput,
21
+ GetInsightCommandOutput,
22
+ XRayClientResolvedConfig
23
+ > {
24
+ readonly input: GetInsightCommandInput;
25
+ constructor(input: GetInsightCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: XRayClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetInsightCommandInput, GetInsightCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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 { GetInsightEventsRequest, GetInsightEventsResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface GetInsightEventsCommandInput extends GetInsightEventsRequest {
6
- }
7
- export interface GetInsightEventsCommandOutput extends GetInsightEventsResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetInsightEventsCommand extends $Command<GetInsightEventsCommandInput, GetInsightEventsCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: GetInsightEventsCommandInput;
12
- constructor(input: GetInsightEventsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInsightEventsCommandInput, GetInsightEventsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetInsightEventsRequest,
10
+ GetInsightEventsResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ XRayClientResolvedConfig,
16
+ } from "../XRayClient";
17
+ export interface GetInsightEventsCommandInput extends GetInsightEventsRequest {}
18
+ export interface GetInsightEventsCommandOutput
19
+ extends GetInsightEventsResult,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetInsightEventsCommand extends $Command<
23
+ GetInsightEventsCommandInput,
24
+ GetInsightEventsCommandOutput,
25
+ XRayClientResolvedConfig
26
+ > {
27
+ readonly input: GetInsightEventsCommandInput;
28
+ constructor(input: GetInsightEventsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: XRayClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetInsightEventsCommandInput, GetInsightEventsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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 { GetInsightImpactGraphRequest, GetInsightImpactGraphResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface GetInsightImpactGraphCommandInput extends GetInsightImpactGraphRequest {
6
- }
7
- export interface GetInsightImpactGraphCommandOutput extends GetInsightImpactGraphResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetInsightImpactGraphCommand extends $Command<GetInsightImpactGraphCommandInput, GetInsightImpactGraphCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: GetInsightImpactGraphCommandInput;
12
- constructor(input: GetInsightImpactGraphCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInsightImpactGraphCommandInput, GetInsightImpactGraphCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetInsightImpactGraphRequest,
10
+ GetInsightImpactGraphResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ XRayClientResolvedConfig,
16
+ } from "../XRayClient";
17
+ export interface GetInsightImpactGraphCommandInput
18
+ extends GetInsightImpactGraphRequest {}
19
+ export interface GetInsightImpactGraphCommandOutput
20
+ extends GetInsightImpactGraphResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetInsightImpactGraphCommand extends $Command<
24
+ GetInsightImpactGraphCommandInput,
25
+ GetInsightImpactGraphCommandOutput,
26
+ XRayClientResolvedConfig
27
+ > {
28
+ readonly input: GetInsightImpactGraphCommandInput;
29
+ constructor(input: GetInsightImpactGraphCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: XRayClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetInsightImpactGraphCommandInput,
37
+ GetInsightImpactGraphCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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 { GetInsightSummariesRequest, GetInsightSummariesResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface GetInsightSummariesCommandInput extends GetInsightSummariesRequest {
6
- }
7
- export interface GetInsightSummariesCommandOutput extends GetInsightSummariesResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetInsightSummariesCommand extends $Command<GetInsightSummariesCommandInput, GetInsightSummariesCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: GetInsightSummariesCommandInput;
12
- constructor(input: GetInsightSummariesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInsightSummariesCommandInput, GetInsightSummariesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetInsightSummariesRequest,
10
+ GetInsightSummariesResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ XRayClientResolvedConfig,
16
+ } from "../XRayClient";
17
+ export interface GetInsightSummariesCommandInput
18
+ extends GetInsightSummariesRequest {}
19
+ export interface GetInsightSummariesCommandOutput
20
+ extends GetInsightSummariesResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetInsightSummariesCommand extends $Command<
24
+ GetInsightSummariesCommandInput,
25
+ GetInsightSummariesCommandOutput,
26
+ XRayClientResolvedConfig
27
+ > {
28
+ readonly input: GetInsightSummariesCommandInput;
29
+ constructor(input: GetInsightSummariesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: XRayClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetInsightSummariesCommandInput, GetInsightSummariesCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
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 { GetSamplingRulesRequest, GetSamplingRulesResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface GetSamplingRulesCommandInput extends GetSamplingRulesRequest {
6
- }
7
- export interface GetSamplingRulesCommandOutput extends GetSamplingRulesResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetSamplingRulesCommand extends $Command<GetSamplingRulesCommandInput, GetSamplingRulesCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: GetSamplingRulesCommandInput;
12
- constructor(input: GetSamplingRulesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSamplingRulesCommandInput, GetSamplingRulesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetSamplingRulesRequest,
10
+ GetSamplingRulesResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ XRayClientResolvedConfig,
16
+ } from "../XRayClient";
17
+ export interface GetSamplingRulesCommandInput extends GetSamplingRulesRequest {}
18
+ export interface GetSamplingRulesCommandOutput
19
+ extends GetSamplingRulesResult,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetSamplingRulesCommand extends $Command<
23
+ GetSamplingRulesCommandInput,
24
+ GetSamplingRulesCommandOutput,
25
+ XRayClientResolvedConfig
26
+ > {
27
+ readonly input: GetSamplingRulesCommandInput;
28
+ constructor(input: GetSamplingRulesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: XRayClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetSamplingRulesCommandInput, GetSamplingRulesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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 { GetSamplingStatisticSummariesRequest, GetSamplingStatisticSummariesResult } from "../models/models_0";
4
- import { ServiceInputTypes, ServiceOutputTypes, XRayClientResolvedConfig } from "../XRayClient";
5
- export interface GetSamplingStatisticSummariesCommandInput extends GetSamplingStatisticSummariesRequest {
6
- }
7
- export interface GetSamplingStatisticSummariesCommandOutput extends GetSamplingStatisticSummariesResult, __MetadataBearer {
8
- }
9
-
10
- export declare class GetSamplingStatisticSummariesCommand extends $Command<GetSamplingStatisticSummariesCommandInput, GetSamplingStatisticSummariesCommandOutput, XRayClientResolvedConfig> {
11
- readonly input: GetSamplingStatisticSummariesCommandInput;
12
- constructor(input: GetSamplingStatisticSummariesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: XRayClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSamplingStatisticSummariesCommandInput, GetSamplingStatisticSummariesCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetSamplingStatisticSummariesRequest,
10
+ GetSamplingStatisticSummariesResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ XRayClientResolvedConfig,
16
+ } from "../XRayClient";
17
+ export interface GetSamplingStatisticSummariesCommandInput
18
+ extends GetSamplingStatisticSummariesRequest {}
19
+ export interface GetSamplingStatisticSummariesCommandOutput
20
+ extends GetSamplingStatisticSummariesResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetSamplingStatisticSummariesCommand extends $Command<
24
+ GetSamplingStatisticSummariesCommandInput,
25
+ GetSamplingStatisticSummariesCommandOutput,
26
+ XRayClientResolvedConfig
27
+ > {
28
+ readonly input: GetSamplingStatisticSummariesCommandInput;
29
+ constructor(input: GetSamplingStatisticSummariesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: XRayClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GetSamplingStatisticSummariesCommandInput,
37
+ GetSamplingStatisticSummariesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ GetSamplingTargetsRequest,
10
+ GetSamplingTargetsResult,
11
+ } from "../models/models_0";
12
+ import {
13
+ ServiceInputTypes,
14
+ ServiceOutputTypes,
15
+ XRayClientResolvedConfig,
16
+ } from "../XRayClient";
17
+ export interface GetSamplingTargetsCommandInput
18
+ extends GetSamplingTargetsRequest {}
19
+ export interface GetSamplingTargetsCommandOutput
20
+ extends GetSamplingTargetsResult,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetSamplingTargetsCommand extends $Command<
24
+ GetSamplingTargetsCommandInput,
25
+ GetSamplingTargetsCommandOutput,
26
+ XRayClientResolvedConfig
27
+ > {
28
+ readonly input: GetSamplingTargetsCommandInput;
29
+ constructor(input: GetSamplingTargetsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: XRayClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetSamplingTargetsCommandInput, GetSamplingTargetsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }