@aws-sdk/client-sagemaker 3.699.0 → 3.709.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 (266) hide show
  1. package/README.md +160 -0
  2. package/dist-cjs/index.js +1585 -206
  3. package/dist-es/SageMaker.js +40 -0
  4. package/dist-es/commands/CreateClusterSchedulerConfigCommand.js +22 -0
  5. package/dist-es/commands/CreateComputeQuotaCommand.js +22 -0
  6. package/dist-es/commands/CreatePartnerAppCommand.js +22 -0
  7. package/dist-es/commands/CreatePartnerAppPresignedUrlCommand.js +22 -0
  8. package/dist-es/commands/CreateTrainingPlanCommand.js +22 -0
  9. package/dist-es/commands/DeleteClusterSchedulerConfigCommand.js +22 -0
  10. package/dist-es/commands/DeleteComputeQuotaCommand.js +22 -0
  11. package/dist-es/commands/DeletePartnerAppCommand.js +22 -0
  12. package/dist-es/commands/DescribeClusterSchedulerConfigCommand.js +22 -0
  13. package/dist-es/commands/DescribeComputeQuotaCommand.js +22 -0
  14. package/dist-es/commands/DescribePartnerAppCommand.js +22 -0
  15. package/dist-es/commands/DescribeTrainingPlanCommand.js +22 -0
  16. package/dist-es/commands/ListClusterSchedulerConfigsCommand.js +22 -0
  17. package/dist-es/commands/ListComputeQuotasCommand.js +22 -0
  18. package/dist-es/commands/ListPartnerAppsCommand.js +22 -0
  19. package/dist-es/commands/ListTrainingPlansCommand.js +22 -0
  20. package/dist-es/commands/SearchTrainingPlanOfferingsCommand.js +22 -0
  21. package/dist-es/commands/UpdateClusterSchedulerConfigCommand.js +22 -0
  22. package/dist-es/commands/UpdateComputeQuotaCommand.js +22 -0
  23. package/dist-es/commands/UpdateModelCardCommand.js +1 -1
  24. package/dist-es/commands/UpdateModelPackageCommand.js +1 -1
  25. package/dist-es/commands/UpdatePartnerAppCommand.js +22 -0
  26. package/dist-es/commands/index.js +20 -0
  27. package/dist-es/models/models_0.js +40 -10
  28. package/dist-es/models/models_1.js +21 -56
  29. package/dist-es/models/models_2.js +67 -56
  30. package/dist-es/models/models_3.js +101 -43
  31. package/dist-es/models/models_4.js +55 -13
  32. package/dist-es/models/models_5.js +15 -0
  33. package/dist-es/pagination/ListClusterSchedulerConfigsPaginator.js +4 -0
  34. package/dist-es/pagination/ListComputeQuotasPaginator.js +4 -0
  35. package/dist-es/pagination/ListPartnerAppsPaginator.js +4 -0
  36. package/dist-es/pagination/ListTrainingPlansPaginator.js +4 -0
  37. package/dist-es/pagination/index.js +4 -0
  38. package/dist-es/protocols/Aws_json1_1.js +909 -26
  39. package/dist-types/SageMaker.d.ts +144 -0
  40. package/dist-types/SageMakerClient.d.ts +22 -2
  41. package/dist-types/commands/CreateActionCommand.d.ts +1 -1
  42. package/dist-types/commands/CreateAlgorithmCommand.d.ts +4 -3
  43. package/dist-types/commands/CreateClusterCommand.d.ts +2 -1
  44. package/dist-types/commands/CreateClusterSchedulerConfigCommand.d.ts +99 -0
  45. package/dist-types/commands/CreateComputeQuotaCommand.d.ts +108 -0
  46. package/dist-types/commands/CreateDomainCommand.d.ts +9 -1
  47. package/dist-types/commands/CreateHyperParameterTuningJobCommand.d.ts +10 -8
  48. package/dist-types/commands/CreateNotebookInstanceCommand.d.ts +1 -1
  49. package/dist-types/commands/CreateNotebookInstanceLifecycleConfigCommand.d.ts +1 -1
  50. package/dist-types/commands/CreatePartnerAppCommand.d.ts +102 -0
  51. package/dist-types/commands/CreatePartnerAppPresignedUrlCommand.d.ts +76 -0
  52. package/dist-types/commands/CreateSpaceCommand.d.ts +3 -0
  53. package/dist-types/commands/CreateTrainingJobCommand.d.ts +3 -2
  54. package/dist-types/commands/CreateTrainingPlanCommand.d.ts +148 -0
  55. package/dist-types/commands/CreateUserProfileCommand.d.ts +5 -1
  56. package/dist-types/commands/DeleteClusterSchedulerConfigCommand.d.ts +72 -0
  57. package/dist-types/commands/DeleteComputeQuotaCommand.d.ts +72 -0
  58. package/dist-types/commands/DeletePartnerAppCommand.d.ts +79 -0
  59. package/dist-types/commands/DescribeAlgorithmCommand.d.ts +4 -3
  60. package/dist-types/commands/DescribeClusterCommand.d.ts +4 -1
  61. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +1 -1
  62. package/dist-types/commands/DescribeClusterSchedulerConfigCommand.d.ts +115 -0
  63. package/dist-types/commands/DescribeComputeQuotaCommand.d.ts +122 -0
  64. package/dist-types/commands/DescribeDomainCommand.d.ts +9 -1
  65. package/dist-types/commands/DescribeHumanTaskUiCommand.d.ts +2 -1
  66. package/dist-types/commands/DescribeHyperParameterTuningJobCommand.d.ts +11 -9
  67. package/dist-types/commands/DescribeImageCommand.d.ts +1 -1
  68. package/dist-types/commands/DescribeImageVersionCommand.d.ts +1 -1
  69. package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +1 -1
  70. package/dist-types/commands/DescribeInferenceExperimentCommand.d.ts +1 -1
  71. package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +1 -2
  72. package/dist-types/commands/DescribePartnerAppCommand.d.ts +99 -0
  73. package/dist-types/commands/DescribeSpaceCommand.d.ts +3 -0
  74. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +3 -2
  75. package/dist-types/commands/DescribeTrainingPlanCommand.d.ts +102 -0
  76. package/dist-types/commands/DescribeUserProfileCommand.d.ts +5 -1
  77. package/dist-types/commands/ListClusterNodesCommand.d.ts +1 -1
  78. package/dist-types/commands/ListClusterSchedulerConfigsCommand.d.ts +91 -0
  79. package/dist-types/commands/ListClustersCommand.d.ts +4 -0
  80. package/dist-types/commands/ListComputeQuotasCommand.d.ts +109 -0
  81. package/dist-types/commands/ListDeviceFleetsCommand.d.ts +2 -1
  82. package/dist-types/commands/ListDevicesCommand.d.ts +1 -1
  83. package/dist-types/commands/ListDomainsCommand.d.ts +1 -1
  84. package/dist-types/commands/ListEdgeDeploymentPlansCommand.d.ts +1 -1
  85. package/dist-types/commands/ListEdgePackagingJobsCommand.d.ts +1 -1
  86. package/dist-types/commands/ListEndpointConfigsCommand.d.ts +1 -1
  87. package/dist-types/commands/ListEndpointsCommand.d.ts +1 -1
  88. package/dist-types/commands/ListExperimentsCommand.d.ts +1 -1
  89. package/dist-types/commands/ListFeatureGroupsCommand.d.ts +1 -1
  90. package/dist-types/commands/ListFlowDefinitionsCommand.d.ts +1 -1
  91. package/dist-types/commands/ListHubContentVersionsCommand.d.ts +1 -1
  92. package/dist-types/commands/ListHubContentsCommand.d.ts +1 -1
  93. package/dist-types/commands/ListHubsCommand.d.ts +1 -1
  94. package/dist-types/commands/ListHumanTaskUisCommand.d.ts +1 -1
  95. package/dist-types/commands/ListHyperParameterTuningJobsCommand.d.ts +1 -1
  96. package/dist-types/commands/ListImageVersionsCommand.d.ts +1 -1
  97. package/dist-types/commands/ListImagesCommand.d.ts +1 -1
  98. package/dist-types/commands/ListInferenceComponentsCommand.d.ts +1 -1
  99. package/dist-types/commands/ListInferenceExperimentsCommand.d.ts +1 -1
  100. package/dist-types/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +1 -1
  101. package/dist-types/commands/ListInferenceRecommendationsJobsCommand.d.ts +1 -1
  102. package/dist-types/commands/ListLabelingJobsCommand.d.ts +1 -1
  103. package/dist-types/commands/ListLabelingJobsForWorkteamCommand.d.ts +1 -1
  104. package/dist-types/commands/ListLineageGroupsCommand.d.ts +1 -2
  105. package/dist-types/commands/ListPartnerAppsCommand.d.ts +81 -0
  106. package/dist-types/commands/ListTrainingJobsCommand.d.ts +2 -0
  107. package/dist-types/commands/ListTrainingPlansCommand.d.ts +115 -0
  108. package/dist-types/commands/SearchCommand.d.ts +10 -8
  109. package/dist-types/commands/SearchTrainingPlanOfferingsCommand.d.ts +120 -0
  110. package/dist-types/commands/UpdateActionCommand.d.ts +2 -1
  111. package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +1 -1
  112. package/dist-types/commands/UpdateArtifactCommand.d.ts +1 -1
  113. package/dist-types/commands/UpdateClusterCommand.d.ts +3 -2
  114. package/dist-types/commands/UpdateClusterSchedulerConfigCommand.d.ts +94 -0
  115. package/dist-types/commands/UpdateClusterSoftwareCommand.d.ts +1 -1
  116. package/dist-types/commands/UpdateCodeRepositoryCommand.d.ts +1 -1
  117. package/dist-types/commands/UpdateComputeQuotaCommand.d.ts +103 -0
  118. package/dist-types/commands/UpdateContextCommand.d.ts +1 -1
  119. package/dist-types/commands/UpdateDeviceFleetCommand.d.ts +1 -1
  120. package/dist-types/commands/UpdateDevicesCommand.d.ts +1 -1
  121. package/dist-types/commands/UpdateDomainCommand.d.ts +10 -2
  122. package/dist-types/commands/UpdateEndpointCommand.d.ts +1 -1
  123. package/dist-types/commands/UpdateEndpointWeightsAndCapacitiesCommand.d.ts +1 -1
  124. package/dist-types/commands/UpdateExperimentCommand.d.ts +1 -1
  125. package/dist-types/commands/UpdateFeatureGroupCommand.d.ts +1 -1
  126. package/dist-types/commands/UpdateFeatureMetadataCommand.d.ts +1 -1
  127. package/dist-types/commands/UpdateHubCommand.d.ts +1 -1
  128. package/dist-types/commands/UpdateImageCommand.d.ts +1 -1
  129. package/dist-types/commands/UpdateImageVersionCommand.d.ts +1 -1
  130. package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +1 -1
  131. package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +1 -1
  132. package/dist-types/commands/UpdateInferenceExperimentCommand.d.ts +1 -1
  133. package/dist-types/commands/UpdateMlflowTrackingServerCommand.d.ts +1 -1
  134. package/dist-types/commands/UpdateModelCardCommand.d.ts +1 -1
  135. package/dist-types/commands/UpdateModelPackageCommand.d.ts +1 -1
  136. package/dist-types/commands/UpdateMonitoringAlertCommand.d.ts +1 -1
  137. package/dist-types/commands/UpdateMonitoringScheduleCommand.d.ts +1 -1
  138. package/dist-types/commands/UpdateNotebookInstanceCommand.d.ts +1 -1
  139. package/dist-types/commands/UpdateNotebookInstanceLifecycleConfigCommand.d.ts +1 -1
  140. package/dist-types/commands/UpdatePartnerAppCommand.d.ts +98 -0
  141. package/dist-types/commands/UpdatePipelineCommand.d.ts +1 -1
  142. package/dist-types/commands/UpdatePipelineExecutionCommand.d.ts +1 -1
  143. package/dist-types/commands/UpdateProjectCommand.d.ts +1 -1
  144. package/dist-types/commands/UpdateSpaceCommand.d.ts +4 -1
  145. package/dist-types/commands/UpdateTrainingJobCommand.d.ts +1 -1
  146. package/dist-types/commands/UpdateTrialCommand.d.ts +1 -1
  147. package/dist-types/commands/UpdateTrialComponentCommand.d.ts +1 -2
  148. package/dist-types/commands/UpdateUserProfileCommand.d.ts +5 -1
  149. package/dist-types/commands/index.d.ts +20 -0
  150. package/dist-types/models/models_0.d.ts +361 -285
  151. package/dist-types/models/models_1.d.ts +495 -487
  152. package/dist-types/models/models_2.d.ts +4294 -4703
  153. package/dist-types/models/models_3.d.ts +5930 -5721
  154. package/dist-types/models/models_4.d.ts +5296 -4824
  155. package/dist-types/models/models_5.d.ts +1786 -5
  156. package/dist-types/pagination/ListClusterSchedulerConfigsPaginator.d.ts +7 -0
  157. package/dist-types/pagination/ListComputeQuotasPaginator.d.ts +7 -0
  158. package/dist-types/pagination/ListPartnerAppsPaginator.d.ts +7 -0
  159. package/dist-types/pagination/ListTrainingPlansPaginator.d.ts +7 -0
  160. package/dist-types/pagination/index.d.ts +4 -0
  161. package/dist-types/protocols/Aws_json1_1.d.ts +180 -0
  162. package/dist-types/ts3.4/SageMaker.d.ts +344 -0
  163. package/dist-types/ts3.4/SageMakerClient.d.ts +120 -0
  164. package/dist-types/ts3.4/commands/CreateActionCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/CreateClusterSchedulerConfigCommand.d.ts +51 -0
  166. package/dist-types/ts3.4/commands/CreateComputeQuotaCommand.d.ts +51 -0
  167. package/dist-types/ts3.4/commands/CreateNotebookInstanceCommand.d.ts +1 -1
  168. package/dist-types/ts3.4/commands/CreateNotebookInstanceLifecycleConfigCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/CreatePartnerAppCommand.d.ts +50 -0
  170. package/dist-types/ts3.4/commands/CreatePartnerAppPresignedUrlCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/CreateTrainingPlanCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/DeleteClusterSchedulerConfigCommand.d.ts +47 -0
  173. package/dist-types/ts3.4/commands/DeleteComputeQuotaCommand.d.ts +46 -0
  174. package/dist-types/ts3.4/commands/DeletePartnerAppCommand.d.ts +50 -0
  175. package/dist-types/ts3.4/commands/DescribeClusterSchedulerConfigCommand.d.ts +51 -0
  176. package/dist-types/ts3.4/commands/DescribeComputeQuotaCommand.d.ts +51 -0
  177. package/dist-types/ts3.4/commands/DescribeHumanTaskUiCommand.d.ts +2 -4
  178. package/dist-types/ts3.4/commands/DescribeHyperParameterTuningJobCommand.d.ts +1 -1
  179. package/dist-types/ts3.4/commands/DescribeImageCommand.d.ts +1 -1
  180. package/dist-types/ts3.4/commands/DescribeImageVersionCommand.d.ts +1 -1
  181. package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +1 -1
  182. package/dist-types/ts3.4/commands/DescribeInferenceExperimentCommand.d.ts +1 -1
  183. package/dist-types/ts3.4/commands/DescribeInferenceRecommendationsJobCommand.d.ts +4 -2
  184. package/dist-types/ts3.4/commands/DescribePartnerAppCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/DescribeTrainingPlanCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/ListClusterSchedulerConfigsCommand.d.ts +51 -0
  187. package/dist-types/ts3.4/commands/ListComputeQuotasCommand.d.ts +51 -0
  188. package/dist-types/ts3.4/commands/ListDeviceFleetsCommand.d.ts +2 -4
  189. package/dist-types/ts3.4/commands/ListDevicesCommand.d.ts +1 -1
  190. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +1 -1
  191. package/dist-types/ts3.4/commands/ListEdgeDeploymentPlansCommand.d.ts +1 -1
  192. package/dist-types/ts3.4/commands/ListEdgePackagingJobsCommand.d.ts +1 -1
  193. package/dist-types/ts3.4/commands/ListEndpointConfigsCommand.d.ts +1 -1
  194. package/dist-types/ts3.4/commands/ListEndpointsCommand.d.ts +1 -1
  195. package/dist-types/ts3.4/commands/ListExperimentsCommand.d.ts +1 -1
  196. package/dist-types/ts3.4/commands/ListFeatureGroupsCommand.d.ts +1 -1
  197. package/dist-types/ts3.4/commands/ListFlowDefinitionsCommand.d.ts +1 -1
  198. package/dist-types/ts3.4/commands/ListHubContentVersionsCommand.d.ts +1 -1
  199. package/dist-types/ts3.4/commands/ListHubContentsCommand.d.ts +1 -1
  200. package/dist-types/ts3.4/commands/ListHubsCommand.d.ts +1 -1
  201. package/dist-types/ts3.4/commands/ListHumanTaskUisCommand.d.ts +1 -1
  202. package/dist-types/ts3.4/commands/ListHyperParameterTuningJobsCommand.d.ts +1 -1
  203. package/dist-types/ts3.4/commands/ListImageVersionsCommand.d.ts +1 -1
  204. package/dist-types/ts3.4/commands/ListImagesCommand.d.ts +1 -1
  205. package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +1 -1
  206. package/dist-types/ts3.4/commands/ListInferenceExperimentsCommand.d.ts +1 -1
  207. package/dist-types/ts3.4/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +1 -1
  208. package/dist-types/ts3.4/commands/ListInferenceRecommendationsJobsCommand.d.ts +1 -1
  209. package/dist-types/ts3.4/commands/ListLabelingJobsCommand.d.ts +1 -1
  210. package/dist-types/ts3.4/commands/ListLabelingJobsForWorkteamCommand.d.ts +1 -1
  211. package/dist-types/ts3.4/commands/ListLineageGroupsCommand.d.ts +4 -2
  212. package/dist-types/ts3.4/commands/ListPartnerAppsCommand.d.ts +50 -0
  213. package/dist-types/ts3.4/commands/ListTrainingPlansCommand.d.ts +51 -0
  214. package/dist-types/ts3.4/commands/SearchTrainingPlanOfferingsCommand.d.ts +51 -0
  215. package/dist-types/ts3.4/commands/UpdateActionCommand.d.ts +2 -1
  216. package/dist-types/ts3.4/commands/UpdateAppImageConfigCommand.d.ts +1 -1
  217. package/dist-types/ts3.4/commands/UpdateArtifactCommand.d.ts +1 -1
  218. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +1 -1
  219. package/dist-types/ts3.4/commands/UpdateClusterSchedulerConfigCommand.d.ts +51 -0
  220. package/dist-types/ts3.4/commands/UpdateClusterSoftwareCommand.d.ts +1 -1
  221. package/dist-types/ts3.4/commands/UpdateCodeRepositoryCommand.d.ts +1 -1
  222. package/dist-types/ts3.4/commands/UpdateComputeQuotaCommand.d.ts +51 -0
  223. package/dist-types/ts3.4/commands/UpdateContextCommand.d.ts +1 -1
  224. package/dist-types/ts3.4/commands/UpdateDeviceFleetCommand.d.ts +1 -1
  225. package/dist-types/ts3.4/commands/UpdateDevicesCommand.d.ts +1 -1
  226. package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
  227. package/dist-types/ts3.4/commands/UpdateEndpointCommand.d.ts +1 -1
  228. package/dist-types/ts3.4/commands/UpdateEndpointWeightsAndCapacitiesCommand.d.ts +1 -1
  229. package/dist-types/ts3.4/commands/UpdateExperimentCommand.d.ts +1 -1
  230. package/dist-types/ts3.4/commands/UpdateFeatureGroupCommand.d.ts +1 -1
  231. package/dist-types/ts3.4/commands/UpdateFeatureMetadataCommand.d.ts +1 -1
  232. package/dist-types/ts3.4/commands/UpdateHubCommand.d.ts +1 -1
  233. package/dist-types/ts3.4/commands/UpdateImageCommand.d.ts +1 -1
  234. package/dist-types/ts3.4/commands/UpdateImageVersionCommand.d.ts +1 -1
  235. package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +1 -1
  236. package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +1 -1
  237. package/dist-types/ts3.4/commands/UpdateInferenceExperimentCommand.d.ts +1 -1
  238. package/dist-types/ts3.4/commands/UpdateMlflowTrackingServerCommand.d.ts +1 -1
  239. package/dist-types/ts3.4/commands/UpdateModelCardCommand.d.ts +1 -1
  240. package/dist-types/ts3.4/commands/UpdateModelPackageCommand.d.ts +1 -1
  241. package/dist-types/ts3.4/commands/UpdateMonitoringAlertCommand.d.ts +1 -1
  242. package/dist-types/ts3.4/commands/UpdateMonitoringScheduleCommand.d.ts +1 -1
  243. package/dist-types/ts3.4/commands/UpdateNotebookInstanceCommand.d.ts +1 -1
  244. package/dist-types/ts3.4/commands/UpdateNotebookInstanceLifecycleConfigCommand.d.ts +1 -1
  245. package/dist-types/ts3.4/commands/UpdatePartnerAppCommand.d.ts +50 -0
  246. package/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +1 -1
  247. package/dist-types/ts3.4/commands/UpdatePipelineExecutionCommand.d.ts +1 -1
  248. package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +1 -1
  249. package/dist-types/ts3.4/commands/UpdateSpaceCommand.d.ts +1 -1
  250. package/dist-types/ts3.4/commands/UpdateTrainingJobCommand.d.ts +1 -1
  251. package/dist-types/ts3.4/commands/UpdateTrialCommand.d.ts +1 -1
  252. package/dist-types/ts3.4/commands/UpdateTrialComponentCommand.d.ts +4 -2
  253. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  254. package/dist-types/ts3.4/models/models_0.d.ts +96 -76
  255. package/dist-types/ts3.4/models/models_1.d.ts +146 -162
  256. package/dist-types/ts3.4/models/models_2.d.ts +280 -318
  257. package/dist-types/ts3.4/models/models_3.d.ts +471 -420
  258. package/dist-types/ts3.4/models/models_4.d.ts +546 -394
  259. package/dist-types/ts3.4/models/models_5.d.ts +458 -3
  260. package/dist-types/ts3.4/pagination/ListClusterSchedulerConfigsPaginator.d.ts +11 -0
  261. package/dist-types/ts3.4/pagination/ListComputeQuotasPaginator.d.ts +11 -0
  262. package/dist-types/ts3.4/pagination/ListPartnerAppsPaginator.d.ts +11 -0
  263. package/dist-types/ts3.4/pagination/ListTrainingPlansPaginator.d.ts +11 -0
  264. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  265. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +240 -0
  266. package/package.json +36 -36
@@ -1,20 +1,469 @@
1
- import { BooleanOperator } from "./models_0";
2
- import { UserSettings } from "./models_1";
1
+ import {
2
+ ActivationState,
3
+ AdditionalInferenceSpecificationDefinition,
4
+ AppNetworkAccessType,
5
+ AppSecurityGroupManagement,
6
+ BooleanOperator,
7
+ ClusterInstanceGroupSpecification,
8
+ ClusterNodeRecovery,
9
+ CodeEditorAppImageConfig,
10
+ ComputeQuotaConfig,
11
+ ComputeQuotaTarget,
12
+ InferenceSpecification,
13
+ JupyterLabAppImageConfig,
14
+ KernelGatewayImageConfig,
15
+ ModelApprovalStatus,
16
+ Tag,
17
+ } from "./models_0";
18
+ import {
19
+ _InstanceType,
20
+ DefaultSpaceSettings,
21
+ DeploymentConfig,
22
+ EdgeOutputConfig,
23
+ FeatureDefinition,
24
+ InferenceComponentRuntimeConfig,
25
+ InferenceComponentSpecification,
26
+ InferenceExperimentDataStorageConfig,
27
+ InferenceExperimentSchedule,
28
+ JobType,
29
+ ModelCardStatus,
30
+ ModelLifeCycle,
31
+ ModelPackageModelCard,
32
+ ModelVariantConfig,
33
+ MonitoringScheduleConfig,
34
+ Processor,
35
+ SchedulerConfig,
36
+ ShadowModeConfig,
37
+ TagPropagation,
38
+ ThroughputMode,
39
+ TrackingServerSize,
40
+ UserSettings,
41
+ VendorGuidance,
42
+ } from "./models_1";
3
43
  import {
4
44
  CrossAccountFilterOption,
45
+ FeatureParameter,
46
+ InstanceMetadataServiceConfiguration,
5
47
  MemberDefinition,
48
+ NotebookInstanceAcceleratorType,
49
+ NotebookInstanceLifecycleHook,
6
50
  NotificationConfiguration,
7
51
  OidcConfig,
52
+ ParallelismConfiguration,
53
+ PartnerAppConfig,
54
+ PartnerAppMaintenanceConfig,
55
+ PipelineDefinitionS3Location,
56
+ ProfilerRuleConfiguration,
57
+ ProvisioningParameter,
58
+ RootAccess,
8
59
  SourceIpConfig,
60
+ SpaceSettings,
61
+ TrialComponentArtifact,
62
+ TrialComponentParameterValue,
63
+ TrialComponentStatus,
9
64
  WorkerAccessConfiguration,
10
65
  WorkforceVpcConfigRequest,
11
66
  } from "./models_2";
12
- import { Filter, ResourceType, Workforce, Workteam } from "./models_3";
67
+ import {
68
+ DesiredWeightAndCapacity,
69
+ Device,
70
+ DomainSettingsForUpdate,
71
+ Filter,
72
+ GitConfigForUpdate,
73
+ ResourceType,
74
+ Workforce,
75
+ Workteam,
76
+ } from "./models_3";
13
77
  import {
14
78
  NestedFilters,
79
+ OnlineStoreConfigUpdate,
80
+ ProfilerConfigForUpdate,
81
+ RemoteDebugConfigForUpdate,
82
+ ResourceConfigForUpdate,
15
83
  SearchSortOrder,
16
84
  VisibilityConditions,
17
85
  } from "./models_4";
86
+ export interface UpdateActionResponse {
87
+ ActionArn?: string | undefined;
88
+ }
89
+ export interface UpdateAppImageConfigRequest {
90
+ AppImageConfigName: string | undefined;
91
+ KernelGatewayImageConfig?: KernelGatewayImageConfig | undefined;
92
+ JupyterLabAppImageConfig?: JupyterLabAppImageConfig | undefined;
93
+ CodeEditorAppImageConfig?: CodeEditorAppImageConfig | undefined;
94
+ }
95
+ export interface UpdateAppImageConfigResponse {
96
+ AppImageConfigArn?: string | undefined;
97
+ }
98
+ export interface UpdateArtifactRequest {
99
+ ArtifactArn: string | undefined;
100
+ ArtifactName?: string | undefined;
101
+ Properties?: Record<string, string> | undefined;
102
+ PropertiesToRemove?: string[] | undefined;
103
+ }
104
+ export interface UpdateArtifactResponse {
105
+ ArtifactArn?: string | undefined;
106
+ }
107
+ export interface UpdateClusterRequest {
108
+ ClusterName: string | undefined;
109
+ InstanceGroups: ClusterInstanceGroupSpecification[] | undefined;
110
+ NodeRecovery?: ClusterNodeRecovery | undefined;
111
+ }
112
+ export interface UpdateClusterResponse {
113
+ ClusterArn: string | undefined;
114
+ }
115
+ export interface UpdateClusterSchedulerConfigRequest {
116
+ ClusterSchedulerConfigId: string | undefined;
117
+ TargetVersion: number | undefined;
118
+ SchedulerConfig?: SchedulerConfig | undefined;
119
+ Description?: string | undefined;
120
+ }
121
+ export interface UpdateClusterSchedulerConfigResponse {
122
+ ClusterSchedulerConfigArn: string | undefined;
123
+ ClusterSchedulerConfigVersion: number | undefined;
124
+ }
125
+ export interface UpdateClusterSoftwareRequest {
126
+ ClusterName: string | undefined;
127
+ }
128
+ export interface UpdateClusterSoftwareResponse {
129
+ ClusterArn: string | undefined;
130
+ }
131
+ export interface UpdateCodeRepositoryInput {
132
+ CodeRepositoryName: string | undefined;
133
+ GitConfig?: GitConfigForUpdate | undefined;
134
+ }
135
+ export interface UpdateCodeRepositoryOutput {
136
+ CodeRepositoryArn: string | undefined;
137
+ }
138
+ export interface UpdateComputeQuotaRequest {
139
+ ComputeQuotaId: string | undefined;
140
+ TargetVersion: number | undefined;
141
+ ComputeQuotaConfig?: ComputeQuotaConfig | undefined;
142
+ ComputeQuotaTarget?: ComputeQuotaTarget | undefined;
143
+ ActivationState?: ActivationState | undefined;
144
+ Description?: string | undefined;
145
+ }
146
+ export interface UpdateComputeQuotaResponse {
147
+ ComputeQuotaArn: string | undefined;
148
+ ComputeQuotaVersion: number | undefined;
149
+ }
150
+ export interface UpdateContextRequest {
151
+ ContextName: string | undefined;
152
+ Description?: string | undefined;
153
+ Properties?: Record<string, string> | undefined;
154
+ PropertiesToRemove?: string[] | undefined;
155
+ }
156
+ export interface UpdateContextResponse {
157
+ ContextArn?: string | undefined;
158
+ }
159
+ export interface UpdateDeviceFleetRequest {
160
+ DeviceFleetName: string | undefined;
161
+ RoleArn?: string | undefined;
162
+ Description?: string | undefined;
163
+ OutputConfig: EdgeOutputConfig | undefined;
164
+ EnableIotRoleAlias?: boolean | undefined;
165
+ }
166
+ export interface UpdateDevicesRequest {
167
+ DeviceFleetName: string | undefined;
168
+ Devices: Device[] | undefined;
169
+ }
170
+ export interface UpdateDomainRequest {
171
+ DomainId: string | undefined;
172
+ DefaultUserSettings?: UserSettings | undefined;
173
+ DomainSettingsForUpdate?: DomainSettingsForUpdate | undefined;
174
+ AppSecurityGroupManagement?: AppSecurityGroupManagement | undefined;
175
+ DefaultSpaceSettings?: DefaultSpaceSettings | undefined;
176
+ SubnetIds?: string[] | undefined;
177
+ AppNetworkAccessType?: AppNetworkAccessType | undefined;
178
+ TagPropagation?: TagPropagation | undefined;
179
+ }
180
+ export interface UpdateDomainResponse {
181
+ DomainArn?: string | undefined;
182
+ }
183
+ export declare const VariantPropertyType: {
184
+ readonly DataCaptureConfig: "DataCaptureConfig";
185
+ readonly DesiredInstanceCount: "DesiredInstanceCount";
186
+ readonly DesiredWeight: "DesiredWeight";
187
+ };
188
+ export type VariantPropertyType =
189
+ (typeof VariantPropertyType)[keyof typeof VariantPropertyType];
190
+ export interface VariantProperty {
191
+ VariantPropertyType: VariantPropertyType | undefined;
192
+ }
193
+ export interface UpdateEndpointInput {
194
+ EndpointName: string | undefined;
195
+ EndpointConfigName: string | undefined;
196
+ RetainAllVariantProperties?: boolean | undefined;
197
+ ExcludeRetainedVariantProperties?: VariantProperty[] | undefined;
198
+ DeploymentConfig?: DeploymentConfig | undefined;
199
+ RetainDeploymentConfig?: boolean | undefined;
200
+ }
201
+ export interface UpdateEndpointOutput {
202
+ EndpointArn: string | undefined;
203
+ }
204
+ export interface UpdateEndpointWeightsAndCapacitiesInput {
205
+ EndpointName: string | undefined;
206
+ DesiredWeightsAndCapacities: DesiredWeightAndCapacity[] | undefined;
207
+ }
208
+ export interface UpdateEndpointWeightsAndCapacitiesOutput {
209
+ EndpointArn: string | undefined;
210
+ }
211
+ export interface UpdateExperimentRequest {
212
+ ExperimentName: string | undefined;
213
+ DisplayName?: string | undefined;
214
+ Description?: string | undefined;
215
+ }
216
+ export interface UpdateExperimentResponse {
217
+ ExperimentArn?: string | undefined;
218
+ }
219
+ export interface ThroughputConfigUpdate {
220
+ ThroughputMode?: ThroughputMode | undefined;
221
+ ProvisionedReadCapacityUnits?: number | undefined;
222
+ ProvisionedWriteCapacityUnits?: number | undefined;
223
+ }
224
+ export interface UpdateFeatureGroupRequest {
225
+ FeatureGroupName: string | undefined;
226
+ FeatureAdditions?: FeatureDefinition[] | undefined;
227
+ OnlineStoreConfig?: OnlineStoreConfigUpdate | undefined;
228
+ ThroughputConfig?: ThroughputConfigUpdate | undefined;
229
+ }
230
+ export interface UpdateFeatureGroupResponse {
231
+ FeatureGroupArn: string | undefined;
232
+ }
233
+ export interface UpdateFeatureMetadataRequest {
234
+ FeatureGroupName: string | undefined;
235
+ FeatureName: string | undefined;
236
+ Description?: string | undefined;
237
+ ParameterAdditions?: FeatureParameter[] | undefined;
238
+ ParameterRemovals?: string[] | undefined;
239
+ }
240
+ export interface UpdateHubRequest {
241
+ HubName: string | undefined;
242
+ HubDescription?: string | undefined;
243
+ HubDisplayName?: string | undefined;
244
+ HubSearchKeywords?: string[] | undefined;
245
+ }
246
+ export interface UpdateHubResponse {
247
+ HubArn: string | undefined;
248
+ }
249
+ export interface UpdateImageRequest {
250
+ DeleteProperties?: string[] | undefined;
251
+ Description?: string | undefined;
252
+ DisplayName?: string | undefined;
253
+ ImageName: string | undefined;
254
+ RoleArn?: string | undefined;
255
+ }
256
+ export interface UpdateImageResponse {
257
+ ImageArn?: string | undefined;
258
+ }
259
+ export interface UpdateImageVersionRequest {
260
+ ImageName: string | undefined;
261
+ Alias?: string | undefined;
262
+ Version?: number | undefined;
263
+ AliasesToAdd?: string[] | undefined;
264
+ AliasesToDelete?: string[] | undefined;
265
+ VendorGuidance?: VendorGuidance | undefined;
266
+ JobType?: JobType | undefined;
267
+ MLFramework?: string | undefined;
268
+ ProgrammingLang?: string | undefined;
269
+ Processor?: Processor | undefined;
270
+ Horovod?: boolean | undefined;
271
+ ReleaseNotes?: string | undefined;
272
+ }
273
+ export interface UpdateImageVersionResponse {
274
+ ImageVersionArn?: string | undefined;
275
+ }
276
+ export interface UpdateInferenceComponentInput {
277
+ InferenceComponentName: string | undefined;
278
+ Specification?: InferenceComponentSpecification | undefined;
279
+ RuntimeConfig?: InferenceComponentRuntimeConfig | undefined;
280
+ }
281
+ export interface UpdateInferenceComponentOutput {
282
+ InferenceComponentArn: string | undefined;
283
+ }
284
+ export interface UpdateInferenceComponentRuntimeConfigInput {
285
+ InferenceComponentName: string | undefined;
286
+ DesiredRuntimeConfig: InferenceComponentRuntimeConfig | undefined;
287
+ }
288
+ export interface UpdateInferenceComponentRuntimeConfigOutput {
289
+ InferenceComponentArn: string | undefined;
290
+ }
291
+ export interface UpdateInferenceExperimentRequest {
292
+ Name: string | undefined;
293
+ Schedule?: InferenceExperimentSchedule | undefined;
294
+ Description?: string | undefined;
295
+ ModelVariants?: ModelVariantConfig[] | undefined;
296
+ DataStorageConfig?: InferenceExperimentDataStorageConfig | undefined;
297
+ ShadowModeConfig?: ShadowModeConfig | undefined;
298
+ }
299
+ export interface UpdateInferenceExperimentResponse {
300
+ InferenceExperimentArn: string | undefined;
301
+ }
302
+ export interface UpdateMlflowTrackingServerRequest {
303
+ TrackingServerName: string | undefined;
304
+ ArtifactStoreUri?: string | undefined;
305
+ TrackingServerSize?: TrackingServerSize | undefined;
306
+ AutomaticModelRegistration?: boolean | undefined;
307
+ WeeklyMaintenanceWindowStart?: string | undefined;
308
+ }
309
+ export interface UpdateMlflowTrackingServerResponse {
310
+ TrackingServerArn?: string | undefined;
311
+ }
312
+ export interface UpdateModelCardRequest {
313
+ ModelCardName: string | undefined;
314
+ Content?: string | undefined;
315
+ ModelCardStatus?: ModelCardStatus | undefined;
316
+ }
317
+ export interface UpdateModelCardResponse {
318
+ ModelCardArn: string | undefined;
319
+ }
320
+ export interface UpdateModelPackageInput {
321
+ ModelPackageArn: string | undefined;
322
+ ModelApprovalStatus?: ModelApprovalStatus | undefined;
323
+ ApprovalDescription?: string | undefined;
324
+ CustomerMetadataProperties?: Record<string, string> | undefined;
325
+ CustomerMetadataPropertiesToRemove?: string[] | undefined;
326
+ AdditionalInferenceSpecificationsToAdd?:
327
+ | AdditionalInferenceSpecificationDefinition[]
328
+ | undefined;
329
+ InferenceSpecification?: InferenceSpecification | undefined;
330
+ SourceUri?: string | undefined;
331
+ ModelCard?: ModelPackageModelCard | undefined;
332
+ ModelLifeCycle?: ModelLifeCycle | undefined;
333
+ ClientToken?: string | undefined;
334
+ }
335
+ export interface UpdateModelPackageOutput {
336
+ ModelPackageArn: string | undefined;
337
+ }
338
+ export interface UpdateMonitoringAlertRequest {
339
+ MonitoringScheduleName: string | undefined;
340
+ MonitoringAlertName: string | undefined;
341
+ DatapointsToAlert: number | undefined;
342
+ EvaluationPeriod: number | undefined;
343
+ }
344
+ export interface UpdateMonitoringAlertResponse {
345
+ MonitoringScheduleArn: string | undefined;
346
+ MonitoringAlertName?: string | undefined;
347
+ }
348
+ export interface UpdateMonitoringScheduleRequest {
349
+ MonitoringScheduleName: string | undefined;
350
+ MonitoringScheduleConfig: MonitoringScheduleConfig | undefined;
351
+ }
352
+ export interface UpdateMonitoringScheduleResponse {
353
+ MonitoringScheduleArn: string | undefined;
354
+ }
355
+ export interface UpdateNotebookInstanceInput {
356
+ NotebookInstanceName: string | undefined;
357
+ InstanceType?: _InstanceType | undefined;
358
+ RoleArn?: string | undefined;
359
+ LifecycleConfigName?: string | undefined;
360
+ DisassociateLifecycleConfig?: boolean | undefined;
361
+ VolumeSizeInGB?: number | undefined;
362
+ DefaultCodeRepository?: string | undefined;
363
+ AdditionalCodeRepositories?: string[] | undefined;
364
+ AcceleratorTypes?: NotebookInstanceAcceleratorType[] | undefined;
365
+ DisassociateAcceleratorTypes?: boolean | undefined;
366
+ DisassociateDefaultCodeRepository?: boolean | undefined;
367
+ DisassociateAdditionalCodeRepositories?: boolean | undefined;
368
+ RootAccess?: RootAccess | undefined;
369
+ InstanceMetadataServiceConfiguration?:
370
+ | InstanceMetadataServiceConfiguration
371
+ | undefined;
372
+ }
373
+ export interface UpdateNotebookInstanceOutput {}
374
+ export interface UpdateNotebookInstanceLifecycleConfigInput {
375
+ NotebookInstanceLifecycleConfigName: string | undefined;
376
+ OnCreate?: NotebookInstanceLifecycleHook[] | undefined;
377
+ OnStart?: NotebookInstanceLifecycleHook[] | undefined;
378
+ }
379
+ export interface UpdateNotebookInstanceLifecycleConfigOutput {}
380
+ export interface UpdatePartnerAppRequest {
381
+ Arn: string | undefined;
382
+ MaintenanceConfig?: PartnerAppMaintenanceConfig | undefined;
383
+ Tier?: string | undefined;
384
+ ApplicationConfig?: PartnerAppConfig | undefined;
385
+ EnableIamSessionBasedIdentity?: boolean | undefined;
386
+ ClientToken?: string | undefined;
387
+ Tags?: Tag[] | undefined;
388
+ }
389
+ export interface UpdatePartnerAppResponse {
390
+ Arn?: string | undefined;
391
+ }
392
+ export interface UpdatePipelineRequest {
393
+ PipelineName: string | undefined;
394
+ PipelineDisplayName?: string | undefined;
395
+ PipelineDefinition?: string | undefined;
396
+ PipelineDefinitionS3Location?: PipelineDefinitionS3Location | undefined;
397
+ PipelineDescription?: string | undefined;
398
+ RoleArn?: string | undefined;
399
+ ParallelismConfiguration?: ParallelismConfiguration | undefined;
400
+ }
401
+ export interface UpdatePipelineResponse {
402
+ PipelineArn?: string | undefined;
403
+ }
404
+ export interface UpdatePipelineExecutionRequest {
405
+ PipelineExecutionArn: string | undefined;
406
+ PipelineExecutionDescription?: string | undefined;
407
+ PipelineExecutionDisplayName?: string | undefined;
408
+ ParallelismConfiguration?: ParallelismConfiguration | undefined;
409
+ }
410
+ export interface UpdatePipelineExecutionResponse {
411
+ PipelineExecutionArn?: string | undefined;
412
+ }
413
+ export interface ServiceCatalogProvisioningUpdateDetails {
414
+ ProvisioningArtifactId?: string | undefined;
415
+ ProvisioningParameters?: ProvisioningParameter[] | undefined;
416
+ }
417
+ export interface UpdateProjectInput {
418
+ ProjectName: string | undefined;
419
+ ProjectDescription?: string | undefined;
420
+ ServiceCatalogProvisioningUpdateDetails?:
421
+ | ServiceCatalogProvisioningUpdateDetails
422
+ | undefined;
423
+ Tags?: Tag[] | undefined;
424
+ }
425
+ export interface UpdateProjectOutput {
426
+ ProjectArn: string | undefined;
427
+ }
428
+ export interface UpdateSpaceRequest {
429
+ DomainId: string | undefined;
430
+ SpaceName: string | undefined;
431
+ SpaceSettings?: SpaceSettings | undefined;
432
+ SpaceDisplayName?: string | undefined;
433
+ }
434
+ export interface UpdateSpaceResponse {
435
+ SpaceArn?: string | undefined;
436
+ }
437
+ export interface UpdateTrainingJobRequest {
438
+ TrainingJobName: string | undefined;
439
+ ProfilerConfig?: ProfilerConfigForUpdate | undefined;
440
+ ProfilerRuleConfigurations?: ProfilerRuleConfiguration[] | undefined;
441
+ ResourceConfig?: ResourceConfigForUpdate | undefined;
442
+ RemoteDebugConfig?: RemoteDebugConfigForUpdate | undefined;
443
+ }
444
+ export interface UpdateTrainingJobResponse {
445
+ TrainingJobArn: string | undefined;
446
+ }
447
+ export interface UpdateTrialRequest {
448
+ TrialName: string | undefined;
449
+ DisplayName?: string | undefined;
450
+ }
451
+ export interface UpdateTrialResponse {
452
+ TrialArn?: string | undefined;
453
+ }
454
+ export interface UpdateTrialComponentRequest {
455
+ TrialComponentName: string | undefined;
456
+ DisplayName?: string | undefined;
457
+ Status?: TrialComponentStatus | undefined;
458
+ StartTime?: Date | undefined;
459
+ EndTime?: Date | undefined;
460
+ Parameters?: Record<string, TrialComponentParameterValue> | undefined;
461
+ ParametersToRemove?: string[] | undefined;
462
+ InputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
463
+ InputArtifactsToRemove?: string[] | undefined;
464
+ OutputArtifacts?: Record<string, TrialComponentArtifact> | undefined;
465
+ OutputArtifactsToRemove?: string[] | undefined;
466
+ }
18
467
  export interface UpdateTrialComponentResponse {
19
468
  TrialComponentArn?: string | undefined;
20
469
  }
@@ -61,6 +510,12 @@ export interface SearchRequest {
61
510
  CrossAccountFilterOption?: CrossAccountFilterOption | undefined;
62
511
  VisibilityConditions?: VisibilityConditions[] | undefined;
63
512
  }
513
+ export declare const UpdateModelCardRequestFilterSensitiveLog: (
514
+ obj: UpdateModelCardRequest
515
+ ) => any;
516
+ export declare const UpdateModelPackageInputFilterSensitiveLog: (
517
+ obj: UpdateModelPackageInput
518
+ ) => any;
64
519
  export declare const UpdateWorkforceRequestFilterSensitiveLog: (
65
520
  obj: UpdateWorkforceRequest
66
521
  ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListClusterSchedulerConfigsCommandInput,
4
+ ListClusterSchedulerConfigsCommandOutput,
5
+ } from "../commands/ListClusterSchedulerConfigsCommand";
6
+ import { SageMakerPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListClusterSchedulerConfigs: (
8
+ config: SageMakerPaginationConfiguration,
9
+ input: ListClusterSchedulerConfigsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListClusterSchedulerConfigsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListComputeQuotasCommandInput,
4
+ ListComputeQuotasCommandOutput,
5
+ } from "../commands/ListComputeQuotasCommand";
6
+ import { SageMakerPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListComputeQuotas: (
8
+ config: SageMakerPaginationConfiguration,
9
+ input: ListComputeQuotasCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListComputeQuotasCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListPartnerAppsCommandInput,
4
+ ListPartnerAppsCommandOutput,
5
+ } from "../commands/ListPartnerAppsCommand";
6
+ import { SageMakerPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListPartnerApps: (
8
+ config: SageMakerPaginationConfiguration,
9
+ input: ListPartnerAppsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListPartnerAppsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListTrainingPlansCommandInput,
4
+ ListTrainingPlansCommandOutput,
5
+ } from "../commands/ListTrainingPlansCommand";
6
+ import { SageMakerPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListTrainingPlans: (
8
+ config: SageMakerPaginationConfiguration,
9
+ input: ListTrainingPlansCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListTrainingPlansCommandOutput>;
@@ -8,8 +8,10 @@ export * from "./ListArtifactsPaginator";
8
8
  export * from "./ListAssociationsPaginator";
9
9
  export * from "./ListAutoMLJobsPaginator";
10
10
  export * from "./ListCandidatesForAutoMLJobPaginator";
11
+ export * from "./ListClusterSchedulerConfigsPaginator";
11
12
  export * from "./ListCodeRepositoriesPaginator";
12
13
  export * from "./ListCompilationJobsPaginator";
14
+ export * from "./ListComputeQuotasPaginator";
13
15
  export * from "./ListContextsPaginator";
14
16
  export * from "./ListDataQualityJobDefinitionsPaginator";
15
17
  export * from "./ListDeviceFleetsPaginator";
@@ -51,6 +53,7 @@ export * from "./ListMonitoringSchedulesPaginator";
51
53
  export * from "./ListNotebookInstanceLifecycleConfigsPaginator";
52
54
  export * from "./ListNotebookInstancesPaginator";
53
55
  export * from "./ListOptimizationJobsPaginator";
56
+ export * from "./ListPartnerAppsPaginator";
54
57
  export * from "./ListPipelineExecutionStepsPaginator";
55
58
  export * from "./ListPipelineExecutionsPaginator";
56
59
  export * from "./ListPipelineParametersForExecutionPaginator";
@@ -65,6 +68,7 @@ export * from "./ListSubscribedWorkteamsPaginator";
65
68
  export * from "./ListTagsPaginator";
66
69
  export * from "./ListTrainingJobsForHyperParameterTuningJobPaginator";
67
70
  export * from "./ListTrainingJobsPaginator";
71
+ export * from "./ListTrainingPlansPaginator";
68
72
  export * from "./ListTransformJobsPaginator";
69
73
  export * from "./ListTrialComponentsPaginator";
70
74
  export * from "./ListTrialsPaginator";