@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/XRay.d.ts +490 -140
- package/dist-types/ts3.4/XRayClient.d.ts +291 -100
- package/dist-types/ts3.4/commands/BatchGetTracesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateSamplingRuleCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteSamplingRuleCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetEncryptionConfigCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetInsightCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetInsightEventsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetInsightImpactGraphCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetInsightSummariesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetSamplingRulesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetSamplingStatisticSummariesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetSamplingTargetsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetServiceGraphCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetTimeSeriesServiceStatisticsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetTraceGraphCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetTraceSummariesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutEncryptionConfigCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutTelemetryRecordsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutTraceSegmentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateSamplingRuleCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +27 -27
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/XRayServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1408 -1321
- package/dist-types/ts3.4/pagination/BatchGetTracesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetInsightEventsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetInsightSummariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetSamplingRulesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetSamplingStatisticSummariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetServiceGraphPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetTimeSeriesServiceStatisticsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetTraceGraphPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetTraceSummariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/index.d.ts +11 -11
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +329 -83
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
}
|