@aws-sdk/client-xray 3.183.0 → 3.186.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 (50) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/protocols/Aws_restJson1.js +2 -2
  3. package/dist-es/XRay.js +117 -110
  4. package/dist-es/XRayClient.js +28 -22
  5. package/dist-es/commands/BatchGetTracesCommand.js +28 -21
  6. package/dist-es/commands/CreateGroupCommand.js +28 -21
  7. package/dist-es/commands/CreateSamplingRuleCommand.js +28 -21
  8. package/dist-es/commands/DeleteGroupCommand.js +28 -21
  9. package/dist-es/commands/DeleteSamplingRuleCommand.js +28 -21
  10. package/dist-es/commands/GetEncryptionConfigCommand.js +28 -21
  11. package/dist-es/commands/GetGroupCommand.js +28 -21
  12. package/dist-es/commands/GetGroupsCommand.js +28 -21
  13. package/dist-es/commands/GetInsightCommand.js +28 -21
  14. package/dist-es/commands/GetInsightEventsCommand.js +28 -21
  15. package/dist-es/commands/GetInsightImpactGraphCommand.js +28 -21
  16. package/dist-es/commands/GetInsightSummariesCommand.js +28 -21
  17. package/dist-es/commands/GetSamplingRulesCommand.js +28 -21
  18. package/dist-es/commands/GetSamplingStatisticSummariesCommand.js +28 -21
  19. package/dist-es/commands/GetSamplingTargetsCommand.js +28 -21
  20. package/dist-es/commands/GetServiceGraphCommand.js +28 -21
  21. package/dist-es/commands/GetTimeSeriesServiceStatisticsCommand.js +28 -21
  22. package/dist-es/commands/GetTraceGraphCommand.js +28 -21
  23. package/dist-es/commands/GetTraceSummariesCommand.js +28 -21
  24. package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
  25. package/dist-es/commands/PutEncryptionConfigCommand.js +28 -21
  26. package/dist-es/commands/PutTelemetryRecordsCommand.js +28 -21
  27. package/dist-es/commands/PutTraceSegmentsCommand.js +28 -21
  28. package/dist-es/commands/TagResourceCommand.js +28 -21
  29. package/dist-es/commands/UntagResourceCommand.js +28 -21
  30. package/dist-es/commands/UpdateGroupCommand.js +28 -21
  31. package/dist-es/commands/UpdateSamplingRuleCommand.js +28 -21
  32. package/dist-es/endpoints.js +8 -8
  33. package/dist-es/models/XRayServiceException.js +10 -5
  34. package/dist-es/models/models_0.js +180 -393
  35. package/dist-es/pagination/BatchGetTracesPaginator.js +67 -24
  36. package/dist-es/pagination/GetGroupsPaginator.js +67 -24
  37. package/dist-es/pagination/GetInsightEventsPaginator.js +68 -25
  38. package/dist-es/pagination/GetInsightSummariesPaginator.js +68 -25
  39. package/dist-es/pagination/GetSamplingRulesPaginator.js +67 -24
  40. package/dist-es/pagination/GetSamplingStatisticSummariesPaginator.js +67 -24
  41. package/dist-es/pagination/GetServiceGraphPaginator.js +67 -24
  42. package/dist-es/pagination/GetTimeSeriesServiceStatisticsPaginator.js +67 -24
  43. package/dist-es/pagination/GetTraceGraphPaginator.js +67 -24
  44. package/dist-es/pagination/GetTraceSummariesPaginator.js +67 -24
  45. package/dist-es/protocols/Aws_restJson1.js +2708 -2041
  46. package/dist-es/runtimeConfig.browser.js +12 -26
  47. package/dist-es/runtimeConfig.js +12 -30
  48. package/dist-es/runtimeConfig.native.js +5 -8
  49. package/dist-es/runtimeConfig.shared.js +11 -8
  50. package/package.json +33 -33
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { BatchGetTracesRequestFilterSensitiveLog, BatchGetTracesResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1BatchGetTracesCommand, serializeAws_restJson1BatchGetTracesCommand, } from "../protocols/Aws_restJson1";
5
- export class BatchGetTracesCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var BatchGetTracesCommand = (function (_super) {
7
+ __extends(BatchGetTracesCommand, _super);
8
+ function BatchGetTracesCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ BatchGetTracesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "XRayClient";
15
- const commandName = "BatchGetTracesCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "XRayClient";
18
+ var commandName = "BatchGetTracesCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: BatchGetTracesRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: BatchGetTracesResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ BatchGetTracesCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1BatchGetTracesCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ BatchGetTracesCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1BatchGetTracesCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return BatchGetTracesCommand;
38
+ }($Command));
39
+ export { BatchGetTracesCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { CreateGroupRequestFilterSensitiveLog, CreateGroupResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateGroupCommand, serializeAws_restJson1CreateGroupCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateGroupCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateGroupCommand = (function (_super) {
7
+ __extends(CreateGroupCommand, _super);
8
+ function CreateGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "XRayClient";
15
- const commandName = "CreateGroupCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "XRayClient";
18
+ var commandName = "CreateGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateGroupRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateGroupResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ CreateGroupCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateGroupCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateGroupCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateGroupCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateGroupCommand;
38
+ }($Command));
39
+ export { CreateGroupCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { CreateSamplingRuleRequestFilterSensitiveLog, CreateSamplingRuleResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateSamplingRuleCommand, serializeAws_restJson1CreateSamplingRuleCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateSamplingRuleCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateSamplingRuleCommand = (function (_super) {
7
+ __extends(CreateSamplingRuleCommand, _super);
8
+ function CreateSamplingRuleCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateSamplingRuleCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "XRayClient";
15
- const commandName = "CreateSamplingRuleCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "XRayClient";
18
+ var commandName = "CreateSamplingRuleCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateSamplingRuleRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateSamplingRuleResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ CreateSamplingRuleCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateSamplingRuleCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateSamplingRuleCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateSamplingRuleCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateSamplingRuleCommand;
38
+ }($Command));
39
+ export { CreateSamplingRuleCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteGroupRequestFilterSensitiveLog, DeleteGroupResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteGroupCommand, serializeAws_restJson1DeleteGroupCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteGroupCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteGroupCommand = (function (_super) {
7
+ __extends(DeleteGroupCommand, _super);
8
+ function DeleteGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "XRayClient";
15
- const commandName = "DeleteGroupCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "XRayClient";
18
+ var commandName = "DeleteGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteGroupRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteGroupResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteGroupCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteGroupCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteGroupCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteGroupCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteGroupCommand;
38
+ }($Command));
39
+ export { DeleteGroupCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteSamplingRuleRequestFilterSensitiveLog, DeleteSamplingRuleResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteSamplingRuleCommand, serializeAws_restJson1DeleteSamplingRuleCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteSamplingRuleCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteSamplingRuleCommand = (function (_super) {
7
+ __extends(DeleteSamplingRuleCommand, _super);
8
+ function DeleteSamplingRuleCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteSamplingRuleCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "XRayClient";
15
- const commandName = "DeleteSamplingRuleCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "XRayClient";
18
+ var commandName = "DeleteSamplingRuleCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteSamplingRuleRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteSamplingRuleResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteSamplingRuleCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteSamplingRuleCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteSamplingRuleCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteSamplingRuleCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteSamplingRuleCommand;
38
+ }($Command));
39
+ export { DeleteSamplingRuleCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetEncryptionConfigRequestFilterSensitiveLog, GetEncryptionConfigResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetEncryptionConfigCommand, serializeAws_restJson1GetEncryptionConfigCommand, } from "../protocols/Aws_restJson1";
5
- export class GetEncryptionConfigCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetEncryptionConfigCommand = (function (_super) {
7
+ __extends(GetEncryptionConfigCommand, _super);
8
+ function GetEncryptionConfigCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetEncryptionConfigCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "XRayClient";
15
- const commandName = "GetEncryptionConfigCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "XRayClient";
18
+ var commandName = "GetEncryptionConfigCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetEncryptionConfigRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetEncryptionConfigResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetEncryptionConfigCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetEncryptionConfigCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetEncryptionConfigCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetEncryptionConfigCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetEncryptionConfigCommand;
38
+ }($Command));
39
+ export { GetEncryptionConfigCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetGroupRequestFilterSensitiveLog, GetGroupResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetGroupCommand, serializeAws_restJson1GetGroupCommand, } from "../protocols/Aws_restJson1";
5
- export class GetGroupCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetGroupCommand = (function (_super) {
7
+ __extends(GetGroupCommand, _super);
8
+ function GetGroupCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetGroupCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "XRayClient";
15
- const commandName = "GetGroupCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "XRayClient";
18
+ var commandName = "GetGroupCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetGroupRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetGroupResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetGroupCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetGroupCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetGroupCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetGroupCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetGroupCommand;
38
+ }($Command));
39
+ export { GetGroupCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetGroupsRequestFilterSensitiveLog, GetGroupsResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetGroupsCommand, serializeAws_restJson1GetGroupsCommand, } from "../protocols/Aws_restJson1";
5
- export class GetGroupsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetGroupsCommand = (function (_super) {
7
+ __extends(GetGroupsCommand, _super);
8
+ function GetGroupsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetGroupsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "XRayClient";
15
- const commandName = "GetGroupsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "XRayClient";
18
+ var commandName = "GetGroupsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetGroupsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetGroupsResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetGroupsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetGroupsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetGroupsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetGroupsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetGroupsCommand;
38
+ }($Command));
39
+ export { GetGroupsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetInsightRequestFilterSensitiveLog, GetInsightResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetInsightCommand, serializeAws_restJson1GetInsightCommand, } from "../protocols/Aws_restJson1";
5
- export class GetInsightCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetInsightCommand = (function (_super) {
7
+ __extends(GetInsightCommand, _super);
8
+ function GetInsightCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetInsightCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "XRayClient";
15
- const commandName = "GetInsightCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "XRayClient";
18
+ var commandName = "GetInsightCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetInsightRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetInsightResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetInsightCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetInsightCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetInsightCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetInsightCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetInsightCommand;
38
+ }($Command));
39
+ export { GetInsightCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetInsightEventsRequestFilterSensitiveLog, GetInsightEventsResultFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetInsightEventsCommand, serializeAws_restJson1GetInsightEventsCommand, } from "../protocols/Aws_restJson1";
5
- export class GetInsightEventsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetInsightEventsCommand = (function (_super) {
7
+ __extends(GetInsightEventsCommand, _super);
8
+ function GetInsightEventsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetInsightEventsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "XRayClient";
15
- const commandName = "GetInsightEventsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "XRayClient";
18
+ var commandName = "GetInsightEventsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetInsightEventsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetInsightEventsResultFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetInsightEventsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetInsightEventsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetInsightEventsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetInsightEventsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetInsightEventsCommand;
38
+ }($Command));
39
+ export { GetInsightEventsCommand };