@aws-sdk/client-sagemaker 3.1028.0 → 3.1029.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/README.md +7 -0
- package/dist-cjs/index.js +16 -0
- package/dist-cjs/schemas/schemas_0.js +159 -99
- package/dist-es/SageMaker.js +2 -0
- package/dist-es/commands/StartClusterHealthCheckCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +2 -0
- package/dist-es/schemas/schemas_0.js +124 -64
- package/dist-types/SageMaker.d.ts +7 -0
- package/dist-types/SageMakerClient.d.ts +3 -2
- package/dist-types/commands/BatchAddClusterNodesCommand.d.ts +19 -1
- package/dist-types/commands/CreateClusterCommand.d.ts +7 -2
- package/dist-types/commands/CreateCodeRepositoryCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +17 -2
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +2 -2
- package/dist-types/commands/DescribePipelineCommand.d.ts +2 -1
- package/dist-types/commands/DescribePipelineDefinitionForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +1 -2
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +2 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -2
- package/dist-types/commands/StartClusterHealthCheckCommand.d.ts +88 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +7 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +97 -61
- package/dist-types/models/models_1.d.ts +59 -35
- package/dist-types/models/models_2.d.ts +57 -118
- package/dist-types/models/models_3.d.ts +117 -114
- package/dist-types/models/models_4.d.ts +141 -4
- package/dist-types/schemas/schemas_0.d.ts +7 -0
- package/dist-types/ts3.4/SageMaker.d.ts +17 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateCodeRepositoryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribePipelineCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribePipelineDefinitionForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePipelineExecutionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartClusterHealthCheckCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +24 -18
- package/dist-types/ts3.4/models/models_1.d.ts +18 -11
- package/dist-types/ts3.4/models/models_2.d.ts +16 -33
- package/dist-types/ts3.4/models/models_3.d.ts +28 -28
- package/dist-types/ts3.4/models/models_4.d.ts +40 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2372,6 +2372,13 @@ SendPipelineExecutionStepSuccess
|
|
|
2372
2372
|
</details>
|
|
2373
2373
|
<details>
|
|
2374
2374
|
<summary>
|
|
2375
|
+
StartClusterHealthCheck
|
|
2376
|
+
</summary>
|
|
2377
|
+
|
|
2378
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/sagemaker/command/StartClusterHealthCheckCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/StartClusterHealthCheckCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-sagemaker/Interface/StartClusterHealthCheckCommandOutput/)
|
|
2379
|
+
</details>
|
|
2380
|
+
<details>
|
|
2381
|
+
<summary>
|
|
2375
2382
|
StartEdgeDeploymentStage
|
|
2376
2383
|
</summary>
|
|
2377
2384
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -3870,6 +3870,18 @@ class SendPipelineExecutionStepSuccessCommand extends smithyClient.Command
|
|
|
3870
3870
|
.build() {
|
|
3871
3871
|
}
|
|
3872
3872
|
|
|
3873
|
+
class StartClusterHealthCheckCommand extends smithyClient.Command
|
|
3874
|
+
.classBuilder()
|
|
3875
|
+
.ep(commonParams)
|
|
3876
|
+
.m(function (Command, cs, config, o) {
|
|
3877
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3878
|
+
})
|
|
3879
|
+
.s("SageMaker", "StartClusterHealthCheck", {})
|
|
3880
|
+
.n("SageMakerClient", "StartClusterHealthCheckCommand")
|
|
3881
|
+
.sc(schemas_0.StartClusterHealthCheck$)
|
|
3882
|
+
.build() {
|
|
3883
|
+
}
|
|
3884
|
+
|
|
3873
3885
|
class StartEdgeDeploymentStageCommand extends smithyClient.Command
|
|
3874
3886
|
.classBuilder()
|
|
3875
3887
|
.ep(commonParams)
|
|
@@ -5709,6 +5721,7 @@ const commands = {
|
|
|
5709
5721
|
SearchTrainingPlanOfferingsCommand,
|
|
5710
5722
|
SendPipelineExecutionStepFailureCommand,
|
|
5711
5723
|
SendPipelineExecutionStepSuccessCommand,
|
|
5724
|
+
StartClusterHealthCheckCommand,
|
|
5712
5725
|
StartEdgeDeploymentStageCommand,
|
|
5713
5726
|
StartInferenceExperimentCommand,
|
|
5714
5727
|
StartMlflowTrackingServerCommand,
|
|
@@ -7108,6 +7121,8 @@ const AwsManagedHumanLoopRequestSource = {
|
|
|
7108
7121
|
TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1: "AWS/Textract/AnalyzeDocument/Forms/V1",
|
|
7109
7122
|
};
|
|
7110
7123
|
const BatchAddClusterNodesErrorCode = {
|
|
7124
|
+
INCOMPATIBLE_AVAILABILITY_ZONES: "IncompatibleAvailabilityZones",
|
|
7125
|
+
INCOMPATIBLE_INSTANCE_TYPES: "IncompatibleInstanceTypes",
|
|
7111
7126
|
INSTANCE_GROUP_NOT_FOUND: "InstanceGroupNotFound",
|
|
7112
7127
|
INVALID_INSTANCE_GROUP_STATUS: "InvalidInstanceGroupStatus",
|
|
7113
7128
|
};
|
|
@@ -9677,6 +9692,7 @@ exports.SpaceSortKey = SpaceSortKey;
|
|
|
9677
9692
|
exports.SpaceStatus = SpaceStatus;
|
|
9678
9693
|
exports.SplitType = SplitType;
|
|
9679
9694
|
exports.StageStatus = StageStatus;
|
|
9695
|
+
exports.StartClusterHealthCheckCommand = StartClusterHealthCheckCommand;
|
|
9680
9696
|
exports.StartEdgeDeploymentStageCommand = StartEdgeDeploymentStageCommand;
|
|
9681
9697
|
exports.StartInferenceExperimentCommand = StartInferenceExperimentCommand;
|
|
9682
9698
|
exports.StartMlflowTrackingServerCommand = StartMlflowTrackingServerCommand;
|