@aws-sdk/client-sagemaker 3.141.0 → 3.146.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 +30 -0
- package/dist-cjs/commands/DescribeHumanTaskUiCommand.js +2 -1
- package/dist-cjs/commands/ListPipelineExecutionsCommand.js +3 -3
- package/dist-cjs/models/models_1.js +19 -20
- package/dist-cjs/models/models_2.js +19 -18
- package/dist-cjs/models/models_3.js +16 -4
- package/dist-cjs/protocols/Aws_json1_1.js +1561 -2849
- package/dist-es/commands/DescribeHumanTaskUiCommand.js +2 -1
- package/dist-es/commands/ListPipelineExecutionsCommand.js +1 -1
- package/dist-es/models/models_1.js +6 -7
- package/dist-es/models/models_2.js +7 -3
- package/dist-es/models/models_3.js +3 -0
- package/dist-es/protocols/Aws_json1_1.js +2156 -2849
- package/dist-types/SageMaker.d.ts +28 -29
- package/dist-types/commands/AddTagsCommand.d.ts +1 -2
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +1 -2
- package/dist-types/commands/CreateCodeRepositoryCommand.d.ts +2 -2
- package/dist-types/commands/CreateEndpointCommand.d.ts +8 -6
- package/dist-types/commands/CreateModelCommand.d.ts +2 -4
- package/dist-types/commands/CreatePresignedNotebookInstanceUrlCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEndpointCommand.d.ts +6 -6
- package/dist-types/commands/DeleteModelCommand.d.ts +3 -3
- package/dist-types/commands/DescribeHumanTaskUiCommand.d.ts +2 -1
- package/dist-types/commands/ListNotebookInstancesCommand.d.ts +2 -2
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +218 -193
- package/dist-types/models/models_1.d.ts +235 -157
- package/dist-types/models/models_2.d.ts +83 -120
- package/dist-types/models/models_3.d.ts +115 -23
- package/dist-types/ts3.4/commands/DescribeHumanTaskUiCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +35 -29
- package/dist-types/ts3.4/models/models_2.d.ts +26 -42
- package/dist-types/ts3.4/models/models_3.d.ts +44 -1
- package/package.json +11 -6
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { DescribeHumanTaskUiRequestFilterSensitiveLog
|
|
4
|
+
import { DescribeHumanTaskUiRequestFilterSensitiveLog } from "../models/models_1";
|
|
5
|
+
import { DescribeHumanTaskUiResponseFilterSensitiveLog } from "../models/models_2";
|
|
5
6
|
import { deserializeAws_json1_1DescribeHumanTaskUiCommand, serializeAws_json1_1DescribeHumanTaskUiCommand, } from "../protocols/Aws_json1_1";
|
|
6
7
|
var DescribeHumanTaskUiCommand = (function (_super) {
|
|
7
8
|
__extends(DescribeHumanTaskUiCommand, _super);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import { ListPipelineExecutionsRequestFilterSensitiveLog, ListPipelineExecutionsResponseFilterSensitiveLog, } from "../models/
|
|
4
|
+
import { ListPipelineExecutionsRequestFilterSensitiveLog, ListPipelineExecutionsResponseFilterSensitiveLog, } from "../models/models_3";
|
|
5
5
|
import { deserializeAws_json1_1ListPipelineExecutionsCommand, serializeAws_json1_1ListPipelineExecutionsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListPipelineExecutionsCommand = (function (_super) {
|
|
7
7
|
__extends(ListPipelineExecutionsCommand, _super);
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { __assign, __read } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
export var HyperParameterTuningAllocationStrategy;
|
|
4
|
+
(function (HyperParameterTuningAllocationStrategy) {
|
|
5
|
+
HyperParameterTuningAllocationStrategy["PRIORITIZED"] = "Prioritized";
|
|
6
|
+
})(HyperParameterTuningAllocationStrategy || (HyperParameterTuningAllocationStrategy = {}));
|
|
3
7
|
export var HyperParameterTuningJobWarmStartType;
|
|
4
8
|
(function (HyperParameterTuningJobWarmStartType) {
|
|
5
9
|
HyperParameterTuningJobWarmStartType["IDENTICAL_DATA_AND_ALGORITHM"] = "IdenticalDataAndAlgorithm";
|
|
@@ -279,13 +283,10 @@ export var FlowDefinitionStatus;
|
|
|
279
283
|
FlowDefinitionStatus["FAILED"] = "Failed";
|
|
280
284
|
FlowDefinitionStatus["INITIALIZING"] = "Initializing";
|
|
281
285
|
})(FlowDefinitionStatus || (FlowDefinitionStatus = {}));
|
|
282
|
-
export var HumanTaskUiStatus;
|
|
283
|
-
(function (HumanTaskUiStatus) {
|
|
284
|
-
HumanTaskUiStatus["ACTIVE"] = "Active";
|
|
285
|
-
HumanTaskUiStatus["DELETING"] = "Deleting";
|
|
286
|
-
})(HumanTaskUiStatus || (HumanTaskUiStatus = {}));
|
|
287
286
|
export var HyperParameterTuningJobConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
287
|
export var HyperParameterAlgorithmSpecificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var HyperParameterTuningInstanceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var HyperParameterTuningResourceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
290
|
export var RetryStrategyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
291
|
export var HyperParameterTrainingJobDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
292
|
export var ParentHyperParameterTuningJobFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -564,5 +565,3 @@ export var DescribeFeatureMetadataResponseFilterSensitiveLog = function (obj) {
|
|
|
564
565
|
export var DescribeFlowDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
565
566
|
export var DescribeFlowDefinitionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
566
567
|
export var DescribeHumanTaskUiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
567
|
-
export var UiTemplateInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
568
|
-
export var DescribeHumanTaskUiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { __assign, __read } from "tslib";
|
|
2
2
|
import { TrialComponentParameterValueFilterSensitiveLog, } from "./models_1";
|
|
3
|
+
export var HumanTaskUiStatus;
|
|
4
|
+
(function (HumanTaskUiStatus) {
|
|
5
|
+
HumanTaskUiStatus["ACTIVE"] = "Active";
|
|
6
|
+
HumanTaskUiStatus["DELETING"] = "Deleting";
|
|
7
|
+
})(HumanTaskUiStatus || (HumanTaskUiStatus = {}));
|
|
3
8
|
export var TrainingJobStatus;
|
|
4
9
|
(function (TrainingJobStatus) {
|
|
5
10
|
TrainingJobStatus["COMPLETED"] = "Completed";
|
|
@@ -441,6 +446,8 @@ export var SortPipelineExecutionsBy;
|
|
|
441
446
|
SortPipelineExecutionsBy["CREATION_TIME"] = "CreationTime";
|
|
442
447
|
SortPipelineExecutionsBy["PIPELINE_EXECUTION_ARN"] = "PipelineExecutionArn";
|
|
443
448
|
})(SortPipelineExecutionsBy || (SortPipelineExecutionsBy = {}));
|
|
449
|
+
export var UiTemplateInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
450
|
+
export var DescribeHumanTaskUiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
444
451
|
export var DescribeHyperParameterTuningJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
445
452
|
export var FinalHyperParameterTuningJobObjectiveMetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
446
453
|
export var HyperParameterTrainingJobSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -681,6 +688,3 @@ export var ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog = functi
|
|
|
681
688
|
export var ListNotebookInstancesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
682
689
|
export var NotebookInstanceSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
683
690
|
export var ListNotebookInstancesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
684
|
-
export var ListPipelineExecutionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
685
|
-
export var PipelineExecutionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
686
|
-
export var ListPipelineExecutionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -73,6 +73,9 @@ export var VariantPropertyType;
|
|
|
73
73
|
VariantPropertyType["DesiredInstanceCount"] = "DesiredInstanceCount";
|
|
74
74
|
VariantPropertyType["DesiredWeight"] = "DesiredWeight";
|
|
75
75
|
})(VariantPropertyType || (VariantPropertyType = {}));
|
|
76
|
+
export var ListPipelineExecutionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
77
|
+
export var PipelineExecutionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
78
|
+
export var ListPipelineExecutionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
76
79
|
export var ListPipelineExecutionStepsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
77
80
|
export var ModelStepMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
78
81
|
export var ProcessingJobStepMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|