@aws-sdk/client-xray 3.52.0 → 3.53.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-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./XRayClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { XRayServiceException } from "./models/XRayServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var XRayServiceException = (function (_super) {
4
+ __extends(XRayServiceException, _super);
5
+ function XRayServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, XRayServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return XRayServiceException;
11
+ }(__ServiceException));
12
+ export { XRayServiceException };
@@ -1,4 +1,5 @@
1
- import { __assign, __read } from "tslib";
1
+ import { __assign, __extends, __read } from "tslib";
2
+ import { XRayServiceException as __BaseException } from "./XRayServiceException";
2
3
  export var Alias;
3
4
  (function (Alias) {
4
5
  Alias.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -58,6 +59,32 @@ export var BatchGetTracesResult;
58
59
  (function (BatchGetTracesResult) {
59
60
  BatchGetTracesResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
60
61
  })(BatchGetTracesResult || (BatchGetTracesResult = {}));
62
+ var InvalidRequestException = (function (_super) {
63
+ __extends(InvalidRequestException, _super);
64
+ function InvalidRequestException(opts) {
65
+ var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
66
+ _this.name = "InvalidRequestException";
67
+ _this.$fault = "client";
68
+ Object.setPrototypeOf(_this, InvalidRequestException.prototype);
69
+ _this.Message = opts.Message;
70
+ return _this;
71
+ }
72
+ return InvalidRequestException;
73
+ }(__BaseException));
74
+ export { InvalidRequestException };
75
+ var ThrottledException = (function (_super) {
76
+ __extends(ThrottledException, _super);
77
+ function ThrottledException(opts) {
78
+ var _this = _super.call(this, __assign({ name: "ThrottledException", $fault: "client" }, opts)) || this;
79
+ _this.name = "ThrottledException";
80
+ _this.$fault = "client";
81
+ Object.setPrototypeOf(_this, ThrottledException.prototype);
82
+ _this.Message = opts.Message;
83
+ return _this;
84
+ }
85
+ return ThrottledException;
86
+ }(__BaseException));
87
+ export { ThrottledException };
61
88
  export var InsightsConfiguration;
62
89
  (function (InsightsConfiguration) {
63
90
  InsightsConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -94,6 +121,19 @@ export var CreateSamplingRuleResult;
94
121
  (function (CreateSamplingRuleResult) {
95
122
  CreateSamplingRuleResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
96
123
  })(CreateSamplingRuleResult || (CreateSamplingRuleResult = {}));
124
+ var RuleLimitExceededException = (function (_super) {
125
+ __extends(RuleLimitExceededException, _super);
126
+ function RuleLimitExceededException(opts) {
127
+ var _this = _super.call(this, __assign({ name: "RuleLimitExceededException", $fault: "client" }, opts)) || this;
128
+ _this.name = "RuleLimitExceededException";
129
+ _this.$fault = "client";
130
+ Object.setPrototypeOf(_this, RuleLimitExceededException.prototype);
131
+ _this.Message = opts.Message;
132
+ return _this;
133
+ }
134
+ return RuleLimitExceededException;
135
+ }(__BaseException));
136
+ export { RuleLimitExceededException };
97
137
  export var DeleteGroupRequest;
98
138
  (function (DeleteGroupRequest) {
99
139
  DeleteGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -413,6 +453,20 @@ export var ListTagsForResourceResponse;
413
453
  (function (ListTagsForResourceResponse) {
414
454
  ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
415
455
  })(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
456
+ var ResourceNotFoundException = (function (_super) {
457
+ __extends(ResourceNotFoundException, _super);
458
+ function ResourceNotFoundException(opts) {
459
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
460
+ _this.name = "ResourceNotFoundException";
461
+ _this.$fault = "client";
462
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
463
+ _this.Message = opts.Message;
464
+ _this.ResourceName = opts.ResourceName;
465
+ return _this;
466
+ }
467
+ return ResourceNotFoundException;
468
+ }(__BaseException));
469
+ export { ResourceNotFoundException };
416
470
  export var PutEncryptionConfigRequest;
417
471
  (function (PutEncryptionConfigRequest) {
418
472
  PutEncryptionConfigRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -457,6 +511,20 @@ export var TagResourceResponse;
457
511
  (function (TagResourceResponse) {
458
512
  TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
459
513
  })(TagResourceResponse || (TagResourceResponse = {}));
514
+ var TooManyTagsException = (function (_super) {
515
+ __extends(TooManyTagsException, _super);
516
+ function TooManyTagsException(opts) {
517
+ var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
518
+ _this.name = "TooManyTagsException";
519
+ _this.$fault = "client";
520
+ Object.setPrototypeOf(_this, TooManyTagsException.prototype);
521
+ _this.Message = opts.Message;
522
+ _this.ResourceName = opts.ResourceName;
523
+ return _this;
524
+ }
525
+ return TooManyTagsException;
526
+ }(__BaseException));
527
+ export { TooManyTagsException };
460
528
  export var UntagResourceRequest;
461
529
  (function (UntagResourceRequest) {
462
530
  UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };