@aws-sdk/client-sagemaker 3.937.0 → 3.938.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 +227 -45
- package/dist-es/models/enums.js +21 -0
- package/dist-es/schemas/schemas_0.js +203 -45
- package/dist-types/commands/CreateClusterCommand.d.ts +17 -0
- package/dist-types/commands/CreateOptimizationJobCommand.d.ts +15 -1
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateTrainingPlanCommand.d.ts +1 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/commands/DescribeClusterCommand.d.ts +30 -0
- package/dist-types/commands/DescribeClusterEventCommand.d.ts +1 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +23 -0
- package/dist-types/commands/DescribeOptimizationJobCommand.d.ts +15 -1
- package/dist-types/commands/DescribeTrainingPlanCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialComponentCommand.d.ts +1 -2
- package/dist-types/commands/ListOptimizationJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListTrainingPlansCommand.d.ts +2 -1
- package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateClusterCommand.d.ts +17 -0
- package/dist-types/models/enums.d.ts +61 -0
- package/dist-types/models/models_0.d.ts +168 -163
- package/dist-types/models/models_1.d.ts +239 -226
- package/dist-types/models/models_2.d.ts +231 -436
- package/dist-types/models/models_3.d.ts +4027 -3937
- package/dist-types/models/models_4.d.ts +352 -4
- package/dist-types/schemas/schemas_0.d.ts +13 -0
- package/dist-types/ts3.4/commands/CreateTrainingJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateTrainingPlanCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrainingPlanCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialComponentCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListTrainingPlansCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +31 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -40
- package/dist-types/ts3.4/models/models_1.d.ts +69 -64
- package/dist-types/ts3.4/models/models_2.d.ts +59 -105
- package/dist-types/ts3.4/models/models_3.d.ts +109 -85
- package/dist-types/ts3.4/models/models_4.d.ts +88 -5
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -0
- package/package.json +1 -1
package/dist-es/models/enums.js
CHANGED
|
@@ -40,6 +40,9 @@ export const ActivationState = {
|
|
|
40
40
|
DISABLED: "Disabled",
|
|
41
41
|
ENABLED: "Enabled",
|
|
42
42
|
};
|
|
43
|
+
export const ActiveClusterOperationName = {
|
|
44
|
+
SCALING: "Scaling",
|
|
45
|
+
};
|
|
43
46
|
export const AssociationEdgeType = {
|
|
44
47
|
ASSOCIATED_WITH: "AssociatedWith",
|
|
45
48
|
CONTRIBUTED_TO: "ContributedTo",
|
|
@@ -1248,6 +1251,10 @@ export const ClusterAutoScalingStatus = {
|
|
|
1248
1251
|
FAILED: "Failed",
|
|
1249
1252
|
INSERVICE: "InService",
|
|
1250
1253
|
};
|
|
1254
|
+
export const ClusterCapacityType = {
|
|
1255
|
+
ON_DEMAND: "OnDemand",
|
|
1256
|
+
SPOT: "Spot",
|
|
1257
|
+
};
|
|
1251
1258
|
export const ClusterConfigMode = {
|
|
1252
1259
|
DISABLE: "Disable",
|
|
1253
1260
|
ENABLE: "Enable",
|
|
@@ -1373,6 +1380,11 @@ export const ClusterInstanceType = {
|
|
|
1373
1380
|
ML_TRN2_3XLARGE: "ml.trn2.3xlarge",
|
|
1374
1381
|
ML_TRN2_48XLARGE: "ml.trn2.48xlarge",
|
|
1375
1382
|
};
|
|
1383
|
+
export const ClusterKubernetesTaintEffect = {
|
|
1384
|
+
NO_EXECUTE: "NoExecute",
|
|
1385
|
+
NO_SCHEDULE: "NoSchedule",
|
|
1386
|
+
PREFER_NO_SCHEDULE: "PreferNoSchedule",
|
|
1387
|
+
};
|
|
1376
1388
|
export const DeepHealthCheckType = {
|
|
1377
1389
|
INSTANCE_CONNECTIVITY: "InstanceConnectivity",
|
|
1378
1390
|
INSTANCE_STRESS: "InstanceStress",
|
|
@@ -2130,11 +2142,20 @@ export const OptimizationJobDeploymentInstanceType = {
|
|
|
2130
2142
|
ML_INF2_XLARGE: "ml.inf2.xlarge",
|
|
2131
2143
|
ML_P4DE_24XLARGE: "ml.p4de.24xlarge",
|
|
2132
2144
|
ML_P4D_24XLARGE: "ml.p4d.24xlarge",
|
|
2145
|
+
ML_P5EN_48XLARGE: "ml.p5en.48xlarge",
|
|
2146
|
+
ML_P5E_48XLARGE: "ml.p5e.48xlarge",
|
|
2133
2147
|
ML_P5_48XLARGE: "ml.p5.48xlarge",
|
|
2134
2148
|
ML_TRN1N_32XLARGE: "ml.trn1n.32xlarge",
|
|
2135
2149
|
ML_TRN1_2XLARGE: "ml.trn1.2xlarge",
|
|
2136
2150
|
ML_TRN1_32XLARGE: "ml.trn1.32xlarge",
|
|
2137
2151
|
};
|
|
2152
|
+
export const ModelSpeculativeDecodingTechnique = {
|
|
2153
|
+
EAGLE: "EAGLE",
|
|
2154
|
+
};
|
|
2155
|
+
export const ModelSpeculativeDecodingS3DataType = {
|
|
2156
|
+
ManifestFile: "ManifestFile",
|
|
2157
|
+
S3Prefix: "S3Prefix",
|
|
2158
|
+
};
|
|
2138
2159
|
export const PartnerAppAuthType = {
|
|
2139
2160
|
IAM: "IAM",
|
|
2140
2161
|
};
|