@aws-sdk/client-xray 3.952.0 → 3.953.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 +639 -432
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/BatchGetTracesCommand.js +2 -2
- package/dist-es/commands/CancelTraceRetrievalCommand.js +2 -2
- package/dist-es/commands/CreateGroupCommand.js +2 -2
- package/dist-es/commands/CreateSamplingRuleCommand.js +2 -2
- package/dist-es/commands/DeleteGroupCommand.js +2 -2
- package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteSamplingRuleCommand.js +2 -2
- package/dist-es/commands/GetEncryptionConfigCommand.js +2 -2
- package/dist-es/commands/GetGroupCommand.js +2 -2
- package/dist-es/commands/GetGroupsCommand.js +2 -2
- package/dist-es/commands/GetIndexingRulesCommand.js +2 -2
- package/dist-es/commands/GetInsightCommand.js +2 -2
- package/dist-es/commands/GetInsightEventsCommand.js +2 -2
- package/dist-es/commands/GetInsightImpactGraphCommand.js +2 -2
- package/dist-es/commands/GetInsightSummariesCommand.js +2 -2
- package/dist-es/commands/GetRetrievedTracesGraphCommand.js +2 -2
- package/dist-es/commands/GetSamplingRulesCommand.js +2 -2
- package/dist-es/commands/GetSamplingStatisticSummariesCommand.js +2 -2
- package/dist-es/commands/GetSamplingTargetsCommand.js +2 -2
- package/dist-es/commands/GetServiceGraphCommand.js +2 -2
- package/dist-es/commands/GetTimeSeriesServiceStatisticsCommand.js +2 -2
- package/dist-es/commands/GetTraceGraphCommand.js +2 -2
- package/dist-es/commands/GetTraceSegmentDestinationCommand.js +2 -2
- package/dist-es/commands/GetTraceSummariesCommand.js +2 -2
- package/dist-es/commands/ListResourcePoliciesCommand.js +2 -2
- package/dist-es/commands/ListRetrievedTracesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutEncryptionConfigCommand.js +2 -2
- package/dist-es/commands/PutResourcePolicyCommand.js +2 -2
- package/dist-es/commands/PutTelemetryRecordsCommand.js +2 -2
- package/dist-es/commands/PutTraceSegmentsCommand.js +2 -2
- package/dist-es/commands/StartTraceRetrievalCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateGroupCommand.js +2 -2
- package/dist-es/commands/UpdateIndexingRuleCommand.js +2 -2
- package/dist-es/commands/UpdateSamplingRuleCommand.js +2 -2
- package/dist-es/commands/UpdateTraceSegmentDestinationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +389 -374
- package/dist-types/XRayClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +193 -249
- package/dist-types/ts3.4/XRayClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +192 -250
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.xray",
|
|
32
|
+
version: "2016-04-12",
|
|
33
|
+
serviceTarget: "AWSXRay",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "XRay",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { BatchGetTraces } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetTraces$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetTracesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetTracesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "BatchGetTraces", {})
|
|
13
13
|
.n("XRayClient", "BatchGetTracesCommand")
|
|
14
|
-
.sc(BatchGetTraces)
|
|
14
|
+
.sc(BatchGetTraces$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CancelTraceRetrieval } from "../schemas/schemas_0";
|
|
4
|
+
import { CancelTraceRetrieval$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CancelTraceRetrievalCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CancelTraceRetrievalCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "CancelTraceRetrieval", {})
|
|
13
13
|
.n("XRayClient", "CancelTraceRetrievalCommand")
|
|
14
|
-
.sc(CancelTraceRetrieval)
|
|
14
|
+
.sc(CancelTraceRetrieval$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "CreateGroup", {})
|
|
13
13
|
.n("XRayClient", "CreateGroupCommand")
|
|
14
|
-
.sc(CreateGroup)
|
|
14
|
+
.sc(CreateGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateSamplingRule } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSamplingRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSamplingRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSamplingRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "CreateSamplingRule", {})
|
|
13
13
|
.n("XRayClient", "CreateSamplingRuleCommand")
|
|
14
|
-
.sc(CreateSamplingRule)
|
|
14
|
+
.sc(CreateSamplingRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "DeleteGroup", {})
|
|
13
13
|
.n("XRayClient", "DeleteGroupCommand")
|
|
14
|
-
.sc(DeleteGroup)
|
|
14
|
+
.sc(DeleteGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteResourcePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteResourcePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteResourcePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteResourcePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "DeleteResourcePolicy", {})
|
|
13
13
|
.n("XRayClient", "DeleteResourcePolicyCommand")
|
|
14
|
-
.sc(DeleteResourcePolicy)
|
|
14
|
+
.sc(DeleteResourcePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteSamplingRule } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSamplingRule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSamplingRuleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSamplingRuleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "DeleteSamplingRule", {})
|
|
13
13
|
.n("XRayClient", "DeleteSamplingRuleCommand")
|
|
14
|
-
.sc(DeleteSamplingRule)
|
|
14
|
+
.sc(DeleteSamplingRule$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetEncryptionConfig } from "../schemas/schemas_0";
|
|
4
|
+
import { GetEncryptionConfig$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetEncryptionConfigCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetEncryptionConfigCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetEncryptionConfig", {})
|
|
13
13
|
.n("XRayClient", "GetEncryptionConfigCommand")
|
|
14
|
-
.sc(GetEncryptionConfig)
|
|
14
|
+
.sc(GetEncryptionConfig$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { GetGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetGroup", {})
|
|
13
13
|
.n("XRayClient", "GetGroupCommand")
|
|
14
|
-
.sc(GetGroup)
|
|
14
|
+
.sc(GetGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { GetGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetGroups", {})
|
|
13
13
|
.n("XRayClient", "GetGroupsCommand")
|
|
14
|
-
.sc(GetGroups)
|
|
14
|
+
.sc(GetGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetIndexingRules } from "../schemas/schemas_0";
|
|
4
|
+
import { GetIndexingRules$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetIndexingRulesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetIndexingRulesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetIndexingRules", {})
|
|
13
13
|
.n("XRayClient", "GetIndexingRulesCommand")
|
|
14
|
-
.sc(GetIndexingRules)
|
|
14
|
+
.sc(GetIndexingRules$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetInsight } from "../schemas/schemas_0";
|
|
4
|
+
import { GetInsight$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetInsightCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetInsightCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetInsight", {})
|
|
13
13
|
.n("XRayClient", "GetInsightCommand")
|
|
14
|
-
.sc(GetInsight)
|
|
14
|
+
.sc(GetInsight$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetInsightEvents } from "../schemas/schemas_0";
|
|
4
|
+
import { GetInsightEvents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetInsightEventsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetInsightEventsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetInsightEvents", {})
|
|
13
13
|
.n("XRayClient", "GetInsightEventsCommand")
|
|
14
|
-
.sc(GetInsightEvents)
|
|
14
|
+
.sc(GetInsightEvents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetInsightImpactGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { GetInsightImpactGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetInsightImpactGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetInsightImpactGraphCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetInsightImpactGraph", {})
|
|
13
13
|
.n("XRayClient", "GetInsightImpactGraphCommand")
|
|
14
|
-
.sc(GetInsightImpactGraph)
|
|
14
|
+
.sc(GetInsightImpactGraph$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetInsightSummaries } from "../schemas/schemas_0";
|
|
4
|
+
import { GetInsightSummaries$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetInsightSummariesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetInsightSummariesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetInsightSummaries", {})
|
|
13
13
|
.n("XRayClient", "GetInsightSummariesCommand")
|
|
14
|
-
.sc(GetInsightSummaries)
|
|
14
|
+
.sc(GetInsightSummaries$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRetrievedTracesGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRetrievedTracesGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRetrievedTracesGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRetrievedTracesGraphCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetRetrievedTracesGraph", {})
|
|
13
13
|
.n("XRayClient", "GetRetrievedTracesGraphCommand")
|
|
14
|
-
.sc(GetRetrievedTracesGraph)
|
|
14
|
+
.sc(GetRetrievedTracesGraph$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSamplingRules } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSamplingRules$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSamplingRulesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSamplingRulesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetSamplingRules", {})
|
|
13
13
|
.n("XRayClient", "GetSamplingRulesCommand")
|
|
14
|
-
.sc(GetSamplingRules)
|
|
14
|
+
.sc(GetSamplingRules$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSamplingStatisticSummaries } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSamplingStatisticSummaries$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSamplingStatisticSummariesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSamplingStatisticSummariesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetSamplingStatisticSummaries", {})
|
|
13
13
|
.n("XRayClient", "GetSamplingStatisticSummariesCommand")
|
|
14
|
-
.sc(GetSamplingStatisticSummaries)
|
|
14
|
+
.sc(GetSamplingStatisticSummaries$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSamplingTargets } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSamplingTargets$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSamplingTargetsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSamplingTargetsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetSamplingTargets", {})
|
|
13
13
|
.n("XRayClient", "GetSamplingTargetsCommand")
|
|
14
|
-
.sc(GetSamplingTargets)
|
|
14
|
+
.sc(GetSamplingTargets$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetServiceGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { GetServiceGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetServiceGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetServiceGraphCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetServiceGraph", {})
|
|
13
13
|
.n("XRayClient", "GetServiceGraphCommand")
|
|
14
|
-
.sc(GetServiceGraph)
|
|
14
|
+
.sc(GetServiceGraph$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTimeSeriesServiceStatistics } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTimeSeriesServiceStatistics$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTimeSeriesServiceStatisticsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTimeSeriesServiceStatisticsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetTimeSeriesServiceStatistics", {})
|
|
13
13
|
.n("XRayClient", "GetTimeSeriesServiceStatisticsCommand")
|
|
14
|
-
.sc(GetTimeSeriesServiceStatistics)
|
|
14
|
+
.sc(GetTimeSeriesServiceStatistics$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTraceGraph } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTraceGraph$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTraceGraphCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTraceGraphCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetTraceGraph", {})
|
|
13
13
|
.n("XRayClient", "GetTraceGraphCommand")
|
|
14
|
-
.sc(GetTraceGraph)
|
|
14
|
+
.sc(GetTraceGraph$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTraceSegmentDestination } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTraceSegmentDestination$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTraceSegmentDestinationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTraceSegmentDestinationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetTraceSegmentDestination", {})
|
|
13
13
|
.n("XRayClient", "GetTraceSegmentDestinationCommand")
|
|
14
|
-
.sc(GetTraceSegmentDestination)
|
|
14
|
+
.sc(GetTraceSegmentDestination$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTraceSummaries } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTraceSummaries$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTraceSummariesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTraceSummariesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "GetTraceSummaries", {})
|
|
13
13
|
.n("XRayClient", "GetTraceSummariesCommand")
|
|
14
|
-
.sc(GetTraceSummaries)
|
|
14
|
+
.sc(GetTraceSummaries$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListResourcePolicies } from "../schemas/schemas_0";
|
|
4
|
+
import { ListResourcePolicies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListResourcePoliciesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListResourcePoliciesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "ListResourcePolicies", {})
|
|
13
13
|
.n("XRayClient", "ListResourcePoliciesCommand")
|
|
14
|
-
.sc(ListResourcePolicies)
|
|
14
|
+
.sc(ListResourcePolicies$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRetrievedTraces } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRetrievedTraces$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRetrievedTracesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRetrievedTracesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "ListRetrievedTraces", {})
|
|
13
13
|
.n("XRayClient", "ListRetrievedTracesCommand")
|
|
14
|
-
.sc(ListRetrievedTraces)
|
|
14
|
+
.sc(ListRetrievedTraces$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "ListTagsForResource", {})
|
|
13
13
|
.n("XRayClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutEncryptionConfig } from "../schemas/schemas_0";
|
|
4
|
+
import { PutEncryptionConfig$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutEncryptionConfigCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutEncryptionConfigCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "PutEncryptionConfig", {})
|
|
13
13
|
.n("XRayClient", "PutEncryptionConfigCommand")
|
|
14
|
-
.sc(PutEncryptionConfig)
|
|
14
|
+
.sc(PutEncryptionConfig$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutResourcePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutResourcePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutResourcePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutResourcePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "PutResourcePolicy", {})
|
|
13
13
|
.n("XRayClient", "PutResourcePolicyCommand")
|
|
14
|
-
.sc(PutResourcePolicy)
|
|
14
|
+
.sc(PutResourcePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutTelemetryRecords } from "../schemas/schemas_0";
|
|
4
|
+
import { PutTelemetryRecords$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutTelemetryRecordsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutTelemetryRecordsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "PutTelemetryRecords", {})
|
|
13
13
|
.n("XRayClient", "PutTelemetryRecordsCommand")
|
|
14
|
-
.sc(PutTelemetryRecords)
|
|
14
|
+
.sc(PutTelemetryRecords$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutTraceSegments } from "../schemas/schemas_0";
|
|
4
|
+
import { PutTraceSegments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutTraceSegmentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutTraceSegmentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "PutTraceSegments", {})
|
|
13
13
|
.n("XRayClient", "PutTraceSegmentsCommand")
|
|
14
|
-
.sc(PutTraceSegments)
|
|
14
|
+
.sc(PutTraceSegments$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartTraceRetrieval } from "../schemas/schemas_0";
|
|
4
|
+
import { StartTraceRetrieval$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartTraceRetrievalCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartTraceRetrievalCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "StartTraceRetrieval", {})
|
|
13
13
|
.n("XRayClient", "StartTraceRetrievalCommand")
|
|
14
|
-
.sc(StartTraceRetrieval)
|
|
14
|
+
.sc(StartTraceRetrieval$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "TagResource", {})
|
|
13
13
|
.n("XRayClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "UntagResource", {})
|
|
13
13
|
.n("XRayClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSXRay", "UpdateGroup", {})
|
|
13
13
|
.n("XRayClient", "UpdateGroupCommand")
|
|
14
|
-
.sc(UpdateGroup)
|
|
14
|
+
.sc(UpdateGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|