@aws-sdk/client-groundstation 3.52.0 → 3.54.1

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 "./GroundStationClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { GroundStationServiceException } from "./models/GroundStationServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var GroundStationServiceException = (function (_super) {
4
+ __extends(GroundStationServiceException, _super);
5
+ function GroundStationServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, GroundStationServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return GroundStationServiceException;
11
+ }(__ServiceException));
12
+ export { GroundStationServiceException };
@@ -1,4 +1,5 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
+ import { GroundStationServiceException as __BaseException } from "./GroundStationServiceException";
2
3
  export var AngleUnits;
3
4
  (function (AngleUnits) {
4
5
  AngleUnits["DEGREE_ANGLE"] = "DEGREE_ANGLE";
@@ -78,6 +79,44 @@ export var ContactIdResponse;
78
79
  (function (ContactIdResponse) {
79
80
  ContactIdResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
80
81
  })(ContactIdResponse || (ContactIdResponse = {}));
82
+ var DependencyException = (function (_super) {
83
+ __extends(DependencyException, _super);
84
+ function DependencyException(opts) {
85
+ var _this = _super.call(this, __assign({ name: "DependencyException", $fault: "server" }, opts)) || this;
86
+ _this.name = "DependencyException";
87
+ _this.$fault = "server";
88
+ Object.setPrototypeOf(_this, DependencyException.prototype);
89
+ _this.parameterName = opts.parameterName;
90
+ return _this;
91
+ }
92
+ return DependencyException;
93
+ }(__BaseException));
94
+ export { DependencyException };
95
+ var InvalidParameterException = (function (_super) {
96
+ __extends(InvalidParameterException, _super);
97
+ function InvalidParameterException(opts) {
98
+ var _this = _super.call(this, __assign({ name: "InvalidParameterException", $fault: "client" }, opts)) || this;
99
+ _this.name = "InvalidParameterException";
100
+ _this.$fault = "client";
101
+ Object.setPrototypeOf(_this, InvalidParameterException.prototype);
102
+ _this.parameterName = opts.parameterName;
103
+ return _this;
104
+ }
105
+ return InvalidParameterException;
106
+ }(__BaseException));
107
+ export { InvalidParameterException };
108
+ var ResourceNotFoundException = (function (_super) {
109
+ __extends(ResourceNotFoundException, _super);
110
+ function ResourceNotFoundException(opts) {
111
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
112
+ _this.name = "ResourceNotFoundException";
113
+ _this.$fault = "client";
114
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
115
+ return _this;
116
+ }
117
+ return ResourceNotFoundException;
118
+ }(__BaseException));
119
+ export { ResourceNotFoundException };
81
120
  export var ConfigCapabilityType;
82
121
  (function (ConfigCapabilityType) {
83
122
  ConfigCapabilityType["ANTENNA_DOWNLINK"] = "antenna-downlink";
@@ -159,6 +198,19 @@ export var CreateConfigRequest;
159
198
  (function (CreateConfigRequest) {
160
199
  CreateConfigRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.configData && { configData: ConfigTypeData.filterSensitiveLog(obj.configData) }))); };
161
200
  })(CreateConfigRequest || (CreateConfigRequest = {}));
201
+ var ResourceLimitExceededException = (function (_super) {
202
+ __extends(ResourceLimitExceededException, _super);
203
+ function ResourceLimitExceededException(opts) {
204
+ var _this = _super.call(this, __assign({ name: "ResourceLimitExceededException", $fault: "client" }, opts)) || this;
205
+ _this.name = "ResourceLimitExceededException";
206
+ _this.$fault = "client";
207
+ Object.setPrototypeOf(_this, ResourceLimitExceededException.prototype);
208
+ _this.parameterName = opts.parameterName;
209
+ return _this;
210
+ }
211
+ return ResourceLimitExceededException;
212
+ }(__BaseException));
213
+ export { ResourceLimitExceededException };
162
214
  export var DeleteConfigRequest;
163
215
  (function (DeleteConfigRequest) {
164
216
  DeleteConfigRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };