@aws-sdk/client-storage-gateway 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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/StorageGatewayServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +48 -5
- package/dist-cjs/protocols/Aws_json1_1.js +619 -2040
- package/dist-es/index.js +1 -0
- package/dist-es/models/StorageGatewayServiceException.js +12 -0
- package/dist-es/models/models_0.js +41 -1
- package/dist-es/protocols/Aws_json1_1.js +1522 -2395
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/StorageGatewayServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +23 -22
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/StorageGatewayServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -16
- package/package.json +25 -25
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var StorageGatewayServiceException = (function (_super) {
|
|
4
|
+
__extends(StorageGatewayServiceException, _super);
|
|
5
|
+
function StorageGatewayServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, StorageGatewayServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return StorageGatewayServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { StorageGatewayServiceException };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { StorageGatewayServiceException as __BaseException } from "./StorageGatewayServiceException";
|
|
3
4
|
export var Tag;
|
|
4
5
|
(function (Tag) {
|
|
5
6
|
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -16,6 +17,32 @@ export var StorageGatewayError;
|
|
|
16
17
|
(function (StorageGatewayError) {
|
|
17
18
|
StorageGatewayError.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
19
|
})(StorageGatewayError || (StorageGatewayError = {}));
|
|
20
|
+
var InternalServerError = (function (_super) {
|
|
21
|
+
__extends(InternalServerError, _super);
|
|
22
|
+
function InternalServerError(opts) {
|
|
23
|
+
var _this = _super.call(this, __assign({ name: "InternalServerError", $fault: "server" }, opts)) || this;
|
|
24
|
+
_this.name = "InternalServerError";
|
|
25
|
+
_this.$fault = "server";
|
|
26
|
+
Object.setPrototypeOf(_this, InternalServerError.prototype);
|
|
27
|
+
_this.error = opts.error;
|
|
28
|
+
return _this;
|
|
29
|
+
}
|
|
30
|
+
return InternalServerError;
|
|
31
|
+
}(__BaseException));
|
|
32
|
+
export { InternalServerError };
|
|
33
|
+
var InvalidGatewayRequestException = (function (_super) {
|
|
34
|
+
__extends(InvalidGatewayRequestException, _super);
|
|
35
|
+
function InvalidGatewayRequestException(opts) {
|
|
36
|
+
var _this = _super.call(this, __assign({ name: "InvalidGatewayRequestException", $fault: "client" }, opts)) || this;
|
|
37
|
+
_this.name = "InvalidGatewayRequestException";
|
|
38
|
+
_this.$fault = "client";
|
|
39
|
+
Object.setPrototypeOf(_this, InvalidGatewayRequestException.prototype);
|
|
40
|
+
_this.error = opts.error;
|
|
41
|
+
return _this;
|
|
42
|
+
}
|
|
43
|
+
return InvalidGatewayRequestException;
|
|
44
|
+
}(__BaseException));
|
|
45
|
+
export { InvalidGatewayRequestException };
|
|
19
46
|
export var AddCacheInput;
|
|
20
47
|
(function (AddCacheInput) {
|
|
21
48
|
AddCacheInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -156,6 +183,19 @@ export var CreateSnapshotOutput;
|
|
|
156
183
|
(function (CreateSnapshotOutput) {
|
|
157
184
|
CreateSnapshotOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
158
185
|
})(CreateSnapshotOutput || (CreateSnapshotOutput = {}));
|
|
186
|
+
var ServiceUnavailableError = (function (_super) {
|
|
187
|
+
__extends(ServiceUnavailableError, _super);
|
|
188
|
+
function ServiceUnavailableError(opts) {
|
|
189
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableError", $fault: "server" }, opts)) || this;
|
|
190
|
+
_this.name = "ServiceUnavailableError";
|
|
191
|
+
_this.$fault = "server";
|
|
192
|
+
Object.setPrototypeOf(_this, ServiceUnavailableError.prototype);
|
|
193
|
+
_this.error = opts.error;
|
|
194
|
+
return _this;
|
|
195
|
+
}
|
|
196
|
+
return ServiceUnavailableError;
|
|
197
|
+
}(__BaseException));
|
|
198
|
+
export { ServiceUnavailableError };
|
|
159
199
|
export var CreateSnapshotFromVolumeRecoveryPointInput;
|
|
160
200
|
(function (CreateSnapshotFromVolumeRecoveryPointInput) {
|
|
161
201
|
CreateSnapshotFromVolumeRecoveryPointInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|