@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
@@ -43,6 +43,7 @@ import { CreateInferenceComponentCommand, } from "./commands/CreateInferenceComp
43
43
  import { CreateInferenceExperimentCommand, } from "./commands/CreateInferenceExperimentCommand";
44
44
  import { CreateInferenceRecommendationsJobCommand, } from "./commands/CreateInferenceRecommendationsJobCommand";
45
45
  import { CreateLabelingJobCommand, } from "./commands/CreateLabelingJobCommand";
46
+ import { CreateMlflowAppCommand, } from "./commands/CreateMlflowAppCommand";
46
47
  import { CreateMlflowTrackingServerCommand, } from "./commands/CreateMlflowTrackingServerCommand";
47
48
  import { CreateModelBiasJobDefinitionCommand, } from "./commands/CreateModelBiasJobDefinitionCommand";
48
49
  import { CreateModelCardCommand, } from "./commands/CreateModelCardCommand";
@@ -60,6 +61,7 @@ import { CreatePartnerAppCommand, } from "./commands/CreatePartnerAppCommand";
60
61
  import { CreatePartnerAppPresignedUrlCommand, } from "./commands/CreatePartnerAppPresignedUrlCommand";
61
62
  import { CreatePipelineCommand, } from "./commands/CreatePipelineCommand";
62
63
  import { CreatePresignedDomainUrlCommand, } from "./commands/CreatePresignedDomainUrlCommand";
64
+ import { CreatePresignedMlflowAppUrlCommand, } from "./commands/CreatePresignedMlflowAppUrlCommand";
63
65
  import { CreatePresignedMlflowTrackingServerUrlCommand, } from "./commands/CreatePresignedMlflowTrackingServerUrlCommand";
64
66
  import { CreatePresignedNotebookInstanceUrlCommand, } from "./commands/CreatePresignedNotebookInstanceUrlCommand";
65
67
  import { CreateProcessingJobCommand, } from "./commands/CreateProcessingJobCommand";
@@ -105,6 +107,7 @@ import { DeleteImageCommand } from "./commands/DeleteImageCommand";
105
107
  import { DeleteImageVersionCommand, } from "./commands/DeleteImageVersionCommand";
106
108
  import { DeleteInferenceComponentCommand, } from "./commands/DeleteInferenceComponentCommand";
107
109
  import { DeleteInferenceExperimentCommand, } from "./commands/DeleteInferenceExperimentCommand";
110
+ import { DeleteMlflowAppCommand, } from "./commands/DeleteMlflowAppCommand";
108
111
  import { DeleteMlflowTrackingServerCommand, } from "./commands/DeleteMlflowTrackingServerCommand";
109
112
  import { DeleteModelBiasJobDefinitionCommand, } from "./commands/DeleteModelBiasJobDefinitionCommand";
110
113
  import { DeleteModelCardCommand, } from "./commands/DeleteModelCardCommand";
@@ -170,6 +173,7 @@ import { DescribeInferenceExperimentCommand, } from "./commands/DescribeInferenc
170
173
  import { DescribeInferenceRecommendationsJobCommand, } from "./commands/DescribeInferenceRecommendationsJobCommand";
171
174
  import { DescribeLabelingJobCommand, } from "./commands/DescribeLabelingJobCommand";
172
175
  import { DescribeLineageGroupCommand, } from "./commands/DescribeLineageGroupCommand";
176
+ import { DescribeMlflowAppCommand, } from "./commands/DescribeMlflowAppCommand";
173
177
  import { DescribeMlflowTrackingServerCommand, } from "./commands/DescribeMlflowTrackingServerCommand";
174
178
  import { DescribeModelBiasJobDefinitionCommand, } from "./commands/DescribeModelBiasJobDefinitionCommand";
175
179
  import { DescribeModelCardCommand, } from "./commands/DescribeModelCardCommand";
@@ -254,6 +258,7 @@ import { ListInferenceRecommendationsJobStepsCommand, } from "./commands/ListInf
254
258
  import { ListLabelingJobsCommand, } from "./commands/ListLabelingJobsCommand";
255
259
  import { ListLabelingJobsForWorkteamCommand, } from "./commands/ListLabelingJobsForWorkteamCommand";
256
260
  import { ListLineageGroupsCommand, } from "./commands/ListLineageGroupsCommand";
261
+ import { ListMlflowAppsCommand, } from "./commands/ListMlflowAppsCommand";
257
262
  import { ListMlflowTrackingServersCommand, } from "./commands/ListMlflowTrackingServersCommand";
258
263
  import { ListModelBiasJobDefinitionsCommand, } from "./commands/ListModelBiasJobDefinitionsCommand";
259
264
  import { ListModelCardExportJobsCommand, } from "./commands/ListModelCardExportJobsCommand";
@@ -353,6 +358,7 @@ import { UpdateImageVersionCommand, } from "./commands/UpdateImageVersionCommand
353
358
  import { UpdateInferenceComponentCommand, } from "./commands/UpdateInferenceComponentCommand";
354
359
  import { UpdateInferenceComponentRuntimeConfigCommand, } from "./commands/UpdateInferenceComponentRuntimeConfigCommand";
355
360
  import { UpdateInferenceExperimentCommand, } from "./commands/UpdateInferenceExperimentCommand";
361
+ import { UpdateMlflowAppCommand, } from "./commands/UpdateMlflowAppCommand";
356
362
  import { UpdateMlflowTrackingServerCommand, } from "./commands/UpdateMlflowTrackingServerCommand";
357
363
  import { UpdateModelCardCommand, } from "./commands/UpdateModelCardCommand";
358
364
  import { UpdateModelPackageCommand, } from "./commands/UpdateModelPackageCommand";
@@ -418,6 +424,7 @@ const commands = {
418
424
  CreateInferenceExperimentCommand,
419
425
  CreateInferenceRecommendationsJobCommand,
420
426
  CreateLabelingJobCommand,
427
+ CreateMlflowAppCommand,
421
428
  CreateMlflowTrackingServerCommand,
422
429
  CreateModelCommand,
423
430
  CreateModelBiasJobDefinitionCommand,
@@ -435,6 +442,7 @@ const commands = {
435
442
  CreatePartnerAppPresignedUrlCommand,
436
443
  CreatePipelineCommand,
437
444
  CreatePresignedDomainUrlCommand,
445
+ CreatePresignedMlflowAppUrlCommand,
438
446
  CreatePresignedMlflowTrackingServerUrlCommand,
439
447
  CreatePresignedNotebookInstanceUrlCommand,
440
448
  CreateProcessingJobCommand,
@@ -480,6 +488,7 @@ const commands = {
480
488
  DeleteImageVersionCommand,
481
489
  DeleteInferenceComponentCommand,
482
490
  DeleteInferenceExperimentCommand,
491
+ DeleteMlflowAppCommand,
483
492
  DeleteMlflowTrackingServerCommand,
484
493
  DeleteModelCommand,
485
494
  DeleteModelBiasJobDefinitionCommand,
@@ -545,6 +554,7 @@ const commands = {
545
554
  DescribeInferenceRecommendationsJobCommand,
546
555
  DescribeLabelingJobCommand,
547
556
  DescribeLineageGroupCommand,
557
+ DescribeMlflowAppCommand,
548
558
  DescribeMlflowTrackingServerCommand,
549
559
  DescribeModelCommand,
550
560
  DescribeModelBiasJobDefinitionCommand,
@@ -629,6 +639,7 @@ const commands = {
629
639
  ListLabelingJobsCommand,
630
640
  ListLabelingJobsForWorkteamCommand,
631
641
  ListLineageGroupsCommand,
642
+ ListMlflowAppsCommand,
632
643
  ListMlflowTrackingServersCommand,
633
644
  ListModelBiasJobDefinitionsCommand,
634
645
  ListModelCardExportJobsCommand,
@@ -728,6 +739,7 @@ const commands = {
728
739
  UpdateInferenceComponentCommand,
729
740
  UpdateInferenceComponentRuntimeConfigCommand,
730
741
  UpdateInferenceExperimentCommand,
742
+ UpdateMlflowAppCommand,
731
743
  UpdateMlflowTrackingServerCommand,
732
744
  UpdateModelCardCommand,
733
745
  UpdateModelPackageCommand,
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreateMlflowApp } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreateMlflowAppCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("SageMaker", "CreateMlflowApp", {})
13
+ .n("SageMakerClient", "CreateMlflowAppCommand")
14
+ .sc(CreateMlflowApp)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreatePresignedMlflowAppUrl } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreatePresignedMlflowAppUrlCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("SageMaker", "CreatePresignedMlflowAppUrl", {})
13
+ .n("SageMakerClient", "CreatePresignedMlflowAppUrlCommand")
14
+ .sc(CreatePresignedMlflowAppUrl)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteMlflowApp } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteMlflowAppCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("SageMaker", "DeleteMlflowApp", {})
13
+ .n("SageMakerClient", "DeleteMlflowAppCommand")
14
+ .sc(DeleteMlflowApp)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DescribeMlflowApp } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DescribeMlflowAppCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("SageMaker", "DescribeMlflowApp", {})
13
+ .n("SageMakerClient", "DescribeMlflowAppCommand")
14
+ .sc(DescribeMlflowApp)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListMlflowApps } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListMlflowAppsCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("SageMaker", "ListMlflowApps", {})
13
+ .n("SageMakerClient", "ListMlflowAppsCommand")
14
+ .sc(ListMlflowApps)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateMlflowApp } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateMlflowAppCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("SageMaker", "UpdateMlflowApp", {})
13
+ .n("SageMakerClient", "UpdateMlflowAppCommand")
14
+ .sc(UpdateMlflowApp)
15
+ .build() {
16
+ }
@@ -42,6 +42,7 @@ export * from "./CreateInferenceComponentCommand";
42
42
  export * from "./CreateInferenceExperimentCommand";
43
43
  export * from "./CreateInferenceRecommendationsJobCommand";
44
44
  export * from "./CreateLabelingJobCommand";
45
+ export * from "./CreateMlflowAppCommand";
45
46
  export * from "./CreateMlflowTrackingServerCommand";
46
47
  export * from "./CreateModelBiasJobDefinitionCommand";
47
48
  export * from "./CreateModelCardCommand";
@@ -59,6 +60,7 @@ export * from "./CreatePartnerAppCommand";
59
60
  export * from "./CreatePartnerAppPresignedUrlCommand";
60
61
  export * from "./CreatePipelineCommand";
61
62
  export * from "./CreatePresignedDomainUrlCommand";
63
+ export * from "./CreatePresignedMlflowAppUrlCommand";
62
64
  export * from "./CreatePresignedMlflowTrackingServerUrlCommand";
63
65
  export * from "./CreatePresignedNotebookInstanceUrlCommand";
64
66
  export * from "./CreateProcessingJobCommand";
@@ -104,6 +106,7 @@ export * from "./DeleteImageCommand";
104
106
  export * from "./DeleteImageVersionCommand";
105
107
  export * from "./DeleteInferenceComponentCommand";
106
108
  export * from "./DeleteInferenceExperimentCommand";
109
+ export * from "./DeleteMlflowAppCommand";
107
110
  export * from "./DeleteMlflowTrackingServerCommand";
108
111
  export * from "./DeleteModelBiasJobDefinitionCommand";
109
112
  export * from "./DeleteModelCardCommand";
@@ -169,6 +172,7 @@ export * from "./DescribeInferenceExperimentCommand";
169
172
  export * from "./DescribeInferenceRecommendationsJobCommand";
170
173
  export * from "./DescribeLabelingJobCommand";
171
174
  export * from "./DescribeLineageGroupCommand";
175
+ export * from "./DescribeMlflowAppCommand";
172
176
  export * from "./DescribeMlflowTrackingServerCommand";
173
177
  export * from "./DescribeModelBiasJobDefinitionCommand";
174
178
  export * from "./DescribeModelCardCommand";
@@ -253,6 +257,7 @@ export * from "./ListInferenceRecommendationsJobsCommand";
253
257
  export * from "./ListLabelingJobsCommand";
254
258
  export * from "./ListLabelingJobsForWorkteamCommand";
255
259
  export * from "./ListLineageGroupsCommand";
260
+ export * from "./ListMlflowAppsCommand";
256
261
  export * from "./ListMlflowTrackingServersCommand";
257
262
  export * from "./ListModelBiasJobDefinitionsCommand";
258
263
  export * from "./ListModelCardExportJobsCommand";
@@ -352,6 +357,7 @@ export * from "./UpdateImageVersionCommand";
352
357
  export * from "./UpdateInferenceComponentCommand";
353
358
  export * from "./UpdateInferenceComponentRuntimeConfigCommand";
354
359
  export * from "./UpdateInferenceExperimentCommand";
360
+ export * from "./UpdateMlflowAppCommand";
355
361
  export * from "./UpdateMlflowTrackingServerCommand";
356
362
  export * from "./UpdateModelCardCommand";
357
363
  export * from "./UpdateModelPackageCommand";
@@ -28,6 +28,10 @@ export const MIGProfileType = {
28
28
  MIG_7G_40GB: "mig-7g.40gb",
29
29
  MIG_7G_80GB: "mig-7g.80gb",
30
30
  };
31
+ export const AccountDefaultStatus = {
32
+ DISABLED: "DISABLED",
33
+ ENABLED: "ENABLED",
34
+ };
31
35
  export const ActionStatus = {
32
36
  COMPLETED: "Completed",
33
37
  FAILED: "Failed",
@@ -1351,6 +1355,7 @@ export const ClusterInstanceType = {
1351
1355
  ML_P5EN_48XLARGE: "ml.p5en.48xlarge",
1352
1356
  ML_P5E_48XLARGE: "ml.p5e.48xlarge",
1353
1357
  ML_P5_48XLARGE: "ml.p5.48xlarge",
1358
+ ML_P5_4XLARGE: "ml.p5.4xlarge",
1354
1359
  ML_P6E_GB200_36XLARGE: "ml.p6e-gb200.36xlarge",
1355
1360
  ML_P6_B200_48XLARGE: "ml.p6-b200.48xlarge",
1356
1361
  ML_R6I_12XLARGE: "ml.r6i.12xlarge",
@@ -1731,10 +1736,12 @@ export const StudioWebPortal = {
1731
1736
  export const MlTools = {
1732
1737
  AUTO_ML: "AutoMl",
1733
1738
  COMET: "Comet",
1739
+ DATASETS: "Datasets",
1734
1740
  DATA_WRANGLER: "DataWrangler",
1735
1741
  DEEPCHECKS_LLM_EVALUATION: "DeepchecksLLMEvaluation",
1736
1742
  EMR_CLUSTERS: "EmrClusters",
1737
1743
  ENDPOINTS: "Endpoints",
1744
+ EVALUATORS: "Evaluators",
1738
1745
  EXPERIMENTS: "Experiments",
1739
1746
  FEATURE_STORE: "FeatureStore",
1740
1747
  FIDDLER: "Fiddler",
@@ -1748,6 +1755,7 @@ export const MlTools = {
1748
1755
  PERFORMANCE_EVALUATION: "PerformanceEvaluation",
1749
1756
  PIPELINES: "Pipelines",
1750
1757
  PROJECTS: "Projects",
1758
+ RUNNING_INSTANCES: "RunningInstances",
1751
1759
  TRAINING: "Training",
1752
1760
  };
1753
1761
  export const SageMakerImageName = {
@@ -1832,6 +1840,8 @@ export const ThroughputMode = {
1832
1840
  PROVISIONED: "Provisioned",
1833
1841
  };
1834
1842
  export const HubContentType = {
1843
+ DATA_SET: "DataSet",
1844
+ JSON_DOC: "JsonDoc",
1835
1845
  MODEL: "Model",
1836
1846
  MODEL_REFERENCE: "ModelReference",
1837
1847
  NOTEBOOK: "Notebook",
@@ -2065,6 +2075,10 @@ export const FlatInvocations = {
2065
2075
  CONTINUE: "Continue",
2066
2076
  STOP: "Stop",
2067
2077
  };
2078
+ export const ModelRegistrationMode = {
2079
+ AUTO_MODEL_REGISTRATION_DISABLED: "AutoModelRegistrationDisabled",
2080
+ AUTO_MODEL_REGISTRATION_ENABLED: "AutoModelRegistrationEnabled",
2081
+ };
2068
2082
  export const TrackingServerSize = {
2069
2083
  L: "Large",
2070
2084
  M: "Medium",
@@ -2337,6 +2351,8 @@ export const HubContentStatus = {
2337
2351
  DELETING: "Deleting",
2338
2352
  IMPORTING: "Importing",
2339
2353
  IMPORT_FAILED: "ImportFailed",
2354
+ PENDING_DELETE: "PendingDelete",
2355
+ PENDING_IMPORT: "PendingImport",
2340
2356
  };
2341
2357
  export const HubContentSupportStatus = {
2342
2358
  DEPRECATED: "Deprecated",
@@ -2426,6 +2442,22 @@ export const LabelingJobStatus = {
2426
2442
  STOPPED: "Stopped",
2427
2443
  STOPPING: "Stopping",
2428
2444
  };
2445
+ export const MaintenanceStatus = {
2446
+ MAINTENANCE_COMPLETE: "MaintenanceComplete",
2447
+ MAINTENANCE_FAILED: "MaintenanceFailed",
2448
+ MAINTENANCE_IN_PROGRESS: "MaintenanceInProgress",
2449
+ };
2450
+ export const MlflowAppStatus = {
2451
+ CREATED: "Created",
2452
+ CREATE_FAILED: "CreateFailed",
2453
+ CREATING: "Creating",
2454
+ DELETED: "Deleted",
2455
+ DELETE_FAILED: "DeleteFailed",
2456
+ DELETING: "Deleting",
2457
+ UPDATED: "Updated",
2458
+ UPDATE_FAILED: "UpdateFailed",
2459
+ UPDATING: "Updating",
2460
+ };
2429
2461
  export const IsTrackingServerActive = {
2430
2462
  ACTIVE: "Active",
2431
2463
  INACTIVE: "Inactive",
@@ -2861,6 +2893,11 @@ export const SortLineageGroupsBy = {
2861
2893
  CREATION_TIME: "CreationTime",
2862
2894
  NAME: "Name",
2863
2895
  };
2896
+ export const SortMlflowAppBy = {
2897
+ CREATION_TIME: "CreationTime",
2898
+ NAME: "Name",
2899
+ STATUS: "Status",
2900
+ };
2864
2901
  export const SortTrackingServerBy = {
2865
2902
  CREATION_TIME: "CreationTime",
2866
2903
  NAME: "Name",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListMlflowAppsCommand, } from "../commands/ListMlflowAppsCommand";
3
+ import { SageMakerClient } from "../SageMakerClient";
4
+ export const paginateListMlflowApps = createPaginator(SageMakerClient, ListMlflowAppsCommand, "NextToken", "NextToken", "MaxResults");
@@ -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";