@aws-sdk/client-sagemaker 3.1061.0 → 3.1063.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 +6 -0
- package/dist-cjs/schemas/schemas_0.js +80 -68
- package/dist-es/models/enums.js +5 -0
- package/dist-es/schemas/schemas_0.js +41 -29
- package/dist-types/commands/CreateAIBenchmarkJobCommand.d.ts +5 -0
- package/dist-types/commands/CreateAIRecommendationJobCommand.d.ts +5 -0
- package/dist-types/commands/DescribeAIBenchmarkJobCommand.d.ts +5 -0
- package/dist-types/commands/DescribeAIRecommendationJobCommand.d.ts +5 -0
- package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +1 -2
- package/dist-types/commands/DescribeModelCardCommand.d.ts +2 -1
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +2 -1
- package/dist-types/commands/GetSearchSuggestionsCommand.d.ts +1 -1
- package/dist-types/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +24 -1
- package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateNotebookInstanceLifecycleConfigCommand.d.ts +1 -2
- package/dist-types/models/enums.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +41 -16
- package/dist-types/models/models_1.d.ts +17 -17
- package/dist-types/models/models_2.d.ts +18 -12
- package/dist-types/models/models_3.d.ts +100 -48
- package/dist-types/models/models_4.d.ts +55 -29
- package/dist-types/models/models_5.d.ts +26 -1
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateNotebookInstanceCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateNotebookInstanceLifecycleConfigCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +9 -4
- package/dist-types/ts3.4/models/models_1.d.ts +4 -5
- package/dist-types/ts3.4/models/models_2.d.ts +5 -5
- package/dist-types/ts3.4/models/models_3.d.ts +22 -11
- package/dist-types/ts3.4/models/models_4.d.ts +17 -8
- package/dist-types/ts3.4/models/models_5.d.ts +7 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -8890,6 +8890,10 @@ const TrackingServerStatus = {
|
|
|
8890
8890
|
UPDATE_FAILED: "UpdateFailed",
|
|
8891
8891
|
UPDATING: "Updating",
|
|
8892
8892
|
};
|
|
8893
|
+
const IncludedData = {
|
|
8894
|
+
ALL_DATA: "AllData",
|
|
8895
|
+
METADATA_ONLY: "MetadataOnly",
|
|
8896
|
+
};
|
|
8893
8897
|
const ModelCardProcessingStatus = {
|
|
8894
8898
|
CONTENT_DELETED: "ContentDeleted",
|
|
8895
8899
|
DELETE_COMPLETED: "DeleteCompleted",
|
|
@@ -9147,6 +9151,7 @@ const ResourceType = {
|
|
|
9147
9151
|
HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob",
|
|
9148
9152
|
IMAGE: "Image",
|
|
9149
9153
|
IMAGE_VERSION: "ImageVersion",
|
|
9154
|
+
JOB: "Job",
|
|
9150
9155
|
MODEL: "Model",
|
|
9151
9156
|
MODEL_CARD: "ModelCard",
|
|
9152
9157
|
MODEL_PACKAGE: "ModelPackage",
|
|
@@ -9895,6 +9900,7 @@ exports.ImageVersionSortBy = ImageVersionSortBy;
|
|
|
9895
9900
|
exports.ImageVersionSortOrder = ImageVersionSortOrder;
|
|
9896
9901
|
exports.ImageVersionStatus = ImageVersionStatus;
|
|
9897
9902
|
exports.ImportHubContentCommand = ImportHubContentCommand;
|
|
9903
|
+
exports.IncludedData = IncludedData;
|
|
9898
9904
|
exports.InferenceComponentCapacitySizeType = InferenceComponentCapacitySizeType;
|
|
9899
9905
|
exports.InferenceComponentPlacementStrategy = InferenceComponentPlacementStrategy;
|
|
9900
9906
|
exports.InferenceComponentSortKey = InferenceComponentSortKey;
|