@aws-sdk/client-batch 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/BatchServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +30 -3
- package/dist-cjs/protocols/Aws_restJson1.js +210 -568
- package/dist-es/index.js +1 -0
- package/dist-es/models/BatchServiceException.js +12 -0
- package/dist-es/models/models_0.js +26 -1
- package/dist-es/protocols/Aws_restJson1.js +447 -667
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/BatchServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +16 -9
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/BatchServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -9
- 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 BatchServiceException = (function (_super) {
|
|
4
|
+
__extends(BatchServiceException, _super);
|
|
5
|
+
function BatchServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, BatchServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return BatchServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { BatchServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { BatchServiceException as __BaseException } from "./BatchServiceException";
|
|
2
3
|
export var ArrayJobDependency;
|
|
3
4
|
(function (ArrayJobDependency) {
|
|
4
5
|
ArrayJobDependency["N_TO_N"] = "N_TO_N";
|
|
@@ -41,6 +42,30 @@ export var CancelJobResponse;
|
|
|
41
42
|
(function (CancelJobResponse) {
|
|
42
43
|
CancelJobResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
43
44
|
})(CancelJobResponse || (CancelJobResponse = {}));
|
|
45
|
+
var ClientException = (function (_super) {
|
|
46
|
+
__extends(ClientException, _super);
|
|
47
|
+
function ClientException(opts) {
|
|
48
|
+
var _this = _super.call(this, __assign({ name: "ClientException", $fault: "client" }, opts)) || this;
|
|
49
|
+
_this.name = "ClientException";
|
|
50
|
+
_this.$fault = "client";
|
|
51
|
+
Object.setPrototypeOf(_this, ClientException.prototype);
|
|
52
|
+
return _this;
|
|
53
|
+
}
|
|
54
|
+
return ClientException;
|
|
55
|
+
}(__BaseException));
|
|
56
|
+
export { ClientException };
|
|
57
|
+
var ServerException = (function (_super) {
|
|
58
|
+
__extends(ServerException, _super);
|
|
59
|
+
function ServerException(opts) {
|
|
60
|
+
var _this = _super.call(this, __assign({ name: "ServerException", $fault: "server" }, opts)) || this;
|
|
61
|
+
_this.name = "ServerException";
|
|
62
|
+
_this.$fault = "server";
|
|
63
|
+
Object.setPrototypeOf(_this, ServerException.prototype);
|
|
64
|
+
return _this;
|
|
65
|
+
}
|
|
66
|
+
return ServerException;
|
|
67
|
+
}(__BaseException));
|
|
68
|
+
export { ServerException };
|
|
44
69
|
export var CRAllocationStrategy;
|
|
45
70
|
(function (CRAllocationStrategy) {
|
|
46
71
|
CRAllocationStrategy["BEST_FIT"] = "BEST_FIT";
|