@aws-sdk/client-sagemaker 3.339.0 → 3.340.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/models/models_0.js +4 -1
- package/dist-cjs/models/models_2.js +1 -5
- package/dist-cjs/models/models_3.js +6 -2
- package/dist-cjs/protocols/Aws_json1_1.js +2 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/models/models_2.js +0 -4
- package/dist-es/models/models_3.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +2 -0
- package/dist-types/commands/CreateEdgeDeploymentPlanCommand.d.ts +1 -1
- package/dist-types/commands/CreateEdgeDeploymentStageCommand.d.ts +1 -1
- package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +21 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSpaceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +24 -2
- package/dist-types/commands/SearchCommand.d.ts +18 -0
- package/dist-types/commands/StopNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/StopPipelineExecutionCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +70 -47
- package/dist-types/models/models_1.d.ts +89 -32
- package/dist-types/models/models_2.d.ts +37 -124
- package/dist-types/models/models_3.d.ts +124 -34
- package/dist-types/models/models_4.d.ts +32 -0
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentPlanCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateEdgeDeploymentStageCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteSpaceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopPipelineExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +11 -14
- package/dist-types/ts3.4/models/models_1.d.ts +20 -10
- package/dist-types/ts3.4/models/models_2.d.ts +12 -33
- package/dist-types/ts3.4/models/models_3.d.ts +35 -13
- package/dist-types/ts3.4/models/models_4.d.ts +10 -0
- package/package.json +1 -1
|
@@ -59,6 +59,7 @@ import {
|
|
|
59
59
|
ExperimentConfig,
|
|
60
60
|
HubContentType,
|
|
61
61
|
InferenceExecutionConfig,
|
|
62
|
+
InferenceExperimentSchedule,
|
|
62
63
|
InferenceExperimentType,
|
|
63
64
|
LabelingJobInputConfig,
|
|
64
65
|
ModelCardSecurityConfig,
|
|
@@ -75,6 +76,7 @@ import {
|
|
|
75
76
|
ProcessingOutputConfig,
|
|
76
77
|
ProcessingResources,
|
|
77
78
|
ProcessingStoppingCondition,
|
|
79
|
+
RecommendationJobType,
|
|
78
80
|
RetryStrategy,
|
|
79
81
|
ServiceCatalogProvisioningDetails,
|
|
80
82
|
SourceAlgorithmSpecification,
|
|
@@ -134,10 +136,7 @@ import {
|
|
|
134
136
|
ImageVersionSortBy,
|
|
135
137
|
ImageVersionSortOrder,
|
|
136
138
|
InferenceExperimentStatus,
|
|
137
|
-
InferenceExperimentStopDesiredState,
|
|
138
|
-
InferenceExperimentSummary,
|
|
139
139
|
InferenceMetrics,
|
|
140
|
-
InferenceRecommendationsJob,
|
|
141
140
|
LabelCounters,
|
|
142
141
|
LabelingJobOutput,
|
|
143
142
|
LabelingJobStatus,
|
|
@@ -174,6 +173,39 @@ import {
|
|
|
174
173
|
Workforce,
|
|
175
174
|
Workteam,
|
|
176
175
|
} from "./models_2";
|
|
176
|
+
export interface InferenceExperimentSummary {
|
|
177
|
+
Name: string | undefined;
|
|
178
|
+
Type: InferenceExperimentType | string | undefined;
|
|
179
|
+
Schedule?: InferenceExperimentSchedule;
|
|
180
|
+
Status: InferenceExperimentStatus | string | undefined;
|
|
181
|
+
StatusReason?: string;
|
|
182
|
+
Description?: string;
|
|
183
|
+
CreationTime: Date | undefined;
|
|
184
|
+
CompletionTime?: Date;
|
|
185
|
+
LastModifiedTime: Date | undefined;
|
|
186
|
+
RoleArn?: string;
|
|
187
|
+
}
|
|
188
|
+
export declare const InferenceExperimentStopDesiredState: {
|
|
189
|
+
readonly CANCELLED: "Cancelled";
|
|
190
|
+
readonly COMPLETED: "Completed";
|
|
191
|
+
};
|
|
192
|
+
export type InferenceExperimentStopDesiredState =
|
|
193
|
+
(typeof InferenceExperimentStopDesiredState)[keyof typeof InferenceExperimentStopDesiredState];
|
|
194
|
+
export interface InferenceRecommendationsJob {
|
|
195
|
+
JobName: string | undefined;
|
|
196
|
+
JobDescription: string | undefined;
|
|
197
|
+
JobType: RecommendationJobType | string | undefined;
|
|
198
|
+
JobArn: string | undefined;
|
|
199
|
+
Status: RecommendationJobStatus | string | undefined;
|
|
200
|
+
CreationTime: Date | undefined;
|
|
201
|
+
CompletionTime?: Date;
|
|
202
|
+
RoleArn: string | undefined;
|
|
203
|
+
LastModifiedTime: Date | undefined;
|
|
204
|
+
FailureReason?: string;
|
|
205
|
+
ModelName?: string;
|
|
206
|
+
SamplePayloadUrl?: string;
|
|
207
|
+
ModelPackageVersionArn?: string;
|
|
208
|
+
}
|
|
177
209
|
export interface RecommendationJobInferenceBenchmark {
|
|
178
210
|
Metrics?: RecommendationMetrics;
|
|
179
211
|
EndpointConfiguration?: EndpointOutputConfiguration;
|
|
@@ -2284,16 +2316,6 @@ export interface StopLabelingJobRequest {
|
|
|
2284
2316
|
export interface StopMonitoringScheduleRequest {
|
|
2285
2317
|
MonitoringScheduleName: string | undefined;
|
|
2286
2318
|
}
|
|
2287
|
-
export interface StopNotebookInstanceInput {
|
|
2288
|
-
NotebookInstanceName: string | undefined;
|
|
2289
|
-
}
|
|
2290
|
-
export interface StopPipelineExecutionRequest {
|
|
2291
|
-
PipelineExecutionArn: string | undefined;
|
|
2292
|
-
ClientRequestToken?: string;
|
|
2293
|
-
}
|
|
2294
|
-
export interface StopPipelineExecutionResponse {
|
|
2295
|
-
PipelineExecutionArn?: string;
|
|
2296
|
-
}
|
|
2297
2319
|
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
2298
2320
|
export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
|
|
2299
2321
|
export declare const SearchResponseFilterSensitiveLog: (
|
|
@@ -58,6 +58,16 @@ import {
|
|
|
58
58
|
ResourceConfigForUpdate,
|
|
59
59
|
SearchSortOrder,
|
|
60
60
|
} from "./models_3";
|
|
61
|
+
export interface StopNotebookInstanceInput {
|
|
62
|
+
NotebookInstanceName: string | undefined;
|
|
63
|
+
}
|
|
64
|
+
export interface StopPipelineExecutionRequest {
|
|
65
|
+
PipelineExecutionArn: string | undefined;
|
|
66
|
+
ClientRequestToken?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface StopPipelineExecutionResponse {
|
|
69
|
+
PipelineExecutionArn?: string;
|
|
70
|
+
}
|
|
61
71
|
export interface StopProcessingJobRequest {
|
|
62
72
|
ProcessingJobName: string | undefined;
|
|
63
73
|
}
|
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.340.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|