@aws-sdk/client-xray 3.490.0 → 3.496.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/dist-cjs/XRay.js +1 -71
  2. package/dist-cjs/XRayClient.js +1 -43
  3. package/dist-cjs/commands/BatchGetTracesCommand.js +1 -28
  4. package/dist-cjs/commands/CreateGroupCommand.js +1 -28
  5. package/dist-cjs/commands/CreateSamplingRuleCommand.js +1 -28
  6. package/dist-cjs/commands/DeleteGroupCommand.js +1 -28
  7. package/dist-cjs/commands/DeleteResourcePolicyCommand.js +1 -28
  8. package/dist-cjs/commands/DeleteSamplingRuleCommand.js +1 -28
  9. package/dist-cjs/commands/GetEncryptionConfigCommand.js +1 -28
  10. package/dist-cjs/commands/GetGroupCommand.js +1 -28
  11. package/dist-cjs/commands/GetGroupsCommand.js +1 -28
  12. package/dist-cjs/commands/GetInsightCommand.js +1 -28
  13. package/dist-cjs/commands/GetInsightEventsCommand.js +1 -28
  14. package/dist-cjs/commands/GetInsightImpactGraphCommand.js +1 -28
  15. package/dist-cjs/commands/GetInsightSummariesCommand.js +1 -28
  16. package/dist-cjs/commands/GetSamplingRulesCommand.js +1 -28
  17. package/dist-cjs/commands/GetSamplingStatisticSummariesCommand.js +1 -28
  18. package/dist-cjs/commands/GetSamplingTargetsCommand.js +1 -28
  19. package/dist-cjs/commands/GetServiceGraphCommand.js +1 -28
  20. package/dist-cjs/commands/GetTimeSeriesServiceStatisticsCommand.js +1 -28
  21. package/dist-cjs/commands/GetTraceGraphCommand.js +1 -28
  22. package/dist-cjs/commands/GetTraceSummariesCommand.js +1 -28
  23. package/dist-cjs/commands/ListResourcePoliciesCommand.js +1 -28
  24. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  25. package/dist-cjs/commands/PutEncryptionConfigCommand.js +1 -28
  26. package/dist-cjs/commands/PutResourcePolicyCommand.js +1 -28
  27. package/dist-cjs/commands/PutTelemetryRecordsCommand.js +1 -28
  28. package/dist-cjs/commands/PutTraceSegmentsCommand.js +1 -28
  29. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  30. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  31. package/dist-cjs/commands/UpdateGroupCommand.js +1 -28
  32. package/dist-cjs/commands/UpdateSamplingRuleCommand.js +1 -28
  33. package/dist-cjs/commands/index.js +1 -33
  34. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  35. package/dist-cjs/extensionConfiguration.js +1 -2
  36. package/dist-cjs/index.js +3282 -11
  37. package/dist-cjs/models/XRayServiceException.js +1 -12
  38. package/dist-cjs/models/index.js +1 -4
  39. package/dist-cjs/models/models_0.js +1 -182
  40. package/dist-cjs/pagination/BatchGetTracesPaginator.js +1 -7
  41. package/dist-cjs/pagination/GetGroupsPaginator.js +1 -7
  42. package/dist-cjs/pagination/GetInsightEventsPaginator.js +1 -7
  43. package/dist-cjs/pagination/GetInsightSummariesPaginator.js +1 -7
  44. package/dist-cjs/pagination/GetSamplingRulesPaginator.js +1 -7
  45. package/dist-cjs/pagination/GetSamplingStatisticSummariesPaginator.js +1 -7
  46. package/dist-cjs/pagination/GetServiceGraphPaginator.js +1 -7
  47. package/dist-cjs/pagination/GetTimeSeriesServiceStatisticsPaginator.js +1 -7
  48. package/dist-cjs/pagination/GetTraceGraphPaginator.js +1 -7
  49. package/dist-cjs/pagination/GetTraceSummariesPaginator.js +1 -7
  50. package/dist-cjs/pagination/Interfaces.js +1 -2
  51. package/dist-cjs/pagination/ListResourcePoliciesPaginator.js +1 -7
  52. package/dist-cjs/pagination/ListTagsForResourcePaginator.js +1 -7
  53. package/dist-cjs/pagination/index.js +1 -16
  54. package/dist-cjs/protocols/Aws_restJson1.js +1 -2248
  55. package/dist-cjs/runtimeExtensions.js +1 -22
  56. package/package.json +40 -40
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetTimeSeriesServiceStatisticsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetTimeSeriesServiceStatisticsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "GetTimeSeriesServiceStatistics", {})
22
- .n("XRayClient", "GetTimeSeriesServiceStatisticsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetTimeSeriesServiceStatisticsCommand)
25
- .de(Aws_restJson1_1.de_GetTimeSeriesServiceStatisticsCommand)
26
- .build() {
27
- }
28
- exports.GetTimeSeriesServiceStatisticsCommand = GetTimeSeriesServiceStatisticsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetTraceGraphCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetTraceGraphCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "GetTraceGraph", {})
22
- .n("XRayClient", "GetTraceGraphCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetTraceGraphCommand)
25
- .de(Aws_restJson1_1.de_GetTraceGraphCommand)
26
- .build() {
27
- }
28
- exports.GetTraceGraphCommand = GetTraceGraphCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetTraceSummariesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetTraceSummariesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "GetTraceSummaries", {})
22
- .n("XRayClient", "GetTraceSummariesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetTraceSummariesCommand)
25
- .de(Aws_restJson1_1.de_GetTraceSummariesCommand)
26
- .build() {
27
- }
28
- exports.GetTraceSummariesCommand = GetTraceSummariesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListResourcePoliciesCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListResourcePoliciesCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "ListResourcePolicies", {})
22
- .n("XRayClient", "ListResourcePoliciesCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListResourcePoliciesCommand)
25
- .de(Aws_restJson1_1.de_ListResourcePoliciesCommand)
26
- .build() {
27
- }
28
- exports.ListResourcePoliciesCommand = ListResourcePoliciesCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListTagsForResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "ListTagsForResource", {})
22
- .n("XRayClient", "ListTagsForResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListTagsForResourceCommand)
25
- .de(Aws_restJson1_1.de_ListTagsForResourceCommand)
26
- .build() {
27
- }
28
- exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutEncryptionConfigCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutEncryptionConfigCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "PutEncryptionConfig", {})
22
- .n("XRayClient", "PutEncryptionConfigCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutEncryptionConfigCommand)
25
- .de(Aws_restJson1_1.de_PutEncryptionConfigCommand)
26
- .build() {
27
- }
28
- exports.PutEncryptionConfigCommand = PutEncryptionConfigCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutResourcePolicyCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutResourcePolicyCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "PutResourcePolicy", {})
22
- .n("XRayClient", "PutResourcePolicyCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutResourcePolicyCommand)
25
- .de(Aws_restJson1_1.de_PutResourcePolicyCommand)
26
- .build() {
27
- }
28
- exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutTelemetryRecordsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutTelemetryRecordsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "PutTelemetryRecords", {})
22
- .n("XRayClient", "PutTelemetryRecordsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutTelemetryRecordsCommand)
25
- .de(Aws_restJson1_1.de_PutTelemetryRecordsCommand)
26
- .build() {
27
- }
28
- exports.PutTelemetryRecordsCommand = PutTelemetryRecordsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutTraceSegmentsCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutTraceSegmentsCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "PutTraceSegments", {})
22
- .n("XRayClient", "PutTraceSegmentsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutTraceSegmentsCommand)
25
- .de(Aws_restJson1_1.de_PutTraceSegmentsCommand)
26
- .build() {
27
- }
28
- exports.PutTraceSegmentsCommand = PutTraceSegmentsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class TagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "TagResource", {})
22
- .n("XRayClient", "TagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_TagResourceCommand)
25
- .de(Aws_restJson1_1.de_TagResourceCommand)
26
- .build() {
27
- }
28
- exports.TagResourceCommand = TagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UntagResourceCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "UntagResource", {})
22
- .n("XRayClient", "UntagResourceCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UntagResourceCommand)
25
- .de(Aws_restJson1_1.de_UntagResourceCommand)
26
- .build() {
27
- }
28
- exports.UntagResourceCommand = UntagResourceCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateGroupCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdateGroupCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "UpdateGroup", {})
22
- .n("XRayClient", "UpdateGroupCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateGroupCommand)
25
- .de(Aws_restJson1_1.de_UpdateGroupCommand)
26
- .build() {
27
- }
28
- exports.UpdateGroupCommand = UpdateGroupCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateSamplingRuleCommand = exports.$Command = void 0;
4
- const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
5
- const middleware_serde_1 = require("@smithy/middleware-serde");
6
- const smithy_client_1 = require("@smithy/smithy-client");
7
- Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
8
- const EndpointParameters_1 = require("../endpoint/EndpointParameters");
9
- const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdateSamplingRuleCommand extends smithy_client_1.Command
11
- .classBuilder()
12
- .ep({
13
- ...EndpointParameters_1.commonParams,
14
- })
15
- .m(function (Command, cs, config, o) {
16
- return [
17
- (0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
18
- (0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
19
- ];
20
- })
21
- .s("AWSXRay", "UpdateSamplingRule", {})
22
- .n("XRayClient", "UpdateSamplingRuleCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateSamplingRuleCommand)
25
- .de(Aws_restJson1_1.de_UpdateSamplingRuleCommand)
26
- .build() {
27
- }
28
- exports.UpdateSamplingRuleCommand = UpdateSamplingRuleCommand;
1
+ module.exports = require("../index.js");
@@ -1,33 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./BatchGetTracesCommand"), exports);
5
- tslib_1.__exportStar(require("./CreateGroupCommand"), exports);
6
- tslib_1.__exportStar(require("./CreateSamplingRuleCommand"), exports);
7
- tslib_1.__exportStar(require("./DeleteGroupCommand"), exports);
8
- tslib_1.__exportStar(require("./DeleteResourcePolicyCommand"), exports);
9
- tslib_1.__exportStar(require("./DeleteSamplingRuleCommand"), exports);
10
- tslib_1.__exportStar(require("./GetEncryptionConfigCommand"), exports);
11
- tslib_1.__exportStar(require("./GetGroupCommand"), exports);
12
- tslib_1.__exportStar(require("./GetGroupsCommand"), exports);
13
- tslib_1.__exportStar(require("./GetInsightCommand"), exports);
14
- tslib_1.__exportStar(require("./GetInsightEventsCommand"), exports);
15
- tslib_1.__exportStar(require("./GetInsightImpactGraphCommand"), exports);
16
- tslib_1.__exportStar(require("./GetInsightSummariesCommand"), exports);
17
- tslib_1.__exportStar(require("./GetSamplingRulesCommand"), exports);
18
- tslib_1.__exportStar(require("./GetSamplingStatisticSummariesCommand"), exports);
19
- tslib_1.__exportStar(require("./GetSamplingTargetsCommand"), exports);
20
- tslib_1.__exportStar(require("./GetServiceGraphCommand"), exports);
21
- tslib_1.__exportStar(require("./GetTimeSeriesServiceStatisticsCommand"), exports);
22
- tslib_1.__exportStar(require("./GetTraceGraphCommand"), exports);
23
- tslib_1.__exportStar(require("./GetTraceSummariesCommand"), exports);
24
- tslib_1.__exportStar(require("./ListResourcePoliciesCommand"), exports);
25
- tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
26
- tslib_1.__exportStar(require("./PutEncryptionConfigCommand"), exports);
27
- tslib_1.__exportStar(require("./PutResourcePolicyCommand"), exports);
28
- tslib_1.__exportStar(require("./PutTelemetryRecordsCommand"), exports);
29
- tslib_1.__exportStar(require("./PutTraceSegmentsCommand"), exports);
30
- tslib_1.__exportStar(require("./TagResourceCommand"), exports);
31
- tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
32
- tslib_1.__exportStar(require("./UpdateGroupCommand"), exports);
33
- tslib_1.__exportStar(require("./UpdateSamplingRuleCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
- useFipsEndpoint: options.useFipsEndpoint ?? false,
9
- defaultSigningName: "xray",
10
- };
11
- };
12
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
- exports.commonParams = {
14
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
- Endpoint: { type: "builtInParams", name: "endpoint" },
16
- Region: { type: "builtInParams", name: "region" },
17
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");