@aws-sdk/client-sagemaker 3.752.0 → 3.757.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 +34 -6
- package/dist-es/models/models_3.js +4 -5
- package/dist-es/models/models_4.js +5 -0
- package/dist-es/protocols/Aws_json1_1.js +22 -0
- package/dist-types/commands/CreateModelPackageCommand.d.ts +5 -5
- package/dist-types/commands/DeleteModelPackageCommand.d.ts +3 -2
- package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +21 -0
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +3 -4
- package/dist-types/commands/GetModelPackageGroupPolicyCommand.d.ts +2 -2
- package/dist-types/commands/ListDataQualityJobDefinitionsCommand.d.ts +2 -1
- package/dist-types/commands/ListDeviceFleetsCommand.d.ts +1 -2
- package/dist-types/commands/PutModelPackageGroupPolicyCommand.d.ts +2 -1
- package/dist-types/commands/StopProcessingJobCommand.d.ts +1 -1
- package/dist-types/commands/StopTrainingJobCommand.d.ts +1 -1
- package/dist-types/commands/StopTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/UpdateActionCommand.d.ts +1 -2
- package/dist-types/commands/UpdateClusterCommand.d.ts +3 -0
- package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +21 -0
- package/dist-types/models/models_0.d.ts +44 -35
- package/dist-types/models/models_1.d.ts +95 -101
- package/dist-types/models/models_2.d.ts +2 -2
- package/dist-types/models/models_3.d.ts +147 -139
- package/dist-types/models/models_4.d.ts +199 -112
- package/dist-types/models/models_5.d.ts +88 -20
- package/dist-types/ts3.4/commands/ListDataQualityJobDefinitionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListDeviceFleetsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StopProcessingJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopTrainingJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateActionCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_3.d.ts +22 -28
- package/dist-types/ts3.4/models/models_4.d.ts +28 -18
- package/dist-types/ts3.4/models/models_5.d.ts +20 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { StopTrainingJobRequest } from "../models/
|
|
3
|
+
import { StopTrainingJobRequest } from "../models/models_5";
|
|
4
4
|
import {
|
|
5
5
|
SageMakerClientResolvedConfig,
|
|
6
6
|
ServiceInputTypes,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { StopTransformJobRequest } from "../models/
|
|
3
|
+
import { StopTransformJobRequest } from "../models/models_5";
|
|
4
4
|
import {
|
|
5
5
|
SageMakerClientResolvedConfig,
|
|
6
6
|
ServiceInputTypes,
|
|
@@ -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 { UpdateActionRequest } from "../models/
|
|
4
|
-
import { UpdateActionResponse } from "../models/models_5";
|
|
3
|
+
import { UpdateActionRequest, UpdateActionResponse } from "../models/models_5";
|
|
5
4
|
import {
|
|
6
5
|
SageMakerClientResolvedConfig,
|
|
7
6
|
ServiceInputTypes,
|
|
@@ -19,6 +19,7 @@ import {
|
|
|
19
19
|
AutoMLJobSummary,
|
|
20
20
|
AutoMLSortBy,
|
|
21
21
|
AutoMLSortOrder,
|
|
22
|
+
AutoRollbackConfig,
|
|
22
23
|
Autotune,
|
|
23
24
|
BatchDataCaptureConfig,
|
|
24
25
|
BatchStrategy,
|
|
@@ -354,6 +355,26 @@ export declare const InferenceComponentStatus: {
|
|
|
354
355
|
};
|
|
355
356
|
export type InferenceComponentStatus =
|
|
356
357
|
(typeof InferenceComponentStatus)[keyof typeof InferenceComponentStatus];
|
|
358
|
+
export declare const InferenceComponentCapacitySizeType: {
|
|
359
|
+
readonly CAPACITY_PERCENT: "CAPACITY_PERCENT";
|
|
360
|
+
readonly COPY_COUNT: "COPY_COUNT";
|
|
361
|
+
};
|
|
362
|
+
export type InferenceComponentCapacitySizeType =
|
|
363
|
+
(typeof InferenceComponentCapacitySizeType)[keyof typeof InferenceComponentCapacitySizeType];
|
|
364
|
+
export interface InferenceComponentCapacitySize {
|
|
365
|
+
Type: InferenceComponentCapacitySizeType | undefined;
|
|
366
|
+
Value: number | undefined;
|
|
367
|
+
}
|
|
368
|
+
export interface InferenceComponentRollingUpdatePolicy {
|
|
369
|
+
MaximumBatchSize: InferenceComponentCapacitySize | undefined;
|
|
370
|
+
WaitIntervalInSeconds: number | undefined;
|
|
371
|
+
MaximumExecutionTimeoutInSeconds?: number | undefined;
|
|
372
|
+
RollbackMaximumBatchSize?: InferenceComponentCapacitySize | undefined;
|
|
373
|
+
}
|
|
374
|
+
export interface InferenceComponentDeploymentConfig {
|
|
375
|
+
RollingUpdatePolicy: InferenceComponentRollingUpdatePolicy | undefined;
|
|
376
|
+
AutoRollbackConfiguration?: AutoRollbackConfig | undefined;
|
|
377
|
+
}
|
|
357
378
|
export interface InferenceComponentRuntimeConfigSummary {
|
|
358
379
|
DesiredCopyCount?: number | undefined;
|
|
359
380
|
CurrentCopyCount?: number | undefined;
|
|
@@ -384,6 +405,7 @@ export interface DescribeInferenceComponentOutput {
|
|
|
384
405
|
CreationTime: Date | undefined;
|
|
385
406
|
LastModifiedTime: Date | undefined;
|
|
386
407
|
InferenceComponentStatus?: InferenceComponentStatus | undefined;
|
|
408
|
+
LastDeploymentConfig?: InferenceComponentDeploymentConfig | undefined;
|
|
387
409
|
}
|
|
388
410
|
export interface DescribeInferenceExperimentRequest {
|
|
389
411
|
Name: string | undefined;
|
|
@@ -2539,34 +2561,6 @@ export interface ListDataQualityJobDefinitionsRequest {
|
|
|
2539
2561
|
CreationTimeBefore?: Date | undefined;
|
|
2540
2562
|
CreationTimeAfter?: Date | undefined;
|
|
2541
2563
|
}
|
|
2542
|
-
export interface MonitoringJobDefinitionSummary {
|
|
2543
|
-
MonitoringJobDefinitionName: string | undefined;
|
|
2544
|
-
MonitoringJobDefinitionArn: string | undefined;
|
|
2545
|
-
CreationTime: Date | undefined;
|
|
2546
|
-
EndpointName: string | undefined;
|
|
2547
|
-
}
|
|
2548
|
-
export interface ListDataQualityJobDefinitionsResponse {
|
|
2549
|
-
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
2550
|
-
NextToken?: string | undefined;
|
|
2551
|
-
}
|
|
2552
|
-
export declare const ListDeviceFleetsSortBy: {
|
|
2553
|
-
readonly CreationTime: "CREATION_TIME";
|
|
2554
|
-
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
2555
|
-
readonly Name: "NAME";
|
|
2556
|
-
};
|
|
2557
|
-
export type ListDeviceFleetsSortBy =
|
|
2558
|
-
(typeof ListDeviceFleetsSortBy)[keyof typeof ListDeviceFleetsSortBy];
|
|
2559
|
-
export interface ListDeviceFleetsRequest {
|
|
2560
|
-
NextToken?: string | undefined;
|
|
2561
|
-
MaxResults?: number | undefined;
|
|
2562
|
-
CreationTimeAfter?: Date | undefined;
|
|
2563
|
-
CreationTimeBefore?: Date | undefined;
|
|
2564
|
-
LastModifiedTimeAfter?: Date | undefined;
|
|
2565
|
-
LastModifiedTimeBefore?: Date | undefined;
|
|
2566
|
-
NameContains?: string | undefined;
|
|
2567
|
-
SortBy?: ListDeviceFleetsSortBy | undefined;
|
|
2568
|
-
SortOrder?: SortOrder | undefined;
|
|
2569
|
-
}
|
|
2570
2564
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2571
2565
|
obj: DescribeModelCardResponse
|
|
2572
2566
|
) => any;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import {
|
|
2
|
-
ActionStatus,
|
|
3
2
|
AdditionalInferenceSpecificationDefinition,
|
|
4
3
|
AlgorithmSpecification,
|
|
5
4
|
AppSpecification,
|
|
@@ -150,7 +149,6 @@ import {
|
|
|
150
149
|
ModelPackageStatusDetails,
|
|
151
150
|
MonitoringExecutionSummary,
|
|
152
151
|
MonitoringJobDefinitionSortKey,
|
|
153
|
-
MonitoringJobDefinitionSummary,
|
|
154
152
|
NotebookInstanceStatus,
|
|
155
153
|
OptimizationJobStatus,
|
|
156
154
|
PartnerAppStatus,
|
|
@@ -185,6 +183,34 @@ import {
|
|
|
185
183
|
Workforce,
|
|
186
184
|
Workteam,
|
|
187
185
|
} from "./models_3";
|
|
186
|
+
export interface MonitoringJobDefinitionSummary {
|
|
187
|
+
MonitoringJobDefinitionName: string | undefined;
|
|
188
|
+
MonitoringJobDefinitionArn: string | undefined;
|
|
189
|
+
CreationTime: Date | undefined;
|
|
190
|
+
EndpointName: string | undefined;
|
|
191
|
+
}
|
|
192
|
+
export interface ListDataQualityJobDefinitionsResponse {
|
|
193
|
+
JobDefinitionSummaries: MonitoringJobDefinitionSummary[] | undefined;
|
|
194
|
+
NextToken?: string | undefined;
|
|
195
|
+
}
|
|
196
|
+
export declare const ListDeviceFleetsSortBy: {
|
|
197
|
+
readonly CreationTime: "CREATION_TIME";
|
|
198
|
+
readonly LastModifiedTime: "LAST_MODIFIED_TIME";
|
|
199
|
+
readonly Name: "NAME";
|
|
200
|
+
};
|
|
201
|
+
export type ListDeviceFleetsSortBy =
|
|
202
|
+
(typeof ListDeviceFleetsSortBy)[keyof typeof ListDeviceFleetsSortBy];
|
|
203
|
+
export interface ListDeviceFleetsRequest {
|
|
204
|
+
NextToken?: string | undefined;
|
|
205
|
+
MaxResults?: number | undefined;
|
|
206
|
+
CreationTimeAfter?: Date | undefined;
|
|
207
|
+
CreationTimeBefore?: Date | undefined;
|
|
208
|
+
LastModifiedTimeAfter?: Date | undefined;
|
|
209
|
+
LastModifiedTimeBefore?: Date | undefined;
|
|
210
|
+
NameContains?: string | undefined;
|
|
211
|
+
SortBy?: ListDeviceFleetsSortBy | undefined;
|
|
212
|
+
SortOrder?: SortOrder | undefined;
|
|
213
|
+
}
|
|
188
214
|
export interface ListDeviceFleetsResponse {
|
|
189
215
|
DeviceFleetSummaries: DeviceFleetSummary[] | undefined;
|
|
190
216
|
NextToken?: string | undefined;
|
|
@@ -2267,22 +2293,6 @@ export interface StopPipelineExecutionRequest {
|
|
|
2267
2293
|
export interface StopPipelineExecutionResponse {
|
|
2268
2294
|
PipelineExecutionArn?: string | undefined;
|
|
2269
2295
|
}
|
|
2270
|
-
export interface StopProcessingJobRequest {
|
|
2271
|
-
ProcessingJobName: string | undefined;
|
|
2272
|
-
}
|
|
2273
|
-
export interface StopTrainingJobRequest {
|
|
2274
|
-
TrainingJobName: string | undefined;
|
|
2275
|
-
}
|
|
2276
|
-
export interface StopTransformJobRequest {
|
|
2277
|
-
TransformJobName: string | undefined;
|
|
2278
|
-
}
|
|
2279
|
-
export interface UpdateActionRequest {
|
|
2280
|
-
ActionName: string | undefined;
|
|
2281
|
-
Description?: string | undefined;
|
|
2282
|
-
Status?: ActionStatus | undefined;
|
|
2283
|
-
Properties?: Record<string, string> | undefined;
|
|
2284
|
-
PropertiesToRemove?: string[] | undefined;
|
|
2285
|
-
}
|
|
2286
2296
|
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
2287
2297
|
export declare const ModelPackageFilterSensitiveLog: (obj: ModelPackage) => any;
|
|
2288
2298
|
export declare const SearchRecordFilterSensitiveLog: (obj: SearchRecord) => any;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
|
+
ActionStatus,
|
|
2
3
|
ActivationState,
|
|
3
4
|
AdditionalInferenceSpecificationDefinition,
|
|
4
5
|
AppNetworkAccessType,
|
|
@@ -70,6 +71,7 @@ import {
|
|
|
70
71
|
DomainSettingsForUpdate,
|
|
71
72
|
Filter,
|
|
72
73
|
GitConfigForUpdate,
|
|
74
|
+
InferenceComponentDeploymentConfig,
|
|
73
75
|
ResourceType,
|
|
74
76
|
Workforce,
|
|
75
77
|
Workteam,
|
|
@@ -83,6 +85,22 @@ import {
|
|
|
83
85
|
SearchSortOrder,
|
|
84
86
|
VisibilityConditions,
|
|
85
87
|
} from "./models_4";
|
|
88
|
+
export interface StopProcessingJobRequest {
|
|
89
|
+
ProcessingJobName: string | undefined;
|
|
90
|
+
}
|
|
91
|
+
export interface StopTrainingJobRequest {
|
|
92
|
+
TrainingJobName: string | undefined;
|
|
93
|
+
}
|
|
94
|
+
export interface StopTransformJobRequest {
|
|
95
|
+
TransformJobName: string | undefined;
|
|
96
|
+
}
|
|
97
|
+
export interface UpdateActionRequest {
|
|
98
|
+
ActionName: string | undefined;
|
|
99
|
+
Description?: string | undefined;
|
|
100
|
+
Status?: ActionStatus | undefined;
|
|
101
|
+
Properties?: Record<string, string> | undefined;
|
|
102
|
+
PropertiesToRemove?: string[] | undefined;
|
|
103
|
+
}
|
|
86
104
|
export interface UpdateActionResponse {
|
|
87
105
|
ActionArn?: string | undefined;
|
|
88
106
|
}
|
|
@@ -108,6 +126,7 @@ export interface UpdateClusterRequest {
|
|
|
108
126
|
ClusterName: string | undefined;
|
|
109
127
|
InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
|
|
110
128
|
NodeRecovery?: ClusterNodeRecovery | undefined;
|
|
129
|
+
InstanceGroupsToDelete?: string[] | undefined;
|
|
111
130
|
}
|
|
112
131
|
export interface UpdateClusterResponse {
|
|
113
132
|
ClusterArn: string | undefined;
|
|
@@ -277,6 +296,7 @@ export interface UpdateInferenceComponentInput {
|
|
|
277
296
|
InferenceComponentName: string | undefined;
|
|
278
297
|
Specification?: InferenceComponentSpecification | undefined;
|
|
279
298
|
RuntimeConfig?: InferenceComponentRuntimeConfig | undefined;
|
|
299
|
+
DeploymentConfig?: InferenceComponentDeploymentConfig | undefined;
|
|
280
300
|
}
|
|
281
301
|
export interface UpdateInferenceComponentOutput {
|
|
282
302
|
InferenceComponentArn: 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.757.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",
|