@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
@@ -312,6 +312,7 @@ import { SearchCommand } from "./commands/SearchCommand";
312
312
  import { SearchTrainingPlanOfferingsCommand, } from "./commands/SearchTrainingPlanOfferingsCommand";
313
313
  import { SendPipelineExecutionStepFailureCommand, } from "./commands/SendPipelineExecutionStepFailureCommand";
314
314
  import { SendPipelineExecutionStepSuccessCommand, } from "./commands/SendPipelineExecutionStepSuccessCommand";
315
+ import { StartClusterHealthCheckCommand, } from "./commands/StartClusterHealthCheckCommand";
315
316
  import { StartEdgeDeploymentStageCommand, } from "./commands/StartEdgeDeploymentStageCommand";
316
317
  import { StartInferenceExperimentCommand, } from "./commands/StartInferenceExperimentCommand";
317
318
  import { StartMlflowTrackingServerCommand, } from "./commands/StartMlflowTrackingServerCommand";
@@ -794,6 +795,7 @@ const commands = {
794
795
  SearchTrainingPlanOfferingsCommand,
795
796
  SendPipelineExecutionStepFailureCommand,
796
797
  SendPipelineExecutionStepSuccessCommand,
798
+ StartClusterHealthCheckCommand,
797
799
  StartEdgeDeploymentStageCommand,
798
800
  StartInferenceExperimentCommand,
799
801
  StartMlflowTrackingServerCommand,
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { StartClusterHealthCheck$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class StartClusterHealthCheckCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("SageMaker", "StartClusterHealthCheck", {})
13
+ .n("SageMakerClient", "StartClusterHealthCheckCommand")
14
+ .sc(StartClusterHealthCheck$)
15
+ .build() {
16
+ }
@@ -311,6 +311,7 @@ export * from "./SearchCommand";
311
311
  export * from "./SearchTrainingPlanOfferingsCommand";
312
312
  export * from "./SendPipelineExecutionStepFailureCommand";
313
313
  export * from "./SendPipelineExecutionStepSuccessCommand";
314
+ export * from "./StartClusterHealthCheckCommand";
314
315
  export * from "./StartEdgeDeploymentStageCommand";
315
316
  export * from "./StartInferenceExperimentCommand";
316
317
  export * from "./StartMlflowTrackingServerCommand";
@@ -75,6 +75,12 @@ export const ClusterInstanceType = {
75
75
  ML_G6_4XLARGE: "ml.g6.4xlarge",
76
76
  ML_G6_8XLARGE: "ml.g6.8xlarge",
77
77
  ML_G6_XLARGE: "ml.g6.xlarge",
78
+ ML_G7E_12XLARGE: "ml.g7e.12xlarge",
79
+ ML_G7E_24XLARGE: "ml.g7e.24xlarge",
80
+ ML_G7E_2XLARGE: "ml.g7e.2xlarge",
81
+ ML_G7E_48XLARGE: "ml.g7e.48xlarge",
82
+ ML_G7E_4XLARGE: "ml.g7e.4xlarge",
83
+ ML_G7E_8XLARGE: "ml.g7e.8xlarge",
78
84
  ML_GR6_4XLARGE: "ml.gr6.4xlarge",
79
85
  ML_GR6_8XLARGE: "ml.gr6.8xlarge",
80
86
  ML_I3EN_12XLARGE: "ml.i3en.12xlarge",
@@ -1215,6 +1221,8 @@ export const AwsManagedHumanLoopRequestSource = {
1215
1221
  TEXTRACT_ANALYZE_DOCUMENT_FORMS_V1: "AWS/Textract/AnalyzeDocument/Forms/V1",
1216
1222
  };
1217
1223
  export const BatchAddClusterNodesErrorCode = {
1224
+ INCOMPATIBLE_AVAILABILITY_ZONES: "IncompatibleAvailabilityZones",
1225
+ INCOMPATIBLE_INSTANCE_TYPES: "IncompatibleInstanceTypes",
1218
1226
  INSTANCE_GROUP_NOT_FOUND: "InstanceGroupNotFound",
1219
1227
  INVALID_INSTANCE_GROUP_STATUS: "InvalidInstanceGroupStatus",
1220
1228
  };