@aws-sdk/client-sagemaker 3.989.0 → 3.990.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/dist-cjs/index.js +18 -0
- package/dist-cjs/schemas/schemas_0.js +313 -273
- package/dist-es/models/enums.js +16 -0
- package/dist-es/schemas/schemas_0.js +278 -238
- package/dist-types/commands/CreateClusterCommand.d.ts +27 -0
- package/dist-types/commands/CreateCompilationJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateComputeQuotaCommand.d.ts +1 -2
- package/dist-types/commands/CreateDataQualityJobDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/CreateModelBiasJobDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/CreateModelExplainabilityJobDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/CreateModelQualityJobDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/CreateMonitoringScheduleCommand.d.ts +1 -1
- package/dist-types/commands/CreateProcessingJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateSpaceCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +2 -2
- package/dist-types/commands/DescribeClusterCommand.d.ts +27 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +9 -0
- package/dist-types/commands/DescribeDataQualityJobDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelBiasJobDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelExplainabilityJobDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeModelQualityJobDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/DescribeMonitoringScheduleCommand.d.ts +1 -1
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +2 -1
- package/dist-types/commands/DescribeProcessingJobCommand.d.ts +2 -2
- package/dist-types/commands/DescribeProjectCommand.d.ts +1 -2
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +2 -2
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +5 -5
- package/dist-types/commands/UpdateClusterCommand.d.ts +32 -0
- package/dist-types/commands/UpdateMonitoringScheduleCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTrainingJobCommand.d.ts +1 -1
- package/dist-types/models/enums.d.ts +32 -0
- package/dist-types/models/models_0.d.ts +124 -145
- package/dist-types/models/models_1.d.ts +144 -125
- package/dist-types/models/models_2.d.ts +126 -229
- package/dist-types/models/models_3.d.ts +230 -156
- package/dist-types/models/models_4.d.ts +162 -5
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/commands/CreateCompilationJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateComputeQuotaCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/CreateSpaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribePipelineExecutionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeProcessingJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeProjectCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +20 -0
- package/dist-types/ts3.4/models/models_0.d.ts +45 -33
- package/dist-types/ts3.4/models/models_1.d.ts +39 -30
- package/dist-types/ts3.4/models/models_2.d.ts +39 -60
- package/dist-types/ts3.4/models/models_3.d.ts +62 -39
- package/dist-types/ts3.4/models/models_4.d.ts +42 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +6 -6
package/dist-es/models/enums.js
CHANGED
|
@@ -1406,6 +1406,11 @@ export const DeepHealthCheckType = {
|
|
|
1406
1406
|
INSTANCE_CONNECTIVITY: "InstanceConnectivity",
|
|
1407
1407
|
INSTANCE_STRESS: "InstanceStress",
|
|
1408
1408
|
};
|
|
1409
|
+
export const ClusterSlurmNodeType = {
|
|
1410
|
+
COMPUTE: "Compute",
|
|
1411
|
+
CONTROLLER: "Controller",
|
|
1412
|
+
LOGIN: "Login",
|
|
1413
|
+
};
|
|
1409
1414
|
export const SoftwareUpdateStatus = {
|
|
1410
1415
|
FAILED: "Failed",
|
|
1411
1416
|
IN_PROGRESS: "InProgress",
|
|
@@ -1430,6 +1435,11 @@ export const ClusterNodeRecovery = {
|
|
|
1430
1435
|
AUTOMATIC: "Automatic",
|
|
1431
1436
|
NONE: "None",
|
|
1432
1437
|
};
|
|
1438
|
+
export const ClusterSlurmConfigStrategy = {
|
|
1439
|
+
MANAGED: "Managed",
|
|
1440
|
+
MERGE: "Merge",
|
|
1441
|
+
OVERWRITE: "Overwrite",
|
|
1442
|
+
};
|
|
1433
1443
|
export const SchedulerResourceStatus = {
|
|
1434
1444
|
CREATED: "Created",
|
|
1435
1445
|
CREATE_FAILED: "CreateFailed",
|
|
@@ -1664,6 +1674,12 @@ export const ProcessingInstanceType = {
|
|
|
1664
1674
|
ML_G6_4XLARGE: "ml.g6.4xlarge",
|
|
1665
1675
|
ML_G6_8XLARGE: "ml.g6.8xlarge",
|
|
1666
1676
|
ML_G6_XLARGE: "ml.g6.xlarge",
|
|
1677
|
+
ML_G7E_12XLARGE: "ml.g7e.12xlarge",
|
|
1678
|
+
ML_G7E_24XLARGE: "ml.g7e.24xlarge",
|
|
1679
|
+
ML_G7E_2XLARGE: "ml.g7e.2xlarge",
|
|
1680
|
+
ML_G7E_48XLARGE: "ml.g7e.48xlarge",
|
|
1681
|
+
ML_G7E_4XLARGE: "ml.g7e.4xlarge",
|
|
1682
|
+
ML_G7E_8XLARGE: "ml.g7e.8xlarge",
|
|
1667
1683
|
ML_M4_10XLARGE: "ml.m4.10xlarge",
|
|
1668
1684
|
ML_M4_16XLARGE: "ml.m4.16xlarge",
|
|
1669
1685
|
ML_M4_2XLARGE: "ml.m4.2xlarge",
|