@aws-sdk/client-sagemaker 3.858.0 → 3.860.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/README.md +16 -0
- package/dist-cjs/index.js +111 -8
- package/dist-es/SageMaker.js +4 -0
- package/dist-es/commands/AttachClusterNodeVolumeCommand.js +22 -0
- package/dist-es/commands/DetachClusterNodeVolumeCommand.js +22 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +7 -8
- package/dist-es/models/models_1.js +8 -0
- package/dist-es/models/models_4.js +0 -4
- package/dist-es/models/models_5.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +58 -0
- package/dist-types/SageMaker.d.ts +14 -0
- package/dist-types/SageMakerClient.d.ts +4 -2
- package/dist-types/commands/AttachClusterNodeVolumeCommand.d.ts +82 -0
- package/dist-types/commands/DetachClusterNodeVolumeCommand.d.ts +82 -0
- package/dist-types/commands/ListActionsCommand.d.ts +2 -1
- package/dist-types/commands/ListAlgorithmsCommand.d.ts +1 -1
- package/dist-types/commands/ListAliasesCommand.d.ts +1 -1
- package/dist-types/commands/RetryPipelineExecutionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +70 -40
- package/dist-types/models/models_1.d.ts +42 -50
- package/dist-types/models/models_2.d.ts +49 -124
- package/dist-types/models/models_3.d.ts +181 -118
- package/dist-types/models/models_4.d.ts +118 -72
- package/dist-types/models/models_5.d.ts +72 -3
- package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
- package/dist-types/ts3.4/SageMaker.d.ts +34 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/AttachClusterNodeVolumeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DetachClusterNodeVolumeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListActionsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListAlgorithmsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RetryPipelineExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -16
- package/dist-types/ts3.4/models/models_1.d.ts +17 -15
- package/dist-types/ts3.4/models/models_2.d.ts +12 -34
- package/dist-types/ts3.4/models/models_3.d.ts +43 -34
- package/dist-types/ts3.4/models/models_4.d.ts +32 -22
- package/dist-types/ts3.4/models/models_5.d.ts +22 -4
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
- package/package.json +2 -2
|
@@ -1316,6 +1316,28 @@ export interface AthenaDatasetDefinition {
|
|
|
1316
1316
|
OutputFormat: AthenaResultFormat | undefined;
|
|
1317
1317
|
OutputCompression?: AthenaResultCompressionType | undefined;
|
|
1318
1318
|
}
|
|
1319
|
+
export interface AttachClusterNodeVolumeRequest {
|
|
1320
|
+
ClusterArn: string | undefined;
|
|
1321
|
+
NodeId: string | undefined;
|
|
1322
|
+
VolumeId: string | undefined;
|
|
1323
|
+
}
|
|
1324
|
+
export declare const VolumeAttachmentStatus: {
|
|
1325
|
+
readonly ATTACHED: "attached";
|
|
1326
|
+
readonly ATTACHING: "attaching";
|
|
1327
|
+
readonly BUSY: "busy";
|
|
1328
|
+
readonly DETACHED: "detached";
|
|
1329
|
+
readonly DETACHING: "detaching";
|
|
1330
|
+
};
|
|
1331
|
+
export type VolumeAttachmentStatus =
|
|
1332
|
+
(typeof VolumeAttachmentStatus)[keyof typeof VolumeAttachmentStatus];
|
|
1333
|
+
export interface AttachClusterNodeVolumeResponse {
|
|
1334
|
+
ClusterArn: string | undefined;
|
|
1335
|
+
NodeId: string | undefined;
|
|
1336
|
+
VolumeId: string | undefined;
|
|
1337
|
+
AttachTime: Date | undefined;
|
|
1338
|
+
Status: VolumeAttachmentStatus | undefined;
|
|
1339
|
+
DeviceName: string | undefined;
|
|
1340
|
+
}
|
|
1319
1341
|
export declare const AuthMode: {
|
|
1320
1342
|
readonly IAM: "IAM";
|
|
1321
1343
|
readonly SSO: "SSO";
|
|
@@ -2800,19 +2822,3 @@ export interface CompilationJobSummary {
|
|
|
2800
2822
|
LastModifiedTime?: Date | undefined;
|
|
2801
2823
|
CompilationJobStatus: CompilationJobStatus | undefined;
|
|
2802
2824
|
}
|
|
2803
|
-
export declare const CompleteOnConvergence: {
|
|
2804
|
-
readonly DISABLED: "Disabled";
|
|
2805
|
-
readonly ENABLED: "Enabled";
|
|
2806
|
-
};
|
|
2807
|
-
export type CompleteOnConvergence =
|
|
2808
|
-
(typeof CompleteOnConvergence)[keyof typeof CompleteOnConvergence];
|
|
2809
|
-
export interface ComputeQuotaResourceConfig {
|
|
2810
|
-
InstanceType: ClusterInstanceType | undefined;
|
|
2811
|
-
Count?: number | undefined;
|
|
2812
|
-
}
|
|
2813
|
-
export declare const PreemptTeamTasks: {
|
|
2814
|
-
readonly LOWERPRIORITY: "LowerPriority";
|
|
2815
|
-
readonly NEVER: "Never";
|
|
2816
|
-
};
|
|
2817
|
-
export type PreemptTeamTasks =
|
|
2818
|
-
(typeof PreemptTeamTasks)[keyof typeof PreemptTeamTasks];
|
|
@@ -50,6 +50,7 @@ import {
|
|
|
50
50
|
CheckpointConfig,
|
|
51
51
|
ClarifyExplainerConfig,
|
|
52
52
|
ClusterInstanceGroupSpecification,
|
|
53
|
+
ClusterInstanceType,
|
|
53
54
|
ClusterNodeRecovery,
|
|
54
55
|
ClusterOrchestrator,
|
|
55
56
|
ClusterRestrictedInstanceGroupSpecification,
|
|
@@ -58,8 +59,6 @@ import {
|
|
|
58
59
|
CodeRepository,
|
|
59
60
|
CollectionConfig,
|
|
60
61
|
CollectionType,
|
|
61
|
-
CompleteOnConvergence,
|
|
62
|
-
ComputeQuotaResourceConfig,
|
|
63
62
|
CustomImage,
|
|
64
63
|
FeatureStatus,
|
|
65
64
|
GitConfig,
|
|
@@ -70,7 +69,6 @@ import {
|
|
|
70
69
|
MetricsSource,
|
|
71
70
|
ModelDataSource,
|
|
72
71
|
OutputDataConfig,
|
|
73
|
-
PreemptTeamTasks,
|
|
74
72
|
ProblemType,
|
|
75
73
|
ProcessingS3DataDistributionType,
|
|
76
74
|
ProcessingS3InputMode,
|
|
@@ -89,6 +87,22 @@ import {
|
|
|
89
87
|
VpcConfig,
|
|
90
88
|
} from "./models_0";
|
|
91
89
|
import { SageMakerServiceException as __BaseException } from "./SageMakerServiceException";
|
|
90
|
+
export declare const CompleteOnConvergence: {
|
|
91
|
+
readonly DISABLED: "Disabled";
|
|
92
|
+
readonly ENABLED: "Enabled";
|
|
93
|
+
};
|
|
94
|
+
export type CompleteOnConvergence =
|
|
95
|
+
(typeof CompleteOnConvergence)[keyof typeof CompleteOnConvergence];
|
|
96
|
+
export interface ComputeQuotaResourceConfig {
|
|
97
|
+
InstanceType: ClusterInstanceType | undefined;
|
|
98
|
+
Count?: number | undefined;
|
|
99
|
+
}
|
|
100
|
+
export declare const PreemptTeamTasks: {
|
|
101
|
+
readonly LOWERPRIORITY: "LowerPriority";
|
|
102
|
+
readonly NEVER: "Never";
|
|
103
|
+
};
|
|
104
|
+
export type PreemptTeamTasks =
|
|
105
|
+
(typeof PreemptTeamTasks)[keyof typeof PreemptTeamTasks];
|
|
92
106
|
export declare const ResourceSharingStrategy: {
|
|
93
107
|
readonly DONTLEND: "DontLend";
|
|
94
108
|
readonly LEND: "Lend";
|
|
@@ -2152,18 +2166,6 @@ export interface ModelPackageModelCard {
|
|
|
2152
2166
|
ModelCardContent?: string | undefined;
|
|
2153
2167
|
ModelCardStatus?: ModelCardStatus | undefined;
|
|
2154
2168
|
}
|
|
2155
|
-
export interface ModelLifeCycle {
|
|
2156
|
-
Stage: string | undefined;
|
|
2157
|
-
StageStatus: string | undefined;
|
|
2158
|
-
StageDescription?: string | undefined;
|
|
2159
|
-
}
|
|
2160
|
-
export interface Explainability {
|
|
2161
|
-
Report?: MetricsSource | undefined;
|
|
2162
|
-
}
|
|
2163
|
-
export interface ModelDataQuality {
|
|
2164
|
-
Statistics?: MetricsSource | undefined;
|
|
2165
|
-
Constraints?: MetricsSource | undefined;
|
|
2166
|
-
}
|
|
2167
2169
|
export declare const CreateModelCardRequestFilterSensitiveLog: (
|
|
2168
2170
|
obj: CreateModelCardRequest
|
|
2169
2171
|
) => any;
|
|
@@ -94,15 +94,12 @@ import {
|
|
|
94
94
|
EdgeOutputConfig,
|
|
95
95
|
EdgePresetDeploymentType,
|
|
96
96
|
EndpointInput,
|
|
97
|
-
Explainability,
|
|
98
97
|
HubContentType,
|
|
99
98
|
InputConfig,
|
|
100
99
|
JupyterServerAppSettings,
|
|
101
100
|
KernelGatewayAppSettings,
|
|
102
101
|
MetadataProperties,
|
|
103
|
-
ModelDataQuality,
|
|
104
102
|
ModelDeployConfig,
|
|
105
|
-
ModelLifeCycle,
|
|
106
103
|
ModelPackageModelCard,
|
|
107
104
|
MonitoringConstraintsResource,
|
|
108
105
|
MonitoringGroundTruthS3Input,
|
|
@@ -115,16 +112,24 @@ import {
|
|
|
115
112
|
OutputConfig,
|
|
116
113
|
ProcessingInstanceType,
|
|
117
114
|
ProcessingS3UploadMode,
|
|
118
|
-
ProductionVariantAcceleratorType,
|
|
119
|
-
ProductionVariantManagedInstanceScaling,
|
|
120
|
-
ProductionVariantRoutingConfig,
|
|
121
|
-
ProductionVariantServerlessConfig,
|
|
122
115
|
RetryStrategy,
|
|
123
116
|
SchedulerConfig,
|
|
124
117
|
TagPropagation,
|
|
125
118
|
TrainingSpecification,
|
|
126
119
|
UserSettings,
|
|
127
120
|
} from "./models_1";
|
|
121
|
+
export interface ModelLifeCycle {
|
|
122
|
+
Stage: string | undefined;
|
|
123
|
+
StageStatus: string | undefined;
|
|
124
|
+
StageDescription?: string | undefined;
|
|
125
|
+
}
|
|
126
|
+
export interface Explainability {
|
|
127
|
+
Report?: MetricsSource | undefined;
|
|
128
|
+
}
|
|
129
|
+
export interface ModelDataQuality {
|
|
130
|
+
Statistics?: MetricsSource | undefined;
|
|
131
|
+
Constraints?: MetricsSource | undefined;
|
|
132
|
+
}
|
|
128
133
|
export interface ModelQuality {
|
|
129
134
|
Statistics?: MetricsSource | undefined;
|
|
130
135
|
Constraints?: MetricsSource | undefined;
|
|
@@ -1894,33 +1899,6 @@ export interface ProductionVariantStatus {
|
|
|
1894
1899
|
StatusMessage?: string | undefined;
|
|
1895
1900
|
StartTime?: Date | undefined;
|
|
1896
1901
|
}
|
|
1897
|
-
export interface PendingProductionVariantSummary {
|
|
1898
|
-
VariantName: string | undefined;
|
|
1899
|
-
DeployedImages?: DeployedImage[] | undefined;
|
|
1900
|
-
CurrentWeight?: number | undefined;
|
|
1901
|
-
DesiredWeight?: number | undefined;
|
|
1902
|
-
CurrentInstanceCount?: number | undefined;
|
|
1903
|
-
DesiredInstanceCount?: number | undefined;
|
|
1904
|
-
InstanceType?: ProductionVariantInstanceType | undefined;
|
|
1905
|
-
AcceleratorType?: ProductionVariantAcceleratorType | undefined;
|
|
1906
|
-
VariantStatus?: ProductionVariantStatus[] | undefined;
|
|
1907
|
-
CurrentServerlessConfig?: ProductionVariantServerlessConfig | undefined;
|
|
1908
|
-
DesiredServerlessConfig?: ProductionVariantServerlessConfig | undefined;
|
|
1909
|
-
ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling | undefined;
|
|
1910
|
-
RoutingConfig?: ProductionVariantRoutingConfig | undefined;
|
|
1911
|
-
}
|
|
1912
|
-
export interface PendingDeploymentSummary {
|
|
1913
|
-
EndpointConfigName: string | undefined;
|
|
1914
|
-
ProductionVariants?: PendingProductionVariantSummary[] | undefined;
|
|
1915
|
-
StartTime?: Date | undefined;
|
|
1916
|
-
ShadowProductionVariants?: PendingProductionVariantSummary[] | undefined;
|
|
1917
|
-
}
|
|
1918
|
-
export interface Ec2CapacityReservation {
|
|
1919
|
-
Ec2CapacityReservationId?: string | undefined;
|
|
1920
|
-
TotalInstanceCount?: number | undefined;
|
|
1921
|
-
AvailableInstanceCount?: number | undefined;
|
|
1922
|
-
UsedByCurrentEndpoint?: number | undefined;
|
|
1923
|
-
}
|
|
1924
1902
|
export declare const CreateModelPackageInputFilterSensitiveLog: (
|
|
1925
1903
|
obj: CreateModelPackageInput
|
|
1926
1904
|
) => any;
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
|
-
ActionSummary,
|
|
3
2
|
AdditionalInferenceSpecificationDefinition,
|
|
4
3
|
AgentVersion,
|
|
5
|
-
AlgorithmSortBy,
|
|
6
4
|
AlgorithmSpecification,
|
|
7
|
-
AlgorithmSummary,
|
|
8
5
|
AmazonQSettings,
|
|
9
6
|
AppSpecification,
|
|
10
7
|
AssociationEdgeType,
|
|
@@ -33,6 +30,7 @@ import {
|
|
|
33
30
|
TransformOutput,
|
|
34
31
|
TransformResources,
|
|
35
32
|
UserContext,
|
|
33
|
+
VolumeAttachmentStatus,
|
|
36
34
|
VpcConfig,
|
|
37
35
|
} from "./models_0";
|
|
38
36
|
import {
|
|
@@ -82,7 +80,6 @@ import {
|
|
|
82
80
|
ModelExplainabilityBaselineConfig,
|
|
83
81
|
ModelExplainabilityJobInput,
|
|
84
82
|
ModelInfrastructureConfig,
|
|
85
|
-
ModelLifeCycle,
|
|
86
83
|
ModelPackageModelCard,
|
|
87
84
|
MonitoringNetworkConfig,
|
|
88
85
|
MonitoringOutputConfig,
|
|
@@ -92,6 +89,7 @@ import {
|
|
|
92
89
|
OnlineStoreConfig,
|
|
93
90
|
Processor,
|
|
94
91
|
ProductionVariant,
|
|
92
|
+
ProductionVariantAcceleratorType,
|
|
95
93
|
ProductionVariantManagedInstanceScaling,
|
|
96
94
|
ProductionVariantRoutingConfig,
|
|
97
95
|
ProductionVariantServerlessConfig,
|
|
@@ -118,7 +116,6 @@ import {
|
|
|
118
116
|
DeploymentRecommendation,
|
|
119
117
|
DirectInternetAccess,
|
|
120
118
|
DomainStatus,
|
|
121
|
-
Ec2CapacityReservation,
|
|
122
119
|
EdgePackagingJobStatus,
|
|
123
120
|
EndpointStatus,
|
|
124
121
|
ExperimentConfig,
|
|
@@ -127,6 +124,7 @@ import {
|
|
|
127
124
|
MemberDefinition,
|
|
128
125
|
ModelArtifacts,
|
|
129
126
|
ModelClientConfig,
|
|
127
|
+
ModelLifeCycle,
|
|
130
128
|
ModelMetrics,
|
|
131
129
|
ModelPackageSecurityConfig,
|
|
132
130
|
ModelPackageValidationSpecification,
|
|
@@ -150,7 +148,6 @@ import {
|
|
|
150
148
|
PartnerAppConfig,
|
|
151
149
|
PartnerAppMaintenanceConfig,
|
|
152
150
|
PartnerAppType,
|
|
153
|
-
PendingDeploymentSummary,
|
|
154
151
|
ProcessingInput,
|
|
155
152
|
ProcessingOutputConfig,
|
|
156
153
|
ProcessingResources,
|
|
@@ -175,6 +172,33 @@ import {
|
|
|
175
172
|
WorkerAccessConfiguration,
|
|
176
173
|
WorkforceIpAddressType,
|
|
177
174
|
} from "./models_2";
|
|
175
|
+
export interface PendingProductionVariantSummary {
|
|
176
|
+
VariantName: string | undefined;
|
|
177
|
+
DeployedImages?: DeployedImage[] | undefined;
|
|
178
|
+
CurrentWeight?: number | undefined;
|
|
179
|
+
DesiredWeight?: number | undefined;
|
|
180
|
+
CurrentInstanceCount?: number | undefined;
|
|
181
|
+
DesiredInstanceCount?: number | undefined;
|
|
182
|
+
InstanceType?: ProductionVariantInstanceType | undefined;
|
|
183
|
+
AcceleratorType?: ProductionVariantAcceleratorType | undefined;
|
|
184
|
+
VariantStatus?: ProductionVariantStatus[] | undefined;
|
|
185
|
+
CurrentServerlessConfig?: ProductionVariantServerlessConfig | undefined;
|
|
186
|
+
DesiredServerlessConfig?: ProductionVariantServerlessConfig | undefined;
|
|
187
|
+
ManagedInstanceScaling?: ProductionVariantManagedInstanceScaling | undefined;
|
|
188
|
+
RoutingConfig?: ProductionVariantRoutingConfig | undefined;
|
|
189
|
+
}
|
|
190
|
+
export interface PendingDeploymentSummary {
|
|
191
|
+
EndpointConfigName: string | undefined;
|
|
192
|
+
ProductionVariants?: PendingProductionVariantSummary[] | undefined;
|
|
193
|
+
StartTime?: Date | undefined;
|
|
194
|
+
ShadowProductionVariants?: PendingProductionVariantSummary[] | undefined;
|
|
195
|
+
}
|
|
196
|
+
export interface Ec2CapacityReservation {
|
|
197
|
+
Ec2CapacityReservationId?: string | undefined;
|
|
198
|
+
TotalInstanceCount?: number | undefined;
|
|
199
|
+
AvailableInstanceCount?: number | undefined;
|
|
200
|
+
UsedByCurrentEndpoint?: number | undefined;
|
|
201
|
+
}
|
|
178
202
|
export interface ProductionVariantCapacityReservationSummary {
|
|
179
203
|
MlReservationArn?: string | undefined;
|
|
180
204
|
CapacityReservationPreference?: CapacityReservationPreference | undefined;
|
|
@@ -1820,6 +1844,19 @@ export interface DesiredWeightAndCapacity {
|
|
|
1820
1844
|
DesiredInstanceCount?: number | undefined;
|
|
1821
1845
|
ServerlessUpdateConfig?: ProductionVariantServerlessUpdateConfig | undefined;
|
|
1822
1846
|
}
|
|
1847
|
+
export interface DetachClusterNodeVolumeRequest {
|
|
1848
|
+
ClusterArn: string | undefined;
|
|
1849
|
+
NodeId: string | undefined;
|
|
1850
|
+
VolumeId: string | undefined;
|
|
1851
|
+
}
|
|
1852
|
+
export interface DetachClusterNodeVolumeResponse {
|
|
1853
|
+
ClusterArn: string | undefined;
|
|
1854
|
+
NodeId: string | undefined;
|
|
1855
|
+
VolumeId: string | undefined;
|
|
1856
|
+
AttachTime: Date | undefined;
|
|
1857
|
+
Status: VolumeAttachmentStatus | undefined;
|
|
1858
|
+
DeviceName: string | undefined;
|
|
1859
|
+
}
|
|
1823
1860
|
export interface Device {
|
|
1824
1861
|
DeviceName: string | undefined;
|
|
1825
1862
|
Description?: string | undefined;
|
|
@@ -2551,34 +2588,6 @@ export interface ListActionsRequest {
|
|
|
2551
2588
|
NextToken?: string | undefined;
|
|
2552
2589
|
MaxResults?: number | undefined;
|
|
2553
2590
|
}
|
|
2554
|
-
export interface ListActionsResponse {
|
|
2555
|
-
ActionSummaries?: ActionSummary[] | undefined;
|
|
2556
|
-
NextToken?: string | undefined;
|
|
2557
|
-
}
|
|
2558
|
-
export interface ListAlgorithmsInput {
|
|
2559
|
-
CreationTimeAfter?: Date | undefined;
|
|
2560
|
-
CreationTimeBefore?: Date | undefined;
|
|
2561
|
-
MaxResults?: number | undefined;
|
|
2562
|
-
NameContains?: string | undefined;
|
|
2563
|
-
NextToken?: string | undefined;
|
|
2564
|
-
SortBy?: AlgorithmSortBy | undefined;
|
|
2565
|
-
SortOrder?: SortOrder | undefined;
|
|
2566
|
-
}
|
|
2567
|
-
export interface ListAlgorithmsOutput {
|
|
2568
|
-
AlgorithmSummaryList: AlgorithmSummary[] | undefined;
|
|
2569
|
-
NextToken?: string | undefined;
|
|
2570
|
-
}
|
|
2571
|
-
export interface ListAliasesRequest {
|
|
2572
|
-
ImageName: string | undefined;
|
|
2573
|
-
Alias?: string | undefined;
|
|
2574
|
-
Version?: number | undefined;
|
|
2575
|
-
MaxResults?: number | undefined;
|
|
2576
|
-
NextToken?: string | undefined;
|
|
2577
|
-
}
|
|
2578
|
-
export interface ListAliasesResponse {
|
|
2579
|
-
SageMakerImageVersionAliases?: string[] | undefined;
|
|
2580
|
-
NextToken?: string | undefined;
|
|
2581
|
-
}
|
|
2582
2591
|
export declare const DescribeModelCardResponseFilterSensitiveLog: (
|
|
2583
2592
|
obj: DescribeModelCardResponse
|
|
2584
2593
|
) => any;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
|
+
ActionSummary,
|
|
2
3
|
AdditionalInferenceSpecificationDefinition,
|
|
4
|
+
AlgorithmSortBy,
|
|
5
|
+
AlgorithmSummary,
|
|
3
6
|
AppDetails,
|
|
4
7
|
AppImageConfigDetails,
|
|
5
8
|
AppImageConfigSortKey,
|
|
@@ -57,7 +60,6 @@ import {
|
|
|
57
60
|
MetadataProperties,
|
|
58
61
|
ModelCardSecurityConfig,
|
|
59
62
|
ModelCardStatus,
|
|
60
|
-
ModelLifeCycle,
|
|
61
63
|
ModelPackageModelCard,
|
|
62
64
|
TtlDuration,
|
|
63
65
|
UiTemplate,
|
|
@@ -70,6 +72,7 @@ import {
|
|
|
70
72
|
EndpointStatus,
|
|
71
73
|
ExperimentConfig,
|
|
72
74
|
ModelClientConfig,
|
|
75
|
+
ModelLifeCycle,
|
|
73
76
|
ModelMetrics,
|
|
74
77
|
ModelPackageSecurityConfig,
|
|
75
78
|
ModelPackageValidationSpecification,
|
|
@@ -184,6 +187,34 @@ import {
|
|
|
184
187
|
Workforce,
|
|
185
188
|
Workteam,
|
|
186
189
|
} from "./models_3";
|
|
190
|
+
export interface ListActionsResponse {
|
|
191
|
+
ActionSummaries?: ActionSummary[] | undefined;
|
|
192
|
+
NextToken?: string | undefined;
|
|
193
|
+
}
|
|
194
|
+
export interface ListAlgorithmsInput {
|
|
195
|
+
CreationTimeAfter?: Date | undefined;
|
|
196
|
+
CreationTimeBefore?: Date | undefined;
|
|
197
|
+
MaxResults?: number | undefined;
|
|
198
|
+
NameContains?: string | undefined;
|
|
199
|
+
NextToken?: string | undefined;
|
|
200
|
+
SortBy?: AlgorithmSortBy | undefined;
|
|
201
|
+
SortOrder?: SortOrder | undefined;
|
|
202
|
+
}
|
|
203
|
+
export interface ListAlgorithmsOutput {
|
|
204
|
+
AlgorithmSummaryList: AlgorithmSummary[] | undefined;
|
|
205
|
+
NextToken?: string | undefined;
|
|
206
|
+
}
|
|
207
|
+
export interface ListAliasesRequest {
|
|
208
|
+
ImageName: string | undefined;
|
|
209
|
+
Alias?: string | undefined;
|
|
210
|
+
Version?: number | undefined;
|
|
211
|
+
MaxResults?: number | undefined;
|
|
212
|
+
NextToken?: string | undefined;
|
|
213
|
+
}
|
|
214
|
+
export interface ListAliasesResponse {
|
|
215
|
+
SageMakerImageVersionAliases?: string[] | undefined;
|
|
216
|
+
NextToken?: string | undefined;
|
|
217
|
+
}
|
|
187
218
|
export interface ListAppImageConfigsRequest {
|
|
188
219
|
MaxResults?: number | undefined;
|
|
189
220
|
NextToken?: string | undefined;
|
|
@@ -2327,26 +2358,5 @@ export interface ReservedCapacityOffering {
|
|
|
2327
2358
|
StartTime?: Date | undefined;
|
|
2328
2359
|
EndTime?: Date | undefined;
|
|
2329
2360
|
}
|
|
2330
|
-
export interface ResourceConfigForUpdate {
|
|
2331
|
-
KeepAlivePeriodInSeconds: number | undefined;
|
|
2332
|
-
}
|
|
2333
|
-
export interface RetryPipelineExecutionRequest {
|
|
2334
|
-
PipelineExecutionArn: string | undefined;
|
|
2335
|
-
ClientRequestToken?: string | undefined;
|
|
2336
|
-
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
2337
|
-
}
|
|
2338
|
-
export interface RetryPipelineExecutionResponse {
|
|
2339
|
-
PipelineExecutionArn?: string | undefined;
|
|
2340
|
-
}
|
|
2341
|
-
export declare const SearchSortOrder: {
|
|
2342
|
-
readonly ASCENDING: "Ascending";
|
|
2343
|
-
readonly DESCENDING: "Descending";
|
|
2344
|
-
};
|
|
2345
|
-
export type SearchSortOrder =
|
|
2346
|
-
(typeof SearchSortOrder)[keyof typeof SearchSortOrder];
|
|
2347
|
-
export interface VisibilityConditions {
|
|
2348
|
-
Key?: string | undefined;
|
|
2349
|
-
Value?: string | undefined;
|
|
2350
|
-
}
|
|
2351
2361
|
export declare const ModelCardFilterSensitiveLog: (obj: ModelCard) => any;
|
|
2352
2362
|
export declare const ModelPackageFilterSensitiveLog: (obj: ModelPackage) => any;
|
|
@@ -42,7 +42,6 @@ import {
|
|
|
42
42
|
JobType,
|
|
43
43
|
MetadataProperties,
|
|
44
44
|
ModelCardStatus,
|
|
45
|
-
ModelLifeCycle,
|
|
46
45
|
ModelPackageModelCard,
|
|
47
46
|
ModelVariantConfig,
|
|
48
47
|
Processor,
|
|
@@ -64,6 +63,7 @@ import {
|
|
|
64
63
|
InstanceMetadataServiceConfiguration,
|
|
65
64
|
MemberDefinition,
|
|
66
65
|
ModelArtifacts,
|
|
66
|
+
ModelLifeCycle,
|
|
67
67
|
MonitoringScheduleConfig,
|
|
68
68
|
NotebookInstanceAcceleratorType,
|
|
69
69
|
NotebookInstanceLifecycleHook,
|
|
@@ -135,11 +135,29 @@ import {
|
|
|
135
135
|
Relation,
|
|
136
136
|
RemoteDebugConfigForUpdate,
|
|
137
137
|
ReservedCapacityOffering,
|
|
138
|
-
ResourceConfigForUpdate,
|
|
139
|
-
SearchSortOrder,
|
|
140
138
|
TransformJob,
|
|
141
|
-
VisibilityConditions,
|
|
142
139
|
} from "./models_4";
|
|
140
|
+
export interface ResourceConfigForUpdate {
|
|
141
|
+
KeepAlivePeriodInSeconds: number | undefined;
|
|
142
|
+
}
|
|
143
|
+
export interface RetryPipelineExecutionRequest {
|
|
144
|
+
PipelineExecutionArn: string | undefined;
|
|
145
|
+
ClientRequestToken?: string | undefined;
|
|
146
|
+
ParallelismConfiguration?: ParallelismConfiguration | undefined;
|
|
147
|
+
}
|
|
148
|
+
export interface RetryPipelineExecutionResponse {
|
|
149
|
+
PipelineExecutionArn?: string | undefined;
|
|
150
|
+
}
|
|
151
|
+
export declare const SearchSortOrder: {
|
|
152
|
+
readonly ASCENDING: "Ascending";
|
|
153
|
+
readonly DESCENDING: "Descending";
|
|
154
|
+
};
|
|
155
|
+
export type SearchSortOrder =
|
|
156
|
+
(typeof SearchSortOrder)[keyof typeof SearchSortOrder];
|
|
157
|
+
export interface VisibilityConditions {
|
|
158
|
+
Key?: string | undefined;
|
|
159
|
+
Value?: string | undefined;
|
|
160
|
+
}
|
|
143
161
|
export interface TrainingJob {
|
|
144
162
|
TrainingJobName?: string | undefined;
|
|
145
163
|
TrainingJobArn?: string | undefined;
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
AssociateTrialComponentCommandInput,
|
|
16
16
|
AssociateTrialComponentCommandOutput,
|
|
17
17
|
} from "../commands/AssociateTrialComponentCommand";
|
|
18
|
+
import {
|
|
19
|
+
AttachClusterNodeVolumeCommandInput,
|
|
20
|
+
AttachClusterNodeVolumeCommandOutput,
|
|
21
|
+
} from "../commands/AttachClusterNodeVolumeCommand";
|
|
18
22
|
import {
|
|
19
23
|
BatchDeleteClusterNodesCommandInput,
|
|
20
24
|
BatchDeleteClusterNodesCommandOutput,
|
|
@@ -779,6 +783,10 @@ import {
|
|
|
779
783
|
DescribeWorkteamCommandInput,
|
|
780
784
|
DescribeWorkteamCommandOutput,
|
|
781
785
|
} from "../commands/DescribeWorkteamCommand";
|
|
786
|
+
import {
|
|
787
|
+
DetachClusterNodeVolumeCommandInput,
|
|
788
|
+
DetachClusterNodeVolumeCommandOutput,
|
|
789
|
+
} from "../commands/DetachClusterNodeVolumeCommand";
|
|
782
790
|
import {
|
|
783
791
|
DisableSagemakerServicecatalogPortfolioCommandInput,
|
|
784
792
|
DisableSagemakerServicecatalogPortfolioCommandOutput,
|
|
@@ -1463,6 +1471,10 @@ export declare const se_AssociateTrialComponentCommand: (
|
|
|
1463
1471
|
input: AssociateTrialComponentCommandInput,
|
|
1464
1472
|
context: __SerdeContext
|
|
1465
1473
|
) => Promise<__HttpRequest>;
|
|
1474
|
+
export declare const se_AttachClusterNodeVolumeCommand: (
|
|
1475
|
+
input: AttachClusterNodeVolumeCommandInput,
|
|
1476
|
+
context: __SerdeContext
|
|
1477
|
+
) => Promise<__HttpRequest>;
|
|
1466
1478
|
export declare const se_BatchDeleteClusterNodesCommand: (
|
|
1467
1479
|
input: BatchDeleteClusterNodesCommandInput,
|
|
1468
1480
|
context: __SerdeContext
|
|
@@ -2227,6 +2239,10 @@ export declare const se_DescribeWorkteamCommand: (
|
|
|
2227
2239
|
input: DescribeWorkteamCommandInput,
|
|
2228
2240
|
context: __SerdeContext
|
|
2229
2241
|
) => Promise<__HttpRequest>;
|
|
2242
|
+
export declare const se_DetachClusterNodeVolumeCommand: (
|
|
2243
|
+
input: DetachClusterNodeVolumeCommandInput,
|
|
2244
|
+
context: __SerdeContext
|
|
2245
|
+
) => Promise<__HttpRequest>;
|
|
2230
2246
|
export declare const se_DisableSagemakerServicecatalogPortfolioCommand: (
|
|
2231
2247
|
input: DisableSagemakerServicecatalogPortfolioCommandInput,
|
|
2232
2248
|
context: __SerdeContext
|
|
@@ -2911,6 +2927,10 @@ export declare const de_AssociateTrialComponentCommand: (
|
|
|
2911
2927
|
output: __HttpResponse,
|
|
2912
2928
|
context: __SerdeContext
|
|
2913
2929
|
) => Promise<AssociateTrialComponentCommandOutput>;
|
|
2930
|
+
export declare const de_AttachClusterNodeVolumeCommand: (
|
|
2931
|
+
output: __HttpResponse,
|
|
2932
|
+
context: __SerdeContext
|
|
2933
|
+
) => Promise<AttachClusterNodeVolumeCommandOutput>;
|
|
2914
2934
|
export declare const de_BatchDeleteClusterNodesCommand: (
|
|
2915
2935
|
output: __HttpResponse,
|
|
2916
2936
|
context: __SerdeContext
|
|
@@ -3675,6 +3695,10 @@ export declare const de_DescribeWorkteamCommand: (
|
|
|
3675
3695
|
output: __HttpResponse,
|
|
3676
3696
|
context: __SerdeContext
|
|
3677
3697
|
) => Promise<DescribeWorkteamCommandOutput>;
|
|
3698
|
+
export declare const de_DetachClusterNodeVolumeCommand: (
|
|
3699
|
+
output: __HttpResponse,
|
|
3700
|
+
context: __SerdeContext
|
|
3701
|
+
) => Promise<DetachClusterNodeVolumeCommandOutput>;
|
|
3678
3702
|
export declare const de_DisableSagemakerServicecatalogPortfolioCommand: (
|
|
3679
3703
|
output: __HttpResponse,
|
|
3680
3704
|
context: __SerdeContext
|
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.860.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.858.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.859.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|