@aws-sdk/client-sagemaker 3.943.0 → 3.944.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 +210 -20
- package/dist-es/models/enums.js +22 -0
- package/dist-es/schemas/schemas_0.js +184 -20
- package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +7 -0
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +9 -0
- package/dist-types/commands/CreateComputeQuotaCommand.d.ts +2 -1
- package/dist-types/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateModelPackageCommand.d.ts +13 -0
- package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +21 -0
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +9 -0
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +13 -0
- package/dist-types/commands/DescribePipelineExecutionCommand.d.ts +4 -0
- package/dist-types/commands/DescribeProjectCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReservedCapacityCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpaceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSubscribedWorkteamCommand.d.ts +1 -2
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +33 -0
- package/dist-types/commands/ListModelPackagesCommand.d.ts +1 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +32 -0
- package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/ListSpacesCommand.d.ts +1 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -2
- package/dist-types/commands/SearchCommand.d.ts +29 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateModelPackageCommand.d.ts +13 -0
- package/dist-types/models/enums.d.ts +62 -0
- package/dist-types/models/models_0.d.ts +115 -142
- package/dist-types/models/models_1.d.ts +146 -182
- package/dist-types/models/models_2.d.ts +302 -346
- package/dist-types/models/models_3.d.ts +4135 -4034
- package/dist-types/models/models_4.d.ts +420 -4
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateComputeQuotaCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeProjectCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeReservedCapacityCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeSpaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeSubscribedWorkteamCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +31 -0
- package/dist-types/ts3.4/models/models_0.d.ts +30 -35
- package/dist-types/ts3.4/models/models_1.d.ts +37 -48
- package/dist-types/ts3.4/models/models_2.d.ts +78 -100
- package/dist-types/ts3.4/models/models_3.d.ts +139 -105
- package/dist-types/ts3.4/models/models_4.d.ts +116 -6
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +1 -1
package/dist-es/models/enums.js
CHANGED
|
@@ -1101,6 +1101,10 @@ export const ModelApprovalStatus = {
|
|
|
1101
1101
|
PENDING_MANUAL_APPROVAL: "PendingManualApproval",
|
|
1102
1102
|
REJECTED: "Rejected",
|
|
1103
1103
|
};
|
|
1104
|
+
export const ModelPackageRegistrationType = {
|
|
1105
|
+
LOGGED: "Logged",
|
|
1106
|
+
REGISTERED: "Registered",
|
|
1107
|
+
};
|
|
1104
1108
|
export const ModelPackageStatus = {
|
|
1105
1109
|
COMPLETED: "Completed",
|
|
1106
1110
|
DELETING: "Deleting",
|
|
@@ -2216,6 +2220,24 @@ export const StudioLifecycleConfigAppType = {
|
|
|
2216
2220
|
JupyterServer: "JupyterServer",
|
|
2217
2221
|
KernelGateway: "KernelGateway",
|
|
2218
2222
|
};
|
|
2223
|
+
export const CustomizationTechnique = {
|
|
2224
|
+
DPO: "DPO",
|
|
2225
|
+
RLAIF: "RLAIF",
|
|
2226
|
+
RLVR: "RLVR",
|
|
2227
|
+
SFT: "SFT",
|
|
2228
|
+
};
|
|
2229
|
+
export const EvaluationType = {
|
|
2230
|
+
BENCHMARK_EVALUATION: "BenchmarkEvaluation",
|
|
2231
|
+
CUSTOM_SCORER_EVALUATION: "CustomScorerEvaluation",
|
|
2232
|
+
LLMAJ_EVALUATION: "LLMAJEvaluation",
|
|
2233
|
+
};
|
|
2234
|
+
export const ServerlessJobType = {
|
|
2235
|
+
EVALUATION: "Evaluation",
|
|
2236
|
+
FINE_TUNING: "FineTuning",
|
|
2237
|
+
};
|
|
2238
|
+
export const Peft = {
|
|
2239
|
+
LORA: "LORA",
|
|
2240
|
+
};
|
|
2219
2241
|
export const JoinSource = {
|
|
2220
2242
|
INPUT: "Input",
|
|
2221
2243
|
NONE: "None",
|