@aws-sdk/client-sagemaker 3.1062.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/schemas/schemas_0.js +64 -58
- package/dist-es/schemas/schemas_0.js +25 -19
- 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/ListInferenceRecommendationsJobStepsCommand.d.ts +1 -2
- package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +2 -1
- 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 +10 -30
- package/dist-types/models/models_4.d.ts +33 -8
- package/dist-types/models/models_5.d.ts +5 -0
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateNotebookInstanceCommand.d.ts +2 -4
- 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 +3 -7
- package/dist-types/ts3.4/models/models_4.d.ts +10 -2
- package/dist-types/ts3.4/models/models_5.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/package.json +5 -5
|
@@ -252,8 +252,14 @@ export interface VpcConfig {
|
|
|
252
252
|
export interface AIBenchmarkNetworkConfig {
|
|
253
253
|
VpcConfig?: VpcConfig | undefined;
|
|
254
254
|
}
|
|
255
|
+
export interface AIMlflowConfig {
|
|
256
|
+
MlflowResourceArn: string | undefined;
|
|
257
|
+
MlflowExperimentName?: string | undefined;
|
|
258
|
+
MlflowRunName?: string | undefined;
|
|
259
|
+
}
|
|
255
260
|
export interface AIBenchmarkOutputConfig {
|
|
256
261
|
S3OutputLocation: string | undefined;
|
|
262
|
+
MlflowConfig?: AIMlflowConfig | undefined;
|
|
257
263
|
}
|
|
258
264
|
export interface AICloudWatchLogs {
|
|
259
265
|
LogGroupArn?: string | undefined;
|
|
@@ -262,6 +268,7 @@ export interface AICloudWatchLogs {
|
|
|
262
268
|
export interface AIBenchmarkOutputResult {
|
|
263
269
|
S3OutputLocation: string | undefined;
|
|
264
270
|
CloudWatchLogs?: AICloudWatchLogs[] | undefined;
|
|
271
|
+
MlflowConfig?: AIMlflowConfig | undefined;
|
|
265
272
|
}
|
|
266
273
|
export type AIBenchmarkTarget =
|
|
267
274
|
| AIBenchmarkTarget.EndpointMember
|
|
@@ -391,10 +398,12 @@ export interface AIRecommendationJobSummary {
|
|
|
391
398
|
export interface AIRecommendationOutputConfig {
|
|
392
399
|
S3OutputLocation?: string | undefined;
|
|
393
400
|
ModelPackageGroupIdentifier?: string | undefined;
|
|
401
|
+
MlflowConfig?: AIMlflowConfig | undefined;
|
|
394
402
|
}
|
|
395
403
|
export interface AIRecommendationOutputResult {
|
|
396
404
|
S3OutputLocation: string | undefined;
|
|
397
405
|
ModelPackageGroupIdentifier?: string | undefined;
|
|
406
|
+
MlflowConfig?: AIMlflowConfig | undefined;
|
|
398
407
|
}
|
|
399
408
|
export interface AIRecommendationPerformanceTarget {
|
|
400
409
|
Constraints: AIRecommendationConstraint[] | undefined;
|
|
@@ -1934,7 +1943,3 @@ export interface ComputeQuotaConfig {
|
|
|
1934
1943
|
ResourceSharingConfig?: ResourceSharingConfig | undefined;
|
|
1935
1944
|
PreemptTeamTasks?: PreemptTeamTasks | undefined;
|
|
1936
1945
|
}
|
|
1937
|
-
export interface ComputeQuotaTarget {
|
|
1938
|
-
TeamName: string | undefined;
|
|
1939
|
-
FairShareWeight?: number | undefined;
|
|
1940
|
-
}
|
|
@@ -157,7 +157,6 @@ import {
|
|
|
157
157
|
CodeRepository,
|
|
158
158
|
CollectionConfig,
|
|
159
159
|
ComputeQuotaConfig,
|
|
160
|
-
ComputeQuotaTarget,
|
|
161
160
|
CustomImage,
|
|
162
161
|
GitConfig,
|
|
163
162
|
InferenceSpecification,
|
|
@@ -174,6 +173,10 @@ import {
|
|
|
174
173
|
TransformJobDefinition,
|
|
175
174
|
VpcConfig,
|
|
176
175
|
} from "./models_0";
|
|
176
|
+
export interface ComputeQuotaTarget {
|
|
177
|
+
TeamName: string | undefined;
|
|
178
|
+
FairShareWeight?: number | undefined;
|
|
179
|
+
}
|
|
177
180
|
export interface ComputeQuotaSummary {
|
|
178
181
|
ComputeQuotaArn: string | undefined;
|
|
179
182
|
ComputeQuotaId: string | undefined;
|
|
@@ -1931,7 +1934,3 @@ export interface ModelQuantizationConfig {
|
|
|
1931
1934
|
Image?: string | undefined;
|
|
1932
1935
|
OverrideEnvironment?: Record<string, string> | undefined;
|
|
1933
1936
|
}
|
|
1934
|
-
export interface ModelShardingConfig {
|
|
1935
|
-
Image?: string | undefined;
|
|
1936
|
-
OverrideEnvironment?: Record<string, string> | undefined;
|
|
1937
|
-
}
|
|
@@ -139,7 +139,6 @@ import {
|
|
|
139
139
|
CognitoMemberDefinition,
|
|
140
140
|
CollectionConfiguration,
|
|
141
141
|
ComputeQuotaConfig,
|
|
142
|
-
ComputeQuotaTarget,
|
|
143
142
|
GitConfig,
|
|
144
143
|
InferenceSpecification,
|
|
145
144
|
JupyterLabAppImageConfig,
|
|
@@ -156,6 +155,7 @@ import {
|
|
|
156
155
|
VpcConfig,
|
|
157
156
|
} from "./models_0";
|
|
158
157
|
import {
|
|
158
|
+
ComputeQuotaTarget,
|
|
159
159
|
ContextSource,
|
|
160
160
|
DataCaptureConfig,
|
|
161
161
|
DataQualityAppSpecification,
|
|
@@ -186,7 +186,6 @@ import {
|
|
|
186
186
|
ModelCompilationConfig,
|
|
187
187
|
ModelDeployConfig,
|
|
188
188
|
ModelQuantizationConfig,
|
|
189
|
-
ModelShardingConfig,
|
|
190
189
|
MonitoringNetworkConfig,
|
|
191
190
|
MonitoringOutputConfig,
|
|
192
191
|
MonitoringResources,
|
|
@@ -207,6 +206,10 @@ import {
|
|
|
207
206
|
TrainingSpecification,
|
|
208
207
|
UserSettings,
|
|
209
208
|
} from "./models_1";
|
|
209
|
+
export interface ModelShardingConfig {
|
|
210
|
+
Image?: string | undefined;
|
|
211
|
+
OverrideEnvironment?: Record<string, string> | undefined;
|
|
212
|
+
}
|
|
210
213
|
export interface ModelSpeculativeDecodingTrainingDataSource {
|
|
211
214
|
S3Uri: string | undefined;
|
|
212
215
|
S3DataType: ModelSpeculativeDecodingS3DataType | undefined;
|
|
@@ -2009,6 +2012,3 @@ export interface DescribeImageVersionResponse {
|
|
|
2009
2012
|
Horovod?: boolean | undefined;
|
|
2010
2013
|
ReleaseNotes?: string | undefined;
|
|
2011
2014
|
}
|
|
2012
|
-
export interface DescribeInferenceComponentInput {
|
|
2013
|
-
InferenceComponentName: string | undefined;
|
|
2014
|
-
}
|
|
@@ -297,6 +297,9 @@ import {
|
|
|
297
297
|
TrialComponentStatus,
|
|
298
298
|
WorkerAccessConfiguration,
|
|
299
299
|
} from "./models_2";
|
|
300
|
+
export interface DescribeInferenceComponentInput {
|
|
301
|
+
InferenceComponentName: string | undefined;
|
|
302
|
+
}
|
|
300
303
|
export interface InferenceComponentCapacitySize {
|
|
301
304
|
Type: InferenceComponentCapacitySizeType | undefined;
|
|
302
305
|
Value: number | undefined;
|
|
@@ -2580,10 +2583,3 @@ export interface ListInferenceRecommendationsJobsResponse {
|
|
|
2580
2583
|
InferenceRecommendationsJobs: InferenceRecommendationsJob[] | undefined;
|
|
2581
2584
|
NextToken?: string | undefined;
|
|
2582
2585
|
}
|
|
2583
|
-
export interface ListInferenceRecommendationsJobStepsRequest {
|
|
2584
|
-
JobName: string | undefined;
|
|
2585
|
-
Status?: RecommendationJobStatus | undefined;
|
|
2586
|
-
StepType?: RecommendationStepType | undefined;
|
|
2587
|
-
MaxResults?: number | undefined;
|
|
2588
|
-
NextToken?: string | undefined;
|
|
2589
|
-
}
|
|
@@ -72,6 +72,8 @@ import {
|
|
|
72
72
|
ProjectSortBy,
|
|
73
73
|
ProjectSortOrder,
|
|
74
74
|
ProjectStatus,
|
|
75
|
+
RecommendationJobStatus,
|
|
76
|
+
RecommendationStepType,
|
|
75
77
|
Relation,
|
|
76
78
|
ReservedCapacityInstanceType,
|
|
77
79
|
ReservedCapacityType,
|
|
@@ -139,7 +141,6 @@ import {
|
|
|
139
141
|
ClusterTieredStorageConfig,
|
|
140
142
|
CodeEditorAppImageConfig,
|
|
141
143
|
ComputeQuotaConfig,
|
|
142
|
-
ComputeQuotaTarget,
|
|
143
144
|
DeploymentConfiguration,
|
|
144
145
|
InferenceSpecification,
|
|
145
146
|
JupyterLabAppImageConfig,
|
|
@@ -156,6 +157,7 @@ import {
|
|
|
156
157
|
VpcConfig,
|
|
157
158
|
} from "./models_0";
|
|
158
159
|
import {
|
|
160
|
+
ComputeQuotaTarget,
|
|
159
161
|
ConditionStepMetadata,
|
|
160
162
|
ContainerDefinition,
|
|
161
163
|
DefaultSpaceSettings,
|
|
@@ -261,6 +263,13 @@ import {
|
|
|
261
263
|
Workforce,
|
|
262
264
|
Workteam,
|
|
263
265
|
} from "./models_3";
|
|
266
|
+
export interface ListInferenceRecommendationsJobStepsRequest {
|
|
267
|
+
JobName: string | undefined;
|
|
268
|
+
Status?: RecommendationJobStatus | undefined;
|
|
269
|
+
StepType?: RecommendationStepType | undefined;
|
|
270
|
+
MaxResults?: number | undefined;
|
|
271
|
+
NextToken?: string | undefined;
|
|
272
|
+
}
|
|
264
273
|
export interface ListInferenceRecommendationsJobStepsResponse {
|
|
265
274
|
Steps?: InferenceRecommendationsJobStep[] | undefined;
|
|
266
275
|
NextToken?: string | undefined;
|
|
@@ -2295,4 +2304,3 @@ export interface UpdateNotebookInstanceInput {
|
|
|
2295
2304
|
| InstanceMetadataServiceConfiguration
|
|
2296
2305
|
| undefined;
|
|
2297
2306
|
}
|
|
2298
|
-
export interface UpdateNotebookInstanceOutput {}
|
|
@@ -33,6 +33,7 @@ import {
|
|
|
33
33
|
ResourceConfigForUpdate,
|
|
34
34
|
VisibilityConditions,
|
|
35
35
|
} from "./models_4";
|
|
36
|
+
export interface UpdateNotebookInstanceOutput {}
|
|
36
37
|
export interface UpdateNotebookInstanceLifecycleConfigInput {
|
|
37
38
|
NotebookInstanceLifecycleConfigName: string | undefined;
|
|
38
39
|
OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
|
|
@@ -32,6 +32,7 @@ export declare var AIBenchmarkOutputConfig$: StaticStructureSchema;
|
|
|
32
32
|
export declare var AIBenchmarkOutputResult$: StaticStructureSchema;
|
|
33
33
|
export declare var AICapacityReservationConfig$: StaticStructureSchema;
|
|
34
34
|
export declare var AICloudWatchLogs$: StaticStructureSchema;
|
|
35
|
+
export declare var AIMlflowConfig$: StaticStructureSchema;
|
|
35
36
|
export declare var AIModelSourceS3$: StaticStructureSchema;
|
|
36
37
|
export declare var AIRecommendation$: StaticStructureSchema;
|
|
37
38
|
export declare var AIRecommendationComputeSpec$: StaticStructureSchema;
|
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.1063.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sagemaker",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
32
|
-
"@aws-sdk/types": "^3.973.
|
|
30
|
+
"@aws-sdk/core": "^3.974.18",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.52",
|
|
32
|
+
"@aws-sdk/types": "^3.973.11",
|
|
33
33
|
"@smithy/core": "^3.24.6",
|
|
34
34
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
35
35
|
"@smithy/node-http-handler": "^4.7.6",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
],
|
|
62
62
|
"author": {
|
|
63
63
|
"name": "AWS SDK for JavaScript Team",
|
|
64
|
-
"url": "https://aws.amazon.com/javascript/"
|
|
64
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
65
65
|
},
|
|
66
66
|
"license": "Apache-2.0",
|
|
67
67
|
"browser": {
|