@aws-sdk/client-xray 3.168.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 +16 -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
|
+
UpdateSamplingRuleRequest,
|
|
10
|
+
UpdateSamplingRuleResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
XRayClientResolvedConfig,
|
|
16
|
+
} from "../XRayClient";
|
|
17
|
+
export interface UpdateSamplingRuleCommandInput
|
|
18
|
+
extends UpdateSamplingRuleRequest {}
|
|
19
|
+
export interface UpdateSamplingRuleCommandOutput
|
|
20
|
+
extends UpdateSamplingRuleResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateSamplingRuleCommand extends $Command<
|
|
24
|
+
UpdateSamplingRuleCommandInput,
|
|
25
|
+
UpdateSamplingRuleCommandOutput,
|
|
26
|
+
XRayClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateSamplingRuleCommandInput;
|
|
29
|
+
constructor(input: UpdateSamplingRuleCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: XRayClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateSamplingRuleCommandInput, UpdateSamplingRuleCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,27 +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";
|
|
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";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +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";
|
|
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";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class XRayServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|