@aws-sdk/client-sagemaker 3.1027.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.
Files changed (53) hide show
  1. package/README.md +7 -0
  2. package/dist-cjs/index.js +22 -0
  3. package/dist-cjs/schemas/schemas_0.js +159 -99
  4. package/dist-es/SageMaker.js +2 -0
  5. package/dist-es/commands/StartClusterHealthCheckCommand.js +16 -0
  6. package/dist-es/commands/index.js +1 -0
  7. package/dist-es/models/enums.js +8 -0
  8. package/dist-es/schemas/schemas_0.js +124 -64
  9. package/dist-types/SageMaker.d.ts +7 -0
  10. package/dist-types/SageMakerClient.d.ts +3 -2
  11. package/dist-types/commands/BatchAddClusterNodesCommand.d.ts +19 -1
  12. package/dist-types/commands/CreateClusterCommand.d.ts +9 -4
  13. package/dist-types/commands/CreateCodeRepositoryCommand.d.ts +2 -1
  14. package/dist-types/commands/CreateComputeQuotaCommand.d.ts +2 -2
  15. package/dist-types/commands/DescribeClusterCommand.d.ts +19 -4
  16. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +3 -3
  17. package/dist-types/commands/DescribeComputeQuotaCommand.d.ts +2 -2
  18. package/dist-types/commands/DescribePipelineCommand.d.ts +2 -1
  19. package/dist-types/commands/DescribePipelineDefinitionForExecutionCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +1 -2
  21. package/dist-types/commands/ListClusterNodesCommand.d.ts +1 -1
  22. package/dist-types/commands/ListComputeQuotasCommand.d.ts +2 -2
  23. package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +2 -1
  24. package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -2
  25. package/dist-types/commands/StartClusterHealthCheckCommand.d.ts +88 -0
  26. package/dist-types/commands/UpdateClusterCommand.d.ts +9 -4
  27. package/dist-types/commands/UpdateComputeQuotaCommand.d.ts +2 -2
  28. package/dist-types/commands/index.d.ts +1 -0
  29. package/dist-types/models/enums.d.ts +8 -0
  30. package/dist-types/models/models_0.d.ts +98 -62
  31. package/dist-types/models/models_1.d.ts +59 -35
  32. package/dist-types/models/models_2.d.ts +57 -118
  33. package/dist-types/models/models_3.d.ts +117 -114
  34. package/dist-types/models/models_4.d.ts +141 -4
  35. package/dist-types/schemas/schemas_0.d.ts +7 -0
  36. package/dist-types/ts3.4/SageMaker.d.ts +17 -0
  37. package/dist-types/ts3.4/SageMakerClient.d.ts +6 -0
  38. package/dist-types/ts3.4/commands/CreateCodeRepositoryCommand.d.ts +2 -4
  39. package/dist-types/ts3.4/commands/DescribePipelineCommand.d.ts +2 -4
  40. package/dist-types/ts3.4/commands/DescribePipelineDefinitionForExecutionCommand.d.ts +1 -1
  41. package/dist-types/ts3.4/commands/DescribePipelineExecutionCommand.d.ts +4 -2
  42. package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +2 -4
  43. package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +4 -2
  44. package/dist-types/ts3.4/commands/StartClusterHealthCheckCommand.d.ts +51 -0
  45. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  46. package/dist-types/ts3.4/models/enums.d.ts +8 -0
  47. package/dist-types/ts3.4/models/models_0.d.ts +25 -19
  48. package/dist-types/ts3.4/models/models_1.d.ts +18 -11
  49. package/dist-types/ts3.4/models/models_2.d.ts +16 -33
  50. package/dist-types/ts3.4/models/models_3.d.ts +28 -28
  51. package/dist-types/ts3.4/models/models_4.d.ts +40 -1
  52. package/dist-types/ts3.4/schemas/schemas_0.d.ts +7 -0
  53. 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,
@@ -5962,6 +5975,12 @@ const ClusterInstanceType = {
5962
5975
  ML_G6_4XLARGE: "ml.g6.4xlarge",
5963
5976
  ML_G6_8XLARGE: "ml.g6.8xlarge",
5964
5977
  ML_G6_XLARGE: "ml.g6.xlarge",
5978
+ ML_G7E_12XLARGE: "ml.g7e.12xlarge",
5979
+ ML_G7E_24XLARGE: "ml.g7e.24xlarge",
5980
+ ML_G7E_2XLARGE: "ml.g7e.2xlarge",
5981
+ ML_G7E_48XLARGE: "ml.g7e.48xlarge",
5982
+ ML_G7E_4XLARGE: "ml.g7e.4xlarge",
5983
+ ML_G7E_8XLARGE: "ml.g7e.8xlarge",
5965
5984
  ML_GR6_4XLARGE: "ml.gr6.4xlarge",
5966
5985
  ML_GR6_8XLARGE: "ml.gr6.8xlarge",
5967
5986
  ML_I3EN_12XLARGE: "ml.i3en.12xlarge",
@@ -7102,6 +7121,8 @@ const AwsManagedHumanLoopRequestSource = {
7102
7121
  TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1: "AWS/Textract/AnalyzeDocument/Forms/V1",
7103
7122
  };
7104
7123
  const BatchAddClusterNodesErrorCode = {
7124
+ INCOMPATIBLE_AVAILABILITY_ZONES: "IncompatibleAvailabilityZones",
7125
+ INCOMPATIBLE_INSTANCE_TYPES: "IncompatibleInstanceTypes",
7105
7126
  INSTANCE_GROUP_NOT_FOUND: "InstanceGroupNotFound",
7106
7127
  INVALID_INSTANCE_GROUP_STATUS: "InvalidInstanceGroupStatus",
7107
7128
  };
@@ -9671,6 +9692,7 @@ exports.SpaceSortKey = SpaceSortKey;
9671
9692
  exports.SpaceStatus = SpaceStatus;
9672
9693
  exports.SplitType = SplitType;
9673
9694
  exports.StageStatus = StageStatus;
9695
+ exports.StartClusterHealthCheckCommand = StartClusterHealthCheckCommand;
9674
9696
  exports.StartEdgeDeploymentStageCommand = StartEdgeDeploymentStageCommand;
9675
9697
  exports.StartInferenceExperimentCommand = StartInferenceExperimentCommand;
9676
9698
  exports.StartMlflowTrackingServerCommand = StartMlflowTrackingServerCommand;