@aws-sdk/client-sagemaker 3.180.0 → 3.182.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 +28 -0
- package/dist-cjs/commands/CreateFlowDefinitionCommand.js +3 -3
- package/dist-cjs/commands/CreateHumanTaskUiCommand.js +3 -3
- package/dist-cjs/commands/DescribeEndpointConfigCommand.js +2 -1
- package/dist-cjs/commands/DescribeExperimentCommand.js +3 -3
- package/dist-cjs/commands/DescribeFeatureGroupCommand.js +1 -2
- package/dist-cjs/commands/ListModelsCommand.js +3 -3
- package/dist-cjs/commands/ListMonitoringExecutionsCommand.js +3 -3
- package/dist-cjs/commands/ListMonitoringSchedulesCommand.js +3 -3
- package/dist-cjs/models/models_0.js +104 -41
- package/dist-cjs/models/models_1.js +43 -51
- package/dist-cjs/models/models_2.js +61 -56
- package/dist-cjs/models/models_3.js +58 -4
- package/dist-cjs/protocols/Aws_json1_1.js +470 -263
- package/dist-es/commands/CreateFlowDefinitionCommand.js +1 -1
- package/dist-es/commands/CreateHumanTaskUiCommand.js +1 -1
- package/dist-es/commands/DescribeEndpointConfigCommand.js +2 -1
- package/dist-es/commands/DescribeExperimentCommand.js +1 -1
- package/dist-es/commands/DescribeFeatureGroupCommand.js +1 -2
- package/dist-es/commands/ListModelsCommand.js +1 -1
- package/dist-es/commands/ListMonitoringExecutionsCommand.js +1 -1
- package/dist-es/commands/ListMonitoringSchedulesCommand.js +1 -1
- package/dist-es/models/models_0.js +81 -9
- package/dist-es/models/models_1.js +9 -26
- package/dist-es/models/models_2.js +34 -26
- package/dist-es/models/models_3.js +27 -0
- package/dist-es/protocols/Aws_json1_1.js +447 -270
- package/dist-types/SageMaker.d.ts +1 -1
- package/dist-types/commands/CreateFlowDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/CreateHumanTaskUiCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +2 -1
- package/dist-types/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +1 -2
- package/dist-types/commands/ListModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListMonitoringExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListMonitoringSchedulesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTrainingJobCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +352 -528
- package/dist-types/models/models_1.d.ts +529 -155
- package/dist-types/models/models_2.d.ts +214 -294
- package/dist-types/models/models_3.d.ts +324 -3
- package/dist-types/ts3.4/commands/CreateFlowDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateHumanTaskUiCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeEndpointConfigCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeFeatureGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMonitoringExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMonitoringSchedulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +129 -75
- package/dist-types/ts3.4/models/models_1.d.ts +80 -73
- package/dist-types/ts3.4/models/models_2.d.ts +93 -112
- package/dist-types/ts3.4/models/models_3.d.ts +123 -2
- package/package.json +3 -3
|
@@ -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 { CreateFlowDefinitionRequestFilterSensitiveLog, CreateFlowDefinitionResponseFilterSensitiveLog, } from "../models/
|
|
4
|
+
import { CreateFlowDefinitionRequestFilterSensitiveLog, CreateFlowDefinitionResponseFilterSensitiveLog, } from "../models/models_1";
|
|
5
5
|
import { deserializeAws_json1_1CreateFlowDefinitionCommand, serializeAws_json1_1CreateFlowDefinitionCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateFlowDefinitionCommand = (function (_super) {
|
|
7
7
|
__extends(CreateFlowDefinitionCommand, _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 { CreateHumanTaskUiRequestFilterSensitiveLog, CreateHumanTaskUiResponseFilterSensitiveLog, } from "../models/
|
|
4
|
+
import { CreateHumanTaskUiRequestFilterSensitiveLog, CreateHumanTaskUiResponseFilterSensitiveLog, } from "../models/models_1";
|
|
5
5
|
import { deserializeAws_json1_1CreateHumanTaskUiCommand, serializeAws_json1_1CreateHumanTaskUiCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var CreateHumanTaskUiCommand = (function (_super) {
|
|
7
7
|
__extends(CreateHumanTaskUiCommand, _super);
|
|
@@ -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 { DescribeEndpointConfigInputFilterSensitiveLog
|
|
4
|
+
import { DescribeEndpointConfigInputFilterSensitiveLog } from "../models/models_1";
|
|
5
|
+
import { DescribeEndpointConfigOutputFilterSensitiveLog } from "../models/models_2";
|
|
5
6
|
import { deserializeAws_json1_1DescribeEndpointConfigCommand, serializeAws_json1_1DescribeEndpointConfigCommand, } from "../protocols/Aws_json1_1";
|
|
6
7
|
var DescribeEndpointConfigCommand = (function (_super) {
|
|
7
8
|
__extends(DescribeEndpointConfigCommand, _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 { DescribeExperimentRequestFilterSensitiveLog, DescribeExperimentResponseFilterSensitiveLog, } from "../models/
|
|
4
|
+
import { DescribeExperimentRequestFilterSensitiveLog, DescribeExperimentResponseFilterSensitiveLog, } from "../models/models_2";
|
|
5
5
|
import { deserializeAws_json1_1DescribeExperimentCommand, serializeAws_json1_1DescribeExperimentCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var DescribeExperimentCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeExperimentCommand, _super);
|
|
@@ -1,8 +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 { DescribeFeatureGroupRequestFilterSensitiveLog } from "../models/
|
|
5
|
-
import { DescribeFeatureGroupResponseFilterSensitiveLog } from "../models/models_2";
|
|
4
|
+
import { DescribeFeatureGroupRequestFilterSensitiveLog, DescribeFeatureGroupResponseFilterSensitiveLog, } from "../models/models_2";
|
|
6
5
|
import { deserializeAws_json1_1DescribeFeatureGroupCommand, serializeAws_json1_1DescribeFeatureGroupCommand, } from "../protocols/Aws_json1_1";
|
|
7
6
|
var DescribeFeatureGroupCommand = (function (_super) {
|
|
8
7
|
__extends(DescribeFeatureGroupCommand, _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 { ListModelsInputFilterSensitiveLog, ListModelsOutputFilterSensitiveLog, } from "../models/
|
|
4
|
+
import { ListModelsInputFilterSensitiveLog, ListModelsOutputFilterSensitiveLog, } from "../models/models_3";
|
|
5
5
|
import { deserializeAws_json1_1ListModelsCommand, serializeAws_json1_1ListModelsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListModelsCommand = (function (_super) {
|
|
7
7
|
__extends(ListModelsCommand, _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 { ListMonitoringExecutionsRequestFilterSensitiveLog, ListMonitoringExecutionsResponseFilterSensitiveLog, } from "../models/
|
|
4
|
+
import { ListMonitoringExecutionsRequestFilterSensitiveLog, ListMonitoringExecutionsResponseFilterSensitiveLog, } from "../models/models_3";
|
|
5
5
|
import { deserializeAws_json1_1ListMonitoringExecutionsCommand, serializeAws_json1_1ListMonitoringExecutionsCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListMonitoringExecutionsCommand = (function (_super) {
|
|
7
7
|
__extends(ListMonitoringExecutionsCommand, _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 { ListMonitoringSchedulesRequestFilterSensitiveLog, ListMonitoringSchedulesResponseFilterSensitiveLog, } from "../models/
|
|
4
|
+
import { ListMonitoringSchedulesRequestFilterSensitiveLog, ListMonitoringSchedulesResponseFilterSensitiveLog, } from "../models/models_3";
|
|
5
5
|
import { deserializeAws_json1_1ListMonitoringSchedulesCommand, serializeAws_json1_1ListMonitoringSchedulesCommand, } from "../protocols/Aws_json1_1";
|
|
6
6
|
var ListMonitoringSchedulesCommand = (function (_super) {
|
|
7
7
|
__extends(ListMonitoringSchedulesCommand, _super);
|
|
@@ -577,6 +577,81 @@ export var CaptureStatus;
|
|
|
577
577
|
CaptureStatus["STARTED"] = "Started";
|
|
578
578
|
CaptureStatus["STOPPED"] = "Stopped";
|
|
579
579
|
})(CaptureStatus || (CaptureStatus = {}));
|
|
580
|
+
export var ClarifyFeatureType;
|
|
581
|
+
(function (ClarifyFeatureType) {
|
|
582
|
+
ClarifyFeatureType["CATEGORICAL"] = "categorical";
|
|
583
|
+
ClarifyFeatureType["NUMERICAL"] = "numerical";
|
|
584
|
+
ClarifyFeatureType["TEXT"] = "text";
|
|
585
|
+
})(ClarifyFeatureType || (ClarifyFeatureType = {}));
|
|
586
|
+
export var ClarifyTextGranularity;
|
|
587
|
+
(function (ClarifyTextGranularity) {
|
|
588
|
+
ClarifyTextGranularity["PARAGRAPH"] = "paragraph";
|
|
589
|
+
ClarifyTextGranularity["SENTENCE"] = "sentence";
|
|
590
|
+
ClarifyTextGranularity["TOKEN"] = "token";
|
|
591
|
+
})(ClarifyTextGranularity || (ClarifyTextGranularity = {}));
|
|
592
|
+
export var ClarifyTextLanguage;
|
|
593
|
+
(function (ClarifyTextLanguage) {
|
|
594
|
+
ClarifyTextLanguage["AFRIKAANS"] = "af";
|
|
595
|
+
ClarifyTextLanguage["ALBANIAN"] = "sq";
|
|
596
|
+
ClarifyTextLanguage["ARABIC"] = "ar";
|
|
597
|
+
ClarifyTextLanguage["ARMENIAN"] = "hy";
|
|
598
|
+
ClarifyTextLanguage["BASQUE"] = "eu";
|
|
599
|
+
ClarifyTextLanguage["BENGALI"] = "bn";
|
|
600
|
+
ClarifyTextLanguage["BULGARIAN"] = "bg";
|
|
601
|
+
ClarifyTextLanguage["CATALAN"] = "ca";
|
|
602
|
+
ClarifyTextLanguage["CHINESE"] = "zh";
|
|
603
|
+
ClarifyTextLanguage["CROATIAN"] = "hr";
|
|
604
|
+
ClarifyTextLanguage["CZECH"] = "cs";
|
|
605
|
+
ClarifyTextLanguage["DANISH"] = "da";
|
|
606
|
+
ClarifyTextLanguage["DUTCH"] = "nl";
|
|
607
|
+
ClarifyTextLanguage["ENGLISH"] = "en";
|
|
608
|
+
ClarifyTextLanguage["ESTONIAN"] = "et";
|
|
609
|
+
ClarifyTextLanguage["FINNISH"] = "fi";
|
|
610
|
+
ClarifyTextLanguage["FRENCH"] = "fr";
|
|
611
|
+
ClarifyTextLanguage["GERMAN"] = "de";
|
|
612
|
+
ClarifyTextLanguage["GREEK"] = "el";
|
|
613
|
+
ClarifyTextLanguage["GUJARATI"] = "gu";
|
|
614
|
+
ClarifyTextLanguage["HEBREW"] = "he";
|
|
615
|
+
ClarifyTextLanguage["HINDI"] = "hi";
|
|
616
|
+
ClarifyTextLanguage["HUNGARIAN"] = "hu";
|
|
617
|
+
ClarifyTextLanguage["ICELANDIC"] = "is";
|
|
618
|
+
ClarifyTextLanguage["INDONESIAN"] = "id";
|
|
619
|
+
ClarifyTextLanguage["IRISH"] = "ga";
|
|
620
|
+
ClarifyTextLanguage["ITALIAN"] = "it";
|
|
621
|
+
ClarifyTextLanguage["KANNADA"] = "kn";
|
|
622
|
+
ClarifyTextLanguage["KYRGYZ"] = "ky";
|
|
623
|
+
ClarifyTextLanguage["LATVIAN"] = "lv";
|
|
624
|
+
ClarifyTextLanguage["LIGURIAN"] = "lij";
|
|
625
|
+
ClarifyTextLanguage["LITHUANIAN"] = "lt";
|
|
626
|
+
ClarifyTextLanguage["LUXEMBOURGISH"] = "lb";
|
|
627
|
+
ClarifyTextLanguage["MACEDONIAN"] = "mk";
|
|
628
|
+
ClarifyTextLanguage["MALAYALAM"] = "ml";
|
|
629
|
+
ClarifyTextLanguage["MARATHI"] = "mr";
|
|
630
|
+
ClarifyTextLanguage["MULTI_LANGUAGE"] = "xx";
|
|
631
|
+
ClarifyTextLanguage["NEPALI"] = "ne";
|
|
632
|
+
ClarifyTextLanguage["NORWEGIAN_BOKMAL"] = "nb";
|
|
633
|
+
ClarifyTextLanguage["PERSIAN"] = "fa";
|
|
634
|
+
ClarifyTextLanguage["POLISH"] = "pl";
|
|
635
|
+
ClarifyTextLanguage["PORTUGUESE"] = "pt";
|
|
636
|
+
ClarifyTextLanguage["ROMANIAN"] = "ro";
|
|
637
|
+
ClarifyTextLanguage["RUSSIAN"] = "ru";
|
|
638
|
+
ClarifyTextLanguage["SANSKRIT"] = "sa";
|
|
639
|
+
ClarifyTextLanguage["SERBIAN"] = "sr";
|
|
640
|
+
ClarifyTextLanguage["SETSWANA"] = "tn";
|
|
641
|
+
ClarifyTextLanguage["SINHALA"] = "si";
|
|
642
|
+
ClarifyTextLanguage["SLOVAK"] = "sk";
|
|
643
|
+
ClarifyTextLanguage["SLOVENIAN"] = "sl";
|
|
644
|
+
ClarifyTextLanguage["SPANISH"] = "es";
|
|
645
|
+
ClarifyTextLanguage["SWEDISH"] = "sv";
|
|
646
|
+
ClarifyTextLanguage["TAGALOG"] = "tl";
|
|
647
|
+
ClarifyTextLanguage["TAMIL"] = "ta";
|
|
648
|
+
ClarifyTextLanguage["TATAR"] = "tt";
|
|
649
|
+
ClarifyTextLanguage["TELUGU"] = "te";
|
|
650
|
+
ClarifyTextLanguage["TURKISH"] = "tr";
|
|
651
|
+
ClarifyTextLanguage["UKRAINIAN"] = "uk";
|
|
652
|
+
ClarifyTextLanguage["URDU"] = "ur";
|
|
653
|
+
ClarifyTextLanguage["YORUBA"] = "yo";
|
|
654
|
+
})(ClarifyTextLanguage || (ClarifyTextLanguage = {}));
|
|
580
655
|
export var CodeRepositorySortBy;
|
|
581
656
|
(function (CodeRepositorySortBy) {
|
|
582
657
|
CodeRepositorySortBy["CREATION_TIME"] = "CreationTime";
|
|
@@ -951,6 +1026,11 @@ export var CategoricalParameterRangeSpecificationFilterSensitiveLog = function (
|
|
|
951
1026
|
export var ChannelSpecificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
952
1027
|
export var CheckpointConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
953
1028
|
export var ClarifyCheckStepMetadataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1029
|
+
export var ClarifyInferenceConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1030
|
+
export var ClarifyShapBaselineConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1031
|
+
export var ClarifyTextConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1032
|
+
export var ClarifyShapConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1033
|
+
export var ClarifyExplainerConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
954
1034
|
export var GitConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
955
1035
|
export var CodeRepositorySummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
956
1036
|
export var CognitoConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1037,6 +1117,7 @@ export var DeploymentConfigFilterSensitiveLog = function (obj) { return (__assig
|
|
|
1037
1117
|
export var CreateEndpointInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1038
1118
|
export var CreateEndpointOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1039
1119
|
export var DataCaptureConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1120
|
+
export var ExplainerConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1040
1121
|
export var ProductionVariantCoreDumpConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1041
1122
|
export var ProductionVariantServerlessConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1042
1123
|
export var ProductionVariantFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1056,12 +1137,3 @@ export var HumanLoopActivationConditionsConfigFilterSensitiveLog = function (obj
|
|
|
1056
1137
|
export var HumanLoopActivationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1057
1138
|
export var USDFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1058
1139
|
export var PublicWorkforceTaskPriceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1059
|
-
export var HumanLoopConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1060
|
-
export var HumanLoopRequestSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1061
|
-
export var FlowDefinitionOutputConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1062
|
-
export var CreateFlowDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1063
|
-
export var CreateFlowDefinitionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1064
|
-
export var UiTemplateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1065
|
-
export var CreateHumanTaskUiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1066
|
-
export var CreateHumanTaskUiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1067
|
-
export var IntegerParameterRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -267,26 +267,15 @@ export var VariantStatus;
|
|
|
267
267
|
VariantStatus["DELETING"] = "Deleting";
|
|
268
268
|
VariantStatus["UPDATING"] = "Updating";
|
|
269
269
|
})(VariantStatus || (VariantStatus = {}));
|
|
270
|
-
export var
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
export var
|
|
279
|
-
(function (LastUpdateStatusValue) {
|
|
280
|
-
LastUpdateStatusValue["FAILED"] = "Failed";
|
|
281
|
-
LastUpdateStatusValue["IN_PROGRESS"] = "InProgress";
|
|
282
|
-
LastUpdateStatusValue["SUCCESSFUL"] = "Successful";
|
|
283
|
-
})(LastUpdateStatusValue || (LastUpdateStatusValue = {}));
|
|
284
|
-
export var OfflineStoreStatusValue;
|
|
285
|
-
(function (OfflineStoreStatusValue) {
|
|
286
|
-
OfflineStoreStatusValue["ACTIVE"] = "Active";
|
|
287
|
-
OfflineStoreStatusValue["BLOCKED"] = "Blocked";
|
|
288
|
-
OfflineStoreStatusValue["DISABLED"] = "Disabled";
|
|
289
|
-
})(OfflineStoreStatusValue || (OfflineStoreStatusValue = {}));
|
|
270
|
+
export var HumanLoopConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var HumanLoopRequestSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var FlowDefinitionOutputConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var CreateFlowDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var CreateFlowDefinitionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var UiTemplateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var CreateHumanTaskUiRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var CreateHumanTaskUiResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var IntegerParameterRangeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
279
|
export var ParameterRangesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
280
|
export var ResourceLimitsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
281
|
export var HyperbandStrategyConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -562,9 +551,3 @@ export var PendingDeploymentSummaryFilterSensitiveLog = function (obj) { return
|
|
|
562
551
|
export var ProductionVariantSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
563
552
|
export var DescribeEndpointOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
564
553
|
export var DescribeEndpointConfigInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
565
|
-
export var DescribeEndpointConfigOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
566
|
-
export var DescribeExperimentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
567
|
-
export var ExperimentSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
568
|
-
export var DescribeExperimentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
569
|
-
export var DescribeFeatureGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
570
|
-
export var LastUpdateStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
import { __assign, __read } from "tslib";
|
|
2
2
|
import { TrialComponentParameterValueFilterSensitiveLog, } from "./models_1";
|
|
3
|
+
export var FeatureGroupStatus;
|
|
4
|
+
(function (FeatureGroupStatus) {
|
|
5
|
+
FeatureGroupStatus["CREATED"] = "Created";
|
|
6
|
+
FeatureGroupStatus["CREATE_FAILED"] = "CreateFailed";
|
|
7
|
+
FeatureGroupStatus["CREATING"] = "Creating";
|
|
8
|
+
FeatureGroupStatus["DELETE_FAILED"] = "DeleteFailed";
|
|
9
|
+
FeatureGroupStatus["DELETING"] = "Deleting";
|
|
10
|
+
})(FeatureGroupStatus || (FeatureGroupStatus = {}));
|
|
11
|
+
export var LastUpdateStatusValue;
|
|
12
|
+
(function (LastUpdateStatusValue) {
|
|
13
|
+
LastUpdateStatusValue["FAILED"] = "Failed";
|
|
14
|
+
LastUpdateStatusValue["IN_PROGRESS"] = "InProgress";
|
|
15
|
+
LastUpdateStatusValue["SUCCESSFUL"] = "Successful";
|
|
16
|
+
})(LastUpdateStatusValue || (LastUpdateStatusValue = {}));
|
|
17
|
+
export var OfflineStoreStatusValue;
|
|
18
|
+
(function (OfflineStoreStatusValue) {
|
|
19
|
+
OfflineStoreStatusValue["ACTIVE"] = "Active";
|
|
20
|
+
OfflineStoreStatusValue["BLOCKED"] = "Blocked";
|
|
21
|
+
OfflineStoreStatusValue["DISABLED"] = "Disabled";
|
|
22
|
+
})(OfflineStoreStatusValue || (OfflineStoreStatusValue = {}));
|
|
3
23
|
export var FlowDefinitionStatus;
|
|
4
24
|
(function (FlowDefinitionStatus) {
|
|
5
25
|
FlowDefinitionStatus["ACTIVE"] = "Active";
|
|
@@ -164,6 +184,13 @@ export var SecondaryStatus;
|
|
|
164
184
|
SecondaryStatus["UPDATING"] = "Updating";
|
|
165
185
|
SecondaryStatus["UPLOADING"] = "Uploading";
|
|
166
186
|
})(SecondaryStatus || (SecondaryStatus = {}));
|
|
187
|
+
export var WarmPoolResourceStatus;
|
|
188
|
+
(function (WarmPoolResourceStatus) {
|
|
189
|
+
WarmPoolResourceStatus["AVAILABLE"] = "Available";
|
|
190
|
+
WarmPoolResourceStatus["INUSE"] = "InUse";
|
|
191
|
+
WarmPoolResourceStatus["REUSED"] = "Reused";
|
|
192
|
+
WarmPoolResourceStatus["TERMINATED"] = "Terminated";
|
|
193
|
+
})(WarmPoolResourceStatus || (WarmPoolResourceStatus = {}));
|
|
167
194
|
export var TransformJobStatus;
|
|
168
195
|
(function (TransformJobStatus) {
|
|
169
196
|
TransformJobStatus["COMPLETED"] = "Completed";
|
|
@@ -415,24 +442,12 @@ export var ModelSortKey;
|
|
|
415
442
|
ModelSortKey["CreationTime"] = "CreationTime";
|
|
416
443
|
ModelSortKey["Name"] = "Name";
|
|
417
444
|
})(ModelSortKey || (ModelSortKey = {}));
|
|
418
|
-
export var
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
export var MonitoringScheduleSortKey;
|
|
425
|
-
(function (MonitoringScheduleSortKey) {
|
|
426
|
-
MonitoringScheduleSortKey["CREATION_TIME"] = "CreationTime";
|
|
427
|
-
MonitoringScheduleSortKey["NAME"] = "Name";
|
|
428
|
-
MonitoringScheduleSortKey["STATUS"] = "Status";
|
|
429
|
-
})(MonitoringScheduleSortKey || (MonitoringScheduleSortKey = {}));
|
|
430
|
-
export var NotebookInstanceLifecycleConfigSortKey;
|
|
431
|
-
(function (NotebookInstanceLifecycleConfigSortKey) {
|
|
432
|
-
NotebookInstanceLifecycleConfigSortKey["CREATION_TIME"] = "CreationTime";
|
|
433
|
-
NotebookInstanceLifecycleConfigSortKey["LAST_MODIFIED_TIME"] = "LastModifiedTime";
|
|
434
|
-
NotebookInstanceLifecycleConfigSortKey["NAME"] = "Name";
|
|
435
|
-
})(NotebookInstanceLifecycleConfigSortKey || (NotebookInstanceLifecycleConfigSortKey = {}));
|
|
445
|
+
export var DescribeEndpointConfigOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
446
|
+
export var DescribeExperimentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
447
|
+
export var ExperimentSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
448
|
+
export var DescribeExperimentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
449
|
+
export var DescribeFeatureGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
450
|
+
export var LastUpdateStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
436
451
|
export var OfflineStoreStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
437
452
|
export var DescribeFeatureGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
438
453
|
export var DescribeFeatureMetadataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -508,6 +523,7 @@ export var DescribeTrainingJobRequestFilterSensitiveLog = function (obj) { retur
|
|
|
508
523
|
export var MetricDataFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
509
524
|
export var ProfilerRuleEvaluationStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
510
525
|
export var SecondaryStatusTransitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
526
|
+
export var WarmPoolStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
511
527
|
export var DescribeTrainingJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
512
528
|
export var DescribeTransformJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
513
529
|
export var DescribeTransformJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -670,11 +686,3 @@ export var ModelPackageSummaryFilterSensitiveLog = function (obj) { return (__as
|
|
|
670
686
|
export var ListModelPackagesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
671
687
|
export var ListModelQualityJobDefinitionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
672
688
|
export var ListModelQualityJobDefinitionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
673
|
-
export var ListModelsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
674
|
-
export var ModelSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
675
|
-
export var ListModelsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
676
|
-
export var ListMonitoringExecutionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
677
|
-
export var ListMonitoringExecutionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
678
|
-
export var ListMonitoringSchedulesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
679
|
-
export var MonitoringScheduleSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
680
|
-
export var ListMonitoringSchedulesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
import { __assign, __read } from "tslib";
|
|
2
2
|
import { OidcConfigFilterSensitiveLog, TrialComponentParameterValueFilterSensitiveLog, } from "./models_1";
|
|
3
|
+
export var MonitoringExecutionSortKey;
|
|
4
|
+
(function (MonitoringExecutionSortKey) {
|
|
5
|
+
MonitoringExecutionSortKey["CREATION_TIME"] = "CreationTime";
|
|
6
|
+
MonitoringExecutionSortKey["SCHEDULED_TIME"] = "ScheduledTime";
|
|
7
|
+
MonitoringExecutionSortKey["STATUS"] = "Status";
|
|
8
|
+
})(MonitoringExecutionSortKey || (MonitoringExecutionSortKey = {}));
|
|
9
|
+
export var MonitoringScheduleSortKey;
|
|
10
|
+
(function (MonitoringScheduleSortKey) {
|
|
11
|
+
MonitoringScheduleSortKey["CREATION_TIME"] = "CreationTime";
|
|
12
|
+
MonitoringScheduleSortKey["NAME"] = "Name";
|
|
13
|
+
MonitoringScheduleSortKey["STATUS"] = "Status";
|
|
14
|
+
})(MonitoringScheduleSortKey || (MonitoringScheduleSortKey = {}));
|
|
15
|
+
export var NotebookInstanceLifecycleConfigSortKey;
|
|
16
|
+
(function (NotebookInstanceLifecycleConfigSortKey) {
|
|
17
|
+
NotebookInstanceLifecycleConfigSortKey["CREATION_TIME"] = "CreationTime";
|
|
18
|
+
NotebookInstanceLifecycleConfigSortKey["LAST_MODIFIED_TIME"] = "LastModifiedTime";
|
|
19
|
+
NotebookInstanceLifecycleConfigSortKey["NAME"] = "Name";
|
|
20
|
+
})(NotebookInstanceLifecycleConfigSortKey || (NotebookInstanceLifecycleConfigSortKey = {}));
|
|
3
21
|
export var NotebookInstanceLifecycleConfigSortOrder;
|
|
4
22
|
(function (NotebookInstanceLifecycleConfigSortOrder) {
|
|
5
23
|
NotebookInstanceLifecycleConfigSortOrder["ASCENDING"] = "Ascending";
|
|
@@ -94,6 +112,14 @@ export var VariantPropertyType;
|
|
|
94
112
|
VariantPropertyType["DesiredInstanceCount"] = "DesiredInstanceCount";
|
|
95
113
|
VariantPropertyType["DesiredWeight"] = "DesiredWeight";
|
|
96
114
|
})(VariantPropertyType || (VariantPropertyType = {}));
|
|
115
|
+
export var ListModelsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
116
|
+
export var ModelSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
117
|
+
export var ListModelsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
118
|
+
export var ListMonitoringExecutionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
119
|
+
export var ListMonitoringExecutionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
120
|
+
export var ListMonitoringSchedulesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
121
|
+
export var MonitoringScheduleSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
|
+
export var ListMonitoringSchedulesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
97
123
|
export var ListNotebookInstanceLifecycleConfigsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
98
124
|
export var NotebookInstanceLifecycleConfigSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
99
125
|
export var ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -176,6 +202,7 @@ export var RenderableTaskFilterSensitiveLog = function (obj) { return (__assign(
|
|
|
176
202
|
export var RenderingErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
203
|
export var RenderUiTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
204
|
export var RenderUiTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
|
+
export var ResourceConfigForUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
179
206
|
export var RetryPipelineExecutionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
180
207
|
export var RetryPipelineExecutionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
181
208
|
export var TrainingJobFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|