@aws-sdk/client-xray 3.1087.0 → 3.1089.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 +1 -1
- package/dist-types/ts3.4/XRay.d.ts +133 -157
- package/dist-types/ts3.4/XRayClient.d.ts +22 -53
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/BatchGetTracesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CancelTraceRetrievalCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateSamplingRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSamplingRuleCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetEncryptionConfigCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetGroupCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/GetGroupsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/GetIndexingRulesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/GetInsightCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetInsightEventsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetInsightImpactGraphCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetInsightSummariesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetRetrievedTracesGraphCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSamplingRulesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/GetSamplingStatisticSummariesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetSamplingTargetsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetServiceGraphCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetTimeSeriesServiceStatisticsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetTraceGraphCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetTraceSegmentDestinationCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetTraceSummariesCommand.d.ts +5 -11
- package/dist-types/ts3.4/commands/ListResourcePoliciesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRetrievedTracesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutEncryptionConfigCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +5 -11
- package/dist-types/ts3.4/commands/PutTelemetryRecordsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutTraceSegmentsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartTraceRetrievalCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateIndexingRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSamplingRuleCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateTraceSegmentDestinationCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +6 -12
- package/dist-types/ts3.4/models/errors.d.ts +9 -39
- package/dist-types/ts3.4/models/models_0.d.ts +1 -3
- package/dist-types/ts3.4/pagination/GetGroupsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetRetrievedTracesGraphRequest,
|
|
4
|
-
GetRetrievedTracesGraphResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetRetrievedTracesGraphRequest, GetRetrievedTracesGraphResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetRetrievedTracesGraphCommandInput
|
|
8
|
-
extends GetRetrievedTracesGraphRequest {}
|
|
4
|
+
export interface GetRetrievedTracesGraphCommandInput extends GetRetrievedTracesGraphRequest {}
|
|
9
5
|
export interface GetRetrievedTracesGraphCommandOutput
|
|
10
|
-
extends GetRetrievedTracesGraphResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetRetrievedTracesGraphResult, __MetadataBearer {}
|
|
12
7
|
declare const GetRetrievedTracesGraphCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetRetrievedTracesGraphCommandInput
|
|
9
|
+
input: GetRetrievedTracesGraphCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetRetrievedTracesGraphCommandInput,
|
|
17
12
|
GetRetrievedTracesGraphCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetRetrievedTracesGraphCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetRetrievedTracesGraphCommandInput
|
|
18
|
+
input: GetRetrievedTracesGraphCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetRetrievedTracesGraphCommandInput,
|
|
26
21
|
GetRetrievedTracesGraphCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSamplingRulesRequest,
|
|
4
|
-
GetSamplingRulesResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSamplingRulesRequest, GetSamplingRulesResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetSamplingRulesCommandInput extends GetSamplingRulesRequest {}
|
|
8
|
-
export interface GetSamplingRulesCommandOutput
|
|
9
|
-
extends GetSamplingRulesResult,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetSamplingRulesCommandOutput extends GetSamplingRulesResult, __MetadataBearer {}
|
|
11
6
|
declare const GetSamplingRulesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetSamplingRulesCommandInput
|
|
8
|
+
input: GetSamplingRulesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetSamplingRulesCommandInput,
|
|
16
11
|
GetSamplingRulesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetSamplingStatisticSummariesResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetSamplingStatisticSummariesCommandInput
|
|
8
|
-
extends GetSamplingStatisticSummariesRequest {}
|
|
7
|
+
export interface GetSamplingStatisticSummariesCommandInput extends GetSamplingStatisticSummariesRequest {}
|
|
9
8
|
export interface GetSamplingStatisticSummariesCommandOutput
|
|
10
|
-
extends GetSamplingStatisticSummariesResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetSamplingStatisticSummariesResult, __MetadataBearer {}
|
|
12
10
|
declare const GetSamplingStatisticSummariesCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetSamplingStatisticSummariesCommandInput
|
|
12
|
+
input: GetSamplingStatisticSummariesCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetSamplingStatisticSummariesCommandInput,
|
|
17
15
|
GetSamplingStatisticSummariesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetSamplingTargetsRequest,
|
|
4
|
-
GetSamplingTargetsResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetSamplingTargetsRequest, GetSamplingTargetsResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetSamplingTargetsCommandInput
|
|
8
|
-
extends GetSamplingTargetsRequest {}
|
|
4
|
+
export interface GetSamplingTargetsCommandInput extends GetSamplingTargetsRequest {}
|
|
9
5
|
export interface GetSamplingTargetsCommandOutput
|
|
10
|
-
extends GetSamplingTargetsResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetSamplingTargetsResult, __MetadataBearer {}
|
|
12
7
|
declare const GetSamplingTargetsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetSamplingTargetsCommandInput
|
|
9
|
+
input: GetSamplingTargetsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetSamplingTargetsCommandInput,
|
|
17
12
|
GetSamplingTargetsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetSamplingTargetsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetSamplingTargetsCommandInput
|
|
18
|
+
input: GetSamplingTargetsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetSamplingTargetsCommandInput,
|
|
26
21
|
GetSamplingTargetsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetServiceGraphRequest,
|
|
4
|
-
GetServiceGraphResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetServiceGraphRequest, GetServiceGraphResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetServiceGraphCommandInput extends GetServiceGraphRequest {}
|
|
8
|
-
export interface GetServiceGraphCommandOutput
|
|
9
|
-
extends GetServiceGraphResult,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetServiceGraphCommandOutput extends GetServiceGraphResult, __MetadataBearer {}
|
|
11
6
|
declare const GetServiceGraphCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetServiceGraphCommandInput
|
|
8
|
+
input: GetServiceGraphCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetServiceGraphCommandInput,
|
|
16
11
|
GetServiceGraphCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetServiceGraphCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetServiceGraphCommandInput
|
|
17
|
+
input: GetServiceGraphCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetServiceGraphCommandInput,
|
|
25
20
|
GetServiceGraphCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetTimeSeriesServiceStatisticsResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetTimeSeriesServiceStatisticsCommandInput
|
|
8
|
-
extends GetTimeSeriesServiceStatisticsRequest {}
|
|
7
|
+
export interface GetTimeSeriesServiceStatisticsCommandInput extends GetTimeSeriesServiceStatisticsRequest {}
|
|
9
8
|
export interface GetTimeSeriesServiceStatisticsCommandOutput
|
|
10
|
-
extends GetTimeSeriesServiceStatisticsResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetTimeSeriesServiceStatisticsResult, __MetadataBearer {}
|
|
12
10
|
declare const GetTimeSeriesServiceStatisticsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetTimeSeriesServiceStatisticsCommandInput
|
|
12
|
+
input: GetTimeSeriesServiceStatisticsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetTimeSeriesServiceStatisticsCommandInput,
|
|
17
15
|
GetTimeSeriesServiceStatisticsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const GetTimeSeriesServiceStatisticsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: GetTimeSeriesServiceStatisticsCommandInput
|
|
21
|
+
input: GetTimeSeriesServiceStatisticsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
GetTimeSeriesServiceStatisticsCommandInput,
|
|
26
24
|
GetTimeSeriesServiceStatisticsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetTraceGraphRequest, GetTraceGraphResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetTraceGraphCommandInput extends GetTraceGraphRequest {}
|
|
5
|
-
export interface GetTraceGraphCommandOutput
|
|
6
|
-
extends GetTraceGraphResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetTraceGraphCommandOutput extends GetTraceGraphResult, __MetadataBearer {}
|
|
8
6
|
declare const GetTraceGraphCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetTraceGraphCommandInput
|
|
8
|
+
input: GetTraceGraphCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetTraceGraphCommandInput,
|
|
13
11
|
GetTraceGraphCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetTraceGraphCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetTraceGraphCommandInput
|
|
17
|
+
input: GetTraceGraphCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetTraceGraphCommandInput,
|
|
22
20
|
GetTraceGraphCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetTraceSegmentDestinationResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetTraceSegmentDestinationCommandInput
|
|
8
|
-
extends GetTraceSegmentDestinationRequest {}
|
|
7
|
+
export interface GetTraceSegmentDestinationCommandInput extends GetTraceSegmentDestinationRequest {}
|
|
9
8
|
export interface GetTraceSegmentDestinationCommandOutput
|
|
10
|
-
extends GetTraceSegmentDestinationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetTraceSegmentDestinationResult, __MetadataBearer {}
|
|
12
10
|
declare const GetTraceSegmentDestinationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetTraceSegmentDestinationCommandInput
|
|
12
|
+
input: GetTraceSegmentDestinationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetTraceSegmentDestinationCommandInput,
|
|
17
15
|
GetTraceSegmentDestinationCommandOutput,
|
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetTraceSummariesRequest,
|
|
4
|
-
GetTraceSummariesResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetTraceSummariesRequest, GetTraceSummariesResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetTraceSummariesCommandInput
|
|
8
|
-
|
|
9
|
-
export interface GetTraceSummariesCommandOutput
|
|
10
|
-
extends GetTraceSummariesResult,
|
|
11
|
-
__MetadataBearer {}
|
|
4
|
+
export interface GetTraceSummariesCommandInput extends GetTraceSummariesRequest {}
|
|
5
|
+
export interface GetTraceSummariesCommandOutput extends GetTraceSummariesResult, __MetadataBearer {}
|
|
12
6
|
declare const GetTraceSummariesCommand_base: {
|
|
13
7
|
new (
|
|
14
|
-
input: GetTraceSummariesCommandInput
|
|
8
|
+
input: GetTraceSummariesCommandInput,
|
|
15
9
|
): import("@smithy/core/client").CommandImpl<
|
|
16
10
|
GetTraceSummariesCommandInput,
|
|
17
11
|
GetTraceSummariesCommandOutput,
|
|
@@ -20,7 +14,7 @@ declare const GetTraceSummariesCommand_base: {
|
|
|
20
14
|
import("..").ServiceOutputTypes
|
|
21
15
|
>;
|
|
22
16
|
new (
|
|
23
|
-
input: GetTraceSummariesCommandInput
|
|
17
|
+
input: GetTraceSummariesCommandInput,
|
|
24
18
|
): import("@smithy/core/client").CommandImpl<
|
|
25
19
|
GetTraceSummariesCommandInput,
|
|
26
20
|
GetTraceSummariesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListResourcePoliciesRequest,
|
|
4
|
-
ListResourcePoliciesResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListResourcePoliciesRequest, ListResourcePoliciesResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListResourcePoliciesCommandInput
|
|
8
|
-
extends ListResourcePoliciesRequest {}
|
|
4
|
+
export interface ListResourcePoliciesCommandInput extends ListResourcePoliciesRequest {}
|
|
9
5
|
export interface ListResourcePoliciesCommandOutput
|
|
10
|
-
extends ListResourcePoliciesResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListResourcePoliciesResult, __MetadataBearer {}
|
|
12
7
|
declare const ListResourcePoliciesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListResourcePoliciesCommandInput
|
|
9
|
+
input: ListResourcePoliciesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListResourcePoliciesCommandInput,
|
|
17
12
|
ListResourcePoliciesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListRetrievedTracesRequest,
|
|
4
|
-
ListRetrievedTracesResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListRetrievedTracesRequest, ListRetrievedTracesResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRetrievedTracesCommandInput
|
|
8
|
-
extends ListRetrievedTracesRequest {}
|
|
4
|
+
export interface ListRetrievedTracesCommandInput extends ListRetrievedTracesRequest {}
|
|
9
5
|
export interface ListRetrievedTracesCommandOutput
|
|
10
|
-
extends ListRetrievedTracesResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListRetrievedTracesResult, __MetadataBearer {}
|
|
12
7
|
declare const ListRetrievedTracesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListRetrievedTracesCommandInput
|
|
9
|
+
input: ListRetrievedTracesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListRetrievedTracesCommandInput,
|
|
17
12
|
ListRetrievedTracesCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListRetrievedTracesCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListRetrievedTracesCommandInput
|
|
18
|
+
input: ListRetrievedTracesCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListRetrievedTracesCommandInput,
|
|
26
21
|
ListRetrievedTracesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutEncryptionConfigRequest,
|
|
4
|
-
PutEncryptionConfigResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutEncryptionConfigRequest, PutEncryptionConfigResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutEncryptionConfigCommandInput
|
|
8
|
-
extends PutEncryptionConfigRequest {}
|
|
4
|
+
export interface PutEncryptionConfigCommandInput extends PutEncryptionConfigRequest {}
|
|
9
5
|
export interface PutEncryptionConfigCommandOutput
|
|
10
|
-
extends PutEncryptionConfigResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutEncryptionConfigResult, __MetadataBearer {}
|
|
12
7
|
declare const PutEncryptionConfigCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutEncryptionConfigCommandInput
|
|
9
|
+
input: PutEncryptionConfigCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutEncryptionConfigCommandInput,
|
|
17
12
|
PutEncryptionConfigCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutEncryptionConfigCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutEncryptionConfigCommandInput
|
|
18
|
+
input: PutEncryptionConfigCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutEncryptionConfigCommandInput,
|
|
26
21
|
PutEncryptionConfigCommandOutput,
|
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutResourcePolicyRequest,
|
|
4
|
-
PutResourcePolicyResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutResourcePolicyRequest, PutResourcePolicyResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutResourcePolicyCommandInput
|
|
8
|
-
|
|
9
|
-
export interface PutResourcePolicyCommandOutput
|
|
10
|
-
extends PutResourcePolicyResult,
|
|
11
|
-
__MetadataBearer {}
|
|
4
|
+
export interface PutResourcePolicyCommandInput extends PutResourcePolicyRequest {}
|
|
5
|
+
export interface PutResourcePolicyCommandOutput extends PutResourcePolicyResult, __MetadataBearer {}
|
|
12
6
|
declare const PutResourcePolicyCommand_base: {
|
|
13
7
|
new (
|
|
14
|
-
input: PutResourcePolicyCommandInput
|
|
8
|
+
input: PutResourcePolicyCommandInput,
|
|
15
9
|
): import("@smithy/core/client").CommandImpl<
|
|
16
10
|
PutResourcePolicyCommandInput,
|
|
17
11
|
PutResourcePolicyCommandOutput,
|
|
@@ -20,7 +14,7 @@ declare const PutResourcePolicyCommand_base: {
|
|
|
20
14
|
import("..").ServiceOutputTypes
|
|
21
15
|
>;
|
|
22
16
|
new (
|
|
23
|
-
input: PutResourcePolicyCommandInput
|
|
17
|
+
input: PutResourcePolicyCommandInput,
|
|
24
18
|
): import("@smithy/core/client").CommandImpl<
|
|
25
19
|
PutResourcePolicyCommandInput,
|
|
26
20
|
PutResourcePolicyCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutTelemetryRecordsRequest,
|
|
4
|
-
PutTelemetryRecordsResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutTelemetryRecordsRequest, PutTelemetryRecordsResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PutTelemetryRecordsCommandInput
|
|
8
|
-
extends PutTelemetryRecordsRequest {}
|
|
4
|
+
export interface PutTelemetryRecordsCommandInput extends PutTelemetryRecordsRequest {}
|
|
9
5
|
export interface PutTelemetryRecordsCommandOutput
|
|
10
|
-
extends PutTelemetryRecordsResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PutTelemetryRecordsResult, __MetadataBearer {}
|
|
12
7
|
declare const PutTelemetryRecordsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PutTelemetryRecordsCommandInput
|
|
9
|
+
input: PutTelemetryRecordsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PutTelemetryRecordsCommandInput,
|
|
17
12
|
PutTelemetryRecordsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PutTelemetryRecordsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PutTelemetryRecordsCommandInput
|
|
18
|
+
input: PutTelemetryRecordsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutTelemetryRecordsCommandInput,
|
|
26
21
|
PutTelemetryRecordsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutTraceSegmentsRequest,
|
|
4
|
-
PutTraceSegmentsResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutTraceSegmentsRequest, PutTraceSegmentsResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface PutTraceSegmentsCommandInput extends PutTraceSegmentsRequest {}
|
|
8
|
-
export interface PutTraceSegmentsCommandOutput
|
|
9
|
-
extends PutTraceSegmentsResult,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface PutTraceSegmentsCommandOutput extends PutTraceSegmentsResult, __MetadataBearer {}
|
|
11
6
|
declare const PutTraceSegmentsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: PutTraceSegmentsCommandInput
|
|
8
|
+
input: PutTraceSegmentsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
PutTraceSegmentsCommandInput,
|
|
16
11
|
PutTraceSegmentsCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const PutTraceSegmentsCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: PutTraceSegmentsCommandInput
|
|
17
|
+
input: PutTraceSegmentsCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
PutTraceSegmentsCommandInput,
|
|
25
20
|
PutTraceSegmentsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartTraceRetrievalRequest,
|
|
4
|
-
StartTraceRetrievalResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartTraceRetrievalRequest, StartTraceRetrievalResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartTraceRetrievalCommandInput
|
|
8
|
-
extends StartTraceRetrievalRequest {}
|
|
4
|
+
export interface StartTraceRetrievalCommandInput extends StartTraceRetrievalRequest {}
|
|
9
5
|
export interface StartTraceRetrievalCommandOutput
|
|
10
|
-
extends StartTraceRetrievalResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartTraceRetrievalResult, __MetadataBearer {}
|
|
12
7
|
declare const StartTraceRetrievalCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartTraceRetrievalCommandInput
|
|
9
|
+
input: StartTraceRetrievalCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartTraceRetrievalCommandInput,
|
|
17
12
|
StartTraceRetrievalCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartTraceRetrievalCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartTraceRetrievalCommandInput
|
|
18
|
+
input: StartTraceRetrievalCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartTraceRetrievalCommandInput,
|
|
26
21
|
StartTraceRetrievalCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateGroupRequest, UpdateGroupResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateGroupCommandInput extends UpdateGroupRequest {}
|
|
5
|
-
export interface UpdateGroupCommandOutput
|
|
6
|
-
extends UpdateGroupResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateGroupCommandOutput extends UpdateGroupResult, __MetadataBearer {}
|
|
8
6
|
declare const UpdateGroupCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateGroupCommandInput
|
|
8
|
+
input: UpdateGroupCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateGroupCommandInput,
|
|
13
11
|
UpdateGroupCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateIndexingRuleRequest,
|
|
4
|
-
UpdateIndexingRuleResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateIndexingRuleRequest, UpdateIndexingRuleResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateIndexingRuleCommandInput
|
|
8
|
-
extends UpdateIndexingRuleRequest {}
|
|
4
|
+
export interface UpdateIndexingRuleCommandInput extends UpdateIndexingRuleRequest {}
|
|
9
5
|
export interface UpdateIndexingRuleCommandOutput
|
|
10
|
-
extends UpdateIndexingRuleResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateIndexingRuleResult, __MetadataBearer {}
|
|
12
7
|
declare const UpdateIndexingRuleCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateIndexingRuleCommandInput
|
|
9
|
+
input: UpdateIndexingRuleCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateIndexingRuleCommandInput,
|
|
17
12
|
UpdateIndexingRuleCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateIndexingRuleCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateIndexingRuleCommandInput
|
|
18
|
+
input: UpdateIndexingRuleCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateIndexingRuleCommandInput,
|
|
26
21
|
UpdateIndexingRuleCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateSamplingRuleRequest,
|
|
4
|
-
UpdateSamplingRuleResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateSamplingRuleRequest, UpdateSamplingRuleResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateSamplingRuleCommandInput
|
|
8
|
-
extends UpdateSamplingRuleRequest {}
|
|
4
|
+
export interface UpdateSamplingRuleCommandInput extends UpdateSamplingRuleRequest {}
|
|
9
5
|
export interface UpdateSamplingRuleCommandOutput
|
|
10
|
-
extends UpdateSamplingRuleResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateSamplingRuleResult, __MetadataBearer {}
|
|
12
7
|
declare const UpdateSamplingRuleCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateSamplingRuleCommandInput
|
|
9
|
+
input: UpdateSamplingRuleCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateSamplingRuleCommandInput,
|
|
17
12
|
UpdateSamplingRuleCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateSamplingRuleCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateSamplingRuleCommandInput
|
|
18
|
+
input: UpdateSamplingRuleCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateSamplingRuleCommandInput,
|
|
26
21
|
UpdateSamplingRuleCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateTraceSegmentDestinationResult,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateTraceSegmentDestinationCommandInput
|
|
8
|
-
extends UpdateTraceSegmentDestinationRequest {}
|
|
7
|
+
export interface UpdateTraceSegmentDestinationCommandInput extends UpdateTraceSegmentDestinationRequest {}
|
|
9
8
|
export interface UpdateTraceSegmentDestinationCommandOutput
|
|
10
|
-
extends UpdateTraceSegmentDestinationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateTraceSegmentDestinationResult, __MetadataBearer {}
|
|
12
10
|
declare const UpdateTraceSegmentDestinationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateTraceSegmentDestinationCommandInput
|
|
12
|
+
input: UpdateTraceSegmentDestinationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateTraceSegmentDestinationCommandInput,
|
|
17
15
|
UpdateTraceSegmentDestinationCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|