@aws-sdk/client-sagemaker 3.180.0 → 3.181.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/CHANGELOG.md +17 -0
- package/dist-cjs/commands/ListMonitoringSchedulesCommand.js +2 -1
- package/dist-cjs/models/models_2.js +17 -16
- package/dist-cjs/models/models_3.js +18 -4
- package/dist-cjs/protocols/Aws_json1_1.js +289 -263
- package/dist-es/commands/ListMonitoringSchedulesCommand.js +2 -1
- package/dist-es/models/models_2.js +8 -7
- package/dist-es/models/models_3.js +8 -0
- package/dist-es/protocols/Aws_json1_1.js +296 -268
- package/dist-types/SageMaker.d.ts +1 -1
- package/dist-types/commands/ListMonitoringSchedulesCommand.d.ts +2 -1
- package/dist-types/commands/UpdateTrainingJobCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +4 -0
- package/dist-types/models/models_2.d.ts +54 -20
- package/dist-types/models/models_3.d.ts +46 -1
- package/dist-types/ts3.4/commands/ListMonitoringSchedulesCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_2.d.ts +15 -12
- package/dist-types/ts3.4/models/models_3.d.ts +24 -1
- package/package.json +3 -3
|
@@ -2711,7 +2711,7 @@ export declare class SageMaker extends SageMakerClient {
|
|
|
2711
2711
|
updateProject(args: UpdateProjectCommandInput, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
|
|
2712
2712
|
updateProject(args: UpdateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
|
|
2713
2713
|
/**
|
|
2714
|
-
* <p>Update a model training job to request a new Debugger profiling configuration.</p>
|
|
2714
|
+
* <p>Update a model training job to request a new Debugger profiling configuration or to change warm pool retention length.</p>
|
|
2715
2715
|
*/
|
|
2716
2716
|
updateTrainingJob(args: UpdateTrainingJobCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrainingJobCommandOutput>;
|
|
2717
2717
|
updateTrainingJob(args: UpdateTrainingJobCommandInput, cb: (err: any, data?: UpdateTrainingJobCommandOutput) => void): void;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListMonitoringSchedulesRequest
|
|
3
|
+
import { ListMonitoringSchedulesRequest } from "../models/models_2";
|
|
4
|
+
import { ListMonitoringSchedulesResponse } from "../models/models_3";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
export interface ListMonitoringSchedulesCommandInput extends ListMonitoringSchedulesRequest {
|
|
6
7
|
}
|
|
@@ -7,7 +7,7 @@ export interface UpdateTrainingJobCommandInput extends UpdateTrainingJobRequest
|
|
|
7
7
|
export interface UpdateTrainingJobCommandOutput extends UpdateTrainingJobResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Update a model training job to request a new Debugger profiling configuration.</p>
|
|
10
|
+
* <p>Update a model training job to request a new Debugger profiling configuration or to change warm pool retention length.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -1090,6 +1090,10 @@ export interface ResourceConfig {
|
|
|
1090
1090
|
* <p>The configuration of a heterogeneous cluster in JSON format.</p>
|
|
1091
1091
|
*/
|
|
1092
1092
|
InstanceGroups?: InstanceGroup[];
|
|
1093
|
+
/**
|
|
1094
|
+
* <p>The duration of time in seconds to retain configured resources in a warm pool for subsequent training jobs.</p>
|
|
1095
|
+
*/
|
|
1096
|
+
KeepAlivePeriodInSeconds?: number;
|
|
1093
1097
|
}
|
|
1094
1098
|
/**
|
|
1095
1099
|
* <p>Specifies a limit to how long a model training job or model compilation job can run.
|
|
@@ -2456,6 +2456,52 @@ export interface SecondaryStatusTransition {
|
|
|
2456
2456
|
*/
|
|
2457
2457
|
StatusMessage?: string;
|
|
2458
2458
|
}
|
|
2459
|
+
export declare enum WarmPoolResourceStatus {
|
|
2460
|
+
AVAILABLE = "Available",
|
|
2461
|
+
INUSE = "InUse",
|
|
2462
|
+
REUSED = "Reused",
|
|
2463
|
+
TERMINATED = "Terminated"
|
|
2464
|
+
}
|
|
2465
|
+
/**
|
|
2466
|
+
* <p>Status and billing information about the warm pool.</p>
|
|
2467
|
+
*/
|
|
2468
|
+
export interface WarmPoolStatus {
|
|
2469
|
+
/**
|
|
2470
|
+
* <p>The status of the warm pool.</p>
|
|
2471
|
+
* <ul>
|
|
2472
|
+
* <li>
|
|
2473
|
+
* <p>
|
|
2474
|
+
* <code>InUse</code>: The warm pool is in use for the training job.</p>
|
|
2475
|
+
* </li>
|
|
2476
|
+
* <li>
|
|
2477
|
+
* <p>
|
|
2478
|
+
* <code>Available</code>: The warm pool is available to reuse for a matching training job.</p>
|
|
2479
|
+
* </li>
|
|
2480
|
+
* <li>
|
|
2481
|
+
* <p>
|
|
2482
|
+
* <code>Reused</code>: The warm pool moved to a matching training job for reuse.</p>
|
|
2483
|
+
* </li>
|
|
2484
|
+
* <li>
|
|
2485
|
+
* <p>
|
|
2486
|
+
* <code>Terminated</code>: The warm pool is no longer available. Warm pools are unavailable if they are terminated by a user, terminated for a patch update, or terminated for exceeding the specified <code>KeepAlivePeriodInSeconds</code>.</p>
|
|
2487
|
+
* </li>
|
|
2488
|
+
* </ul>
|
|
2489
|
+
*/
|
|
2490
|
+
Status: WarmPoolResourceStatus | string | undefined;
|
|
2491
|
+
/**
|
|
2492
|
+
* <p>The billable time in seconds used by the warm pool. Billable time refers to the absolute wall-clock
|
|
2493
|
+
* time.</p>
|
|
2494
|
+
* <p>Multiply <code>ResourceRetainedBillableTimeInSeconds</code> by the number of instances
|
|
2495
|
+
* (<code>InstanceCount</code>) in your training cluster to get the total compute time
|
|
2496
|
+
* SageMaker bills you if you run warm pool training. The formula is as follows:
|
|
2497
|
+
* <code>ResourceRetainedBillableTimeInSeconds * InstanceCount</code>.</p>
|
|
2498
|
+
*/
|
|
2499
|
+
ResourceRetainedBillableTimeInSeconds?: number;
|
|
2500
|
+
/**
|
|
2501
|
+
* <p>The name of the matching training job that reused the warm pool.</p>
|
|
2502
|
+
*/
|
|
2503
|
+
ReusedByJob?: string;
|
|
2504
|
+
}
|
|
2459
2505
|
export interface DescribeTrainingJobResponse {
|
|
2460
2506
|
/**
|
|
2461
2507
|
* <p> Name of the model training job. </p>
|
|
@@ -2817,6 +2863,10 @@ export interface DescribeTrainingJobResponse {
|
|
|
2817
2863
|
* <p>The environment variables to set in the Docker container.</p>
|
|
2818
2864
|
*/
|
|
2819
2865
|
Environment?: Record<string, string>;
|
|
2866
|
+
/**
|
|
2867
|
+
* <p>The status of the warm pool associated with the training job.</p>
|
|
2868
|
+
*/
|
|
2869
|
+
WarmPoolStatus?: WarmPoolStatus;
|
|
2820
2870
|
}
|
|
2821
2871
|
export interface DescribeTransformJobRequest {
|
|
2822
2872
|
/**
|
|
@@ -7455,22 +7505,6 @@ export interface MonitoringScheduleSummary {
|
|
|
7455
7505
|
*/
|
|
7456
7506
|
MonitoringType?: MonitoringType | string;
|
|
7457
7507
|
}
|
|
7458
|
-
export interface ListMonitoringSchedulesResponse {
|
|
7459
|
-
/**
|
|
7460
|
-
* <p>A JSON array in which each element is a summary for a monitoring schedule.</p>
|
|
7461
|
-
*/
|
|
7462
|
-
MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
|
|
7463
|
-
/**
|
|
7464
|
-
* <p>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of jobs,
|
|
7465
|
-
* use it in the subsequent request.</p>
|
|
7466
|
-
*/
|
|
7467
|
-
NextToken?: string;
|
|
7468
|
-
}
|
|
7469
|
-
export declare enum NotebookInstanceLifecycleConfigSortKey {
|
|
7470
|
-
CREATION_TIME = "CreationTime",
|
|
7471
|
-
LAST_MODIFIED_TIME = "LastModifiedTime",
|
|
7472
|
-
NAME = "Name"
|
|
7473
|
-
}
|
|
7474
7508
|
/**
|
|
7475
7509
|
* @internal
|
|
7476
7510
|
*/
|
|
@@ -7771,6 +7805,10 @@ export declare const ProfilerRuleEvaluationStatusFilterSensitiveLog: (obj: Profi
|
|
|
7771
7805
|
* @internal
|
|
7772
7806
|
*/
|
|
7773
7807
|
export declare const SecondaryStatusTransitionFilterSensitiveLog: (obj: SecondaryStatusTransition) => any;
|
|
7808
|
+
/**
|
|
7809
|
+
* @internal
|
|
7810
|
+
*/
|
|
7811
|
+
export declare const WarmPoolStatusFilterSensitiveLog: (obj: WarmPoolStatus) => any;
|
|
7774
7812
|
/**
|
|
7775
7813
|
* @internal
|
|
7776
7814
|
*/
|
|
@@ -8423,7 +8461,3 @@ export declare const ListMonitoringSchedulesRequestFilterSensitiveLog: (obj: Lis
|
|
|
8423
8461
|
* @internal
|
|
8424
8462
|
*/
|
|
8425
8463
|
export declare const MonitoringScheduleSummaryFilterSensitiveLog: (obj: MonitoringScheduleSummary) => any;
|
|
8426
|
-
/**
|
|
8427
|
-
* @internal
|
|
8428
|
-
*/
|
|
8429
|
-
export declare const ListMonitoringSchedulesResponseFilterSensitiveLog: (obj: ListMonitoringSchedulesResponse) => any;
|
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ConditionStepMetadata, DeploymentConfig, EdgeOutputConfig, FeatureDefinition, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UiTemplate, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkforceVpcConfigRequest } from "./models_1";
|
|
3
|
-
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, FeatureParameter, Filter, GitConfigForUpdate, HyperParameterTrainingJobSummary, HyperParameterTuningJobSearchEntity, LambdaStepMetadata, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails,
|
|
3
|
+
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, FeatureParameter, Filter, GitConfigForUpdate, HyperParameterTrainingJobSummary, HyperParameterTuningJobSearchEntity, LambdaStepMetadata, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringScheduleSummary, NotebookInstanceStatus, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SubscribedWorkteam, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
export interface ListMonitoringSchedulesResponse {
|
|
5
|
+
/**
|
|
6
|
+
* <p>A JSON array in which each element is a summary for a monitoring schedule.</p>
|
|
7
|
+
*/
|
|
8
|
+
MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
|
|
9
|
+
/**
|
|
10
|
+
* <p>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of jobs,
|
|
11
|
+
* use it in the subsequent request.</p>
|
|
12
|
+
*/
|
|
13
|
+
NextToken?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare enum NotebookInstanceLifecycleConfigSortKey {
|
|
16
|
+
CREATION_TIME = "CreationTime",
|
|
17
|
+
LAST_MODIFIED_TIME = "LastModifiedTime",
|
|
18
|
+
NAME = "Name"
|
|
19
|
+
}
|
|
4
20
|
export declare enum NotebookInstanceLifecycleConfigSortOrder {
|
|
5
21
|
ASCENDING = "Ascending",
|
|
6
22
|
DESCENDING = "Descending"
|
|
@@ -1147,6 +1163,10 @@ export interface ListTrainingJobsRequest {
|
|
|
1147
1163
|
* <p>The sort order for results. The default is <code>Ascending</code>.</p>
|
|
1148
1164
|
*/
|
|
1149
1165
|
SortOrder?: SortOrder | string;
|
|
1166
|
+
/**
|
|
1167
|
+
* <p>A filter that retrieves only training jobs with a specific warm pool status.</p>
|
|
1168
|
+
*/
|
|
1169
|
+
WarmPoolStatusEquals?: WarmPoolResourceStatus | string;
|
|
1150
1170
|
}
|
|
1151
1171
|
/**
|
|
1152
1172
|
* <p>Provides summary information about a training job.</p>
|
|
@@ -1178,6 +1198,10 @@ export interface TrainingJobSummary {
|
|
|
1178
1198
|
* <p>The status of the training job.</p>
|
|
1179
1199
|
*/
|
|
1180
1200
|
TrainingJobStatus: TrainingJobStatus | string | undefined;
|
|
1201
|
+
/**
|
|
1202
|
+
* <p>The status of the warm pool associated with the training job.</p>
|
|
1203
|
+
*/
|
|
1204
|
+
WarmPoolStatus?: WarmPoolStatus;
|
|
1181
1205
|
}
|
|
1182
1206
|
export interface ListTrainingJobsResponse {
|
|
1183
1207
|
/**
|
|
@@ -2491,6 +2515,15 @@ export interface RenderUiTemplateResponse {
|
|
|
2491
2515
|
*/
|
|
2492
2516
|
Errors: RenderingError[] | undefined;
|
|
2493
2517
|
}
|
|
2518
|
+
/**
|
|
2519
|
+
* <p>The <code>ResourceConfig</code> to update <code>KeepAlivePeriodInSeconds</code>. Other fields in the <code>ResourceConfig</code> cannot be updated.</p>
|
|
2520
|
+
*/
|
|
2521
|
+
export interface ResourceConfigForUpdate {
|
|
2522
|
+
/**
|
|
2523
|
+
* <p>The <code>KeepAlivePeriodInSeconds</code> value specified in the <code>ResourceConfig</code> to update.</p>
|
|
2524
|
+
*/
|
|
2525
|
+
KeepAlivePeriodInSeconds: number | undefined;
|
|
2526
|
+
}
|
|
2494
2527
|
export interface RetryPipelineExecutionRequest {
|
|
2495
2528
|
/**
|
|
2496
2529
|
* <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
|
|
@@ -4119,6 +4152,10 @@ export interface UpdateTrainingJobRequest {
|
|
|
4119
4152
|
* metrics.</p>
|
|
4120
4153
|
*/
|
|
4121
4154
|
ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
|
|
4155
|
+
/**
|
|
4156
|
+
* <p>The training job <code>ResourceConfig</code> to update warm pool retention length.</p>
|
|
4157
|
+
*/
|
|
4158
|
+
ResourceConfig?: ResourceConfigForUpdate;
|
|
4122
4159
|
}
|
|
4123
4160
|
export interface UpdateTrainingJobResponse {
|
|
4124
4161
|
/**
|
|
@@ -4374,6 +4411,10 @@ export interface SearchRequest {
|
|
|
4374
4411
|
*/
|
|
4375
4412
|
MaxResults?: number;
|
|
4376
4413
|
}
|
|
4414
|
+
/**
|
|
4415
|
+
* @internal
|
|
4416
|
+
*/
|
|
4417
|
+
export declare const ListMonitoringSchedulesResponseFilterSensitiveLog: (obj: ListMonitoringSchedulesResponse) => any;
|
|
4377
4418
|
/**
|
|
4378
4419
|
* @internal
|
|
4379
4420
|
*/
|
|
@@ -4702,6 +4743,10 @@ export declare const RenderUiTemplateRequestFilterSensitiveLog: (obj: RenderUiTe
|
|
|
4702
4743
|
* @internal
|
|
4703
4744
|
*/
|
|
4704
4745
|
export declare const RenderUiTemplateResponseFilterSensitiveLog: (obj: RenderUiTemplateResponse) => any;
|
|
4746
|
+
/**
|
|
4747
|
+
* @internal
|
|
4748
|
+
*/
|
|
4749
|
+
export declare const ResourceConfigForUpdateFilterSensitiveLog: (obj: ResourceConfigForUpdate) => any;
|
|
4705
4750
|
/**
|
|
4706
4751
|
* @internal
|
|
4707
4752
|
*/
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
MetadataBearer as __MetadataBearer,
|
|
6
6
|
MiddlewareStack,
|
|
7
7
|
} from "@aws-sdk/types";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
ListMonitoringSchedulesResponse,
|
|
11
|
-
} from "../models/models_2";
|
|
8
|
+
import { ListMonitoringSchedulesRequest } from "../models/models_2";
|
|
9
|
+
import { ListMonitoringSchedulesResponse } from "../models/models_3";
|
|
12
10
|
import {
|
|
13
11
|
SageMakerClientResolvedConfig,
|
|
14
12
|
ServiceInputTypes,
|
|
@@ -386,6 +386,7 @@ export interface ResourceConfig {
|
|
|
386
386
|
VolumeSizeInGB: number | undefined;
|
|
387
387
|
VolumeKmsKeyId?: string;
|
|
388
388
|
InstanceGroups?: InstanceGroup[];
|
|
389
|
+
KeepAlivePeriodInSeconds?: number;
|
|
389
390
|
}
|
|
390
391
|
export interface StoppingCondition {
|
|
391
392
|
MaxRuntimeInSeconds?: number;
|
|
@@ -844,6 +844,17 @@ export interface SecondaryStatusTransition {
|
|
|
844
844
|
EndTime?: Date;
|
|
845
845
|
StatusMessage?: string;
|
|
846
846
|
}
|
|
847
|
+
export declare enum WarmPoolResourceStatus {
|
|
848
|
+
AVAILABLE = "Available",
|
|
849
|
+
INUSE = "InUse",
|
|
850
|
+
REUSED = "Reused",
|
|
851
|
+
TERMINATED = "Terminated",
|
|
852
|
+
}
|
|
853
|
+
export interface WarmPoolStatus {
|
|
854
|
+
Status: WarmPoolResourceStatus | string | undefined;
|
|
855
|
+
ResourceRetainedBillableTimeInSeconds?: number;
|
|
856
|
+
ReusedByJob?: string;
|
|
857
|
+
}
|
|
847
858
|
export interface DescribeTrainingJobResponse {
|
|
848
859
|
TrainingJobName: string | undefined;
|
|
849
860
|
TrainingJobArn: string | undefined;
|
|
@@ -885,6 +896,7 @@ export interface DescribeTrainingJobResponse {
|
|
|
885
896
|
ProfilingStatus?: ProfilingStatus | string;
|
|
886
897
|
RetryStrategy?: RetryStrategy;
|
|
887
898
|
Environment?: Record<string, string>;
|
|
899
|
+
WarmPoolStatus?: WarmPoolStatus;
|
|
888
900
|
}
|
|
889
901
|
export interface DescribeTransformJobRequest {
|
|
890
902
|
TransformJobName: string | undefined;
|
|
@@ -2243,15 +2255,6 @@ export interface MonitoringScheduleSummary {
|
|
|
2243
2255
|
MonitoringJobDefinitionName?: string;
|
|
2244
2256
|
MonitoringType?: MonitoringType | string;
|
|
2245
2257
|
}
|
|
2246
|
-
export interface ListMonitoringSchedulesResponse {
|
|
2247
|
-
MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
|
|
2248
|
-
NextToken?: string;
|
|
2249
|
-
}
|
|
2250
|
-
export declare enum NotebookInstanceLifecycleConfigSortKey {
|
|
2251
|
-
CREATION_TIME = "CreationTime",
|
|
2252
|
-
LAST_MODIFIED_TIME = "LastModifiedTime",
|
|
2253
|
-
NAME = "Name",
|
|
2254
|
-
}
|
|
2255
2258
|
export declare const OfflineStoreStatusFilterSensitiveLog: (
|
|
2256
2259
|
obj: OfflineStoreStatus
|
|
2257
2260
|
) => any;
|
|
@@ -2475,6 +2478,9 @@ export declare const ProfilerRuleEvaluationStatusFilterSensitiveLog: (
|
|
|
2475
2478
|
export declare const SecondaryStatusTransitionFilterSensitiveLog: (
|
|
2476
2479
|
obj: SecondaryStatusTransition
|
|
2477
2480
|
) => any;
|
|
2481
|
+
export declare const WarmPoolStatusFilterSensitiveLog: (
|
|
2482
|
+
obj: WarmPoolStatus
|
|
2483
|
+
) => any;
|
|
2478
2484
|
export declare const DescribeTrainingJobResponseFilterSensitiveLog: (
|
|
2479
2485
|
obj: DescribeTrainingJobResponse
|
|
2480
2486
|
) => any;
|
|
@@ -2938,6 +2944,3 @@ export declare const ListMonitoringSchedulesRequestFilterSensitiveLog: (
|
|
|
2938
2944
|
export declare const MonitoringScheduleSummaryFilterSensitiveLog: (
|
|
2939
2945
|
obj: MonitoringScheduleSummary
|
|
2940
2946
|
) => any;
|
|
2941
|
-
export declare const ListMonitoringSchedulesResponseFilterSensitiveLog: (
|
|
2942
|
-
obj: ListMonitoringSchedulesResponse
|
|
2943
|
-
) => any;
|
|
@@ -95,7 +95,7 @@ import {
|
|
|
95
95
|
MetricData,
|
|
96
96
|
ModelPackageGroupStatus,
|
|
97
97
|
ModelPackageStatusDetails,
|
|
98
|
-
|
|
98
|
+
MonitoringScheduleSummary,
|
|
99
99
|
NotebookInstanceStatus,
|
|
100
100
|
PipelineExecutionStatus,
|
|
101
101
|
PipelineExperimentConfig,
|
|
@@ -115,9 +115,20 @@ import {
|
|
|
115
115
|
TrialComponentSource,
|
|
116
116
|
TrialSource,
|
|
117
117
|
UserProfileStatus,
|
|
118
|
+
WarmPoolResourceStatus,
|
|
119
|
+
WarmPoolStatus,
|
|
118
120
|
Workforce,
|
|
119
121
|
Workteam,
|
|
120
122
|
} from "./models_2";
|
|
123
|
+
export interface ListMonitoringSchedulesResponse {
|
|
124
|
+
MonitoringScheduleSummaries: MonitoringScheduleSummary[] | undefined;
|
|
125
|
+
NextToken?: string;
|
|
126
|
+
}
|
|
127
|
+
export declare enum NotebookInstanceLifecycleConfigSortKey {
|
|
128
|
+
CREATION_TIME = "CreationTime",
|
|
129
|
+
LAST_MODIFIED_TIME = "LastModifiedTime",
|
|
130
|
+
NAME = "Name",
|
|
131
|
+
}
|
|
121
132
|
export declare enum NotebookInstanceLifecycleConfigSortOrder {
|
|
122
133
|
ASCENDING = "Ascending",
|
|
123
134
|
DESCENDING = "Descending",
|
|
@@ -446,6 +457,7 @@ export interface ListTrainingJobsRequest {
|
|
|
446
457
|
StatusEquals?: TrainingJobStatus | string;
|
|
447
458
|
SortBy?: SortBy | string;
|
|
448
459
|
SortOrder?: SortOrder | string;
|
|
460
|
+
WarmPoolStatusEquals?: WarmPoolResourceStatus | string;
|
|
449
461
|
}
|
|
450
462
|
export interface TrainingJobSummary {
|
|
451
463
|
TrainingJobName: string | undefined;
|
|
@@ -454,6 +466,7 @@ export interface TrainingJobSummary {
|
|
|
454
466
|
TrainingEndTime?: Date;
|
|
455
467
|
LastModifiedTime?: Date;
|
|
456
468
|
TrainingJobStatus: TrainingJobStatus | string | undefined;
|
|
469
|
+
WarmPoolStatus?: WarmPoolStatus;
|
|
457
470
|
}
|
|
458
471
|
export interface ListTrainingJobsResponse {
|
|
459
472
|
TrainingJobSummaries: TrainingJobSummary[] | undefined;
|
|
@@ -789,6 +802,9 @@ export interface RenderUiTemplateResponse {
|
|
|
789
802
|
RenderedContent: string | undefined;
|
|
790
803
|
Errors: RenderingError[] | undefined;
|
|
791
804
|
}
|
|
805
|
+
export interface ResourceConfigForUpdate {
|
|
806
|
+
KeepAlivePeriodInSeconds: number | undefined;
|
|
807
|
+
}
|
|
792
808
|
export interface RetryPipelineExecutionRequest {
|
|
793
809
|
PipelineExecutionArn: string | undefined;
|
|
794
810
|
ClientRequestToken?: string;
|
|
@@ -1210,6 +1226,7 @@ export interface UpdateTrainingJobRequest {
|
|
|
1210
1226
|
TrainingJobName: string | undefined;
|
|
1211
1227
|
ProfilerConfig?: ProfilerConfigForUpdate;
|
|
1212
1228
|
ProfilerRuleConfigurations?: ProfilerRuleConfiguration[];
|
|
1229
|
+
ResourceConfig?: ResourceConfigForUpdate;
|
|
1213
1230
|
}
|
|
1214
1231
|
export interface UpdateTrainingJobResponse {
|
|
1215
1232
|
TrainingJobArn: string | undefined;
|
|
@@ -1277,6 +1294,9 @@ export interface SearchRequest {
|
|
|
1277
1294
|
NextToken?: string;
|
|
1278
1295
|
MaxResults?: number;
|
|
1279
1296
|
}
|
|
1297
|
+
export declare const ListMonitoringSchedulesResponseFilterSensitiveLog: (
|
|
1298
|
+
obj: ListMonitoringSchedulesResponse
|
|
1299
|
+
) => any;
|
|
1280
1300
|
export declare const ListNotebookInstanceLifecycleConfigsInputFilterSensitiveLog: (
|
|
1281
1301
|
obj: ListNotebookInstanceLifecycleConfigsInput
|
|
1282
1302
|
) => any;
|
|
@@ -1507,6 +1527,9 @@ export declare const RenderUiTemplateRequestFilterSensitiveLog: (
|
|
|
1507
1527
|
export declare const RenderUiTemplateResponseFilterSensitiveLog: (
|
|
1508
1528
|
obj: RenderUiTemplateResponse
|
|
1509
1529
|
) => any;
|
|
1530
|
+
export declare const ResourceConfigForUpdateFilterSensitiveLog: (
|
|
1531
|
+
obj: ResourceConfigForUpdate
|
|
1532
|
+
) => any;
|
|
1510
1533
|
export declare const RetryPipelineExecutionRequestFilterSensitiveLog: (
|
|
1511
1534
|
obj: RetryPipelineExecutionRequest
|
|
1512
1535
|
) => any;
|
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.181.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",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.181.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.178.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.181.0",
|
|
25
25
|
"@aws-sdk/fetch-http-handler": "3.178.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.178.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.178.0",
|