@aws-sdk/client-machine-learning 3.50.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/MachineLearningServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +112 -2
- package/dist-cjs/protocols/Aws_json1_1.js +233 -835
- package/dist-es/index.js +1 -0
- package/dist-es/models/MachineLearningServiceException.js +12 -0
- package/dist-es/models/models_0.js +103 -1
- package/dist-es/protocols/Aws_json1_1.js +543 -932
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/MachineLearningServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +58 -33
- package/dist-types/ts3.4/MachineLearning.d.ts +145 -0
- package/dist-types/ts3.4/MachineLearningClient.d.ts +101 -0
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PredictCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +28 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +7 -0
- package/dist-types/ts3.4/models/MachineLearningServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1289 -0
- package/dist-types/ts3.4/pagination/DescribeBatchPredictionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeDataSourcesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeEvaluationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeMLModelsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +86 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +7 -0
- package/package.json +35 -35
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 MachineLearningServiceException = (function (_super) {
|
|
4
|
+
__extends(MachineLearningServiceException, _super);
|
|
5
|
+
function MachineLearningServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, MachineLearningServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return MachineLearningServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { MachineLearningServiceException };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
|
|
2
3
|
export var TaggableResourceType;
|
|
3
4
|
(function (TaggableResourceType) {
|
|
4
5
|
TaggableResourceType["BATCH_PREDICTION"] = "BatchPrediction";
|
|
@@ -18,6 +19,69 @@ export var AddTagsOutput;
|
|
|
18
19
|
(function (AddTagsOutput) {
|
|
19
20
|
AddTagsOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
20
21
|
})(AddTagsOutput || (AddTagsOutput = {}));
|
|
22
|
+
var InternalServerException = (function (_super) {
|
|
23
|
+
__extends(InternalServerException, _super);
|
|
24
|
+
function InternalServerException(opts) {
|
|
25
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
26
|
+
_this.name = "InternalServerException";
|
|
27
|
+
_this.$fault = "server";
|
|
28
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
29
|
+
_this.code = opts.code;
|
|
30
|
+
return _this;
|
|
31
|
+
}
|
|
32
|
+
return InternalServerException;
|
|
33
|
+
}(__BaseException));
|
|
34
|
+
export { InternalServerException };
|
|
35
|
+
var InvalidInputException = (function (_super) {
|
|
36
|
+
__extends(InvalidInputException, _super);
|
|
37
|
+
function InvalidInputException(opts) {
|
|
38
|
+
var _this = _super.call(this, __assign({ name: "InvalidInputException", $fault: "client" }, opts)) || this;
|
|
39
|
+
_this.name = "InvalidInputException";
|
|
40
|
+
_this.$fault = "client";
|
|
41
|
+
Object.setPrototypeOf(_this, InvalidInputException.prototype);
|
|
42
|
+
_this.code = opts.code;
|
|
43
|
+
return _this;
|
|
44
|
+
}
|
|
45
|
+
return InvalidInputException;
|
|
46
|
+
}(__BaseException));
|
|
47
|
+
export { InvalidInputException };
|
|
48
|
+
var InvalidTagException = (function (_super) {
|
|
49
|
+
__extends(InvalidTagException, _super);
|
|
50
|
+
function InvalidTagException(opts) {
|
|
51
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagException", $fault: "client" }, opts)) || this;
|
|
52
|
+
_this.name = "InvalidTagException";
|
|
53
|
+
_this.$fault = "client";
|
|
54
|
+
Object.setPrototypeOf(_this, InvalidTagException.prototype);
|
|
55
|
+
return _this;
|
|
56
|
+
}
|
|
57
|
+
return InvalidTagException;
|
|
58
|
+
}(__BaseException));
|
|
59
|
+
export { InvalidTagException };
|
|
60
|
+
var ResourceNotFoundException = (function (_super) {
|
|
61
|
+
__extends(ResourceNotFoundException, _super);
|
|
62
|
+
function ResourceNotFoundException(opts) {
|
|
63
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
64
|
+
_this.name = "ResourceNotFoundException";
|
|
65
|
+
_this.$fault = "client";
|
|
66
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
67
|
+
_this.code = opts.code;
|
|
68
|
+
return _this;
|
|
69
|
+
}
|
|
70
|
+
return ResourceNotFoundException;
|
|
71
|
+
}(__BaseException));
|
|
72
|
+
export { ResourceNotFoundException };
|
|
73
|
+
var TagLimitExceededException = (function (_super) {
|
|
74
|
+
__extends(TagLimitExceededException, _super);
|
|
75
|
+
function TagLimitExceededException(opts) {
|
|
76
|
+
var _this = _super.call(this, __assign({ name: "TagLimitExceededException", $fault: "client" }, opts)) || this;
|
|
77
|
+
_this.name = "TagLimitExceededException";
|
|
78
|
+
_this.$fault = "client";
|
|
79
|
+
Object.setPrototypeOf(_this, TagLimitExceededException.prototype);
|
|
80
|
+
return _this;
|
|
81
|
+
}
|
|
82
|
+
return TagLimitExceededException;
|
|
83
|
+
}(__BaseException));
|
|
84
|
+
export { TagLimitExceededException };
|
|
21
85
|
export var Algorithm;
|
|
22
86
|
(function (Algorithm) {
|
|
23
87
|
Algorithm["SGD"] = "sgd";
|
|
@@ -30,6 +94,19 @@ export var CreateBatchPredictionOutput;
|
|
|
30
94
|
(function (CreateBatchPredictionOutput) {
|
|
31
95
|
CreateBatchPredictionOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
32
96
|
})(CreateBatchPredictionOutput || (CreateBatchPredictionOutput = {}));
|
|
97
|
+
var IdempotentParameterMismatchException = (function (_super) {
|
|
98
|
+
__extends(IdempotentParameterMismatchException, _super);
|
|
99
|
+
function IdempotentParameterMismatchException(opts) {
|
|
100
|
+
var _this = _super.call(this, __assign({ name: "IdempotentParameterMismatchException", $fault: "client" }, opts)) || this;
|
|
101
|
+
_this.name = "IdempotentParameterMismatchException";
|
|
102
|
+
_this.$fault = "client";
|
|
103
|
+
Object.setPrototypeOf(_this, IdempotentParameterMismatchException.prototype);
|
|
104
|
+
_this.code = opts.code;
|
|
105
|
+
return _this;
|
|
106
|
+
}
|
|
107
|
+
return IdempotentParameterMismatchException;
|
|
108
|
+
}(__BaseException));
|
|
109
|
+
export { IdempotentParameterMismatchException };
|
|
33
110
|
export var RDSDatabaseCredentials;
|
|
34
111
|
(function (RDSDatabaseCredentials) {
|
|
35
112
|
RDSDatabaseCredentials.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -328,10 +405,35 @@ export var GetMLModelOutput;
|
|
|
328
405
|
(function (GetMLModelOutput) {
|
|
329
406
|
GetMLModelOutput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
407
|
})(GetMLModelOutput || (GetMLModelOutput = {}));
|
|
408
|
+
var LimitExceededException = (function (_super) {
|
|
409
|
+
__extends(LimitExceededException, _super);
|
|
410
|
+
function LimitExceededException(opts) {
|
|
411
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
412
|
+
_this.name = "LimitExceededException";
|
|
413
|
+
_this.$fault = "client";
|
|
414
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
415
|
+
_this.code = opts.code;
|
|
416
|
+
return _this;
|
|
417
|
+
}
|
|
418
|
+
return LimitExceededException;
|
|
419
|
+
}(__BaseException));
|
|
420
|
+
export { LimitExceededException };
|
|
331
421
|
export var PredictInput;
|
|
332
422
|
(function (PredictInput) {
|
|
333
423
|
PredictInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
424
|
})(PredictInput || (PredictInput = {}));
|
|
425
|
+
var PredictorNotMountedException = (function (_super) {
|
|
426
|
+
__extends(PredictorNotMountedException, _super);
|
|
427
|
+
function PredictorNotMountedException(opts) {
|
|
428
|
+
var _this = _super.call(this, __assign({ name: "PredictorNotMountedException", $fault: "client" }, opts)) || this;
|
|
429
|
+
_this.name = "PredictorNotMountedException";
|
|
430
|
+
_this.$fault = "client";
|
|
431
|
+
Object.setPrototypeOf(_this, PredictorNotMountedException.prototype);
|
|
432
|
+
return _this;
|
|
433
|
+
}
|
|
434
|
+
return PredictorNotMountedException;
|
|
435
|
+
}(__BaseException));
|
|
436
|
+
export { PredictorNotMountedException };
|
|
335
437
|
export var DetailsAttributes;
|
|
336
438
|
(function (DetailsAttributes) {
|
|
337
439
|
DetailsAttributes["ALGORITHM"] = "Algorithm";
|