@aws-sdk/client-pi 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.
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { PIServiceException as __BaseException } from "./PIServiceException";
2
3
  export var DataPoint;
3
4
  (function (DataPoint) {
4
5
  DataPoint.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -28,6 +29,45 @@ export var DescribeDimensionKeysResponse;
28
29
  (function (DescribeDimensionKeysResponse) {
29
30
  DescribeDimensionKeysResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
30
31
  })(DescribeDimensionKeysResponse || (DescribeDimensionKeysResponse = {}));
32
+ var InternalServiceError = (function (_super) {
33
+ __extends(InternalServiceError, _super);
34
+ function InternalServiceError(opts) {
35
+ var _this = _super.call(this, __assign({ name: "InternalServiceError", $fault: "server" }, opts)) || this;
36
+ _this.name = "InternalServiceError";
37
+ _this.$fault = "server";
38
+ Object.setPrototypeOf(_this, InternalServiceError.prototype);
39
+ _this.Message = opts.Message;
40
+ return _this;
41
+ }
42
+ return InternalServiceError;
43
+ }(__BaseException));
44
+ export { InternalServiceError };
45
+ var InvalidArgumentException = (function (_super) {
46
+ __extends(InvalidArgumentException, _super);
47
+ function InvalidArgumentException(opts) {
48
+ var _this = _super.call(this, __assign({ name: "InvalidArgumentException", $fault: "client" }, opts)) || this;
49
+ _this.name = "InvalidArgumentException";
50
+ _this.$fault = "client";
51
+ Object.setPrototypeOf(_this, InvalidArgumentException.prototype);
52
+ _this.Message = opts.Message;
53
+ return _this;
54
+ }
55
+ return InvalidArgumentException;
56
+ }(__BaseException));
57
+ export { InvalidArgumentException };
58
+ var NotAuthorizedException = (function (_super) {
59
+ __extends(NotAuthorizedException, _super);
60
+ function NotAuthorizedException(opts) {
61
+ var _this = _super.call(this, __assign({ name: "NotAuthorizedException", $fault: "client" }, opts)) || this;
62
+ _this.name = "NotAuthorizedException";
63
+ _this.$fault = "client";
64
+ Object.setPrototypeOf(_this, NotAuthorizedException.prototype);
65
+ _this.Message = opts.Message;
66
+ return _this;
67
+ }
68
+ return NotAuthorizedException;
69
+ }(__BaseException));
70
+ export { NotAuthorizedException };
31
71
  export var DetailStatus;
32
72
  (function (DetailStatus) {
33
73
  DetailStatus["AVAILABLE"] = "AVAILABLE";