@aws-sdk/client-sagemaker 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/SageMakerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +63 -6
- package/dist-cjs/protocols/Aws_json1_1.js +1541 -3996
- package/dist-es/index.js +1 -0
- package/dist-es/models/SageMakerServiceException.js +12 -0
- package/dist-es/models/models_0.js +54 -1
- package/dist-es/protocols/Aws_json1_1.js +3417 -4377
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SageMakerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +30 -14
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SageMakerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -14
- package/package.json +26 -26
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 SageMakerServiceException = (function (_super) {
|
|
4
|
+
__extends(SageMakerServiceException, _super);
|
|
5
|
+
function SageMakerServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, SageMakerServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return SageMakerServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { SageMakerServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
|
|
2
3
|
export var ActionSource;
|
|
3
4
|
(function (ActionSource) {
|
|
4
5
|
ActionSource.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -31,6 +32,32 @@ export var AddAssociationResponse;
|
|
|
31
32
|
(function (AddAssociationResponse) {
|
|
32
33
|
AddAssociationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
33
34
|
})(AddAssociationResponse || (AddAssociationResponse = {}));
|
|
35
|
+
var ResourceLimitExceeded = (function (_super) {
|
|
36
|
+
__extends(ResourceLimitExceeded, _super);
|
|
37
|
+
function ResourceLimitExceeded(opts) {
|
|
38
|
+
var _this = _super.call(this, __assign({ name: "ResourceLimitExceeded", $fault: "client" }, opts)) || this;
|
|
39
|
+
_this.name = "ResourceLimitExceeded";
|
|
40
|
+
_this.$fault = "client";
|
|
41
|
+
Object.setPrototypeOf(_this, ResourceLimitExceeded.prototype);
|
|
42
|
+
_this.Message = opts.Message;
|
|
43
|
+
return _this;
|
|
44
|
+
}
|
|
45
|
+
return ResourceLimitExceeded;
|
|
46
|
+
}(__BaseException));
|
|
47
|
+
export { ResourceLimitExceeded };
|
|
48
|
+
var ResourceNotFound = (function (_super) {
|
|
49
|
+
__extends(ResourceNotFound, _super);
|
|
50
|
+
function ResourceNotFound(opts) {
|
|
51
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFound", $fault: "client" }, opts)) || this;
|
|
52
|
+
_this.name = "ResourceNotFound";
|
|
53
|
+
_this.$fault = "client";
|
|
54
|
+
Object.setPrototypeOf(_this, ResourceNotFound.prototype);
|
|
55
|
+
_this.Message = opts.Message;
|
|
56
|
+
return _this;
|
|
57
|
+
}
|
|
58
|
+
return ResourceNotFound;
|
|
59
|
+
}(__BaseException));
|
|
60
|
+
export { ResourceNotFound };
|
|
34
61
|
export var ModelInput;
|
|
35
62
|
(function (ModelInput) {
|
|
36
63
|
ModelInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -975,6 +1002,19 @@ export var ConditionStepMetadata;
|
|
|
975
1002
|
(function (ConditionStepMetadata) {
|
|
976
1003
|
ConditionStepMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
977
1004
|
})(ConditionStepMetadata || (ConditionStepMetadata = {}));
|
|
1005
|
+
var ConflictException = (function (_super) {
|
|
1006
|
+
__extends(ConflictException, _super);
|
|
1007
|
+
function ConflictException(opts) {
|
|
1008
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
1009
|
+
_this.name = "ConflictException";
|
|
1010
|
+
_this.$fault = "client";
|
|
1011
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
1012
|
+
_this.Message = opts.Message;
|
|
1013
|
+
return _this;
|
|
1014
|
+
}
|
|
1015
|
+
return ConflictException;
|
|
1016
|
+
}(__BaseException));
|
|
1017
|
+
export { ConflictException };
|
|
978
1018
|
export var RepositoryAccessMode;
|
|
979
1019
|
(function (RepositoryAccessMode) {
|
|
980
1020
|
RepositoryAccessMode["PLATFORM"] = "Platform";
|
|
@@ -1098,6 +1138,19 @@ export var CreateAppResponse;
|
|
|
1098
1138
|
(function (CreateAppResponse) {
|
|
1099
1139
|
CreateAppResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1100
1140
|
})(CreateAppResponse || (CreateAppResponse = {}));
|
|
1141
|
+
var ResourceInUse = (function (_super) {
|
|
1142
|
+
__extends(ResourceInUse, _super);
|
|
1143
|
+
function ResourceInUse(opts) {
|
|
1144
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUse", $fault: "client" }, opts)) || this;
|
|
1145
|
+
_this.name = "ResourceInUse";
|
|
1146
|
+
_this.$fault = "client";
|
|
1147
|
+
Object.setPrototypeOf(_this, ResourceInUse.prototype);
|
|
1148
|
+
_this.Message = opts.Message;
|
|
1149
|
+
return _this;
|
|
1150
|
+
}
|
|
1151
|
+
return ResourceInUse;
|
|
1152
|
+
}(__BaseException));
|
|
1153
|
+
export { ResourceInUse };
|
|
1101
1154
|
export var CreateAppImageConfigRequest;
|
|
1102
1155
|
(function (CreateAppImageConfigRequest) {
|
|
1103
1156
|
CreateAppImageConfigRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|