@aws-sdk/client-sagemaker 3.940.0 → 3.943.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.
Files changed (91) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/index.js +277 -12
  3. package/dist-es/SageMaker.js +12 -0
  4. package/dist-es/commands/CreateMlflowAppCommand.js +16 -0
  5. package/dist-es/commands/CreatePresignedMlflowAppUrlCommand.js +16 -0
  6. package/dist-es/commands/DeleteMlflowAppCommand.js +16 -0
  7. package/dist-es/commands/DescribeMlflowAppCommand.js +16 -0
  8. package/dist-es/commands/ListMlflowAppsCommand.js +16 -0
  9. package/dist-es/commands/UpdateMlflowAppCommand.js +16 -0
  10. package/dist-es/commands/index.js +6 -0
  11. package/dist-es/models/enums.js +37 -0
  12. package/dist-es/pagination/ListMlflowAppsPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/schemas/schemas_0.js +149 -12
  15. package/dist-types/SageMaker.d.ts +43 -0
  16. package/dist-types/SageMakerClient.d.ts +8 -2
  17. package/dist-types/commands/CreateClusterCommand.d.ts +3 -3
  18. package/dist-types/commands/CreateComputeQuotaCommand.d.ts +1 -1
  19. package/dist-types/commands/CreateDomainCommand.d.ts +1 -1
  20. package/dist-types/commands/CreateHubContentPresignedUrlsCommand.d.ts +1 -1
  21. package/dist-types/commands/CreateMlflowAppCommand.d.ts +91 -0
  22. package/dist-types/commands/CreatePresignedMlflowAppUrlCommand.d.ts +79 -0
  23. package/dist-types/commands/CreateTrainingJobCommand.d.ts +1 -2
  24. package/dist-types/commands/CreateUserProfileCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteHubContentCommand.d.ts +1 -1
  26. package/dist-types/commands/DeleteHubContentReferenceCommand.d.ts +1 -1
  27. package/dist-types/commands/DeleteMlflowAppCommand.d.ts +77 -0
  28. package/dist-types/commands/DescribeClusterCommand.d.ts +2 -2
  29. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +1 -1
  30. package/dist-types/commands/DescribeComputeQuotaCommand.d.ts +1 -1
  31. package/dist-types/commands/DescribeDomainCommand.d.ts +1 -1
  32. package/dist-types/commands/DescribeHubContentCommand.d.ts +3 -3
  33. package/dist-types/commands/DescribeMlflowAppCommand.d.ts +111 -0
  34. package/dist-types/commands/DescribeSubscribedWorkteamCommand.d.ts +2 -1
  35. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +1 -1
  36. package/dist-types/commands/DescribeUserProfileCommand.d.ts +1 -1
  37. package/dist-types/commands/ImportHubContentCommand.d.ts +1 -1
  38. package/dist-types/commands/ListClusterNodesCommand.d.ts +1 -1
  39. package/dist-types/commands/ListComputeQuotasCommand.d.ts +1 -1
  40. package/dist-types/commands/ListHubContentVersionsCommand.d.ts +3 -3
  41. package/dist-types/commands/ListHubContentsCommand.d.ts +3 -3
  42. package/dist-types/commands/ListMlflowAppsCommand.d.ts +93 -0
  43. package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +2 -1
  44. package/dist-types/commands/ListTagsCommand.d.ts +1 -1
  45. package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
  46. package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  47. package/dist-types/commands/ListTrainingPlansCommand.d.ts +1 -2
  48. package/dist-types/commands/UpdateClusterCommand.d.ts +2 -2
  49. package/dist-types/commands/UpdateComputeQuotaCommand.d.ts +1 -1
  50. package/dist-types/commands/UpdateDomainCommand.d.ts +1 -1
  51. package/dist-types/commands/UpdateHubContentCommand.d.ts +1 -1
  52. package/dist-types/commands/UpdateHubContentReferenceCommand.d.ts +1 -1
  53. package/dist-types/commands/UpdateMlflowAppCommand.d.ts +88 -0
  54. package/dist-types/commands/UpdateUserProfileCommand.d.ts +1 -1
  55. package/dist-types/commands/index.d.ts +6 -0
  56. package/dist-types/models/enums.d.ts +77 -0
  57. package/dist-types/models/models_0.d.ts +3 -3
  58. package/dist-types/models/models_1.d.ts +87 -170
  59. package/dist-types/models/models_2.d.ts +280 -372
  60. package/dist-types/models/models_3.d.ts +486 -383
  61. package/dist-types/models/models_4.d.ts +427 -4
  62. package/dist-types/pagination/ListMlflowAppsPaginator.d.ts +7 -0
  63. package/dist-types/pagination/index.d.ts +1 -0
  64. package/dist-types/schemas/schemas_0.d.ts +21 -0
  65. package/dist-types/ts3.4/SageMaker.d.ts +103 -0
  66. package/dist-types/ts3.4/SageMakerClient.d.ts +36 -0
  67. package/dist-types/ts3.4/commands/CreateMlflowAppCommand.d.ts +50 -0
  68. package/dist-types/ts3.4/commands/CreatePresignedMlflowAppUrlCommand.d.ts +51 -0
  69. package/dist-types/ts3.4/commands/CreateTrainingJobCommand.d.ts +4 -2
  70. package/dist-types/ts3.4/commands/DeleteMlflowAppCommand.d.ts +50 -0
  71. package/dist-types/ts3.4/commands/DescribeMlflowAppCommand.d.ts +51 -0
  72. package/dist-types/ts3.4/commands/DescribeSubscribedWorkteamCommand.d.ts +2 -4
  73. package/dist-types/ts3.4/commands/DescribeTrainingJobCommand.d.ts +1 -1
  74. package/dist-types/ts3.4/commands/ListMlflowAppsCommand.d.ts +50 -0
  75. package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +2 -4
  76. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
  77. package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
  78. package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  79. package/dist-types/ts3.4/commands/ListTrainingPlansCommand.d.ts +4 -2
  80. package/dist-types/ts3.4/commands/UpdateMlflowAppCommand.d.ts +50 -0
  81. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  82. package/dist-types/ts3.4/models/enums.d.ts +47 -0
  83. package/dist-types/ts3.4/models/models_0.d.ts +1 -1
  84. package/dist-types/ts3.4/models/models_1.d.ts +23 -38
  85. package/dist-types/ts3.4/models/models_2.d.ts +67 -86
  86. package/dist-types/ts3.4/models/models_3.d.ts +127 -91
  87. package/dist-types/ts3.4/models/models_4.d.ts +112 -4
  88. package/dist-types/ts3.4/pagination/ListMlflowAppsPaginator.d.ts +11 -0
  89. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  90. package/dist-types/ts3.4/schemas/schemas_0.d.ts +21 -0
  91. package/package.json +5 -5
@@ -1,8 +1,381 @@
1
- import { _InstanceType, ActionStatus, ActivationState, AppNetworkAccessType, AppSecurityGroupManagement, BatchStrategy, BooleanOperator, ClusterNodeProvisioningMode, ClusterNodeRecovery, CrossAccountFilterOption, Direction, EndpointStatus, HubContentSupportStatus, HubContentType, InferenceExperimentStopDesiredState, IPAddressType, JobType, LineageType, ListWorkforcesSortByOptions, ListWorkteamsSortByOptions, ModelApprovalStatus, ModelCardStatus, ModelPackageGroupStatus, ModelPackageStatus, ModelVariantAction, MonitoringType, NotebookInstanceAcceleratorType, PipelineExecutionStatus, PipelineStatus, ProcessingJobStatus, Processor, ProjectStatus, Relation, ReservedCapacityInstanceType, ReservedCapacityType, ResourceType, RootAccess, SageMakerResourceName, ScheduleStatus, SearchSortOrder, SecondaryStatus, SkipModelValidation, SortBy, SortOrder, SortTrialComponentsBy, SortTrialsBy, TagPropagation, ThroughputMode, TrackingServerSize, TrainingJobStatus, TransformJobStatus, UltraServerHealthStatus, UserProfileSortKey, UserProfileStatus, VariantPropertyType, VendorGuidance, WorkforceIpAddressType } from "./enums";
1
+ import { _InstanceType, AccountDefaultStatus, ActionStatus, ActivationState, AppNetworkAccessType, AppSecurityGroupManagement, BatchStrategy, BooleanOperator, ClusterNodeProvisioningMode, ClusterNodeRecovery, CrossAccountFilterOption, Direction, EndpointStatus, HubContentSupportStatus, HubContentType, InferenceExperimentStopDesiredState, IPAddressType, JobType, LineageType, ListWorkforcesSortByOptions, ListWorkteamsSortByOptions, ModelApprovalStatus, ModelCardStatus, ModelPackageGroupStatus, ModelPackageStatus, ModelRegistrationMode, ModelVariantAction, MonitoringType, NotebookInstanceAcceleratorType, PipelineExecutionStatus, PipelineStatus, ProcessingJobStatus, Processor, ProjectStatus, Relation, ReservedCapacityInstanceType, ReservedCapacityType, ResourceType, RootAccess, SageMakerResourceName, ScheduleStatus, SearchSortOrder, SecondaryStatus, SkipModelValidation, SortBy, SortOrder, SortTrialComponentsBy, SortTrialsBy, TagPropagation, ThroughputMode, TrackingServerSize, TrainingJobSortByOptions, TrainingJobStatus, TrainingPlanFilterName, TrainingPlanSortBy, TrainingPlanSortOrder, TrainingPlanStatus, TransformJobStatus, UltraServerHealthStatus, UserProfileSortKey, UserProfileStatus, VariantPropertyType, VendorGuidance, WarmPoolResourceStatus, WorkforceIpAddressType } from "./enums";
2
2
  import { AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchDataCaptureConfig, BatchTransformInput, CfnUpdateTemplateProvider, Channel, CheckpointConfig, ClusterAutoScalingConfig, ClusterInstanceGroupSpecification, ClusterRestrictedInstanceGroupSpecification, ClusterTieredStorageConfig, CodeEditorAppImageConfig, ComputeQuotaConfig, ComputeQuotaTarget, ContainerDefinition, DeploymentConfiguration, InferenceSpecification, JupyterLabAppImageConfig, KernelGatewayImageConfig, MetadataProperties, OutputDataConfig, OutputParameter, ResourceConfig, SchedulerConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, VpcConfig } from "./models_0";
3
- import { DebugHookConfig, DebugRuleConfiguration, DefaultSpaceSettings, DeploymentConfig, DriftCheckBaselines, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, ModelCardSecurityConfig, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceLifecycleHook, ParallelismConfiguration, PartnerAppConfig, PartnerAppMaintenanceConfig, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, ServiceCatalogProvisioningDetails, ShadowModeConfig, SourceAlgorithmSpecification, SpaceSettings, TensorBoardOutputConfig, TtlDuration, UiTemplate, UserSettings } from "./models_1";
4
- import { DataProcessing, DebugRuleEvaluationStatus, DeploymentRecommendation, FeatureParameter, InferenceComponentDeploymentConfig, MemberDefinition, MetricData, ModelArtifacts, ModelClientConfig, ModelPackageStatusDetails, MonitoringExecutionSummary, NotificationConfiguration, OidcConfig, PipelineExperimentConfig, SecondaryStatusTransition, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, SourceIpConfig, TemplateProviderDetail, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceVpcConfigRequest } from "./models_2";
5
- import { DesiredWeightAndCapacity, Device, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, MonitoringAlertSummary, Parameter, TrainingPlanSummary, TrialComponentMetricSummary, TrialComponentSource, TrialSource, Workforce, Workteam } from "./models_3";
3
+ import { DebugHookConfig, DebugRuleConfiguration, DefaultSpaceSettings, DeploymentConfig, DriftCheckBaselines, EdgeOutputConfig, ExperimentConfig, FeatureDefinition, InferenceComponentRuntimeConfig, InferenceComponentSpecification, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, ModelCardSecurityConfig, ModelLifeCycle, ModelMetrics, ModelPackageModelCard, ModelPackageSecurityConfig, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceLifecycleHook, ParallelismConfiguration, PartnerAppConfig, PartnerAppMaintenanceConfig, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerConfig, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, ServiceCatalogProvisioningDetails, ShadowModeConfig, SourceAlgorithmSpecification, SpaceSettings, TtlDuration, UiTemplate, UserSettings } from "./models_1";
4
+ import { DataProcessing, DebugRuleEvaluationStatus, DeploymentRecommendation, FeatureParameter, HyperParameterTrainingJobSummary, InferenceComponentDeploymentConfig, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelPackageStatusDetails, MonitoringExecutionSummary, NotificationConfiguration, OidcConfig, PipelineExperimentConfig, SelectiveExecutionConfig, ServiceCatalogProvisionedProductDetails, SourceIpConfig, TemplateProviderDetail, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkerAccessConfiguration, WorkforceVpcConfigRequest } from "./models_2";
5
+ import { DesiredWeightAndCapacity, Device, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTuningJobSearchEntity, MetricData, MonitoringAlertSummary, Parameter, ReservedCapacitySummary, SecondaryStatusTransition, SubscribedWorkteam, TrialComponentMetricSummary, TrialComponentSource, TrialSource, WarmPoolStatus, Workforce, Workteam } from "./models_3";
6
+ /**
7
+ * @public
8
+ */
9
+ export interface ListSubscribedWorkteamsResponse {
10
+ /**
11
+ * <p>An array of <code>Workteam</code> objects, each describing a work team.</p>
12
+ * @public
13
+ */
14
+ SubscribedWorkteams: SubscribedWorkteam[] | undefined;
15
+ /**
16
+ * <p>If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of work teams, use it in the subsequent request.</p>
17
+ * @public
18
+ */
19
+ NextToken?: string | undefined;
20
+ }
21
+ /**
22
+ * @public
23
+ */
24
+ export interface ListTagsInput {
25
+ /**
26
+ * <p>The Amazon Resource Name (ARN) of the resource whose tags you want to retrieve.</p>
27
+ * @public
28
+ */
29
+ ResourceArn: string | undefined;
30
+ /**
31
+ * <p> If the response to the previous <code>ListTags</code> request is truncated, SageMaker returns this token. To retrieve the next set of tags, use it in the subsequent request. </p>
32
+ * @public
33
+ */
34
+ NextToken?: string | undefined;
35
+ /**
36
+ * <p>Maximum number of tags to return.</p>
37
+ * @public
38
+ */
39
+ MaxResults?: number | undefined;
40
+ }
41
+ /**
42
+ * @public
43
+ */
44
+ export interface ListTagsOutput {
45
+ /**
46
+ * <p>An array of <code>Tag</code> objects, each with a tag key and a value.</p>
47
+ * @public
48
+ */
49
+ Tags?: Tag[] | undefined;
50
+ /**
51
+ * <p> If response is truncated, SageMaker includes a token in the response. You can use this token in your subsequent request to fetch next set of tokens. </p>
52
+ * @public
53
+ */
54
+ NextToken?: string | undefined;
55
+ }
56
+ /**
57
+ * @public
58
+ */
59
+ export interface ListTrainingJobsRequest {
60
+ /**
61
+ * <p>If the result of the previous <code>ListTrainingJobs</code> request was truncated, the response includes a <code>NextToken</code>. To retrieve the next set of training jobs, use the token in the next request. </p>
62
+ * @public
63
+ */
64
+ NextToken?: string | undefined;
65
+ /**
66
+ * <p>The maximum number of training jobs to return in the response.</p>
67
+ * @public
68
+ */
69
+ MaxResults?: number | undefined;
70
+ /**
71
+ * <p>A filter that returns only training jobs created after the specified time (timestamp).</p>
72
+ * @public
73
+ */
74
+ CreationTimeAfter?: Date | undefined;
75
+ /**
76
+ * <p>A filter that returns only training jobs created before the specified time (timestamp).</p>
77
+ * @public
78
+ */
79
+ CreationTimeBefore?: Date | undefined;
80
+ /**
81
+ * <p>A filter that returns only training jobs modified after the specified time (timestamp).</p>
82
+ * @public
83
+ */
84
+ LastModifiedTimeAfter?: Date | undefined;
85
+ /**
86
+ * <p>A filter that returns only training jobs modified before the specified time (timestamp).</p>
87
+ * @public
88
+ */
89
+ LastModifiedTimeBefore?: Date | undefined;
90
+ /**
91
+ * <p>A string in the training job name. This filter returns only training jobs whose name contains the specified string.</p>
92
+ * @public
93
+ */
94
+ NameContains?: string | undefined;
95
+ /**
96
+ * <p>A filter that retrieves only training jobs with a specific status.</p>
97
+ * @public
98
+ */
99
+ StatusEquals?: TrainingJobStatus | undefined;
100
+ /**
101
+ * <p>The field to sort results by. The default is <code>CreationTime</code>.</p>
102
+ * @public
103
+ */
104
+ SortBy?: SortBy | undefined;
105
+ /**
106
+ * <p>The sort order for results. The default is <code>Ascending</code>.</p>
107
+ * @public
108
+ */
109
+ SortOrder?: SortOrder | undefined;
110
+ /**
111
+ * <p>A filter that retrieves only training jobs with a specific warm pool status.</p>
112
+ * @public
113
+ */
114
+ WarmPoolStatusEquals?: WarmPoolResourceStatus | undefined;
115
+ /**
116
+ * <p>The Amazon Resource Name (ARN); of the training plan to filter training jobs by. For more information about reserving GPU capacity for your SageMaker training jobs using Amazon SageMaker Training Plan, see <code> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingPlan.html">CreateTrainingPlan</a> </code>.</p>
117
+ * @public
118
+ */
119
+ TrainingPlanArnEquals?: string | undefined;
120
+ }
121
+ /**
122
+ * <p>Provides summary information about a training job.</p>
123
+ * @public
124
+ */
125
+ export interface TrainingJobSummary {
126
+ /**
127
+ * <p>The name of the training job that you want a summary for.</p>
128
+ * @public
129
+ */
130
+ TrainingJobName: string | undefined;
131
+ /**
132
+ * <p>The Amazon Resource Name (ARN) of the training job.</p>
133
+ * @public
134
+ */
135
+ TrainingJobArn: string | undefined;
136
+ /**
137
+ * <p>A timestamp that shows when the training job was created.</p>
138
+ * @public
139
+ */
140
+ CreationTime: Date | undefined;
141
+ /**
142
+ * <p>A timestamp that shows when the training job ended. This field is set only if the training job has one of the terminal statuses (<code>Completed</code>, <code>Failed</code>, or <code>Stopped</code>). </p>
143
+ * @public
144
+ */
145
+ TrainingEndTime?: Date | undefined;
146
+ /**
147
+ * <p> Timestamp when the training job was last modified. </p>
148
+ * @public
149
+ */
150
+ LastModifiedTime?: Date | undefined;
151
+ /**
152
+ * <p>The status of the training job.</p>
153
+ * @public
154
+ */
155
+ TrainingJobStatus: TrainingJobStatus | undefined;
156
+ /**
157
+ * <p>The secondary status of the training job.</p>
158
+ * @public
159
+ */
160
+ SecondaryStatus?: SecondaryStatus | undefined;
161
+ /**
162
+ * <p>The status of the warm pool associated with the training job.</p>
163
+ * @public
164
+ */
165
+ WarmPoolStatus?: WarmPoolStatus | undefined;
166
+ /**
167
+ * <p>The Amazon Resource Name (ARN); of the training plan associated with this training job.</p> <p>For more information about how to reserve GPU capacity for your SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see <code> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingPlan.html">CreateTrainingPlan</a> </code>.</p>
168
+ * @public
169
+ */
170
+ TrainingPlanArn?: string | undefined;
171
+ }
172
+ /**
173
+ * @public
174
+ */
175
+ export interface ListTrainingJobsResponse {
176
+ /**
177
+ * <p>An array of <code>TrainingJobSummary</code> objects, each listing a training job.</p>
178
+ * @public
179
+ */
180
+ TrainingJobSummaries: TrainingJobSummary[] | undefined;
181
+ /**
182
+ * <p>If the response is truncated, SageMaker returns this token. To retrieve the next set of training jobs, use it in the subsequent request.</p>
183
+ * @public
184
+ */
185
+ NextToken?: string | undefined;
186
+ }
187
+ /**
188
+ * @public
189
+ */
190
+ export interface ListTrainingJobsForHyperParameterTuningJobRequest {
191
+ /**
192
+ * <p>The name of the tuning job whose training jobs you want to list.</p>
193
+ * @public
194
+ */
195
+ HyperParameterTuningJobName: string | undefined;
196
+ /**
197
+ * <p>If the result of the previous <code>ListTrainingJobsForHyperParameterTuningJob</code> request was truncated, the response includes a <code>NextToken</code>. To retrieve the next set of training jobs, use the token in the next request.</p>
198
+ * @public
199
+ */
200
+ NextToken?: string | undefined;
201
+ /**
202
+ * <p>The maximum number of training jobs to return. The default value is 10.</p>
203
+ * @public
204
+ */
205
+ MaxResults?: number | undefined;
206
+ /**
207
+ * <p>A filter that returns only training jobs with the specified status.</p>
208
+ * @public
209
+ */
210
+ StatusEquals?: TrainingJobStatus | undefined;
211
+ /**
212
+ * <p>The field to sort results by. The default is <code>Name</code>.</p> <p>If the value of this field is <code>FinalObjectiveMetricValue</code>, any training jobs that did not return an objective metric are not listed.</p>
213
+ * @public
214
+ */
215
+ SortBy?: TrainingJobSortByOptions | undefined;
216
+ /**
217
+ * <p>The sort order for results. The default is <code>Ascending</code>.</p>
218
+ * @public
219
+ */
220
+ SortOrder?: SortOrder | undefined;
221
+ }
222
+ /**
223
+ * @public
224
+ */
225
+ export interface ListTrainingJobsForHyperParameterTuningJobResponse {
226
+ /**
227
+ * <p>A list of <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TrainingJobSummary.html">TrainingJobSummary</a> objects that describe the training jobs that the <code>ListTrainingJobsForHyperParameterTuningJob</code> request returned.</p>
228
+ * @public
229
+ */
230
+ TrainingJobSummaries: HyperParameterTrainingJobSummary[] | undefined;
231
+ /**
232
+ * <p>If the result of this <code>ListTrainingJobsForHyperParameterTuningJob</code> request was truncated, the response includes a <code>NextToken</code>. To retrieve the next set of training jobs, use the token in the next request.</p>
233
+ * @public
234
+ */
235
+ NextToken?: string | undefined;
236
+ }
237
+ /**
238
+ * <p>A filter to apply when listing or searching for training plans.</p> <p>For more information about how to reserve GPU capacity for your SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see <code> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingPlan.html">CreateTrainingPlan</a> </code>.</p>
239
+ * @public
240
+ */
241
+ export interface TrainingPlanFilter {
242
+ /**
243
+ * <p>The name of the filter field (e.g., Status, InstanceType).</p>
244
+ * @public
245
+ */
246
+ Name: TrainingPlanFilterName | undefined;
247
+ /**
248
+ * <p>The value to filter by for the specified field.</p>
249
+ * @public
250
+ */
251
+ Value: string | undefined;
252
+ }
253
+ /**
254
+ * @public
255
+ */
256
+ export interface ListTrainingPlansRequest {
257
+ /**
258
+ * <p>A token to continue pagination if more results are available.</p>
259
+ * @public
260
+ */
261
+ NextToken?: string | undefined;
262
+ /**
263
+ * <p>The maximum number of results to return in the response.</p>
264
+ * @public
265
+ */
266
+ MaxResults?: number | undefined;
267
+ /**
268
+ * <p>Filter to list only training plans with an actual start time after this date.</p>
269
+ * @public
270
+ */
271
+ StartTimeAfter?: Date | undefined;
272
+ /**
273
+ * <p>Filter to list only training plans with an actual start time before this date.</p>
274
+ * @public
275
+ */
276
+ StartTimeBefore?: Date | undefined;
277
+ /**
278
+ * <p>The training plan field to sort the results by (e.g., StartTime, Status).</p>
279
+ * @public
280
+ */
281
+ SortBy?: TrainingPlanSortBy | undefined;
282
+ /**
283
+ * <p>The order to sort the results (Ascending or Descending).</p>
284
+ * @public
285
+ */
286
+ SortOrder?: TrainingPlanSortOrder | undefined;
287
+ /**
288
+ * <p>Additional filters to apply to the list of training plans.</p>
289
+ * @public
290
+ */
291
+ Filters?: TrainingPlanFilter[] | undefined;
292
+ }
293
+ /**
294
+ * <p>Details of the training plan.</p> <p>For more information about how to reserve GPU capacity for your SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see <code> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingPlan.html">CreateTrainingPlan</a> </code>.</p>
295
+ * @public
296
+ */
297
+ export interface TrainingPlanSummary {
298
+ /**
299
+ * <p>The Amazon Resource Name (ARN); of the training plan.</p>
300
+ * @public
301
+ */
302
+ TrainingPlanArn: string | undefined;
303
+ /**
304
+ * <p>The name of the training plan.</p>
305
+ * @public
306
+ */
307
+ TrainingPlanName: string | undefined;
308
+ /**
309
+ * <p>The current status of the training plan (e.g., Pending, Active, Expired). To see the complete list of status values available for a training plan, refer to the <code>Status</code> attribute within the <code> <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_TrainingPlanSummary.html">TrainingPlanSummary</a> </code> object.</p>
310
+ * @public
311
+ */
312
+ Status: TrainingPlanStatus | undefined;
313
+ /**
314
+ * <p>A message providing additional information about the current status of the training plan.</p>
315
+ * @public
316
+ */
317
+ StatusMessage?: string | undefined;
318
+ /**
319
+ * <p>The number of whole hours in the total duration for this training plan.</p>
320
+ * @public
321
+ */
322
+ DurationHours?: number | undefined;
323
+ /**
324
+ * <p>The additional minutes beyond whole hours in the total duration for this training plan.</p>
325
+ * @public
326
+ */
327
+ DurationMinutes?: number | undefined;
328
+ /**
329
+ * <p>The start time of the training plan.</p>
330
+ * @public
331
+ */
332
+ StartTime?: Date | undefined;
333
+ /**
334
+ * <p>The end time of the training plan.</p>
335
+ * @public
336
+ */
337
+ EndTime?: Date | undefined;
338
+ /**
339
+ * <p>The upfront fee for the training plan.</p>
340
+ * @public
341
+ */
342
+ UpfrontFee?: string | undefined;
343
+ /**
344
+ * <p>The currency code for the upfront fee (e.g., USD).</p>
345
+ * @public
346
+ */
347
+ CurrencyCode?: string | undefined;
348
+ /**
349
+ * <p>The total number of instances reserved in this training plan.</p>
350
+ * @public
351
+ */
352
+ TotalInstanceCount?: number | undefined;
353
+ /**
354
+ * <p>The number of instances currently available for use in this training plan.</p>
355
+ * @public
356
+ */
357
+ AvailableInstanceCount?: number | undefined;
358
+ /**
359
+ * <p>The number of instances currently in use from this training plan.</p>
360
+ * @public
361
+ */
362
+ InUseInstanceCount?: number | undefined;
363
+ /**
364
+ * <p>The total number of UltraServers allocated to this training plan.</p>
365
+ * @public
366
+ */
367
+ TotalUltraServerCount?: number | undefined;
368
+ /**
369
+ * <p>The target resources (e.g., training jobs, HyperPod clusters, Endpoints) that can use this training plan.</p> <p>Training plans are specific to their target resource.</p> <ul> <li> <p>A training plan designed for SageMaker training jobs can only be used to schedule and run training jobs.</p> </li> <li> <p>A training plan for HyperPod clusters can be used exclusively to provide compute resources to a cluster's instance group.</p> </li> <li> <p>A training plan for SageMaker endpoints can be used exclusively to provide compute resources to SageMaker endpoints for model deployment.</p> </li> </ul>
370
+ * @public
371
+ */
372
+ TargetResources?: SageMakerResourceName[] | undefined;
373
+ /**
374
+ * <p>A list of reserved capacities associated with this training plan, including details such as instance types, counts, and availability zones.</p>
375
+ * @public
376
+ */
377
+ ReservedCapacitySummaries?: ReservedCapacitySummary[] | undefined;
378
+ }
6
379
  /**
7
380
  * @public
8
381
  */
@@ -4225,6 +4598,56 @@ export interface UpdateInferenceExperimentResponse {
4225
4598
  */
4226
4599
  InferenceExperimentArn: string | undefined;
4227
4600
  }
4601
+ /**
4602
+ * @public
4603
+ */
4604
+ export interface UpdateMlflowAppRequest {
4605
+ /**
4606
+ * <p>The ARN of the MLflow App to update.</p>
4607
+ * @public
4608
+ */
4609
+ Arn: string | undefined;
4610
+ /**
4611
+ * <p>The name of the MLflow App to update.</p>
4612
+ * @public
4613
+ */
4614
+ Name?: string | undefined;
4615
+ /**
4616
+ * <p>The new S3 URI for the general purpose bucket to use as the artifact store for the MLflow App.</p>
4617
+ * @public
4618
+ */
4619
+ ArtifactStoreUri?: string | undefined;
4620
+ /**
4621
+ * <p>Whether to enable or disable automatic registration of new MLflow models to the SageMaker Model Registry. To enable automatic model registration, set this value to <code>AutoModelRegistrationEnabled</code>. To disable automatic model registration, set this value to <code>AutoModelRegistrationDisabled</code>. If not specified, <code>AutomaticModelRegistration</code> defaults to <code>AutoModelRegistrationEnabled</code> </p>
4622
+ * @public
4623
+ */
4624
+ ModelRegistrationMode?: ModelRegistrationMode | undefined;
4625
+ /**
4626
+ * <p>The new weekly maintenance window start day and time to update. The maintenance window day and time should be in Coordinated Universal Time (UTC) 24-hour standard time. For example: TUE:03:30.</p>
4627
+ * @public
4628
+ */
4629
+ WeeklyMaintenanceWindowStart?: string | undefined;
4630
+ /**
4631
+ * <p>List of SageMaker Domain IDs for which this MLflow App is the default.</p>
4632
+ * @public
4633
+ */
4634
+ DefaultDomainIdList?: string[] | undefined;
4635
+ /**
4636
+ * <p>Indicates whether this this MLflow App is the default for the account.</p>
4637
+ * @public
4638
+ */
4639
+ AccountDefaultStatus?: AccountDefaultStatus | undefined;
4640
+ }
4641
+ /**
4642
+ * @public
4643
+ */
4644
+ export interface UpdateMlflowAppResponse {
4645
+ /**
4646
+ * <p>The ARN of the updated MLflow App.</p>
4647
+ * @public
4648
+ */
4649
+ Arn?: string | undefined;
4650
+ }
4228
4651
  /**
4229
4652
  * @public
4230
4653
  */
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListMlflowAppsCommandInput, ListMlflowAppsCommandOutput } from "../commands/ListMlflowAppsCommand";
3
+ import { SageMakerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListMlflowApps: (config: SageMakerPaginationConfiguration, input: ListMlflowAppsCommandInput, ...rest: any[]) => Paginator<ListMlflowAppsCommandOutput>;
@@ -39,6 +39,7 @@ export * from "./ListInferenceRecommendationsJobsPaginator";
39
39
  export * from "./ListLabelingJobsForWorkteamPaginator";
40
40
  export * from "./ListLabelingJobsPaginator";
41
41
  export * from "./ListLineageGroupsPaginator";
42
+ export * from "./ListMlflowAppsPaginator";
42
43
  export * from "./ListMlflowTrackingServersPaginator";
43
44
  export * from "./ListModelBiasJobDefinitionsPaginator";
44
45
  export * from "./ListModelCardExportJobsPaginator";
@@ -237,6 +237,8 @@ export declare var CreateInferenceRecommendationsJobRequest: StaticStructureSche
237
237
  export declare var CreateInferenceRecommendationsJobResponse: StaticStructureSchema;
238
238
  export declare var CreateLabelingJobRequest: StaticStructureSchema;
239
239
  export declare var CreateLabelingJobResponse: StaticStructureSchema;
240
+ export declare var CreateMlflowAppRequest: StaticStructureSchema;
241
+ export declare var CreateMlflowAppResponse: StaticStructureSchema;
240
242
  export declare var CreateMlflowTrackingServerRequest: StaticStructureSchema;
241
243
  export declare var CreateMlflowTrackingServerResponse: StaticStructureSchema;
242
244
  export declare var CreateModelBiasJobDefinitionRequest: StaticStructureSchema;
@@ -271,6 +273,8 @@ export declare var CreatePipelineRequest: StaticStructureSchema;
271
273
  export declare var CreatePipelineResponse: StaticStructureSchema;
272
274
  export declare var CreatePresignedDomainUrlRequest: StaticStructureSchema;
273
275
  export declare var CreatePresignedDomainUrlResponse: StaticStructureSchema;
276
+ export declare var CreatePresignedMlflowAppUrlRequest: StaticStructureSchema;
277
+ export declare var CreatePresignedMlflowAppUrlResponse: StaticStructureSchema;
274
278
  export declare var CreatePresignedMlflowTrackingServerUrlRequest: StaticStructureSchema;
275
279
  export declare var CreatePresignedMlflowTrackingServerUrlResponse: StaticStructureSchema;
276
280
  export declare var CreatePresignedNotebookInstanceUrlInput: StaticStructureSchema;
@@ -360,6 +364,8 @@ export declare var DeleteImageVersionResponse: StaticStructureSchema;
360
364
  export declare var DeleteInferenceComponentInput: StaticStructureSchema;
361
365
  export declare var DeleteInferenceExperimentRequest: StaticStructureSchema;
362
366
  export declare var DeleteInferenceExperimentResponse: StaticStructureSchema;
367
+ export declare var DeleteMlflowAppRequest: StaticStructureSchema;
368
+ export declare var DeleteMlflowAppResponse: StaticStructureSchema;
363
369
  export declare var DeleteMlflowTrackingServerRequest: StaticStructureSchema;
364
370
  export declare var DeleteMlflowTrackingServerResponse: StaticStructureSchema;
365
371
  export declare var DeleteModelBiasJobDefinitionRequest: StaticStructureSchema;
@@ -478,6 +484,8 @@ export declare var DescribeLabelingJobRequest: StaticStructureSchema;
478
484
  export declare var DescribeLabelingJobResponse: StaticStructureSchema;
479
485
  export declare var DescribeLineageGroupRequest: StaticStructureSchema;
480
486
  export declare var DescribeLineageGroupResponse: StaticStructureSchema;
487
+ export declare var DescribeMlflowAppRequest: StaticStructureSchema;
488
+ export declare var DescribeMlflowAppResponse: StaticStructureSchema;
481
489
  export declare var DescribeMlflowTrackingServerRequest: StaticStructureSchema;
482
490
  export declare var DescribeMlflowTrackingServerResponse: StaticStructureSchema;
483
491
  export declare var DescribeModelBiasJobDefinitionRequest: StaticStructureSchema;
@@ -820,6 +828,8 @@ export declare var ListLabelingJobsRequest: StaticStructureSchema;
820
828
  export declare var ListLabelingJobsResponse: StaticStructureSchema;
821
829
  export declare var ListLineageGroupsRequest: StaticStructureSchema;
822
830
  export declare var ListLineageGroupsResponse: StaticStructureSchema;
831
+ export declare var ListMlflowAppsRequest: StaticStructureSchema;
832
+ export declare var ListMlflowAppsResponse: StaticStructureSchema;
823
833
  export declare var ListMlflowTrackingServersRequest: StaticStructureSchema;
824
834
  export declare var ListMlflowTrackingServersResponse: StaticStructureSchema;
825
835
  export declare var ListModelBiasJobDefinitionsRequest: StaticStructureSchema;
@@ -911,6 +921,7 @@ export declare var MetricDatum: StaticStructureSchema;
911
921
  export declare var MetricDefinition: StaticStructureSchema;
912
922
  export declare var MetricsConfig: StaticStructureSchema;
913
923
  export declare var MetricsSource: StaticStructureSchema;
924
+ export declare var MlflowAppSummary: StaticStructureSchema;
914
925
  export declare var Model: StaticStructureSchema;
915
926
  export declare var ModelAccessConfig: StaticStructureSchema;
916
927
  export declare var ModelArtifacts: StaticStructureSchema;
@@ -1332,6 +1343,8 @@ export declare var UpdateInferenceComponentRuntimeConfigInput: StaticStructureSc
1332
1343
  export declare var UpdateInferenceComponentRuntimeConfigOutput: StaticStructureSchema;
1333
1344
  export declare var UpdateInferenceExperimentRequest: StaticStructureSchema;
1334
1345
  export declare var UpdateInferenceExperimentResponse: StaticStructureSchema;
1346
+ export declare var UpdateMlflowAppRequest: StaticStructureSchema;
1347
+ export declare var UpdateMlflowAppResponse: StaticStructureSchema;
1335
1348
  export declare var UpdateMlflowTrackingServerRequest: StaticStructureSchema;
1336
1349
  export declare var UpdateMlflowTrackingServerResponse: StaticStructureSchema;
1337
1350
  export declare var UpdateModelCardRequest: StaticStructureSchema;
@@ -1476,6 +1489,7 @@ export declare var CustomImageContainerEntrypoint: number;
1476
1489
  export declare var CustomImages: StaticListSchema;
1477
1490
  export declare var DebugRuleConfigurations: StaticListSchema;
1478
1491
  export declare var DebugRuleEvaluationStatuses: StaticListSchema;
1492
+ export declare var DefaultDomainIdList: number;
1479
1493
  export declare var DeployedImages: StaticListSchema;
1480
1494
  export declare var DeploymentStages: StaticListSchema;
1481
1495
  export declare var DeploymentStageStatusSummaries: StaticListSchema;
@@ -1561,6 +1575,7 @@ export declare var ListTrialComponentKey256: number;
1561
1575
  export declare var MemberDefinitions: StaticListSchema;
1562
1576
  export declare var MetricDataList: StaticListSchema;
1563
1577
  export declare var MetricDefinitionList: StaticListSchema;
1578
+ export declare var MlflowAppSummaries: StaticListSchema;
1564
1579
  export declare var ModelCardExportJobSummaryList: StaticListSchema;
1565
1580
  export declare var ModelCardSummaryList: StaticListSchema;
1566
1581
  export declare var ModelCardVersionSummaryList: StaticListSchema;
@@ -1779,6 +1794,7 @@ export declare var CreateInferenceComponent: StaticOperationSchema;
1779
1794
  export declare var CreateInferenceExperiment: StaticOperationSchema;
1780
1795
  export declare var CreateInferenceRecommendationsJob: StaticOperationSchema;
1781
1796
  export declare var CreateLabelingJob: StaticOperationSchema;
1797
+ export declare var CreateMlflowApp: StaticOperationSchema;
1782
1798
  export declare var CreateMlflowTrackingServer: StaticOperationSchema;
1783
1799
  export declare var CreateModel: StaticOperationSchema;
1784
1800
  export declare var CreateModelBiasJobDefinition: StaticOperationSchema;
@@ -1796,6 +1812,7 @@ export declare var CreatePartnerApp: StaticOperationSchema;
1796
1812
  export declare var CreatePartnerAppPresignedUrl: StaticOperationSchema;
1797
1813
  export declare var CreatePipeline: StaticOperationSchema;
1798
1814
  export declare var CreatePresignedDomainUrl: StaticOperationSchema;
1815
+ export declare var CreatePresignedMlflowAppUrl: StaticOperationSchema;
1799
1816
  export declare var CreatePresignedMlflowTrackingServerUrl: StaticOperationSchema;
1800
1817
  export declare var CreatePresignedNotebookInstanceUrl: StaticOperationSchema;
1801
1818
  export declare var CreateProcessingJob: StaticOperationSchema;
@@ -1841,6 +1858,7 @@ export declare var DeleteImage: StaticOperationSchema;
1841
1858
  export declare var DeleteImageVersion: StaticOperationSchema;
1842
1859
  export declare var DeleteInferenceComponent: StaticOperationSchema;
1843
1860
  export declare var DeleteInferenceExperiment: StaticOperationSchema;
1861
+ export declare var DeleteMlflowApp: StaticOperationSchema;
1844
1862
  export declare var DeleteMlflowTrackingServer: StaticOperationSchema;
1845
1863
  export declare var DeleteModel: StaticOperationSchema;
1846
1864
  export declare var DeleteModelBiasJobDefinition: StaticOperationSchema;
@@ -1906,6 +1924,7 @@ export declare var DescribeInferenceExperiment: StaticOperationSchema;
1906
1924
  export declare var DescribeInferenceRecommendationsJob: StaticOperationSchema;
1907
1925
  export declare var DescribeLabelingJob: StaticOperationSchema;
1908
1926
  export declare var DescribeLineageGroup: StaticOperationSchema;
1927
+ export declare var DescribeMlflowApp: StaticOperationSchema;
1909
1928
  export declare var DescribeMlflowTrackingServer: StaticOperationSchema;
1910
1929
  export declare var DescribeModel: StaticOperationSchema;
1911
1930
  export declare var DescribeModelBiasJobDefinition: StaticOperationSchema;
@@ -1990,6 +2009,7 @@ export declare var ListInferenceRecommendationsJobSteps: StaticOperationSchema;
1990
2009
  export declare var ListLabelingJobs: StaticOperationSchema;
1991
2010
  export declare var ListLabelingJobsForWorkteam: StaticOperationSchema;
1992
2011
  export declare var ListLineageGroups: StaticOperationSchema;
2012
+ export declare var ListMlflowApps: StaticOperationSchema;
1993
2013
  export declare var ListMlflowTrackingServers: StaticOperationSchema;
1994
2014
  export declare var ListModelBiasJobDefinitions: StaticOperationSchema;
1995
2015
  export declare var ListModelCardExportJobs: StaticOperationSchema;
@@ -2089,6 +2109,7 @@ export declare var UpdateImageVersion: StaticOperationSchema;
2089
2109
  export declare var UpdateInferenceComponent: StaticOperationSchema;
2090
2110
  export declare var UpdateInferenceComponentRuntimeConfig: StaticOperationSchema;
2091
2111
  export declare var UpdateInferenceExperiment: StaticOperationSchema;
2112
+ export declare var UpdateMlflowApp: StaticOperationSchema;
2092
2113
  export declare var UpdateMlflowTrackingServer: StaticOperationSchema;
2093
2114
  export declare var UpdateModelCard: StaticOperationSchema;
2094
2115
  export declare var UpdateModelPackage: StaticOperationSchema;