@aws-sdk/client-outposts 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/OutpostsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +89 -2
- package/dist-cjs/protocols/Aws_restJson1.js +244 -859
- package/dist-es/index.js +1 -0
- package/dist-es/models/OutpostsServiceException.js +12 -0
- package/dist-es/models/models_0.js +82 -1
- package/dist-es/protocols/Aws_restJson1.js +513 -958
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/OutpostsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/OutpostsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -19
- 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 OutpostsServiceException = (function (_super) {
|
|
4
|
+
__extends(OutpostsServiceException, _super);
|
|
5
|
+
function OutpostsServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, OutpostsServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return OutpostsServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { OutpostsServiceException };
|
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { OutpostsServiceException as __BaseException } from "./OutpostsServiceException";
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
2
16
|
export var Address;
|
|
3
17
|
(function (Address) {
|
|
4
18
|
Address.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -21,6 +35,60 @@ export var ResourceType;
|
|
|
21
35
|
ResourceType["ORDER"] = "ORDER";
|
|
22
36
|
ResourceType["OUTPOST"] = "OUTPOST";
|
|
23
37
|
})(ResourceType || (ResourceType = {}));
|
|
38
|
+
var ConflictException = (function (_super) {
|
|
39
|
+
__extends(ConflictException, _super);
|
|
40
|
+
function ConflictException(opts) {
|
|
41
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
42
|
+
_this.name = "ConflictException";
|
|
43
|
+
_this.$fault = "client";
|
|
44
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
45
|
+
_this.Message = opts.Message;
|
|
46
|
+
_this.ResourceId = opts.ResourceId;
|
|
47
|
+
_this.ResourceType = opts.ResourceType;
|
|
48
|
+
return _this;
|
|
49
|
+
}
|
|
50
|
+
return ConflictException;
|
|
51
|
+
}(__BaseException));
|
|
52
|
+
export { ConflictException };
|
|
53
|
+
var InternalServerException = (function (_super) {
|
|
54
|
+
__extends(InternalServerException, _super);
|
|
55
|
+
function InternalServerException(opts) {
|
|
56
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
57
|
+
_this.name = "InternalServerException";
|
|
58
|
+
_this.$fault = "server";
|
|
59
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
60
|
+
_this.Message = opts.Message;
|
|
61
|
+
return _this;
|
|
62
|
+
}
|
|
63
|
+
return InternalServerException;
|
|
64
|
+
}(__BaseException));
|
|
65
|
+
export { InternalServerException };
|
|
66
|
+
var NotFoundException = (function (_super) {
|
|
67
|
+
__extends(NotFoundException, _super);
|
|
68
|
+
function NotFoundException(opts) {
|
|
69
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
70
|
+
_this.name = "NotFoundException";
|
|
71
|
+
_this.$fault = "client";
|
|
72
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
73
|
+
_this.Message = opts.Message;
|
|
74
|
+
return _this;
|
|
75
|
+
}
|
|
76
|
+
return NotFoundException;
|
|
77
|
+
}(__BaseException));
|
|
78
|
+
export { NotFoundException };
|
|
79
|
+
var ValidationException = (function (_super) {
|
|
80
|
+
__extends(ValidationException, _super);
|
|
81
|
+
function ValidationException(opts) {
|
|
82
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
83
|
+
_this.name = "ValidationException";
|
|
84
|
+
_this.$fault = "client";
|
|
85
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
86
|
+
_this.Message = opts.Message;
|
|
87
|
+
return _this;
|
|
88
|
+
}
|
|
89
|
+
return ValidationException;
|
|
90
|
+
}(__BaseException));
|
|
91
|
+
export { ValidationException };
|
|
24
92
|
export var EC2Capacity;
|
|
25
93
|
(function (EC2Capacity) {
|
|
26
94
|
EC2Capacity.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -98,6 +166,19 @@ export var CreateOrderOutput;
|
|
|
98
166
|
(function (CreateOrderOutput) {
|
|
99
167
|
CreateOrderOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
168
|
})(CreateOrderOutput || (CreateOrderOutput = {}));
|
|
169
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
170
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
171
|
+
function ServiceQuotaExceededException(opts) {
|
|
172
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
173
|
+
_this.name = "ServiceQuotaExceededException";
|
|
174
|
+
_this.$fault = "client";
|
|
175
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
176
|
+
_this.Message = opts.Message;
|
|
177
|
+
return _this;
|
|
178
|
+
}
|
|
179
|
+
return ServiceQuotaExceededException;
|
|
180
|
+
}(__BaseException));
|
|
181
|
+
export { ServiceQuotaExceededException };
|
|
101
182
|
export var SupportedHardwareType;
|
|
102
183
|
(function (SupportedHardwareType) {
|
|
103
184
|
SupportedHardwareType["RACK"] = "RACK";
|