@aws-sdk/client-sagemaker 3.131.0 → 3.132.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/SageMaker.js +135 -0
- package/dist-cjs/commands/CreateEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/CreateEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/CreateHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DeleteEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DeleteEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/DescribeEdgeDeploymentPlanCommand.js +36 -0
- package/dist-cjs/commands/DescribeHyperParameterTuningJobCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageCommand.js +3 -3
- package/dist-cjs/commands/DescribeImageVersionCommand.js +3 -3
- package/dist-cjs/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-cjs/commands/ListEdgeDeploymentPlansCommand.js +36 -0
- package/dist-cjs/commands/ListPipelineExecutionStepsCommand.js +3 -3
- package/dist-cjs/commands/ListPipelineParametersForExecutionCommand.js +3 -3
- package/dist-cjs/commands/ListPipelinesCommand.js +3 -3
- package/dist-cjs/commands/ListProcessingJobsCommand.js +3 -3
- package/dist-cjs/commands/ListStageDevicesCommand.js +36 -0
- package/dist-cjs/commands/StartEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/StopEdgeDeploymentStageCommand.js +36 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/models/models_0.js +54 -54
- package/dist-cjs/models/models_1.js +106 -112
- package/dist-cjs/models/models_2.js +152 -140
- package/dist-cjs/models/models_3.js +162 -3
- package/dist-cjs/pagination/ListEdgeDeploymentPlansPaginator.js +36 -0
- package/dist-cjs/pagination/ListStageDevicesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +710 -11
- package/dist-es/SageMaker.js +135 -0
- package/dist-es/commands/CreateEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/CreateEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/CreateHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DeleteEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DeleteEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/DescribeEdgeDeploymentPlanCommand.js +39 -0
- package/dist-es/commands/DescribeHyperParameterTuningJobCommand.js +1 -1
- package/dist-es/commands/DescribeImageCommand.js +1 -1
- package/dist-es/commands/DescribeImageVersionCommand.js +1 -1
- package/dist-es/commands/DescribeInferenceRecommendationsJobCommand.js +1 -2
- package/dist-es/commands/ListEdgeDeploymentPlansCommand.js +39 -0
- package/dist-es/commands/ListPipelineExecutionStepsCommand.js +1 -1
- package/dist-es/commands/ListPipelineParametersForExecutionCommand.js +1 -1
- package/dist-es/commands/ListPipelinesCommand.js +1 -1
- package/dist-es/commands/ListProcessingJobsCommand.js +1 -1
- package/dist-es/commands/ListStageDevicesCommand.js +39 -0
- package/dist-es/commands/StartEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/StopEdgeDeploymentStageCommand.js +39 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/models/models_0.js +39 -37
- package/dist-es/models/models_1.js +72 -82
- package/dist-es/models/models_2.js +114 -94
- package/dist-es/models/models_3.js +110 -0
- package/dist-es/pagination/ListEdgeDeploymentPlansPaginator.js +75 -0
- package/dist-es/pagination/ListStageDevicesPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +798 -12
- package/dist-types/SageMaker.d.ts +63 -0
- package/dist-types/SageMakerClient.d.ts +11 -2
- package/dist-types/commands/CreateEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/CreateEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DeleteEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/DescribeEdgeDeploymentPlanCommand.d.ts +35 -0
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/commands/ListEdgeDeploymentPlansCommand.d.ts +35 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +35 -0
- package/dist-types/commands/StartEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/StopEdgeDeploymentStageCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/models/models_0.d.ts +150 -451
- package/dist-types/models/models_1.d.ts +645 -504
- package/dist-types/models/models_2.d.ts +5430 -5423
- package/dist-types/models/models_3.d.ts +730 -3
- package/dist-types/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/SageMaker.d.ts +45 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +11 -2
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEdgeDeploymentPlanCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeImageVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/ListEdgeDeploymentPlansCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopEdgeDeploymentStageCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/models/models_0.d.ts +91 -132
- package/dist-types/ts3.4/models/models_1.d.ts +235 -238
- package/dist-types/ts3.4/models/models_2.d.ts +341 -324
- package/dist-types/ts3.4/models/models_3.d.ts +371 -3
- package/dist-types/ts3.4/pagination/ListEdgeDeploymentPlansPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListStageDevicesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +27 -0
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { StopEdgeDeploymentStageRequest } from "../models/models_3";
|
|
5
|
+
import { deserializeAws_json1_1StopEdgeDeploymentStageCommand, serializeAws_json1_1StopEdgeDeploymentStageCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
+
var StopEdgeDeploymentStageCommand = (function (_super) {
|
|
7
|
+
__extends(StopEdgeDeploymentStageCommand, _super);
|
|
8
|
+
function StopEdgeDeploymentStageCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
StopEdgeDeploymentStageCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "SageMakerClient";
|
|
18
|
+
var commandName = "StopEdgeDeploymentStageCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: StopEdgeDeploymentStageRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
StopEdgeDeploymentStageCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_json1_1StopEdgeDeploymentStageCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
StopEdgeDeploymentStageCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_json1_1StopEdgeDeploymentStageCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return StopEdgeDeploymentStageCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { StopEdgeDeploymentStageCommand };
|
|
@@ -14,6 +14,8 @@ export * from "./CreateContextCommand";
|
|
|
14
14
|
export * from "./CreateDataQualityJobDefinitionCommand";
|
|
15
15
|
export * from "./CreateDeviceFleetCommand";
|
|
16
16
|
export * from "./CreateDomainCommand";
|
|
17
|
+
export * from "./CreateEdgeDeploymentPlanCommand";
|
|
18
|
+
export * from "./CreateEdgeDeploymentStageCommand";
|
|
17
19
|
export * from "./CreateEdgePackagingJobCommand";
|
|
18
20
|
export * from "./CreateEndpointCommand";
|
|
19
21
|
export * from "./CreateEndpointConfigCommand";
|
|
@@ -59,6 +61,8 @@ export * from "./DeleteContextCommand";
|
|
|
59
61
|
export * from "./DeleteDataQualityJobDefinitionCommand";
|
|
60
62
|
export * from "./DeleteDeviceFleetCommand";
|
|
61
63
|
export * from "./DeleteDomainCommand";
|
|
64
|
+
export * from "./DeleteEdgeDeploymentPlanCommand";
|
|
65
|
+
export * from "./DeleteEdgeDeploymentStageCommand";
|
|
62
66
|
export * from "./DeleteEndpointCommand";
|
|
63
67
|
export * from "./DeleteEndpointConfigCommand";
|
|
64
68
|
export * from "./DeleteExperimentCommand";
|
|
@@ -100,6 +104,7 @@ export * from "./DescribeDataQualityJobDefinitionCommand";
|
|
|
100
104
|
export * from "./DescribeDeviceCommand";
|
|
101
105
|
export * from "./DescribeDeviceFleetCommand";
|
|
102
106
|
export * from "./DescribeDomainCommand";
|
|
107
|
+
export * from "./DescribeEdgeDeploymentPlanCommand";
|
|
103
108
|
export * from "./DescribeEdgePackagingJobCommand";
|
|
104
109
|
export * from "./DescribeEndpointCommand";
|
|
105
110
|
export * from "./DescribeEndpointConfigCommand";
|
|
@@ -160,6 +165,7 @@ export * from "./ListDataQualityJobDefinitionsCommand";
|
|
|
160
165
|
export * from "./ListDeviceFleetsCommand";
|
|
161
166
|
export * from "./ListDevicesCommand";
|
|
162
167
|
export * from "./ListDomainsCommand";
|
|
168
|
+
export * from "./ListEdgeDeploymentPlansCommand";
|
|
163
169
|
export * from "./ListEdgePackagingJobsCommand";
|
|
164
170
|
export * from "./ListEndpointConfigsCommand";
|
|
165
171
|
export * from "./ListEndpointsCommand";
|
|
@@ -191,6 +197,7 @@ export * from "./ListPipelineParametersForExecutionCommand";
|
|
|
191
197
|
export * from "./ListPipelinesCommand";
|
|
192
198
|
export * from "./ListProcessingJobsCommand";
|
|
193
199
|
export * from "./ListProjectsCommand";
|
|
200
|
+
export * from "./ListStageDevicesCommand";
|
|
194
201
|
export * from "./ListStudioLifecycleConfigsCommand";
|
|
195
202
|
export * from "./ListSubscribedWorkteamsCommand";
|
|
196
203
|
export * from "./ListTagsCommand";
|
|
@@ -210,11 +217,13 @@ export * from "./RetryPipelineExecutionCommand";
|
|
|
210
217
|
export * from "./SearchCommand";
|
|
211
218
|
export * from "./SendPipelineExecutionStepFailureCommand";
|
|
212
219
|
export * from "./SendPipelineExecutionStepSuccessCommand";
|
|
220
|
+
export * from "./StartEdgeDeploymentStageCommand";
|
|
213
221
|
export * from "./StartMonitoringScheduleCommand";
|
|
214
222
|
export * from "./StartNotebookInstanceCommand";
|
|
215
223
|
export * from "./StartPipelineExecutionCommand";
|
|
216
224
|
export * from "./StopAutoMLJobCommand";
|
|
217
225
|
export * from "./StopCompilationJobCommand";
|
|
226
|
+
export * from "./StopEdgeDeploymentStageCommand";
|
|
218
227
|
export * from "./StopEdgePackagingJobCommand";
|
|
219
228
|
export * from "./StopHyperParameterTuningJobCommand";
|
|
220
229
|
export * from "./StopInferenceRecommendationsJobCommand";
|
|
@@ -1494,6 +1494,45 @@ export var CreateDomainResponse;
|
|
|
1494
1494
|
(function (CreateDomainResponse) {
|
|
1495
1495
|
CreateDomainResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1496
1496
|
})(CreateDomainResponse || (CreateDomainResponse = {}));
|
|
1497
|
+
export var EdgeDeploymentModelConfig;
|
|
1498
|
+
(function (EdgeDeploymentModelConfig) {
|
|
1499
|
+
EdgeDeploymentModelConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1500
|
+
})(EdgeDeploymentModelConfig || (EdgeDeploymentModelConfig = {}));
|
|
1501
|
+
export var FailureHandlingPolicy;
|
|
1502
|
+
(function (FailureHandlingPolicy) {
|
|
1503
|
+
FailureHandlingPolicy["DoNothing"] = "DO_NOTHING";
|
|
1504
|
+
FailureHandlingPolicy["RollbackOnFailure"] = "ROLLBACK_ON_FAILURE";
|
|
1505
|
+
})(FailureHandlingPolicy || (FailureHandlingPolicy = {}));
|
|
1506
|
+
export var EdgeDeploymentConfig;
|
|
1507
|
+
(function (EdgeDeploymentConfig) {
|
|
1508
|
+
EdgeDeploymentConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1509
|
+
})(EdgeDeploymentConfig || (EdgeDeploymentConfig = {}));
|
|
1510
|
+
export var DeviceSubsetType;
|
|
1511
|
+
(function (DeviceSubsetType) {
|
|
1512
|
+
DeviceSubsetType["NameContains"] = "NAMECONTAINS";
|
|
1513
|
+
DeviceSubsetType["Percentage"] = "PERCENTAGE";
|
|
1514
|
+
DeviceSubsetType["Selection"] = "SELECTION";
|
|
1515
|
+
})(DeviceSubsetType || (DeviceSubsetType = {}));
|
|
1516
|
+
export var DeviceSelectionConfig;
|
|
1517
|
+
(function (DeviceSelectionConfig) {
|
|
1518
|
+
DeviceSelectionConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1519
|
+
})(DeviceSelectionConfig || (DeviceSelectionConfig = {}));
|
|
1520
|
+
export var DeploymentStage;
|
|
1521
|
+
(function (DeploymentStage) {
|
|
1522
|
+
DeploymentStage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1523
|
+
})(DeploymentStage || (DeploymentStage = {}));
|
|
1524
|
+
export var CreateEdgeDeploymentPlanRequest;
|
|
1525
|
+
(function (CreateEdgeDeploymentPlanRequest) {
|
|
1526
|
+
CreateEdgeDeploymentPlanRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1527
|
+
})(CreateEdgeDeploymentPlanRequest || (CreateEdgeDeploymentPlanRequest = {}));
|
|
1528
|
+
export var CreateEdgeDeploymentPlanResponse;
|
|
1529
|
+
(function (CreateEdgeDeploymentPlanResponse) {
|
|
1530
|
+
CreateEdgeDeploymentPlanResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1531
|
+
})(CreateEdgeDeploymentPlanResponse || (CreateEdgeDeploymentPlanResponse = {}));
|
|
1532
|
+
export var CreateEdgeDeploymentStageRequest;
|
|
1533
|
+
(function (CreateEdgeDeploymentStageRequest) {
|
|
1534
|
+
CreateEdgeDeploymentStageRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1535
|
+
})(CreateEdgeDeploymentStageRequest || (CreateEdgeDeploymentStageRequest = {}));
|
|
1497
1536
|
export var CreateEdgePackagingJobRequest;
|
|
1498
1537
|
(function (CreateEdgePackagingJobRequest) {
|
|
1499
1538
|
CreateEdgePackagingJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1663,40 +1702,3 @@ export var TuningJobCompletionCriteria;
|
|
|
1663
1702
|
(function (TuningJobCompletionCriteria) {
|
|
1664
1703
|
TuningJobCompletionCriteria.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1665
1704
|
})(TuningJobCompletionCriteria || (TuningJobCompletionCriteria = {}));
|
|
1666
|
-
export var HyperParameterTuningJobConfig;
|
|
1667
|
-
(function (HyperParameterTuningJobConfig) {
|
|
1668
|
-
HyperParameterTuningJobConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1669
|
-
})(HyperParameterTuningJobConfig || (HyperParameterTuningJobConfig = {}));
|
|
1670
|
-
export var HyperParameterAlgorithmSpecification;
|
|
1671
|
-
(function (HyperParameterAlgorithmSpecification) {
|
|
1672
|
-
HyperParameterAlgorithmSpecification.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1673
|
-
})(HyperParameterAlgorithmSpecification || (HyperParameterAlgorithmSpecification = {}));
|
|
1674
|
-
export var RetryStrategy;
|
|
1675
|
-
(function (RetryStrategy) {
|
|
1676
|
-
RetryStrategy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1677
|
-
})(RetryStrategy || (RetryStrategy = {}));
|
|
1678
|
-
export var HyperParameterTrainingJobDefinition;
|
|
1679
|
-
(function (HyperParameterTrainingJobDefinition) {
|
|
1680
|
-
HyperParameterTrainingJobDefinition.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1681
|
-
})(HyperParameterTrainingJobDefinition || (HyperParameterTrainingJobDefinition = {}));
|
|
1682
|
-
export var ParentHyperParameterTuningJob;
|
|
1683
|
-
(function (ParentHyperParameterTuningJob) {
|
|
1684
|
-
ParentHyperParameterTuningJob.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1685
|
-
})(ParentHyperParameterTuningJob || (ParentHyperParameterTuningJob = {}));
|
|
1686
|
-
export var HyperParameterTuningJobWarmStartType;
|
|
1687
|
-
(function (HyperParameterTuningJobWarmStartType) {
|
|
1688
|
-
HyperParameterTuningJobWarmStartType["IDENTICAL_DATA_AND_ALGORITHM"] = "IdenticalDataAndAlgorithm";
|
|
1689
|
-
HyperParameterTuningJobWarmStartType["TRANSFER_LEARNING"] = "TransferLearning";
|
|
1690
|
-
})(HyperParameterTuningJobWarmStartType || (HyperParameterTuningJobWarmStartType = {}));
|
|
1691
|
-
export var HyperParameterTuningJobWarmStartConfig;
|
|
1692
|
-
(function (HyperParameterTuningJobWarmStartConfig) {
|
|
1693
|
-
HyperParameterTuningJobWarmStartConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1694
|
-
})(HyperParameterTuningJobWarmStartConfig || (HyperParameterTuningJobWarmStartConfig = {}));
|
|
1695
|
-
export var CreateHyperParameterTuningJobRequest;
|
|
1696
|
-
(function (CreateHyperParameterTuningJobRequest) {
|
|
1697
|
-
CreateHyperParameterTuningJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1698
|
-
})(CreateHyperParameterTuningJobRequest || (CreateHyperParameterTuningJobRequest = {}));
|
|
1699
|
-
export var CreateHyperParameterTuningJobResponse;
|
|
1700
|
-
(function (CreateHyperParameterTuningJobResponse) {
|
|
1701
|
-
CreateHyperParameterTuningJobResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1702
|
-
})(CreateHyperParameterTuningJobResponse || (CreateHyperParameterTuningJobResponse = {}));
|
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
import { __assign, __read } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
export var HyperParameterTuningJobConfig;
|
|
4
|
+
(function (HyperParameterTuningJobConfig) {
|
|
5
|
+
HyperParameterTuningJobConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
6
|
+
})(HyperParameterTuningJobConfig || (HyperParameterTuningJobConfig = {}));
|
|
7
|
+
export var HyperParameterAlgorithmSpecification;
|
|
8
|
+
(function (HyperParameterAlgorithmSpecification) {
|
|
9
|
+
HyperParameterAlgorithmSpecification.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
|
+
})(HyperParameterAlgorithmSpecification || (HyperParameterAlgorithmSpecification = {}));
|
|
11
|
+
export var RetryStrategy;
|
|
12
|
+
(function (RetryStrategy) {
|
|
13
|
+
RetryStrategy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
14
|
+
})(RetryStrategy || (RetryStrategy = {}));
|
|
15
|
+
export var HyperParameterTrainingJobDefinition;
|
|
16
|
+
(function (HyperParameterTrainingJobDefinition) {
|
|
17
|
+
HyperParameterTrainingJobDefinition.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
|
+
})(HyperParameterTrainingJobDefinition || (HyperParameterTrainingJobDefinition = {}));
|
|
19
|
+
export var ParentHyperParameterTuningJob;
|
|
20
|
+
(function (ParentHyperParameterTuningJob) {
|
|
21
|
+
ParentHyperParameterTuningJob.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
22
|
+
})(ParentHyperParameterTuningJob || (ParentHyperParameterTuningJob = {}));
|
|
23
|
+
export var HyperParameterTuningJobWarmStartType;
|
|
24
|
+
(function (HyperParameterTuningJobWarmStartType) {
|
|
25
|
+
HyperParameterTuningJobWarmStartType["IDENTICAL_DATA_AND_ALGORITHM"] = "IdenticalDataAndAlgorithm";
|
|
26
|
+
HyperParameterTuningJobWarmStartType["TRANSFER_LEARNING"] = "TransferLearning";
|
|
27
|
+
})(HyperParameterTuningJobWarmStartType || (HyperParameterTuningJobWarmStartType = {}));
|
|
28
|
+
export var HyperParameterTuningJobWarmStartConfig;
|
|
29
|
+
(function (HyperParameterTuningJobWarmStartConfig) {
|
|
30
|
+
HyperParameterTuningJobWarmStartConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
31
|
+
})(HyperParameterTuningJobWarmStartConfig || (HyperParameterTuningJobWarmStartConfig = {}));
|
|
32
|
+
export var CreateHyperParameterTuningJobRequest;
|
|
33
|
+
(function (CreateHyperParameterTuningJobRequest) {
|
|
34
|
+
CreateHyperParameterTuningJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
35
|
+
})(CreateHyperParameterTuningJobRequest || (CreateHyperParameterTuningJobRequest = {}));
|
|
36
|
+
export var CreateHyperParameterTuningJobResponse;
|
|
37
|
+
(function (CreateHyperParameterTuningJobResponse) {
|
|
38
|
+
CreateHyperParameterTuningJobResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
39
|
+
})(CreateHyperParameterTuningJobResponse || (CreateHyperParameterTuningJobResponse = {}));
|
|
3
40
|
export var CreateImageRequest;
|
|
4
41
|
(function (CreateImageRequest) {
|
|
5
42
|
CreateImageRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -832,6 +869,14 @@ export var DeleteDomainRequest;
|
|
|
832
869
|
(function (DeleteDomainRequest) {
|
|
833
870
|
DeleteDomainRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
834
871
|
})(DeleteDomainRequest || (DeleteDomainRequest = {}));
|
|
872
|
+
export var DeleteEdgeDeploymentPlanRequest;
|
|
873
|
+
(function (DeleteEdgeDeploymentPlanRequest) {
|
|
874
|
+
DeleteEdgeDeploymentPlanRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
875
|
+
})(DeleteEdgeDeploymentPlanRequest || (DeleteEdgeDeploymentPlanRequest = {}));
|
|
876
|
+
export var DeleteEdgeDeploymentStageRequest;
|
|
877
|
+
(function (DeleteEdgeDeploymentStageRequest) {
|
|
878
|
+
DeleteEdgeDeploymentStageRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
879
|
+
})(DeleteEdgeDeploymentStageRequest || (DeleteEdgeDeploymentStageRequest = {}));
|
|
835
880
|
export var DeleteEndpointInput;
|
|
836
881
|
(function (DeleteEndpointInput) {
|
|
837
882
|
DeleteEndpointInput.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -988,6 +1033,25 @@ export var DeployedImage;
|
|
|
988
1033
|
(function (DeployedImage) {
|
|
989
1034
|
DeployedImage.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
990
1035
|
})(DeployedImage || (DeployedImage = {}));
|
|
1036
|
+
export var StageStatus;
|
|
1037
|
+
(function (StageStatus) {
|
|
1038
|
+
StageStatus["Creating"] = "CREATING";
|
|
1039
|
+
StageStatus["Deployed"] = "DEPLOYED";
|
|
1040
|
+
StageStatus["Failed"] = "FAILED";
|
|
1041
|
+
StageStatus["InProgress"] = "INPROGRESS";
|
|
1042
|
+
StageStatus["ReadyToDeploy"] = "READYTODEPLOY";
|
|
1043
|
+
StageStatus["Starting"] = "STARTING";
|
|
1044
|
+
StageStatus["Stopped"] = "STOPPED";
|
|
1045
|
+
StageStatus["Stopping"] = "STOPPING";
|
|
1046
|
+
})(StageStatus || (StageStatus = {}));
|
|
1047
|
+
export var EdgeDeploymentStatus;
|
|
1048
|
+
(function (EdgeDeploymentStatus) {
|
|
1049
|
+
EdgeDeploymentStatus.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1050
|
+
})(EdgeDeploymentStatus || (EdgeDeploymentStatus = {}));
|
|
1051
|
+
export var DeploymentStageStatusSummary;
|
|
1052
|
+
(function (DeploymentStageStatusSummary) {
|
|
1053
|
+
DeploymentStageStatusSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1054
|
+
})(DeploymentStageStatusSummary || (DeploymentStageStatusSummary = {}));
|
|
991
1055
|
export var DeregisterDevicesRequest;
|
|
992
1056
|
(function (DeregisterDevicesRequest) {
|
|
993
1057
|
DeregisterDevicesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1126,6 +1190,14 @@ export var DescribeDomainResponse;
|
|
|
1126
1190
|
(function (DescribeDomainResponse) {
|
|
1127
1191
|
DescribeDomainResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1128
1192
|
})(DescribeDomainResponse || (DescribeDomainResponse = {}));
|
|
1193
|
+
export var DescribeEdgeDeploymentPlanRequest;
|
|
1194
|
+
(function (DescribeEdgeDeploymentPlanRequest) {
|
|
1195
|
+
DescribeEdgeDeploymentPlanRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1196
|
+
})(DescribeEdgeDeploymentPlanRequest || (DescribeEdgeDeploymentPlanRequest = {}));
|
|
1197
|
+
export var DescribeEdgeDeploymentPlanResponse;
|
|
1198
|
+
(function (DescribeEdgeDeploymentPlanResponse) {
|
|
1199
|
+
DescribeEdgeDeploymentPlanResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1200
|
+
})(DescribeEdgeDeploymentPlanResponse || (DescribeEdgeDeploymentPlanResponse = {}));
|
|
1129
1201
|
export var DescribeEdgePackagingJobRequest;
|
|
1130
1202
|
(function (DescribeEdgePackagingJobRequest) {
|
|
1131
1203
|
DescribeEdgePackagingJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1295,85 +1367,3 @@ export var DescribeHumanTaskUiResponse;
|
|
|
1295
1367
|
(function (DescribeHumanTaskUiResponse) {
|
|
1296
1368
|
DescribeHumanTaskUiResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1297
1369
|
})(DescribeHumanTaskUiResponse || (DescribeHumanTaskUiResponse = {}));
|
|
1298
|
-
export var DescribeHyperParameterTuningJobRequest;
|
|
1299
|
-
(function (DescribeHyperParameterTuningJobRequest) {
|
|
1300
|
-
DescribeHyperParameterTuningJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1301
|
-
})(DescribeHyperParameterTuningJobRequest || (DescribeHyperParameterTuningJobRequest = {}));
|
|
1302
|
-
export var FinalHyperParameterTuningJobObjectiveMetric;
|
|
1303
|
-
(function (FinalHyperParameterTuningJobObjectiveMetric) {
|
|
1304
|
-
FinalHyperParameterTuningJobObjectiveMetric.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1305
|
-
})(FinalHyperParameterTuningJobObjectiveMetric || (FinalHyperParameterTuningJobObjectiveMetric = {}));
|
|
1306
|
-
export var TrainingJobStatus;
|
|
1307
|
-
(function (TrainingJobStatus) {
|
|
1308
|
-
TrainingJobStatus["COMPLETED"] = "Completed";
|
|
1309
|
-
TrainingJobStatus["FAILED"] = "Failed";
|
|
1310
|
-
TrainingJobStatus["IN_PROGRESS"] = "InProgress";
|
|
1311
|
-
TrainingJobStatus["STOPPED"] = "Stopped";
|
|
1312
|
-
TrainingJobStatus["STOPPING"] = "Stopping";
|
|
1313
|
-
})(TrainingJobStatus || (TrainingJobStatus = {}));
|
|
1314
|
-
export var HyperParameterTrainingJobSummary;
|
|
1315
|
-
(function (HyperParameterTrainingJobSummary) {
|
|
1316
|
-
HyperParameterTrainingJobSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1317
|
-
})(HyperParameterTrainingJobSummary || (HyperParameterTrainingJobSummary = {}));
|
|
1318
|
-
export var HyperParameterTuningJobStatus;
|
|
1319
|
-
(function (HyperParameterTuningJobStatus) {
|
|
1320
|
-
HyperParameterTuningJobStatus["COMPLETED"] = "Completed";
|
|
1321
|
-
HyperParameterTuningJobStatus["FAILED"] = "Failed";
|
|
1322
|
-
HyperParameterTuningJobStatus["IN_PROGRESS"] = "InProgress";
|
|
1323
|
-
HyperParameterTuningJobStatus["STOPPED"] = "Stopped";
|
|
1324
|
-
HyperParameterTuningJobStatus["STOPPING"] = "Stopping";
|
|
1325
|
-
})(HyperParameterTuningJobStatus || (HyperParameterTuningJobStatus = {}));
|
|
1326
|
-
export var ObjectiveStatusCounters;
|
|
1327
|
-
(function (ObjectiveStatusCounters) {
|
|
1328
|
-
ObjectiveStatusCounters.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1329
|
-
})(ObjectiveStatusCounters || (ObjectiveStatusCounters = {}));
|
|
1330
|
-
export var TrainingJobStatusCounters;
|
|
1331
|
-
(function (TrainingJobStatusCounters) {
|
|
1332
|
-
TrainingJobStatusCounters.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1333
|
-
})(TrainingJobStatusCounters || (TrainingJobStatusCounters = {}));
|
|
1334
|
-
export var DescribeHyperParameterTuningJobResponse;
|
|
1335
|
-
(function (DescribeHyperParameterTuningJobResponse) {
|
|
1336
|
-
DescribeHyperParameterTuningJobResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1337
|
-
})(DescribeHyperParameterTuningJobResponse || (DescribeHyperParameterTuningJobResponse = {}));
|
|
1338
|
-
export var DescribeImageRequest;
|
|
1339
|
-
(function (DescribeImageRequest) {
|
|
1340
|
-
DescribeImageRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1341
|
-
})(DescribeImageRequest || (DescribeImageRequest = {}));
|
|
1342
|
-
export var ImageStatus;
|
|
1343
|
-
(function (ImageStatus) {
|
|
1344
|
-
ImageStatus["CREATED"] = "CREATED";
|
|
1345
|
-
ImageStatus["CREATE_FAILED"] = "CREATE_FAILED";
|
|
1346
|
-
ImageStatus["CREATING"] = "CREATING";
|
|
1347
|
-
ImageStatus["DELETE_FAILED"] = "DELETE_FAILED";
|
|
1348
|
-
ImageStatus["DELETING"] = "DELETING";
|
|
1349
|
-
ImageStatus["UPDATE_FAILED"] = "UPDATE_FAILED";
|
|
1350
|
-
ImageStatus["UPDATING"] = "UPDATING";
|
|
1351
|
-
})(ImageStatus || (ImageStatus = {}));
|
|
1352
|
-
export var DescribeImageResponse;
|
|
1353
|
-
(function (DescribeImageResponse) {
|
|
1354
|
-
DescribeImageResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1355
|
-
})(DescribeImageResponse || (DescribeImageResponse = {}));
|
|
1356
|
-
export var DescribeImageVersionRequest;
|
|
1357
|
-
(function (DescribeImageVersionRequest) {
|
|
1358
|
-
DescribeImageVersionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1359
|
-
})(DescribeImageVersionRequest || (DescribeImageVersionRequest = {}));
|
|
1360
|
-
export var ImageVersionStatus;
|
|
1361
|
-
(function (ImageVersionStatus) {
|
|
1362
|
-
ImageVersionStatus["CREATED"] = "CREATED";
|
|
1363
|
-
ImageVersionStatus["CREATE_FAILED"] = "CREATE_FAILED";
|
|
1364
|
-
ImageVersionStatus["CREATING"] = "CREATING";
|
|
1365
|
-
ImageVersionStatus["DELETE_FAILED"] = "DELETE_FAILED";
|
|
1366
|
-
ImageVersionStatus["DELETING"] = "DELETING";
|
|
1367
|
-
})(ImageVersionStatus || (ImageVersionStatus = {}));
|
|
1368
|
-
export var DescribeImageVersionResponse;
|
|
1369
|
-
(function (DescribeImageVersionResponse) {
|
|
1370
|
-
DescribeImageVersionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1371
|
-
})(DescribeImageVersionResponse || (DescribeImageVersionResponse = {}));
|
|
1372
|
-
export var DescribeInferenceRecommendationsJobRequest;
|
|
1373
|
-
(function (DescribeInferenceRecommendationsJobRequest) {
|
|
1374
|
-
DescribeInferenceRecommendationsJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1375
|
-
})(DescribeInferenceRecommendationsJobRequest || (DescribeInferenceRecommendationsJobRequest = {}));
|
|
1376
|
-
export var EndpointOutputConfiguration;
|
|
1377
|
-
(function (EndpointOutputConfiguration) {
|
|
1378
|
-
EndpointOutputConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1379
|
-
})(EndpointOutputConfiguration || (EndpointOutputConfiguration = {}));
|
|
@@ -1,5 +1,87 @@
|
|
|
1
1
|
import { __assign, __read } from "tslib";
|
|
2
2
|
import { TrialComponentParameterValue, } from "./models_1";
|
|
3
|
+
export var DescribeHyperParameterTuningJobRequest;
|
|
4
|
+
(function (DescribeHyperParameterTuningJobRequest) {
|
|
5
|
+
DescribeHyperParameterTuningJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
6
|
+
})(DescribeHyperParameterTuningJobRequest || (DescribeHyperParameterTuningJobRequest = {}));
|
|
7
|
+
export var FinalHyperParameterTuningJobObjectiveMetric;
|
|
8
|
+
(function (FinalHyperParameterTuningJobObjectiveMetric) {
|
|
9
|
+
FinalHyperParameterTuningJobObjectiveMetric.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
10
|
+
})(FinalHyperParameterTuningJobObjectiveMetric || (FinalHyperParameterTuningJobObjectiveMetric = {}));
|
|
11
|
+
export var TrainingJobStatus;
|
|
12
|
+
(function (TrainingJobStatus) {
|
|
13
|
+
TrainingJobStatus["COMPLETED"] = "Completed";
|
|
14
|
+
TrainingJobStatus["FAILED"] = "Failed";
|
|
15
|
+
TrainingJobStatus["IN_PROGRESS"] = "InProgress";
|
|
16
|
+
TrainingJobStatus["STOPPED"] = "Stopped";
|
|
17
|
+
TrainingJobStatus["STOPPING"] = "Stopping";
|
|
18
|
+
})(TrainingJobStatus || (TrainingJobStatus = {}));
|
|
19
|
+
export var HyperParameterTrainingJobSummary;
|
|
20
|
+
(function (HyperParameterTrainingJobSummary) {
|
|
21
|
+
HyperParameterTrainingJobSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
22
|
+
})(HyperParameterTrainingJobSummary || (HyperParameterTrainingJobSummary = {}));
|
|
23
|
+
export var HyperParameterTuningJobStatus;
|
|
24
|
+
(function (HyperParameterTuningJobStatus) {
|
|
25
|
+
HyperParameterTuningJobStatus["COMPLETED"] = "Completed";
|
|
26
|
+
HyperParameterTuningJobStatus["FAILED"] = "Failed";
|
|
27
|
+
HyperParameterTuningJobStatus["IN_PROGRESS"] = "InProgress";
|
|
28
|
+
HyperParameterTuningJobStatus["STOPPED"] = "Stopped";
|
|
29
|
+
HyperParameterTuningJobStatus["STOPPING"] = "Stopping";
|
|
30
|
+
})(HyperParameterTuningJobStatus || (HyperParameterTuningJobStatus = {}));
|
|
31
|
+
export var ObjectiveStatusCounters;
|
|
32
|
+
(function (ObjectiveStatusCounters) {
|
|
33
|
+
ObjectiveStatusCounters.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
34
|
+
})(ObjectiveStatusCounters || (ObjectiveStatusCounters = {}));
|
|
35
|
+
export var TrainingJobStatusCounters;
|
|
36
|
+
(function (TrainingJobStatusCounters) {
|
|
37
|
+
TrainingJobStatusCounters.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
38
|
+
})(TrainingJobStatusCounters || (TrainingJobStatusCounters = {}));
|
|
39
|
+
export var DescribeHyperParameterTuningJobResponse;
|
|
40
|
+
(function (DescribeHyperParameterTuningJobResponse) {
|
|
41
|
+
DescribeHyperParameterTuningJobResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
42
|
+
})(DescribeHyperParameterTuningJobResponse || (DescribeHyperParameterTuningJobResponse = {}));
|
|
43
|
+
export var DescribeImageRequest;
|
|
44
|
+
(function (DescribeImageRequest) {
|
|
45
|
+
DescribeImageRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
46
|
+
})(DescribeImageRequest || (DescribeImageRequest = {}));
|
|
47
|
+
export var ImageStatus;
|
|
48
|
+
(function (ImageStatus) {
|
|
49
|
+
ImageStatus["CREATED"] = "CREATED";
|
|
50
|
+
ImageStatus["CREATE_FAILED"] = "CREATE_FAILED";
|
|
51
|
+
ImageStatus["CREATING"] = "CREATING";
|
|
52
|
+
ImageStatus["DELETE_FAILED"] = "DELETE_FAILED";
|
|
53
|
+
ImageStatus["DELETING"] = "DELETING";
|
|
54
|
+
ImageStatus["UPDATE_FAILED"] = "UPDATE_FAILED";
|
|
55
|
+
ImageStatus["UPDATING"] = "UPDATING";
|
|
56
|
+
})(ImageStatus || (ImageStatus = {}));
|
|
57
|
+
export var DescribeImageResponse;
|
|
58
|
+
(function (DescribeImageResponse) {
|
|
59
|
+
DescribeImageResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
60
|
+
})(DescribeImageResponse || (DescribeImageResponse = {}));
|
|
61
|
+
export var DescribeImageVersionRequest;
|
|
62
|
+
(function (DescribeImageVersionRequest) {
|
|
63
|
+
DescribeImageVersionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
64
|
+
})(DescribeImageVersionRequest || (DescribeImageVersionRequest = {}));
|
|
65
|
+
export var ImageVersionStatus;
|
|
66
|
+
(function (ImageVersionStatus) {
|
|
67
|
+
ImageVersionStatus["CREATED"] = "CREATED";
|
|
68
|
+
ImageVersionStatus["CREATE_FAILED"] = "CREATE_FAILED";
|
|
69
|
+
ImageVersionStatus["CREATING"] = "CREATING";
|
|
70
|
+
ImageVersionStatus["DELETE_FAILED"] = "DELETE_FAILED";
|
|
71
|
+
ImageVersionStatus["DELETING"] = "DELETING";
|
|
72
|
+
})(ImageVersionStatus || (ImageVersionStatus = {}));
|
|
73
|
+
export var DescribeImageVersionResponse;
|
|
74
|
+
(function (DescribeImageVersionResponse) {
|
|
75
|
+
DescribeImageVersionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
76
|
+
})(DescribeImageVersionResponse || (DescribeImageVersionResponse = {}));
|
|
77
|
+
export var DescribeInferenceRecommendationsJobRequest;
|
|
78
|
+
(function (DescribeInferenceRecommendationsJobRequest) {
|
|
79
|
+
DescribeInferenceRecommendationsJobRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
80
|
+
})(DescribeInferenceRecommendationsJobRequest || (DescribeInferenceRecommendationsJobRequest = {}));
|
|
81
|
+
export var EndpointOutputConfiguration;
|
|
82
|
+
(function (EndpointOutputConfiguration) {
|
|
83
|
+
EndpointOutputConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
84
|
+
})(EndpointOutputConfiguration || (EndpointOutputConfiguration = {}));
|
|
3
85
|
export var RecommendationMetrics;
|
|
4
86
|
(function (RecommendationMetrics) {
|
|
5
87
|
RecommendationMetrics.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -450,6 +532,19 @@ export var Device;
|
|
|
450
532
|
(function (Device) {
|
|
451
533
|
Device.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
452
534
|
})(Device || (Device = {}));
|
|
535
|
+
export var DeviceDeploymentStatus;
|
|
536
|
+
(function (DeviceDeploymentStatus) {
|
|
537
|
+
DeviceDeploymentStatus["Deployed"] = "DEPLOYED";
|
|
538
|
+
DeviceDeploymentStatus["Failed"] = "FAILED";
|
|
539
|
+
DeviceDeploymentStatus["InProgress"] = "INPROGRESS";
|
|
540
|
+
DeviceDeploymentStatus["ReadyToDeploy"] = "READYTODEPLOY";
|
|
541
|
+
DeviceDeploymentStatus["Stopped"] = "STOPPED";
|
|
542
|
+
DeviceDeploymentStatus["Stopping"] = "STOPPING";
|
|
543
|
+
})(DeviceDeploymentStatus || (DeviceDeploymentStatus = {}));
|
|
544
|
+
export var DeviceDeploymentSummary;
|
|
545
|
+
(function (DeviceDeploymentSummary) {
|
|
546
|
+
DeviceDeploymentSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
547
|
+
})(DeviceDeploymentSummary || (DeviceDeploymentSummary = {}));
|
|
453
548
|
export var DeviceFleetSummary;
|
|
454
549
|
(function (DeviceFleetSummary) {
|
|
455
550
|
DeviceFleetSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -504,6 +599,10 @@ export var Edge;
|
|
|
504
599
|
(function (Edge) {
|
|
505
600
|
Edge.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
506
601
|
})(Edge || (Edge = {}));
|
|
602
|
+
export var EdgeDeploymentPlanSummary;
|
|
603
|
+
(function (EdgeDeploymentPlanSummary) {
|
|
604
|
+
EdgeDeploymentPlanSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
605
|
+
})(EdgeDeploymentPlanSummary || (EdgeDeploymentPlanSummary = {}));
|
|
507
606
|
export var EdgeModelStat;
|
|
508
607
|
(function (EdgeModelStat) {
|
|
509
608
|
EdgeModelStat.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -927,6 +1026,21 @@ export var ListDomainsResponse;
|
|
|
927
1026
|
(function (ListDomainsResponse) {
|
|
928
1027
|
ListDomainsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
929
1028
|
})(ListDomainsResponse || (ListDomainsResponse = {}));
|
|
1029
|
+
export var ListEdgeDeploymentPlansSortBy;
|
|
1030
|
+
(function (ListEdgeDeploymentPlansSortBy) {
|
|
1031
|
+
ListEdgeDeploymentPlansSortBy["CreationTime"] = "CREATION_TIME";
|
|
1032
|
+
ListEdgeDeploymentPlansSortBy["DeviceFleetName"] = "DEVICE_FLEET_NAME";
|
|
1033
|
+
ListEdgeDeploymentPlansSortBy["LastModifiedTime"] = "LAST_MODIFIED_TIME";
|
|
1034
|
+
ListEdgeDeploymentPlansSortBy["Name"] = "NAME";
|
|
1035
|
+
})(ListEdgeDeploymentPlansSortBy || (ListEdgeDeploymentPlansSortBy = {}));
|
|
1036
|
+
export var ListEdgeDeploymentPlansRequest;
|
|
1037
|
+
(function (ListEdgeDeploymentPlansRequest) {
|
|
1038
|
+
ListEdgeDeploymentPlansRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1039
|
+
})(ListEdgeDeploymentPlansRequest || (ListEdgeDeploymentPlansRequest = {}));
|
|
1040
|
+
export var ListEdgeDeploymentPlansResponse;
|
|
1041
|
+
(function (ListEdgeDeploymentPlansResponse) {
|
|
1042
|
+
ListEdgeDeploymentPlansResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1043
|
+
})(ListEdgeDeploymentPlansResponse || (ListEdgeDeploymentPlansResponse = {}));
|
|
930
1044
|
export var ListEdgePackagingJobsSortBy;
|
|
931
1045
|
(function (ListEdgePackagingJobsSortBy) {
|
|
932
1046
|
ListEdgePackagingJobsSortBy["CreationTime"] = "CREATION_TIME";
|
|
@@ -1281,97 +1395,3 @@ export var ListPipelineExecutionsResponse;
|
|
|
1281
1395
|
(function (ListPipelineExecutionsResponse) {
|
|
1282
1396
|
ListPipelineExecutionsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1283
1397
|
})(ListPipelineExecutionsResponse || (ListPipelineExecutionsResponse = {}));
|
|
1284
|
-
export var ListPipelineExecutionStepsRequest;
|
|
1285
|
-
(function (ListPipelineExecutionStepsRequest) {
|
|
1286
|
-
ListPipelineExecutionStepsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1287
|
-
})(ListPipelineExecutionStepsRequest || (ListPipelineExecutionStepsRequest = {}));
|
|
1288
|
-
export var ModelStepMetadata;
|
|
1289
|
-
(function (ModelStepMetadata) {
|
|
1290
|
-
ModelStepMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1291
|
-
})(ModelStepMetadata || (ModelStepMetadata = {}));
|
|
1292
|
-
export var ProcessingJobStepMetadata;
|
|
1293
|
-
(function (ProcessingJobStepMetadata) {
|
|
1294
|
-
ProcessingJobStepMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1295
|
-
})(ProcessingJobStepMetadata || (ProcessingJobStepMetadata = {}));
|
|
1296
|
-
export var QualityCheckStepMetadata;
|
|
1297
|
-
(function (QualityCheckStepMetadata) {
|
|
1298
|
-
QualityCheckStepMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1299
|
-
})(QualityCheckStepMetadata || (QualityCheckStepMetadata = {}));
|
|
1300
|
-
export var RegisterModelStepMetadata;
|
|
1301
|
-
(function (RegisterModelStepMetadata) {
|
|
1302
|
-
RegisterModelStepMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1303
|
-
})(RegisterModelStepMetadata || (RegisterModelStepMetadata = {}));
|
|
1304
|
-
export var TrainingJobStepMetadata;
|
|
1305
|
-
(function (TrainingJobStepMetadata) {
|
|
1306
|
-
TrainingJobStepMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1307
|
-
})(TrainingJobStepMetadata || (TrainingJobStepMetadata = {}));
|
|
1308
|
-
export var TransformJobStepMetadata;
|
|
1309
|
-
(function (TransformJobStepMetadata) {
|
|
1310
|
-
TransformJobStepMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1311
|
-
})(TransformJobStepMetadata || (TransformJobStepMetadata = {}));
|
|
1312
|
-
export var TuningJobStepMetaData;
|
|
1313
|
-
(function (TuningJobStepMetaData) {
|
|
1314
|
-
TuningJobStepMetaData.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1315
|
-
})(TuningJobStepMetaData || (TuningJobStepMetaData = {}));
|
|
1316
|
-
export var PipelineExecutionStepMetadata;
|
|
1317
|
-
(function (PipelineExecutionStepMetadata) {
|
|
1318
|
-
PipelineExecutionStepMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1319
|
-
})(PipelineExecutionStepMetadata || (PipelineExecutionStepMetadata = {}));
|
|
1320
|
-
export var StepStatus;
|
|
1321
|
-
(function (StepStatus) {
|
|
1322
|
-
StepStatus["EXECUTING"] = "Executing";
|
|
1323
|
-
StepStatus["FAILED"] = "Failed";
|
|
1324
|
-
StepStatus["STARTING"] = "Starting";
|
|
1325
|
-
StepStatus["STOPPED"] = "Stopped";
|
|
1326
|
-
StepStatus["STOPPING"] = "Stopping";
|
|
1327
|
-
StepStatus["SUCCEEDED"] = "Succeeded";
|
|
1328
|
-
})(StepStatus || (StepStatus = {}));
|
|
1329
|
-
export var PipelineExecutionStep;
|
|
1330
|
-
(function (PipelineExecutionStep) {
|
|
1331
|
-
PipelineExecutionStep.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1332
|
-
})(PipelineExecutionStep || (PipelineExecutionStep = {}));
|
|
1333
|
-
export var ListPipelineExecutionStepsResponse;
|
|
1334
|
-
(function (ListPipelineExecutionStepsResponse) {
|
|
1335
|
-
ListPipelineExecutionStepsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1336
|
-
})(ListPipelineExecutionStepsResponse || (ListPipelineExecutionStepsResponse = {}));
|
|
1337
|
-
export var ListPipelineParametersForExecutionRequest;
|
|
1338
|
-
(function (ListPipelineParametersForExecutionRequest) {
|
|
1339
|
-
ListPipelineParametersForExecutionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1340
|
-
})(ListPipelineParametersForExecutionRequest || (ListPipelineParametersForExecutionRequest = {}));
|
|
1341
|
-
export var Parameter;
|
|
1342
|
-
(function (Parameter) {
|
|
1343
|
-
Parameter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1344
|
-
})(Parameter || (Parameter = {}));
|
|
1345
|
-
export var ListPipelineParametersForExecutionResponse;
|
|
1346
|
-
(function (ListPipelineParametersForExecutionResponse) {
|
|
1347
|
-
ListPipelineParametersForExecutionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1348
|
-
})(ListPipelineParametersForExecutionResponse || (ListPipelineParametersForExecutionResponse = {}));
|
|
1349
|
-
export var SortPipelinesBy;
|
|
1350
|
-
(function (SortPipelinesBy) {
|
|
1351
|
-
SortPipelinesBy["CREATION_TIME"] = "CreationTime";
|
|
1352
|
-
SortPipelinesBy["NAME"] = "Name";
|
|
1353
|
-
})(SortPipelinesBy || (SortPipelinesBy = {}));
|
|
1354
|
-
export var ListPipelinesRequest;
|
|
1355
|
-
(function (ListPipelinesRequest) {
|
|
1356
|
-
ListPipelinesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1357
|
-
})(ListPipelinesRequest || (ListPipelinesRequest = {}));
|
|
1358
|
-
export var PipelineSummary;
|
|
1359
|
-
(function (PipelineSummary) {
|
|
1360
|
-
PipelineSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1361
|
-
})(PipelineSummary || (PipelineSummary = {}));
|
|
1362
|
-
export var ListPipelinesResponse;
|
|
1363
|
-
(function (ListPipelinesResponse) {
|
|
1364
|
-
ListPipelinesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1365
|
-
})(ListPipelinesResponse || (ListPipelinesResponse = {}));
|
|
1366
|
-
export var ListProcessingJobsRequest;
|
|
1367
|
-
(function (ListProcessingJobsRequest) {
|
|
1368
|
-
ListProcessingJobsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1369
|
-
})(ListProcessingJobsRequest || (ListProcessingJobsRequest = {}));
|
|
1370
|
-
export var ProcessingJobSummary;
|
|
1371
|
-
(function (ProcessingJobSummary) {
|
|
1372
|
-
ProcessingJobSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1373
|
-
})(ProcessingJobSummary || (ProcessingJobSummary = {}));
|
|
1374
|
-
export var ListProcessingJobsResponse;
|
|
1375
|
-
(function (ListProcessingJobsResponse) {
|
|
1376
|
-
ListProcessingJobsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1377
|
-
})(ListProcessingJobsResponse || (ListProcessingJobsResponse = {}));
|