@aws-sdk/client-sagemaker 3.916.0 → 3.917.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 +32 -25
- package/dist-es/models/models_3.js +0 -20
- package/dist-es/models/models_4.js +20 -5
- package/dist-es/models/models_5.js +5 -0
- package/dist-es/protocols/Aws_json1_1.js +7 -0
- package/dist-types/commands/CreateInferenceComponentCommand.d.ts +3 -0
- package/dist-types/commands/CreateLabelingJobCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +1 -2
- package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +3 -0
- package/dist-types/commands/GetScalingConfigurationRecommendationCommand.d.ts +2 -1
- package/dist-types/commands/ListUltraServersByReservedCapacityCommand.d.ts +1 -2
- package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +3 -0
- package/dist-types/models/models_1.d.ts +16 -10
- package/dist-types/models/models_2.d.ts +12 -22
- package/dist-types/models/models_3.d.ts +36 -68
- package/dist-types/models/models_4.d.ts +69 -34
- package/dist-types/models/models_5.d.ts +35 -2
- package/dist-types/ts3.4/commands/CreateLabelingJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetScalingConfigurationRecommendationCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListUltraServersByReservedCapacityCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_1.d.ts +4 -3
- package/dist-types/ts3.4/models/models_2.d.ts +3 -5
- package/dist-types/ts3.4/models/models_3.d.ts +9 -30
- package/dist-types/ts3.4/models/models_4.d.ts +33 -13
- package/dist-types/ts3.4/models/models_5.d.ts +13 -2
- package/package.json +2 -2
package/dist-cjs/index.js
CHANGED
|
@@ -9759,6 +9759,7 @@ const se_InferenceComponentSpecification = (input, context) => {
|
|
|
9759
9759
|
BaseInferenceComponentName: [],
|
|
9760
9760
|
ComputeResourceRequirements: (_) => se_InferenceComponentComputeResourceRequirements(_),
|
|
9761
9761
|
Container: smithyClient._json,
|
|
9762
|
+
DataCacheConfig: smithyClient._json,
|
|
9762
9763
|
ModelName: [],
|
|
9763
9764
|
StartupParameters: smithyClient._json,
|
|
9764
9765
|
});
|
|
@@ -15941,6 +15942,11 @@ const de_InferenceComponentContainerSpecificationSummary = (output, context) =>
|
|
|
15941
15942
|
Environment: (_) => de_EnvironmentMap(_),
|
|
15942
15943
|
});
|
|
15943
15944
|
};
|
|
15945
|
+
const de_InferenceComponentDataCacheConfigSummary = (output, context) => {
|
|
15946
|
+
return smithyClient.take(output, {
|
|
15947
|
+
EnableCaching: smithyClient.expectBoolean,
|
|
15948
|
+
});
|
|
15949
|
+
};
|
|
15944
15950
|
const de_InferenceComponentDeploymentConfig = (output, context) => {
|
|
15945
15951
|
return smithyClient.take(output, {
|
|
15946
15952
|
AutoRollbackConfiguration: (_) => de_AutoRollbackConfig(_),
|
|
@@ -15966,6 +15972,7 @@ const de_InferenceComponentSpecificationSummary = (output, context) => {
|
|
|
15966
15972
|
BaseInferenceComponentName: smithyClient.expectString,
|
|
15967
15973
|
ComputeResourceRequirements: (_) => de_InferenceComponentComputeResourceRequirements(_),
|
|
15968
15974
|
Container: (_) => de_InferenceComponentContainerSpecificationSummary(_),
|
|
15975
|
+
DataCacheConfig: (_) => de_InferenceComponentDataCacheConfigSummary(_),
|
|
15969
15976
|
ModelName: smithyClient.expectString,
|
|
15970
15977
|
StartupParameters: (_) => de_InferenceComponentStartupParameters(_),
|
|
15971
15978
|
});
|
|
@@ -24312,26 +24319,6 @@ const SagemakerServicecatalogStatus = {
|
|
|
24312
24319
|
DISABLED: "Disabled",
|
|
24313
24320
|
ENABLED: "Enabled",
|
|
24314
24321
|
};
|
|
24315
|
-
const ResourceType = {
|
|
24316
|
-
ENDPOINT: "Endpoint",
|
|
24317
|
-
EXPERIMENT: "Experiment",
|
|
24318
|
-
EXPERIMENT_TRIAL: "ExperimentTrial",
|
|
24319
|
-
EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent",
|
|
24320
|
-
FEATURE_GROUP: "FeatureGroup",
|
|
24321
|
-
FEATURE_METADATA: "FeatureMetadata",
|
|
24322
|
-
HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob",
|
|
24323
|
-
IMAGE: "Image",
|
|
24324
|
-
IMAGE_VERSION: "ImageVersion",
|
|
24325
|
-
MODEL: "Model",
|
|
24326
|
-
MODEL_CARD: "ModelCard",
|
|
24327
|
-
MODEL_PACKAGE: "ModelPackage",
|
|
24328
|
-
MODEL_PACKAGE_GROUP: "ModelPackageGroup",
|
|
24329
|
-
PIPELINE: "Pipeline",
|
|
24330
|
-
PIPELINE_EXECUTION: "PipelineExecution",
|
|
24331
|
-
PIPELINE_VERSION: "PipelineVersion",
|
|
24332
|
-
PROJECT: "Project",
|
|
24333
|
-
TRAINING_JOB: "TrainingJob",
|
|
24334
|
-
};
|
|
24335
24322
|
const DescribeModelCardResponseFilterSensitiveLog = (obj) => ({
|
|
24336
24323
|
...obj,
|
|
24337
24324
|
...(obj.Content && { Content: smithyClient.SENSITIVE_STRING }),
|
|
@@ -26534,6 +26521,11 @@ class RetryPipelineExecutionCommand extends smithyClient.Command
|
|
|
26534
26521
|
.build() {
|
|
26535
26522
|
}
|
|
26536
26523
|
|
|
26524
|
+
const UltraServerHealthStatus = {
|
|
26525
|
+
IMPAIRED: "Impaired",
|
|
26526
|
+
INSUFFICIENT_DATA: "Insufficient-Data",
|
|
26527
|
+
OK: "OK",
|
|
26528
|
+
};
|
|
26537
26529
|
const UserProfileSortKey = {
|
|
26538
26530
|
CreationTime: "CreationTime",
|
|
26539
26531
|
LastModifiedTime: "LastModifiedTime",
|
|
@@ -28883,6 +28875,26 @@ const waitUntilTransformJobCompletedOrStopped = async (params, input) => {
|
|
|
28883
28875
|
return utilWaiter.checkExceptions(result);
|
|
28884
28876
|
};
|
|
28885
28877
|
|
|
28878
|
+
const ResourceType = {
|
|
28879
|
+
ENDPOINT: "Endpoint",
|
|
28880
|
+
EXPERIMENT: "Experiment",
|
|
28881
|
+
EXPERIMENT_TRIAL: "ExperimentTrial",
|
|
28882
|
+
EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent",
|
|
28883
|
+
FEATURE_GROUP: "FeatureGroup",
|
|
28884
|
+
FEATURE_METADATA: "FeatureMetadata",
|
|
28885
|
+
HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob",
|
|
28886
|
+
IMAGE: "Image",
|
|
28887
|
+
IMAGE_VERSION: "ImageVersion",
|
|
28888
|
+
MODEL: "Model",
|
|
28889
|
+
MODEL_CARD: "ModelCard",
|
|
28890
|
+
MODEL_PACKAGE: "ModelPackage",
|
|
28891
|
+
MODEL_PACKAGE_GROUP: "ModelPackageGroup",
|
|
28892
|
+
PIPELINE: "Pipeline",
|
|
28893
|
+
PIPELINE_EXECUTION: "PipelineExecution",
|
|
28894
|
+
PIPELINE_VERSION: "PipelineVersion",
|
|
28895
|
+
PROJECT: "Project",
|
|
28896
|
+
TRAINING_JOB: "TrainingJob",
|
|
28897
|
+
};
|
|
28886
28898
|
const HubContentSortBy = {
|
|
28887
28899
|
CREATION_TIME: "CreationTime",
|
|
28888
28900
|
HUB_CONTENT_NAME: "HubContentName",
|
|
@@ -29180,11 +29192,6 @@ const SortTrialsBy = {
|
|
|
29180
29192
|
CREATION_TIME: "CreationTime",
|
|
29181
29193
|
NAME: "Name",
|
|
29182
29194
|
};
|
|
29183
|
-
const UltraServerHealthStatus = {
|
|
29184
|
-
IMPAIRED: "Impaired",
|
|
29185
|
-
INSUFFICIENT_DATA: "Insufficient-Data",
|
|
29186
|
-
OK: "OK",
|
|
29187
|
-
};
|
|
29188
29195
|
|
|
29189
29196
|
Object.defineProperty(exports, "$Command", {
|
|
29190
29197
|
enumerable: true,
|
|
@@ -455,26 +455,6 @@ export const SagemakerServicecatalogStatus = {
|
|
|
455
455
|
DISABLED: "Disabled",
|
|
456
456
|
ENABLED: "Enabled",
|
|
457
457
|
};
|
|
458
|
-
export const ResourceType = {
|
|
459
|
-
ENDPOINT: "Endpoint",
|
|
460
|
-
EXPERIMENT: "Experiment",
|
|
461
|
-
EXPERIMENT_TRIAL: "ExperimentTrial",
|
|
462
|
-
EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent",
|
|
463
|
-
FEATURE_GROUP: "FeatureGroup",
|
|
464
|
-
FEATURE_METADATA: "FeatureMetadata",
|
|
465
|
-
HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob",
|
|
466
|
-
IMAGE: "Image",
|
|
467
|
-
IMAGE_VERSION: "ImageVersion",
|
|
468
|
-
MODEL: "Model",
|
|
469
|
-
MODEL_CARD: "ModelCard",
|
|
470
|
-
MODEL_PACKAGE: "ModelPackage",
|
|
471
|
-
MODEL_PACKAGE_GROUP: "ModelPackageGroup",
|
|
472
|
-
PIPELINE: "Pipeline",
|
|
473
|
-
PIPELINE_EXECUTION: "PipelineExecution",
|
|
474
|
-
PIPELINE_VERSION: "PipelineVersion",
|
|
475
|
-
PROJECT: "Project",
|
|
476
|
-
TRAINING_JOB: "TrainingJob",
|
|
477
|
-
};
|
|
478
458
|
export const DescribeModelCardResponseFilterSensitiveLog = (obj) => ({
|
|
479
459
|
...obj,
|
|
480
460
|
...(obj.Content && { Content: SENSITIVE_STRING }),
|
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
export const ResourceType = {
|
|
2
|
+
ENDPOINT: "Endpoint",
|
|
3
|
+
EXPERIMENT: "Experiment",
|
|
4
|
+
EXPERIMENT_TRIAL: "ExperimentTrial",
|
|
5
|
+
EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent",
|
|
6
|
+
FEATURE_GROUP: "FeatureGroup",
|
|
7
|
+
FEATURE_METADATA: "FeatureMetadata",
|
|
8
|
+
HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob",
|
|
9
|
+
IMAGE: "Image",
|
|
10
|
+
IMAGE_VERSION: "ImageVersion",
|
|
11
|
+
MODEL: "Model",
|
|
12
|
+
MODEL_CARD: "ModelCard",
|
|
13
|
+
MODEL_PACKAGE: "ModelPackage",
|
|
14
|
+
MODEL_PACKAGE_GROUP: "ModelPackageGroup",
|
|
15
|
+
PIPELINE: "Pipeline",
|
|
16
|
+
PIPELINE_EXECUTION: "PipelineExecution",
|
|
17
|
+
PIPELINE_VERSION: "PipelineVersion",
|
|
18
|
+
PROJECT: "Project",
|
|
19
|
+
TRAINING_JOB: "TrainingJob",
|
|
20
|
+
};
|
|
1
21
|
export const HubContentSortBy = {
|
|
2
22
|
CREATION_TIME: "CreationTime",
|
|
3
23
|
HUB_CONTENT_NAME: "HubContentName",
|
|
@@ -295,8 +315,3 @@ export const SortTrialsBy = {
|
|
|
295
315
|
CREATION_TIME: "CreationTime",
|
|
296
316
|
NAME: "Name",
|
|
297
317
|
};
|
|
298
|
-
export const UltraServerHealthStatus = {
|
|
299
|
-
IMPAIRED: "Impaired",
|
|
300
|
-
INSUFFICIENT_DATA: "Insufficient-Data",
|
|
301
|
-
OK: "OK",
|
|
302
|
-
};
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { ModelPackageModelCardFilterSensitiveLog, OidcConfigFilterSensitiveLog, } from "./models_2";
|
|
3
|
+
export const UltraServerHealthStatus = {
|
|
4
|
+
IMPAIRED: "Impaired",
|
|
5
|
+
INSUFFICIENT_DATA: "Insufficient-Data",
|
|
6
|
+
OK: "OK",
|
|
7
|
+
};
|
|
3
8
|
export const UserProfileSortKey = {
|
|
4
9
|
CreationTime: "CreationTime",
|
|
5
10
|
LastModifiedTime: "LastModifiedTime",
|
|
@@ -7293,6 +7293,7 @@ const se_InferenceComponentSpecification = (input, context) => {
|
|
|
7293
7293
|
BaseInferenceComponentName: [],
|
|
7294
7294
|
ComputeResourceRequirements: (_) => se_InferenceComponentComputeResourceRequirements(_, context),
|
|
7295
7295
|
Container: _json,
|
|
7296
|
+
DataCacheConfig: _json,
|
|
7296
7297
|
ModelName: [],
|
|
7297
7298
|
StartupParameters: _json,
|
|
7298
7299
|
});
|
|
@@ -13480,6 +13481,11 @@ const de_InferenceComponentContainerSpecificationSummary = (output, context) =>
|
|
|
13480
13481
|
Environment: (_) => de_EnvironmentMap(_, context),
|
|
13481
13482
|
});
|
|
13482
13483
|
};
|
|
13484
|
+
const de_InferenceComponentDataCacheConfigSummary = (output, context) => {
|
|
13485
|
+
return take(output, {
|
|
13486
|
+
EnableCaching: __expectBoolean,
|
|
13487
|
+
});
|
|
13488
|
+
};
|
|
13483
13489
|
const de_InferenceComponentDeploymentConfig = (output, context) => {
|
|
13484
13490
|
return take(output, {
|
|
13485
13491
|
AutoRollbackConfiguration: (_) => de_AutoRollbackConfig(_, context),
|
|
@@ -13505,6 +13511,7 @@ const de_InferenceComponentSpecificationSummary = (output, context) => {
|
|
|
13505
13511
|
BaseInferenceComponentName: __expectString,
|
|
13506
13512
|
ComputeResourceRequirements: (_) => de_InferenceComponentComputeResourceRequirements(_, context),
|
|
13507
13513
|
Container: (_) => de_InferenceComponentContainerSpecificationSummary(_, context),
|
|
13514
|
+
DataCacheConfig: (_) => de_InferenceComponentDataCacheConfigSummary(_, context),
|
|
13508
13515
|
ModelName: __expectString,
|
|
13509
13516
|
StartupParameters: (_) => de_InferenceComponentStartupParameters(_, context),
|
|
13510
13517
|
});
|
|
@@ -60,6 +60,9 @@ declare const CreateInferenceComponentCommand_base: {
|
|
|
60
60
|
* MaxMemoryRequiredInMb: Number("int"),
|
|
61
61
|
* },
|
|
62
62
|
* BaseInferenceComponentName: "STRING_VALUE",
|
|
63
|
+
* DataCacheConfig: { // InferenceComponentDataCacheConfig
|
|
64
|
+
* EnableCaching: true || false, // required
|
|
65
|
+
* },
|
|
63
66
|
* },
|
|
64
67
|
* RuntimeConfig: { // InferenceComponentRuntimeConfig
|
|
65
68
|
* CopyCount: Number("int"), // required
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { CreateLabelingJobRequest
|
|
3
|
+
import { CreateLabelingJobRequest } from "../models/models_1";
|
|
4
|
+
import { CreateLabelingJobResponse } from "../models/models_2";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { DescribeClusterNodeRequest } from "../models/
|
|
4
|
-
import { DescribeClusterNodeResponse } from "../models/models_3";
|
|
3
|
+
import { DescribeClusterNodeRequest, DescribeClusterNodeResponse } from "../models/models_3";
|
|
5
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
@@ -72,6 +72,9 @@ declare const DescribeInferenceComponentCommand_base: {
|
|
|
72
72
|
* // MaxMemoryRequiredInMb: Number("int"),
|
|
73
73
|
* // },
|
|
74
74
|
* // BaseInferenceComponentName: "STRING_VALUE",
|
|
75
|
+
* // DataCacheConfig: { // InferenceComponentDataCacheConfigSummary
|
|
76
|
+
* // EnableCaching: true || false, // required
|
|
77
|
+
* // },
|
|
75
78
|
* // },
|
|
76
79
|
* // RuntimeConfig: { // InferenceComponentRuntimeConfigSummary
|
|
77
80
|
* // DesiredCopyCount: Number("int"),
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { GetScalingConfigurationRecommendationRequest
|
|
3
|
+
import { GetScalingConfigurationRecommendationRequest } from "../models/models_3";
|
|
4
|
+
import { GetScalingConfigurationRecommendationResponse } from "../models/models_4";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { ListUltraServersByReservedCapacityRequest } from "../models/
|
|
4
|
-
import { ListUltraServersByReservedCapacityResponse } from "../models/models_5";
|
|
3
|
+
import { ListUltraServersByReservedCapacityRequest, ListUltraServersByReservedCapacityResponse } from "../models/models_5";
|
|
5
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
/**
|
|
7
6
|
* @public
|
|
@@ -58,6 +58,9 @@ declare const UpdateInferenceComponentCommand_base: {
|
|
|
58
58
|
* MaxMemoryRequiredInMb: Number("int"),
|
|
59
59
|
* },
|
|
60
60
|
* BaseInferenceComponentName: "STRING_VALUE",
|
|
61
|
+
* DataCacheConfig: { // InferenceComponentDataCacheConfig
|
|
62
|
+
* EnableCaching: true || false, // required
|
|
63
|
+
* },
|
|
61
64
|
* },
|
|
62
65
|
* RuntimeConfig: { // InferenceComponentRuntimeConfig
|
|
63
66
|
* CopyCount: Number("int"), // required
|
|
@@ -5757,6 +5757,17 @@ export interface InferenceComponentContainerSpecification {
|
|
|
5757
5757
|
*/
|
|
5758
5758
|
Environment?: Record<string, string> | undefined;
|
|
5759
5759
|
}
|
|
5760
|
+
/**
|
|
5761
|
+
* <p>Settings that affect how the inference component caches data.</p>
|
|
5762
|
+
* @public
|
|
5763
|
+
*/
|
|
5764
|
+
export interface InferenceComponentDataCacheConfig {
|
|
5765
|
+
/**
|
|
5766
|
+
* <p>Sets whether the endpoint that hosts the inference component caches the model artifacts and container image.</p> <p>With caching enabled, the endpoint caches this data in each instance that it provisions for the inference component. That way, the inference component deploys faster during the auto scaling process. If caching isn't enabled, the inference component takes longer to deploy because of the time it spends downloading the data.</p>
|
|
5767
|
+
* @public
|
|
5768
|
+
*/
|
|
5769
|
+
EnableCaching: boolean | undefined;
|
|
5770
|
+
}
|
|
5760
5771
|
/**
|
|
5761
5772
|
* <p>Settings that take effect while the model container starts up.</p>
|
|
5762
5773
|
* @public
|
|
@@ -5803,6 +5814,11 @@ export interface InferenceComponentSpecification {
|
|
|
5803
5814
|
* @public
|
|
5804
5815
|
*/
|
|
5805
5816
|
BaseInferenceComponentName?: string | undefined;
|
|
5817
|
+
/**
|
|
5818
|
+
* <p>Settings that affect how the inference component caches data.</p>
|
|
5819
|
+
* @public
|
|
5820
|
+
*/
|
|
5821
|
+
DataCacheConfig?: InferenceComponentDataCacheConfig | undefined;
|
|
5806
5822
|
}
|
|
5807
5823
|
/**
|
|
5808
5824
|
* @public
|
|
@@ -6960,13 +6976,3 @@ export interface CreateLabelingJobRequest {
|
|
|
6960
6976
|
*/
|
|
6961
6977
|
Tags?: Tag[] | undefined;
|
|
6962
6978
|
}
|
|
6963
|
-
/**
|
|
6964
|
-
* @public
|
|
6965
|
-
*/
|
|
6966
|
-
export interface CreateLabelingJobResponse {
|
|
6967
|
-
/**
|
|
6968
|
-
* <p>The Amazon Resource Name (ARN) of the labeling job. You use this ARN to identify the labeling job.</p>
|
|
6969
|
-
* @public
|
|
6970
|
-
*/
|
|
6971
|
-
LabelingJobArn: string | undefined;
|
|
6972
|
-
}
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AppSpecification, AppStatus, AppType, ArtifactSource, AthenaDatasetDefinition, AutoMLCandidate, AutoMLChannel, AutoMLComputeConfig, AutoMLDataSplitConfig, AutoMLJobArtifacts, AutoMLJobChannel, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, AutoMLProblemTypeConfig, AutoMLProblemTypeConfigName, AutoMLResolvedAttributes, AutoMLSecurityConfig, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, Bias, CaptureStatus, CfnCreateTemplateProvider, Channel, CheckpointConfig, ClusterAutoScalingConfigOutput, ClusterEventDetail, ClusterInstanceGroupDetails, ClusterNodeProvisioningMode, ClusterNodeRecovery, ClusterOrchestrator, CodeEditorAppImageConfig, FeatureStatus, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetricsSource, ModelApprovalStatus, ModelDataSource, OutputDataConfig, ProblemType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, ClusterRestrictedInstanceGroupDetails, ClusterStatus, ClusterTieredStorageConfig, CodeRepository, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, DeviceSelectionConfig, EdgeDeploymentConfig, EndpointInput, HubContentType, IPAddressType, JupyterServerAppSettings, KernelGatewayAppSettings, MetadataProperties, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, ProcessingInstanceType, ProcessingS3UploadMode, RetryStrategy, TrainingSpecification, UserSettings } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface CreateLabelingJobResponse {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The Amazon Resource Name (ARN) of the labeling job. You use this ARN to identify the labeling job.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
LabelingJobArn: string | undefined;
|
|
12
|
+
}
|
|
3
13
|
/**
|
|
4
14
|
* @public
|
|
5
15
|
* @enum
|
|
@@ -1501,7 +1511,7 @@ export interface CreateNotebookInstanceInput {
|
|
|
1501
1511
|
*/
|
|
1502
1512
|
RootAccess?: RootAccess | undefined;
|
|
1503
1513
|
/**
|
|
1504
|
-
* <p>The platform identifier of the notebook instance runtime environment
|
|
1514
|
+
* <p>The platform identifier of the notebook instance runtime environment. The default value is <code>notebook-al2-v2</code>.</p>
|
|
1505
1515
|
* @public
|
|
1506
1516
|
*/
|
|
1507
1517
|
PlatformIdentifier?: string | undefined;
|
|
@@ -2403,7 +2413,7 @@ export interface ProcessingS3Input {
|
|
|
2403
2413
|
*/
|
|
2404
2414
|
S3InputMode?: ProcessingS3InputMode | undefined;
|
|
2405
2415
|
/**
|
|
2406
|
-
* <p>Whether to distribute the data from Amazon S3 to all processing instances with <code>FullyReplicated</code>, or whether the data from Amazon S3 is
|
|
2416
|
+
* <p>Whether to distribute the data from Amazon S3 to all processing instances with <code>FullyReplicated</code>, or whether the data from Amazon S3 is sharded by Amazon S3 key, downloading one shard of data to each processing instance.</p>
|
|
2407
2417
|
* @public
|
|
2408
2418
|
*/
|
|
2409
2419
|
S3DataDistributionType?: ProcessingS3DataDistributionType | undefined;
|
|
@@ -6016,26 +6026,6 @@ export interface DescribeClusterEventResponse {
|
|
|
6016
6026
|
*/
|
|
6017
6027
|
EventDetails?: ClusterEventDetail | undefined;
|
|
6018
6028
|
}
|
|
6019
|
-
/**
|
|
6020
|
-
* @public
|
|
6021
|
-
*/
|
|
6022
|
-
export interface DescribeClusterNodeRequest {
|
|
6023
|
-
/**
|
|
6024
|
-
* <p>The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster in which the node is.</p>
|
|
6025
|
-
* @public
|
|
6026
|
-
*/
|
|
6027
|
-
ClusterName: string | undefined;
|
|
6028
|
-
/**
|
|
6029
|
-
* <p>The ID of the SageMaker HyperPod cluster node.</p>
|
|
6030
|
-
* @public
|
|
6031
|
-
*/
|
|
6032
|
-
NodeId?: string | undefined;
|
|
6033
|
-
/**
|
|
6034
|
-
* <p>The logical identifier of the node to describe. You can specify either <code>NodeLogicalId</code> or <code>InstanceId</code>, but not both. <code>NodeLogicalId</code> can be used to describe nodes that are still being provisioned and don't yet have an <code>InstanceId</code> assigned.</p>
|
|
6035
|
-
* @public
|
|
6036
|
-
*/
|
|
6037
|
-
NodeLogicalId?: string | undefined;
|
|
6038
|
-
}
|
|
6039
6029
|
/**
|
|
6040
6030
|
* @internal
|
|
6041
6031
|
*/
|
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
import { ActivationState, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSpecification, AmazonQSettings, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoRollbackConfig, Autotune, BatchDataCaptureConfig, BatchStrategy, CapacityReservationPreference, CfnTemplateProviderDetail, Channel, CheckpointConfig, ClusterNodeDetails, InferenceSpecification, ModelApprovalStatus, ModelPackageStatus, ObjectiveStatus, OutputDataConfig, ProductionVariantInstanceType, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VolumeAttachmentStatus, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, CognitoConfig, CompilationJobStatus, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DockerSettings, DomainSettings, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInfo, ExecutionRoleIdentityConfig, ExplainerConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, GitConfig, HubContentType, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobWarmStartConfig, InferenceComponentComputeResourceRequirements, InferenceComponentStartupParameters, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InputConfig, IPAddressType, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MetadataProperties, ModelInfrastructureConfig, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, Processor, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantManagedInstanceScaling, ProductionVariantRoutingConfig, ProductionVariantServerlessConfig, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, SchedulerConfig, SchedulerResourceStatus, ShadowModeConfig, TagPropagation, ThroughputMode, TrustedIdentityPropagationSettings, UnifiedStudioSettings, UserSettings, VendorGuidance } from "./models_1";
|
|
3
3
|
import { CustomizedMetricSpecification, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeployedImage, DeploymentRecommendation, DeploymentStageStatusSummary, DerivedInformation, DirectInternetAccess, DriftCheckBaselines, ExperimentConfig, InferenceExecutionConfig, InfraCheckConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OptimizationConfig, OptimizationJobDeploymentInstanceType, OptimizationJobModelSource, OptimizationJobOutputConfig, OptimizationVpcConfig, OwnershipSettings, ParallelismConfiguration, PartnerAppAuthType, PartnerAppConfig, PartnerAppMaintenanceConfig, PartnerAppType, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, RemoteDebugConfig, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, SpaceSharingSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrackingServerSize, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceIpAddressType } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DescribeClusterNodeRequest {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The string name or the Amazon Resource Name (ARN) of the SageMaker HyperPod cluster in which the node is.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
ClusterName: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The ID of the SageMaker HyperPod cluster node.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
NodeId?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The logical identifier of the node to describe. You can specify either <code>NodeLogicalId</code> or <code>InstanceId</code>, but not both. <code>NodeLogicalId</code> can be used to describe nodes that are still being provisioned and don't yet have an <code>InstanceId</code> assigned.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
NodeLogicalId?: string | undefined;
|
|
23
|
+
}
|
|
4
24
|
/**
|
|
5
25
|
* @public
|
|
6
26
|
*/
|
|
@@ -2863,6 +2883,17 @@ export interface InferenceComponentContainerSpecificationSummary {
|
|
|
2863
2883
|
*/
|
|
2864
2884
|
Environment?: Record<string, string> | undefined;
|
|
2865
2885
|
}
|
|
2886
|
+
/**
|
|
2887
|
+
* <p>Settings that affect how the inference component caches data.</p>
|
|
2888
|
+
* @public
|
|
2889
|
+
*/
|
|
2890
|
+
export interface InferenceComponentDataCacheConfigSummary {
|
|
2891
|
+
/**
|
|
2892
|
+
* <p>Indicates whether the inference component caches model artifacts as part of the auto scaling process.</p>
|
|
2893
|
+
* @public
|
|
2894
|
+
*/
|
|
2895
|
+
EnableCaching: boolean | undefined;
|
|
2896
|
+
}
|
|
2866
2897
|
/**
|
|
2867
2898
|
* <p>Details about the resources that are deployed with this inference component.</p>
|
|
2868
2899
|
* @public
|
|
@@ -2893,6 +2924,11 @@ export interface InferenceComponentSpecificationSummary {
|
|
|
2893
2924
|
* @public
|
|
2894
2925
|
*/
|
|
2895
2926
|
BaseInferenceComponentName?: string | undefined;
|
|
2927
|
+
/**
|
|
2928
|
+
* <p>Settings that affect how the inference component caches data.</p>
|
|
2929
|
+
* @public
|
|
2930
|
+
*/
|
|
2931
|
+
DataCacheConfig?: InferenceComponentDataCacheConfigSummary | undefined;
|
|
2896
2932
|
}
|
|
2897
2933
|
/**
|
|
2898
2934
|
* @public
|
|
@@ -8907,74 +8943,6 @@ export interface ScalingPolicyMetric {
|
|
|
8907
8943
|
*/
|
|
8908
8944
|
ModelLatency?: number | undefined;
|
|
8909
8945
|
}
|
|
8910
|
-
/**
|
|
8911
|
-
* @public
|
|
8912
|
-
*/
|
|
8913
|
-
export interface GetScalingConfigurationRecommendationResponse {
|
|
8914
|
-
/**
|
|
8915
|
-
* <p>The name of a previously completed Inference Recommender job.</p>
|
|
8916
|
-
* @public
|
|
8917
|
-
*/
|
|
8918
|
-
InferenceRecommendationsJobName?: string | undefined;
|
|
8919
|
-
/**
|
|
8920
|
-
* <p>The recommendation ID of a previously completed inference recommendation.</p>
|
|
8921
|
-
* @public
|
|
8922
|
-
*/
|
|
8923
|
-
RecommendationId?: string | undefined;
|
|
8924
|
-
/**
|
|
8925
|
-
* <p>The name of an endpoint benchmarked during a previously completed Inference Recommender job.</p>
|
|
8926
|
-
* @public
|
|
8927
|
-
*/
|
|
8928
|
-
EndpointName?: string | undefined;
|
|
8929
|
-
/**
|
|
8930
|
-
* <p>The percentage of how much utilization you want an instance to use before autoscaling, which you specified in the request. The default value is 50%.</p>
|
|
8931
|
-
* @public
|
|
8932
|
-
*/
|
|
8933
|
-
TargetCpuUtilizationPerCore?: number | undefined;
|
|
8934
|
-
/**
|
|
8935
|
-
* <p>An object representing the anticipated traffic pattern for an endpoint that you specified in the request.</p>
|
|
8936
|
-
* @public
|
|
8937
|
-
*/
|
|
8938
|
-
ScalingPolicyObjective?: ScalingPolicyObjective | undefined;
|
|
8939
|
-
/**
|
|
8940
|
-
* <p>An object with a list of metrics that were benchmarked during the previously completed Inference Recommender job.</p>
|
|
8941
|
-
* @public
|
|
8942
|
-
*/
|
|
8943
|
-
Metric?: ScalingPolicyMetric | undefined;
|
|
8944
|
-
/**
|
|
8945
|
-
* <p>An object with the recommended values for you to specify when creating an autoscaling policy.</p>
|
|
8946
|
-
* @public
|
|
8947
|
-
*/
|
|
8948
|
-
DynamicScalingConfiguration?: DynamicScalingConfiguration | undefined;
|
|
8949
|
-
}
|
|
8950
|
-
/**
|
|
8951
|
-
* @public
|
|
8952
|
-
* @enum
|
|
8953
|
-
*/
|
|
8954
|
-
export declare const ResourceType: {
|
|
8955
|
-
readonly ENDPOINT: "Endpoint";
|
|
8956
|
-
readonly EXPERIMENT: "Experiment";
|
|
8957
|
-
readonly EXPERIMENT_TRIAL: "ExperimentTrial";
|
|
8958
|
-
readonly EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent";
|
|
8959
|
-
readonly FEATURE_GROUP: "FeatureGroup";
|
|
8960
|
-
readonly FEATURE_METADATA: "FeatureMetadata";
|
|
8961
|
-
readonly HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob";
|
|
8962
|
-
readonly IMAGE: "Image";
|
|
8963
|
-
readonly IMAGE_VERSION: "ImageVersion";
|
|
8964
|
-
readonly MODEL: "Model";
|
|
8965
|
-
readonly MODEL_CARD: "ModelCard";
|
|
8966
|
-
readonly MODEL_PACKAGE: "ModelPackage";
|
|
8967
|
-
readonly MODEL_PACKAGE_GROUP: "ModelPackageGroup";
|
|
8968
|
-
readonly PIPELINE: "Pipeline";
|
|
8969
|
-
readonly PIPELINE_EXECUTION: "PipelineExecution";
|
|
8970
|
-
readonly PIPELINE_VERSION: "PipelineVersion";
|
|
8971
|
-
readonly PROJECT: "Project";
|
|
8972
|
-
readonly TRAINING_JOB: "TrainingJob";
|
|
8973
|
-
};
|
|
8974
|
-
/**
|
|
8975
|
-
* @public
|
|
8976
|
-
*/
|
|
8977
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
8978
8946
|
/**
|
|
8979
8947
|
* @internal
|
|
8980
8948
|
*/
|
|
@@ -1,7 +1,75 @@
|
|
|
1
1
|
import { ActionSummary, AlgorithmSortBy, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppType, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobStepMetadata, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, ClarifyCheckStepMetadata, ClusterEventResourceType, ClusterEventSummary, ClusterNodeSummary, FeatureStatus, ModelApprovalStatus, ModelPackageStatus, OutputParameter, Tag, UserContext } from "./models_0";
|
|
2
2
|
import { _InstanceType, ClusterSchedulerConfigSummary, ClusterSortBy, ClusterSummary, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CompilationJobStatus, CompilationJobSummary, ComputeQuotaSummary, ConditionStepMetadata, ContextSummary, HubContentType, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExperimentSchedule, InferenceExperimentType, LabelingJobInputConfig, RecommendationJobType, ResourceLimits, SchedulerResourceStatus } from "./models_1";
|
|
3
3
|
import { CrossAccountFilterOption, ModelCardStatus, ModelLifeCycle, MonitoringType, OptimizationJobDeploymentInstanceType, PartnerAppType, SharingType, SpaceStorageSettings, StudioLifecycleConfigAppType, TrialComponentStatus } from "./models_2";
|
|
4
|
-
import { DeviceDeploymentSummary, DeviceFleetSummary, DeviceSummary, DomainDetails, EdgeDeploymentPlanSummary, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigStepMetadata, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointStepMetadata, EndpointSummary, EventSortBy, ExecutionStatus, ExperimentSummary, FailStepMetadata, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FlowDefinitionSummary, HubContentStatus, HubContentSupportStatus, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatusValue, OptimizationJobStatus, PartnerAppStatus, PipelineExecutionStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ReservedCapacitySummary,
|
|
4
|
+
import { DeviceDeploymentSummary, DeviceFleetSummary, DeviceSummary, DomainDetails, DynamicScalingConfiguration, EdgeDeploymentPlanSummary, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, EndpointConfigSortKey, EndpointConfigStepMetadata, EndpointConfigSummary, EndpointOutputConfiguration, EndpointSortKey, EndpointStatus, EndpointStepMetadata, EndpointSummary, EventSortBy, ExecutionStatus, ExperimentSummary, FailStepMetadata, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FlowDefinitionSummary, HubContentStatus, HubContentSupportStatus, HubStatus, HyperParameterTrainingJobSummary, HyperParameterTuningJobCompletionDetails, HyperParameterTuningJobConsumedResources, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceComponentStatus, InferenceExperimentStatus, InferenceMetrics, IsTrackingServerActive, LabelCounters, LabelingJobOutput, LabelingJobStatus, ModelCardExportJobStatus, ModelConfiguration, ModelPackageGroupStatus, MonitoringExecutionSummary, NotebookInstanceStatus, ObjectiveStatusCounters, OfflineStoreStatusValue, OptimizationJobStatus, PartnerAppStatus, PipelineExecutionStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationMetrics, ReservedCapacitySummary, SageMakerResourceName, ScalingPolicyMetric, ScalingPolicyObjective, ScheduleStatus, SecondaryStatus, SpaceStatus, SubscribedWorkteam, TrackingServerStatus, TrainingJobStatus, TrainingJobStatusCounters, TrainingPlanStatus, TransformJobStatus, TrialComponentSource, TrialSource, WarmPoolResourceStatus, WarmPoolStatus } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface GetScalingConfigurationRecommendationResponse {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The name of a previously completed Inference Recommender job.</p>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
InferenceRecommendationsJobName?: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>The recommendation ID of a previously completed inference recommendation.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
RecommendationId?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The name of an endpoint benchmarked during a previously completed Inference Recommender job.</p>
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
EndpointName?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The percentage of how much utilization you want an instance to use before autoscaling, which you specified in the request. The default value is 50%.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
TargetCpuUtilizationPerCore?: number | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>An object representing the anticipated traffic pattern for an endpoint that you specified in the request.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
ScalingPolicyObjective?: ScalingPolicyObjective | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* <p>An object with a list of metrics that were benchmarked during the previously completed Inference Recommender job.</p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
Metric?: ScalingPolicyMetric | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>An object with the recommended values for you to specify when creating an autoscaling policy.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
DynamicScalingConfiguration?: DynamicScalingConfiguration | undefined;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* @public
|
|
47
|
+
* @enum
|
|
48
|
+
*/
|
|
49
|
+
export declare const ResourceType: {
|
|
50
|
+
readonly ENDPOINT: "Endpoint";
|
|
51
|
+
readonly EXPERIMENT: "Experiment";
|
|
52
|
+
readonly EXPERIMENT_TRIAL: "ExperimentTrial";
|
|
53
|
+
readonly EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent";
|
|
54
|
+
readonly FEATURE_GROUP: "FeatureGroup";
|
|
55
|
+
readonly FEATURE_METADATA: "FeatureMetadata";
|
|
56
|
+
readonly HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob";
|
|
57
|
+
readonly IMAGE: "Image";
|
|
58
|
+
readonly IMAGE_VERSION: "ImageVersion";
|
|
59
|
+
readonly MODEL: "Model";
|
|
60
|
+
readonly MODEL_CARD: "ModelCard";
|
|
61
|
+
readonly MODEL_PACKAGE: "ModelPackage";
|
|
62
|
+
readonly MODEL_PACKAGE_GROUP: "ModelPackageGroup";
|
|
63
|
+
readonly PIPELINE: "Pipeline";
|
|
64
|
+
readonly PIPELINE_EXECUTION: "PipelineExecution";
|
|
65
|
+
readonly PIPELINE_VERSION: "PipelineVersion";
|
|
66
|
+
readonly PROJECT: "Project";
|
|
67
|
+
readonly TRAINING_JOB: "TrainingJob";
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
5
73
|
/**
|
|
6
74
|
* <p>Part of the <code>SuggestionQuery</code> type. Specifies a hint for retrieving property names that begin with the specified text.</p>
|
|
7
75
|
* @public
|
|
@@ -8148,36 +8216,3 @@ export interface ListTrialsResponse {
|
|
|
8148
8216
|
*/
|
|
8149
8217
|
NextToken?: string | undefined;
|
|
8150
8218
|
}
|
|
8151
|
-
/**
|
|
8152
|
-
* @public
|
|
8153
|
-
*/
|
|
8154
|
-
export interface ListUltraServersByReservedCapacityRequest {
|
|
8155
|
-
/**
|
|
8156
|
-
* <p>The ARN of the reserved capacity to list UltraServers for.</p>
|
|
8157
|
-
* @public
|
|
8158
|
-
*/
|
|
8159
|
-
ReservedCapacityArn: string | undefined;
|
|
8160
|
-
/**
|
|
8161
|
-
* <p>The maximum number of UltraServers to return in the response. The default value is 10.</p>
|
|
8162
|
-
* @public
|
|
8163
|
-
*/
|
|
8164
|
-
MaxResults?: number | undefined;
|
|
8165
|
-
/**
|
|
8166
|
-
* <p>If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.</p>
|
|
8167
|
-
* @public
|
|
8168
|
-
*/
|
|
8169
|
-
NextToken?: string | undefined;
|
|
8170
|
-
}
|
|
8171
|
-
/**
|
|
8172
|
-
* @public
|
|
8173
|
-
* @enum
|
|
8174
|
-
*/
|
|
8175
|
-
export declare const UltraServerHealthStatus: {
|
|
8176
|
-
readonly IMPAIRED: "Impaired";
|
|
8177
|
-
readonly INSUFFICIENT_DATA: "Insufficient-Data";
|
|
8178
|
-
readonly OK: "OK";
|
|
8179
|
-
};
|
|
8180
|
-
/**
|
|
8181
|
-
* @public
|
|
8182
|
-
*/
|
|
8183
|
-
export type UltraServerHealthStatus = (typeof UltraServerHealthStatus)[keyof typeof UltraServerHealthStatus];
|
|
@@ -1,8 +1,41 @@
|
|
|
1
1
|
import { ActionStatus, ActivationState, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, BooleanOperator, CfnUpdateTemplateProvider, Channel, CheckpointConfig, ClusterAutoScalingConfig, ClusterInstanceGroupSpecification, ClusterNodeRecovery, CodeEditorAppImageConfig, DeploymentConfiguration, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, ClusterRestrictedInstanceGroupSpecification, ClusterTieredStorageConfig, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, DefaultSpaceSettings, DeploymentConfig, EdgeOutputConfig, FeatureDefinition, HubContentType, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, IPAddressType, JobType, MetadataProperties, ModelVariantConfig, Processor, RetryStrategy, SchedulerConfig, ShadowModeConfig, TagPropagation, ThroughputMode, TtlDuration, UiTemplate, UserSettings, VendorGuidance } from "./models_1";
|
|
3
3
|
import { CrossAccountFilterOption, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeploymentRecommendation, DriftCheckBaselines, ExperimentConfig, InferenceExecutionConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PartnerAppConfig, PartnerAppMaintenanceConfig, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SkipModelValidation, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, TensorBoardOutputConfig, TrackingServerSize, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceIpAddressType, WorkforceVpcConfigRequest } from "./models_2";
|
|
4
|
-
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, EndpointStatus, Experiment, FeatureGroup, FeatureMetadata, FeatureParameter, Filter, HubContentSupportStatus, InferenceComponentDeploymentConfig, MetricData, ModelArtifacts, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ReservedCapacityInstanceType, ReservedCapacityType,
|
|
5
|
-
import { GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, MonitoringAlertSummary, Parameter,
|
|
4
|
+
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, EndpointStatus, Experiment, FeatureGroup, FeatureMetadata, FeatureParameter, Filter, HubContentSupportStatus, InferenceComponentDeploymentConfig, MetricData, ModelArtifacts, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ReservedCapacityInstanceType, ReservedCapacityType, SageMakerResourceName, ScheduleStatus, SecondaryStatus, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, TemplateProviderDetail, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_3";
|
|
5
|
+
import { GitConfigForUpdate, HyperParameterTuningJobSearchEntity, InferenceExperimentStopDesiredState, LineageType, MonitoringAlertSummary, Parameter, ResourceType, SortOrder } from "./models_4";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface ListUltraServersByReservedCapacityRequest {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The ARN of the reserved capacity to list UltraServers for.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
ReservedCapacityArn: string | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The maximum number of UltraServers to return in the response. The default value is 10.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
MaxResults?: number | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* <p>If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
NextToken?: string | undefined;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* @enum
|
|
29
|
+
*/
|
|
30
|
+
export declare const UltraServerHealthStatus: {
|
|
31
|
+
readonly IMPAIRED: "Impaired";
|
|
32
|
+
readonly INSUFFICIENT_DATA: "Insufficient-Data";
|
|
33
|
+
readonly OK: "OK";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type UltraServerHealthStatus = (typeof UltraServerHealthStatus)[keyof typeof UltraServerHealthStatus];
|
|
6
39
|
/**
|
|
7
40
|
* <p>Represents a high-performance compute server used for distributed training in SageMaker AI. An UltraServer consists of multiple instances within a shared NVLink interconnect domain.</p>
|
|
8
41
|
* @public
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
CreateLabelingJobResponse,
|
|
6
|
-
} from "../models/models_1";
|
|
3
|
+
import { CreateLabelingJobRequest } from "../models/models_1";
|
|
4
|
+
import { CreateLabelingJobResponse } from "../models/models_2";
|
|
7
5
|
import {
|
|
8
6
|
SageMakerClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
DescribeClusterNodeRequest,
|
|
5
|
+
DescribeClusterNodeResponse,
|
|
6
|
+
} from "../models/models_3";
|
|
5
7
|
import {
|
|
6
8
|
SageMakerClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
GetScalingConfigurationRecommendationResponse,
|
|
6
|
-
} from "../models/models_3";
|
|
3
|
+
import { GetScalingConfigurationRecommendationRequest } from "../models/models_3";
|
|
4
|
+
import { GetScalingConfigurationRecommendationResponse } from "../models/models_4";
|
|
7
5
|
import {
|
|
8
6
|
SageMakerClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
ListUltraServersByReservedCapacityRequest,
|
|
5
|
+
ListUltraServersByReservedCapacityResponse,
|
|
6
|
+
} from "../models/models_5";
|
|
5
7
|
import {
|
|
6
8
|
SageMakerClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -1831,6 +1831,9 @@ export interface InferenceComponentContainerSpecification {
|
|
|
1831
1831
|
ArtifactUrl?: string | undefined;
|
|
1832
1832
|
Environment?: Record<string, string> | undefined;
|
|
1833
1833
|
}
|
|
1834
|
+
export interface InferenceComponentDataCacheConfig {
|
|
1835
|
+
EnableCaching: boolean | undefined;
|
|
1836
|
+
}
|
|
1834
1837
|
export interface InferenceComponentStartupParameters {
|
|
1835
1838
|
ModelDataDownloadTimeoutInSeconds?: number | undefined;
|
|
1836
1839
|
ContainerStartupHealthCheckTimeoutInSeconds?: number | undefined;
|
|
@@ -1843,6 +1846,7 @@ export interface InferenceComponentSpecification {
|
|
|
1843
1846
|
| InferenceComponentComputeResourceRequirements
|
|
1844
1847
|
| undefined;
|
|
1845
1848
|
BaseInferenceComponentName?: string | undefined;
|
|
1849
|
+
DataCacheConfig?: InferenceComponentDataCacheConfig | undefined;
|
|
1846
1850
|
}
|
|
1847
1851
|
export interface CreateInferenceComponentInput {
|
|
1848
1852
|
InferenceComponentName: string | undefined;
|
|
@@ -2267,6 +2271,3 @@ export interface CreateLabelingJobRequest {
|
|
|
2267
2271
|
HumanTaskConfig: HumanTaskConfig | undefined;
|
|
2268
2272
|
Tags?: Tag[] | undefined;
|
|
2269
2273
|
}
|
|
2270
|
-
export interface CreateLabelingJobResponse {
|
|
2271
|
-
LabelingJobArn: string | undefined;
|
|
2272
|
-
}
|
|
@@ -97,6 +97,9 @@ import {
|
|
|
97
97
|
TrainingSpecification,
|
|
98
98
|
UserSettings,
|
|
99
99
|
} from "./models_1";
|
|
100
|
+
export interface CreateLabelingJobResponse {
|
|
101
|
+
LabelingJobArn: string | undefined;
|
|
102
|
+
}
|
|
100
103
|
export declare const TrackingServerSize: {
|
|
101
104
|
readonly L: "Large";
|
|
102
105
|
readonly M: "Medium";
|
|
@@ -1781,11 +1784,6 @@ export interface DescribeClusterEventRequest {
|
|
|
1781
1784
|
export interface DescribeClusterEventResponse {
|
|
1782
1785
|
EventDetails?: ClusterEventDetail | undefined;
|
|
1783
1786
|
}
|
|
1784
|
-
export interface DescribeClusterNodeRequest {
|
|
1785
|
-
ClusterName: string | undefined;
|
|
1786
|
-
NodeId?: string | undefined;
|
|
1787
|
-
NodeLogicalId?: string | undefined;
|
|
1788
|
-
}
|
|
1789
1787
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
1790
1788
|
obj: CreateModelCardRequest
|
|
1791
1789
|
) => any;
|
|
@@ -191,6 +191,11 @@ import {
|
|
|
191
191
|
WorkerAccessConfiguration,
|
|
192
192
|
WorkforceIpAddressType,
|
|
193
193
|
} from "./models_2";
|
|
194
|
+
export interface DescribeClusterNodeRequest {
|
|
195
|
+
ClusterName: string | undefined;
|
|
196
|
+
NodeId?: string | undefined;
|
|
197
|
+
NodeLogicalId?: string | undefined;
|
|
198
|
+
}
|
|
194
199
|
export interface DescribeClusterNodeResponse {
|
|
195
200
|
NodeDetails: ClusterNodeDetails | undefined;
|
|
196
201
|
}
|
|
@@ -947,6 +952,9 @@ export interface InferenceComponentContainerSpecificationSummary {
|
|
|
947
952
|
ArtifactUrl?: string | undefined;
|
|
948
953
|
Environment?: Record<string, string> | undefined;
|
|
949
954
|
}
|
|
955
|
+
export interface InferenceComponentDataCacheConfigSummary {
|
|
956
|
+
EnableCaching: boolean | undefined;
|
|
957
|
+
}
|
|
950
958
|
export interface InferenceComponentSpecificationSummary {
|
|
951
959
|
ModelName?: string | undefined;
|
|
952
960
|
Container?: InferenceComponentContainerSpecificationSummary | undefined;
|
|
@@ -955,6 +963,7 @@ export interface InferenceComponentSpecificationSummary {
|
|
|
955
963
|
| InferenceComponentComputeResourceRequirements
|
|
956
964
|
| undefined;
|
|
957
965
|
BaseInferenceComponentName?: string | undefined;
|
|
966
|
+
DataCacheConfig?: InferenceComponentDataCacheConfigSummary | undefined;
|
|
958
967
|
}
|
|
959
968
|
export interface DescribeInferenceComponentOutput {
|
|
960
969
|
InferenceComponentName: string | undefined;
|
|
@@ -2602,36 +2611,6 @@ export interface ScalingPolicyMetric {
|
|
|
2602
2611
|
InvocationsPerInstance?: number | undefined;
|
|
2603
2612
|
ModelLatency?: number | undefined;
|
|
2604
2613
|
}
|
|
2605
|
-
export interface GetScalingConfigurationRecommendationResponse {
|
|
2606
|
-
InferenceRecommendationsJobName?: string | undefined;
|
|
2607
|
-
RecommendationId?: string | undefined;
|
|
2608
|
-
EndpointName?: string | undefined;
|
|
2609
|
-
TargetCpuUtilizationPerCore?: number | undefined;
|
|
2610
|
-
ScalingPolicyObjective?: ScalingPolicyObjective | undefined;
|
|
2611
|
-
Metric?: ScalingPolicyMetric | undefined;
|
|
2612
|
-
DynamicScalingConfiguration?: DynamicScalingConfiguration | undefined;
|
|
2613
|
-
}
|
|
2614
|
-
export declare const ResourceType: {
|
|
2615
|
-
readonly ENDPOINT: "Endpoint";
|
|
2616
|
-
readonly EXPERIMENT: "Experiment";
|
|
2617
|
-
readonly EXPERIMENT_TRIAL: "ExperimentTrial";
|
|
2618
|
-
readonly EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent";
|
|
2619
|
-
readonly FEATURE_GROUP: "FeatureGroup";
|
|
2620
|
-
readonly FEATURE_METADATA: "FeatureMetadata";
|
|
2621
|
-
readonly HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob";
|
|
2622
|
-
readonly IMAGE: "Image";
|
|
2623
|
-
readonly IMAGE_VERSION: "ImageVersion";
|
|
2624
|
-
readonly MODEL: "Model";
|
|
2625
|
-
readonly MODEL_CARD: "ModelCard";
|
|
2626
|
-
readonly MODEL_PACKAGE: "ModelPackage";
|
|
2627
|
-
readonly MODEL_PACKAGE_GROUP: "ModelPackageGroup";
|
|
2628
|
-
readonly PIPELINE: "Pipeline";
|
|
2629
|
-
readonly PIPELINE_EXECUTION: "PipelineExecution";
|
|
2630
|
-
readonly PIPELINE_VERSION: "PipelineVersion";
|
|
2631
|
-
readonly PROJECT: "Project";
|
|
2632
|
-
readonly TRAINING_JOB: "TrainingJob";
|
|
2633
|
-
};
|
|
2634
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
2635
2614
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2636
2615
|
obj: DescribeModelCardResponse
|
|
2637
2616
|
) => any;
|
|
@@ -73,6 +73,7 @@ import {
|
|
|
73
73
|
DeviceFleetSummary,
|
|
74
74
|
DeviceSummary,
|
|
75
75
|
DomainDetails,
|
|
76
|
+
DynamicScalingConfiguration,
|
|
76
77
|
EdgeDeploymentPlanSummary,
|
|
77
78
|
EdgePackagingJobStatus,
|
|
78
79
|
EdgePackagingJobSummary,
|
|
@@ -125,8 +126,9 @@ import {
|
|
|
125
126
|
RecommendationJobStatus,
|
|
126
127
|
RecommendationMetrics,
|
|
127
128
|
ReservedCapacitySummary,
|
|
128
|
-
ResourceType,
|
|
129
129
|
SageMakerResourceName,
|
|
130
|
+
ScalingPolicyMetric,
|
|
131
|
+
ScalingPolicyObjective,
|
|
130
132
|
ScheduleStatus,
|
|
131
133
|
SecondaryStatus,
|
|
132
134
|
SpaceStatus,
|
|
@@ -141,6 +143,36 @@ import {
|
|
|
141
143
|
WarmPoolResourceStatus,
|
|
142
144
|
WarmPoolStatus,
|
|
143
145
|
} from "./models_3";
|
|
146
|
+
export interface GetScalingConfigurationRecommendationResponse {
|
|
147
|
+
InferenceRecommendationsJobName?: string | undefined;
|
|
148
|
+
RecommendationId?: string | undefined;
|
|
149
|
+
EndpointName?: string | undefined;
|
|
150
|
+
TargetCpuUtilizationPerCore?: number | undefined;
|
|
151
|
+
ScalingPolicyObjective?: ScalingPolicyObjective | undefined;
|
|
152
|
+
Metric?: ScalingPolicyMetric | undefined;
|
|
153
|
+
DynamicScalingConfiguration?: DynamicScalingConfiguration | undefined;
|
|
154
|
+
}
|
|
155
|
+
export declare const ResourceType: {
|
|
156
|
+
readonly ENDPOINT: "Endpoint";
|
|
157
|
+
readonly EXPERIMENT: "Experiment";
|
|
158
|
+
readonly EXPERIMENT_TRIAL: "ExperimentTrial";
|
|
159
|
+
readonly EXPERIMENT_TRIAL_COMPONENT: "ExperimentTrialComponent";
|
|
160
|
+
readonly FEATURE_GROUP: "FeatureGroup";
|
|
161
|
+
readonly FEATURE_METADATA: "FeatureMetadata";
|
|
162
|
+
readonly HYPER_PARAMETER_TUNING_JOB: "HyperParameterTuningJob";
|
|
163
|
+
readonly IMAGE: "Image";
|
|
164
|
+
readonly IMAGE_VERSION: "ImageVersion";
|
|
165
|
+
readonly MODEL: "Model";
|
|
166
|
+
readonly MODEL_CARD: "ModelCard";
|
|
167
|
+
readonly MODEL_PACKAGE: "ModelPackage";
|
|
168
|
+
readonly MODEL_PACKAGE_GROUP: "ModelPackageGroup";
|
|
169
|
+
readonly PIPELINE: "Pipeline";
|
|
170
|
+
readonly PIPELINE_EXECUTION: "PipelineExecution";
|
|
171
|
+
readonly PIPELINE_VERSION: "PipelineVersion";
|
|
172
|
+
readonly PROJECT: "Project";
|
|
173
|
+
readonly TRAINING_JOB: "TrainingJob";
|
|
174
|
+
};
|
|
175
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
144
176
|
export interface PropertyNameQuery {
|
|
145
177
|
PropertyNameHint: string | undefined;
|
|
146
178
|
}
|
|
@@ -2246,15 +2278,3 @@ export interface ListTrialsResponse {
|
|
|
2246
2278
|
TrialSummaries?: TrialSummary[] | undefined;
|
|
2247
2279
|
NextToken?: string | undefined;
|
|
2248
2280
|
}
|
|
2249
|
-
export interface ListUltraServersByReservedCapacityRequest {
|
|
2250
|
-
ReservedCapacityArn: string | undefined;
|
|
2251
|
-
MaxResults?: number | undefined;
|
|
2252
|
-
NextToken?: string | undefined;
|
|
2253
|
-
}
|
|
2254
|
-
export declare const UltraServerHealthStatus: {
|
|
2255
|
-
readonly IMPAIRED: "Impaired";
|
|
2256
|
-
readonly INSUFFICIENT_DATA: "Insufficient-Data";
|
|
2257
|
-
readonly OK: "OK";
|
|
2258
|
-
};
|
|
2259
|
-
export type UltraServerHealthStatus =
|
|
2260
|
-
(typeof UltraServerHealthStatus)[keyof typeof UltraServerHealthStatus];
|
|
@@ -145,7 +145,6 @@ import {
|
|
|
145
145
|
ProjectStatus,
|
|
146
146
|
ReservedCapacityInstanceType,
|
|
147
147
|
ReservedCapacityType,
|
|
148
|
-
ResourceType,
|
|
149
148
|
SageMakerResourceName,
|
|
150
149
|
ScheduleStatus,
|
|
151
150
|
SecondaryStatus,
|
|
@@ -169,9 +168,21 @@ import {
|
|
|
169
168
|
LineageType,
|
|
170
169
|
MonitoringAlertSummary,
|
|
171
170
|
Parameter,
|
|
171
|
+
ResourceType,
|
|
172
172
|
SortOrder,
|
|
173
|
-
UltraServerHealthStatus,
|
|
174
173
|
} from "./models_4";
|
|
174
|
+
export interface ListUltraServersByReservedCapacityRequest {
|
|
175
|
+
ReservedCapacityArn: string | undefined;
|
|
176
|
+
MaxResults?: number | undefined;
|
|
177
|
+
NextToken?: string | undefined;
|
|
178
|
+
}
|
|
179
|
+
export declare const UltraServerHealthStatus: {
|
|
180
|
+
readonly IMPAIRED: "Impaired";
|
|
181
|
+
readonly INSUFFICIENT_DATA: "Insufficient-Data";
|
|
182
|
+
readonly OK: "OK";
|
|
183
|
+
};
|
|
184
|
+
export type UltraServerHealthStatus =
|
|
185
|
+
(typeof UltraServerHealthStatus)[keyof typeof UltraServerHealthStatus];
|
|
175
186
|
export interface UltraServer {
|
|
176
187
|
UltraServerId: string | undefined;
|
|
177
188
|
UltraServerType: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.917.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.916.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.917.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.914.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.914.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.914.0",
|