@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
@@ -55,6 +55,10 @@ import {
55
55
  CreateClusterCommandInput,
56
56
  CreateClusterCommandOutput,
57
57
  } from "../commands/CreateClusterCommand";
58
+ import {
59
+ CreateClusterSchedulerConfigCommandInput,
60
+ CreateClusterSchedulerConfigCommandOutput,
61
+ } from "../commands/CreateClusterSchedulerConfigCommand";
58
62
  import {
59
63
  CreateCodeRepositoryCommandInput,
60
64
  CreateCodeRepositoryCommandOutput,
@@ -63,6 +67,10 @@ import {
63
67
  CreateCompilationJobCommandInput,
64
68
  CreateCompilationJobCommandOutput,
65
69
  } from "../commands/CreateCompilationJobCommand";
70
+ import {
71
+ CreateComputeQuotaCommandInput,
72
+ CreateComputeQuotaCommandOutput,
73
+ } from "../commands/CreateComputeQuotaCommand";
66
74
  import {
67
75
  CreateContextCommandInput,
68
76
  CreateContextCommandOutput,
@@ -203,6 +211,14 @@ import {
203
211
  CreateOptimizationJobCommandInput,
204
212
  CreateOptimizationJobCommandOutput,
205
213
  } from "../commands/CreateOptimizationJobCommand";
214
+ import {
215
+ CreatePartnerAppCommandInput,
216
+ CreatePartnerAppCommandOutput,
217
+ } from "../commands/CreatePartnerAppCommand";
218
+ import {
219
+ CreatePartnerAppPresignedUrlCommandInput,
220
+ CreatePartnerAppPresignedUrlCommandOutput,
221
+ } from "../commands/CreatePartnerAppPresignedUrlCommand";
206
222
  import {
207
223
  CreatePipelineCommandInput,
208
224
  CreatePipelineCommandOutput,
@@ -239,6 +255,10 @@ import {
239
255
  CreateTrainingJobCommandInput,
240
256
  CreateTrainingJobCommandOutput,
241
257
  } from "../commands/CreateTrainingJobCommand";
258
+ import {
259
+ CreateTrainingPlanCommandInput,
260
+ CreateTrainingPlanCommandOutput,
261
+ } from "../commands/CreateTrainingPlanCommand";
242
262
  import {
243
263
  CreateTransformJobCommandInput,
244
264
  CreateTransformJobCommandOutput,
@@ -291,6 +311,10 @@ import {
291
311
  DeleteClusterCommandInput,
292
312
  DeleteClusterCommandOutput,
293
313
  } from "../commands/DeleteClusterCommand";
314
+ import {
315
+ DeleteClusterSchedulerConfigCommandInput,
316
+ DeleteClusterSchedulerConfigCommandOutput,
317
+ } from "../commands/DeleteClusterSchedulerConfigCommand";
294
318
  import {
295
319
  DeleteCodeRepositoryCommandInput,
296
320
  DeleteCodeRepositoryCommandOutput,
@@ -299,6 +323,10 @@ import {
299
323
  DeleteCompilationJobCommandInput,
300
324
  DeleteCompilationJobCommandOutput,
301
325
  } from "../commands/DeleteCompilationJobCommand";
326
+ import {
327
+ DeleteComputeQuotaCommandInput,
328
+ DeleteComputeQuotaCommandOutput,
329
+ } from "../commands/DeleteComputeQuotaCommand";
302
330
  import {
303
331
  DeleteContextCommandInput,
304
332
  DeleteContextCommandOutput,
@@ -431,6 +459,10 @@ import {
431
459
  DeleteOptimizationJobCommandInput,
432
460
  DeleteOptimizationJobCommandOutput,
433
461
  } from "../commands/DeleteOptimizationJobCommand";
462
+ import {
463
+ DeletePartnerAppCommandInput,
464
+ DeletePartnerAppCommandOutput,
465
+ } from "../commands/DeletePartnerAppCommand";
434
466
  import {
435
467
  DeletePipelineCommandInput,
436
468
  DeletePipelineCommandOutput,
@@ -511,6 +543,10 @@ import {
511
543
  DescribeClusterNodeCommandInput,
512
544
  DescribeClusterNodeCommandOutput,
513
545
  } from "../commands/DescribeClusterNodeCommand";
546
+ import {
547
+ DescribeClusterSchedulerConfigCommandInput,
548
+ DescribeClusterSchedulerConfigCommandOutput,
549
+ } from "../commands/DescribeClusterSchedulerConfigCommand";
514
550
  import {
515
551
  DescribeCodeRepositoryCommandInput,
516
552
  DescribeCodeRepositoryCommandOutput,
@@ -519,6 +555,10 @@ import {
519
555
  DescribeCompilationJobCommandInput,
520
556
  DescribeCompilationJobCommandOutput,
521
557
  } from "../commands/DescribeCompilationJobCommand";
558
+ import {
559
+ DescribeComputeQuotaCommandInput,
560
+ DescribeComputeQuotaCommandOutput,
561
+ } from "../commands/DescribeComputeQuotaCommand";
522
562
  import {
523
563
  DescribeContextCommandInput,
524
564
  DescribeContextCommandOutput,
@@ -667,6 +707,10 @@ import {
667
707
  DescribeOptimizationJobCommandInput,
668
708
  DescribeOptimizationJobCommandOutput,
669
709
  } from "../commands/DescribeOptimizationJobCommand";
710
+ import {
711
+ DescribePartnerAppCommandInput,
712
+ DescribePartnerAppCommandOutput,
713
+ } from "../commands/DescribePartnerAppCommand";
670
714
  import {
671
715
  DescribePipelineCommandInput,
672
716
  DescribePipelineCommandOutput,
@@ -703,6 +747,10 @@ import {
703
747
  DescribeTrainingJobCommandInput,
704
748
  DescribeTrainingJobCommandOutput,
705
749
  } from "../commands/DescribeTrainingJobCommand";
750
+ import {
751
+ DescribeTrainingPlanCommandInput,
752
+ DescribeTrainingPlanCommandOutput,
753
+ } from "../commands/DescribeTrainingPlanCommand";
706
754
  import {
707
755
  DescribeTransformJobCommandInput,
708
756
  DescribeTransformJobCommandOutput,
@@ -807,6 +855,10 @@ import {
807
855
  ListClusterNodesCommandInput,
808
856
  ListClusterNodesCommandOutput,
809
857
  } from "../commands/ListClusterNodesCommand";
858
+ import {
859
+ ListClusterSchedulerConfigsCommandInput,
860
+ ListClusterSchedulerConfigsCommandOutput,
861
+ } from "../commands/ListClusterSchedulerConfigsCommand";
810
862
  import {
811
863
  ListClustersCommandInput,
812
864
  ListClustersCommandOutput,
@@ -819,6 +871,10 @@ import {
819
871
  ListCompilationJobsCommandInput,
820
872
  ListCompilationJobsCommandOutput,
821
873
  } from "../commands/ListCompilationJobsCommand";
874
+ import {
875
+ ListComputeQuotasCommandInput,
876
+ ListComputeQuotasCommandOutput,
877
+ } from "../commands/ListComputeQuotasCommand";
822
878
  import {
823
879
  ListContextsCommandInput,
824
880
  ListContextsCommandOutput,
@@ -995,6 +1051,10 @@ import {
995
1051
  ListOptimizationJobsCommandInput,
996
1052
  ListOptimizationJobsCommandOutput,
997
1053
  } from "../commands/ListOptimizationJobsCommand";
1054
+ import {
1055
+ ListPartnerAppsCommandInput,
1056
+ ListPartnerAppsCommandOutput,
1057
+ } from "../commands/ListPartnerAppsCommand";
998
1058
  import {
999
1059
  ListPipelineExecutionsCommandInput,
1000
1060
  ListPipelineExecutionsCommandOutput,
@@ -1051,6 +1111,10 @@ import {
1051
1111
  ListTrainingJobsForHyperParameterTuningJobCommandInput,
1052
1112
  ListTrainingJobsForHyperParameterTuningJobCommandOutput,
1053
1113
  } from "../commands/ListTrainingJobsForHyperParameterTuningJobCommand";
1114
+ import {
1115
+ ListTrainingPlansCommandInput,
1116
+ ListTrainingPlansCommandOutput,
1117
+ } from "../commands/ListTrainingPlansCommand";
1054
1118
  import {
1055
1119
  ListTransformJobsCommandInput,
1056
1120
  ListTransformJobsCommandOutput,
@@ -1099,6 +1163,10 @@ import {
1099
1163
  SearchCommandInput,
1100
1164
  SearchCommandOutput,
1101
1165
  } from "../commands/SearchCommand";
1166
+ import {
1167
+ SearchTrainingPlanOfferingsCommandInput,
1168
+ SearchTrainingPlanOfferingsCommandOutput,
1169
+ } from "../commands/SearchTrainingPlanOfferingsCommand";
1102
1170
  import {
1103
1171
  SendPipelineExecutionStepFailureCommandInput,
1104
1172
  SendPipelineExecutionStepFailureCommandOutput,
@@ -1211,6 +1279,10 @@ import {
1211
1279
  UpdateClusterCommandInput,
1212
1280
  UpdateClusterCommandOutput,
1213
1281
  } from "../commands/UpdateClusterCommand";
1282
+ import {
1283
+ UpdateClusterSchedulerConfigCommandInput,
1284
+ UpdateClusterSchedulerConfigCommandOutput,
1285
+ } from "../commands/UpdateClusterSchedulerConfigCommand";
1214
1286
  import {
1215
1287
  UpdateClusterSoftwareCommandInput,
1216
1288
  UpdateClusterSoftwareCommandOutput,
@@ -1219,6 +1291,10 @@ import {
1219
1291
  UpdateCodeRepositoryCommandInput,
1220
1292
  UpdateCodeRepositoryCommandOutput,
1221
1293
  } from "../commands/UpdateCodeRepositoryCommand";
1294
+ import {
1295
+ UpdateComputeQuotaCommandInput,
1296
+ UpdateComputeQuotaCommandOutput,
1297
+ } from "../commands/UpdateComputeQuotaCommand";
1222
1298
  import {
1223
1299
  UpdateContextCommandInput,
1224
1300
  UpdateContextCommandOutput,
@@ -1307,6 +1383,10 @@ import {
1307
1383
  UpdateNotebookInstanceLifecycleConfigCommandInput,
1308
1384
  UpdateNotebookInstanceLifecycleConfigCommandOutput,
1309
1385
  } from "../commands/UpdateNotebookInstanceLifecycleConfigCommand";
1386
+ import {
1387
+ UpdatePartnerAppCommandInput,
1388
+ UpdatePartnerAppCommandOutput,
1389
+ } from "../commands/UpdatePartnerAppCommand";
1310
1390
  import {
1311
1391
  UpdatePipelineCommandInput,
1312
1392
  UpdatePipelineCommandOutput,
@@ -1399,6 +1479,10 @@ export declare const se_CreateClusterCommand: (
1399
1479
  input: CreateClusterCommandInput,
1400
1480
  context: __SerdeContext
1401
1481
  ) => Promise<__HttpRequest>;
1482
+ export declare const se_CreateClusterSchedulerConfigCommand: (
1483
+ input: CreateClusterSchedulerConfigCommandInput,
1484
+ context: __SerdeContext
1485
+ ) => Promise<__HttpRequest>;
1402
1486
  export declare const se_CreateCodeRepositoryCommand: (
1403
1487
  input: CreateCodeRepositoryCommandInput,
1404
1488
  context: __SerdeContext
@@ -1407,6 +1491,10 @@ export declare const se_CreateCompilationJobCommand: (
1407
1491
  input: CreateCompilationJobCommandInput,
1408
1492
  context: __SerdeContext
1409
1493
  ) => Promise<__HttpRequest>;
1494
+ export declare const se_CreateComputeQuotaCommand: (
1495
+ input: CreateComputeQuotaCommandInput,
1496
+ context: __SerdeContext
1497
+ ) => Promise<__HttpRequest>;
1410
1498
  export declare const se_CreateContextCommand: (
1411
1499
  input: CreateContextCommandInput,
1412
1500
  context: __SerdeContext
@@ -1547,6 +1635,14 @@ export declare const se_CreateOptimizationJobCommand: (
1547
1635
  input: CreateOptimizationJobCommandInput,
1548
1636
  context: __SerdeContext
1549
1637
  ) => Promise<__HttpRequest>;
1638
+ export declare const se_CreatePartnerAppCommand: (
1639
+ input: CreatePartnerAppCommandInput,
1640
+ context: __SerdeContext
1641
+ ) => Promise<__HttpRequest>;
1642
+ export declare const se_CreatePartnerAppPresignedUrlCommand: (
1643
+ input: CreatePartnerAppPresignedUrlCommandInput,
1644
+ context: __SerdeContext
1645
+ ) => Promise<__HttpRequest>;
1550
1646
  export declare const se_CreatePipelineCommand: (
1551
1647
  input: CreatePipelineCommandInput,
1552
1648
  context: __SerdeContext
@@ -1583,6 +1679,10 @@ export declare const se_CreateTrainingJobCommand: (
1583
1679
  input: CreateTrainingJobCommandInput,
1584
1680
  context: __SerdeContext
1585
1681
  ) => Promise<__HttpRequest>;
1682
+ export declare const se_CreateTrainingPlanCommand: (
1683
+ input: CreateTrainingPlanCommandInput,
1684
+ context: __SerdeContext
1685
+ ) => Promise<__HttpRequest>;
1586
1686
  export declare const se_CreateTransformJobCommand: (
1587
1687
  input: CreateTransformJobCommandInput,
1588
1688
  context: __SerdeContext
@@ -1635,6 +1735,10 @@ export declare const se_DeleteClusterCommand: (
1635
1735
  input: DeleteClusterCommandInput,
1636
1736
  context: __SerdeContext
1637
1737
  ) => Promise<__HttpRequest>;
1738
+ export declare const se_DeleteClusterSchedulerConfigCommand: (
1739
+ input: DeleteClusterSchedulerConfigCommandInput,
1740
+ context: __SerdeContext
1741
+ ) => Promise<__HttpRequest>;
1638
1742
  export declare const se_DeleteCodeRepositoryCommand: (
1639
1743
  input: DeleteCodeRepositoryCommandInput,
1640
1744
  context: __SerdeContext
@@ -1643,6 +1747,10 @@ export declare const se_DeleteCompilationJobCommand: (
1643
1747
  input: DeleteCompilationJobCommandInput,
1644
1748
  context: __SerdeContext
1645
1749
  ) => Promise<__HttpRequest>;
1750
+ export declare const se_DeleteComputeQuotaCommand: (
1751
+ input: DeleteComputeQuotaCommandInput,
1752
+ context: __SerdeContext
1753
+ ) => Promise<__HttpRequest>;
1646
1754
  export declare const se_DeleteContextCommand: (
1647
1755
  input: DeleteContextCommandInput,
1648
1756
  context: __SerdeContext
@@ -1775,6 +1883,10 @@ export declare const se_DeleteOptimizationJobCommand: (
1775
1883
  input: DeleteOptimizationJobCommandInput,
1776
1884
  context: __SerdeContext
1777
1885
  ) => Promise<__HttpRequest>;
1886
+ export declare const se_DeletePartnerAppCommand: (
1887
+ input: DeletePartnerAppCommandInput,
1888
+ context: __SerdeContext
1889
+ ) => Promise<__HttpRequest>;
1778
1890
  export declare const se_DeletePipelineCommand: (
1779
1891
  input: DeletePipelineCommandInput,
1780
1892
  context: __SerdeContext
@@ -1855,6 +1967,10 @@ export declare const se_DescribeClusterNodeCommand: (
1855
1967
  input: DescribeClusterNodeCommandInput,
1856
1968
  context: __SerdeContext
1857
1969
  ) => Promise<__HttpRequest>;
1970
+ export declare const se_DescribeClusterSchedulerConfigCommand: (
1971
+ input: DescribeClusterSchedulerConfigCommandInput,
1972
+ context: __SerdeContext
1973
+ ) => Promise<__HttpRequest>;
1858
1974
  export declare const se_DescribeCodeRepositoryCommand: (
1859
1975
  input: DescribeCodeRepositoryCommandInput,
1860
1976
  context: __SerdeContext
@@ -1863,6 +1979,10 @@ export declare const se_DescribeCompilationJobCommand: (
1863
1979
  input: DescribeCompilationJobCommandInput,
1864
1980
  context: __SerdeContext
1865
1981
  ) => Promise<__HttpRequest>;
1982
+ export declare const se_DescribeComputeQuotaCommand: (
1983
+ input: DescribeComputeQuotaCommandInput,
1984
+ context: __SerdeContext
1985
+ ) => Promise<__HttpRequest>;
1866
1986
  export declare const se_DescribeContextCommand: (
1867
1987
  input: DescribeContextCommandInput,
1868
1988
  context: __SerdeContext
@@ -2011,6 +2131,10 @@ export declare const se_DescribeOptimizationJobCommand: (
2011
2131
  input: DescribeOptimizationJobCommandInput,
2012
2132
  context: __SerdeContext
2013
2133
  ) => Promise<__HttpRequest>;
2134
+ export declare const se_DescribePartnerAppCommand: (
2135
+ input: DescribePartnerAppCommandInput,
2136
+ context: __SerdeContext
2137
+ ) => Promise<__HttpRequest>;
2014
2138
  export declare const se_DescribePipelineCommand: (
2015
2139
  input: DescribePipelineCommandInput,
2016
2140
  context: __SerdeContext
@@ -2047,6 +2171,10 @@ export declare const se_DescribeTrainingJobCommand: (
2047
2171
  input: DescribeTrainingJobCommandInput,
2048
2172
  context: __SerdeContext
2049
2173
  ) => Promise<__HttpRequest>;
2174
+ export declare const se_DescribeTrainingPlanCommand: (
2175
+ input: DescribeTrainingPlanCommandInput,
2176
+ context: __SerdeContext
2177
+ ) => Promise<__HttpRequest>;
2050
2178
  export declare const se_DescribeTransformJobCommand: (
2051
2179
  input: DescribeTransformJobCommandInput,
2052
2180
  context: __SerdeContext
@@ -2155,6 +2283,10 @@ export declare const se_ListClustersCommand: (
2155
2283
  input: ListClustersCommandInput,
2156
2284
  context: __SerdeContext
2157
2285
  ) => Promise<__HttpRequest>;
2286
+ export declare const se_ListClusterSchedulerConfigsCommand: (
2287
+ input: ListClusterSchedulerConfigsCommandInput,
2288
+ context: __SerdeContext
2289
+ ) => Promise<__HttpRequest>;
2158
2290
  export declare const se_ListCodeRepositoriesCommand: (
2159
2291
  input: ListCodeRepositoriesCommandInput,
2160
2292
  context: __SerdeContext
@@ -2163,6 +2295,10 @@ export declare const se_ListCompilationJobsCommand: (
2163
2295
  input: ListCompilationJobsCommandInput,
2164
2296
  context: __SerdeContext
2165
2297
  ) => Promise<__HttpRequest>;
2298
+ export declare const se_ListComputeQuotasCommand: (
2299
+ input: ListComputeQuotasCommandInput,
2300
+ context: __SerdeContext
2301
+ ) => Promise<__HttpRequest>;
2166
2302
  export declare const se_ListContextsCommand: (
2167
2303
  input: ListContextsCommandInput,
2168
2304
  context: __SerdeContext
@@ -2339,6 +2475,10 @@ export declare const se_ListOptimizationJobsCommand: (
2339
2475
  input: ListOptimizationJobsCommandInput,
2340
2476
  context: __SerdeContext
2341
2477
  ) => Promise<__HttpRequest>;
2478
+ export declare const se_ListPartnerAppsCommand: (
2479
+ input: ListPartnerAppsCommandInput,
2480
+ context: __SerdeContext
2481
+ ) => Promise<__HttpRequest>;
2342
2482
  export declare const se_ListPipelineExecutionsCommand: (
2343
2483
  input: ListPipelineExecutionsCommandInput,
2344
2484
  context: __SerdeContext
@@ -2395,6 +2535,10 @@ export declare const se_ListTrainingJobsForHyperParameterTuningJobCommand: (
2395
2535
  input: ListTrainingJobsForHyperParameterTuningJobCommandInput,
2396
2536
  context: __SerdeContext
2397
2537
  ) => Promise<__HttpRequest>;
2538
+ export declare const se_ListTrainingPlansCommand: (
2539
+ input: ListTrainingPlansCommandInput,
2540
+ context: __SerdeContext
2541
+ ) => Promise<__HttpRequest>;
2398
2542
  export declare const se_ListTransformJobsCommand: (
2399
2543
  input: ListTransformJobsCommandInput,
2400
2544
  context: __SerdeContext
@@ -2443,6 +2587,10 @@ export declare const se_SearchCommand: (
2443
2587
  input: SearchCommandInput,
2444
2588
  context: __SerdeContext
2445
2589
  ) => Promise<__HttpRequest>;
2590
+ export declare const se_SearchTrainingPlanOfferingsCommand: (
2591
+ input: SearchTrainingPlanOfferingsCommandInput,
2592
+ context: __SerdeContext
2593
+ ) => Promise<__HttpRequest>;
2446
2594
  export declare const se_SendPipelineExecutionStepFailureCommand: (
2447
2595
  input: SendPipelineExecutionStepFailureCommandInput,
2448
2596
  context: __SerdeContext
@@ -2555,6 +2703,10 @@ export declare const se_UpdateClusterCommand: (
2555
2703
  input: UpdateClusterCommandInput,
2556
2704
  context: __SerdeContext
2557
2705
  ) => Promise<__HttpRequest>;
2706
+ export declare const se_UpdateClusterSchedulerConfigCommand: (
2707
+ input: UpdateClusterSchedulerConfigCommandInput,
2708
+ context: __SerdeContext
2709
+ ) => Promise<__HttpRequest>;
2558
2710
  export declare const se_UpdateClusterSoftwareCommand: (
2559
2711
  input: UpdateClusterSoftwareCommandInput,
2560
2712
  context: __SerdeContext
@@ -2563,6 +2715,10 @@ export declare const se_UpdateCodeRepositoryCommand: (
2563
2715
  input: UpdateCodeRepositoryCommandInput,
2564
2716
  context: __SerdeContext
2565
2717
  ) => Promise<__HttpRequest>;
2718
+ export declare const se_UpdateComputeQuotaCommand: (
2719
+ input: UpdateComputeQuotaCommandInput,
2720
+ context: __SerdeContext
2721
+ ) => Promise<__HttpRequest>;
2566
2722
  export declare const se_UpdateContextCommand: (
2567
2723
  input: UpdateContextCommandInput,
2568
2724
  context: __SerdeContext
@@ -2651,6 +2807,10 @@ export declare const se_UpdateNotebookInstanceLifecycleConfigCommand: (
2651
2807
  input: UpdateNotebookInstanceLifecycleConfigCommandInput,
2652
2808
  context: __SerdeContext
2653
2809
  ) => Promise<__HttpRequest>;
2810
+ export declare const se_UpdatePartnerAppCommand: (
2811
+ input: UpdatePartnerAppCommandInput,
2812
+ context: __SerdeContext
2813
+ ) => Promise<__HttpRequest>;
2654
2814
  export declare const se_UpdatePipelineCommand: (
2655
2815
  input: UpdatePipelineCommandInput,
2656
2816
  context: __SerdeContext
@@ -2743,6 +2903,10 @@ export declare const de_CreateClusterCommand: (
2743
2903
  output: __HttpResponse,
2744
2904
  context: __SerdeContext
2745
2905
  ) => Promise<CreateClusterCommandOutput>;
2906
+ export declare const de_CreateClusterSchedulerConfigCommand: (
2907
+ output: __HttpResponse,
2908
+ context: __SerdeContext
2909
+ ) => Promise<CreateClusterSchedulerConfigCommandOutput>;
2746
2910
  export declare const de_CreateCodeRepositoryCommand: (
2747
2911
  output: __HttpResponse,
2748
2912
  context: __SerdeContext
@@ -2751,6 +2915,10 @@ export declare const de_CreateCompilationJobCommand: (
2751
2915
  output: __HttpResponse,
2752
2916
  context: __SerdeContext
2753
2917
  ) => Promise<CreateCompilationJobCommandOutput>;
2918
+ export declare const de_CreateComputeQuotaCommand: (
2919
+ output: __HttpResponse,
2920
+ context: __SerdeContext
2921
+ ) => Promise<CreateComputeQuotaCommandOutput>;
2754
2922
  export declare const de_CreateContextCommand: (
2755
2923
  output: __HttpResponse,
2756
2924
  context: __SerdeContext
@@ -2891,6 +3059,14 @@ export declare const de_CreateOptimizationJobCommand: (
2891
3059
  output: __HttpResponse,
2892
3060
  context: __SerdeContext
2893
3061
  ) => Promise<CreateOptimizationJobCommandOutput>;
3062
+ export declare const de_CreatePartnerAppCommand: (
3063
+ output: __HttpResponse,
3064
+ context: __SerdeContext
3065
+ ) => Promise<CreatePartnerAppCommandOutput>;
3066
+ export declare const de_CreatePartnerAppPresignedUrlCommand: (
3067
+ output: __HttpResponse,
3068
+ context: __SerdeContext
3069
+ ) => Promise<CreatePartnerAppPresignedUrlCommandOutput>;
2894
3070
  export declare const de_CreatePipelineCommand: (
2895
3071
  output: __HttpResponse,
2896
3072
  context: __SerdeContext
@@ -2927,6 +3103,10 @@ export declare const de_CreateTrainingJobCommand: (
2927
3103
  output: __HttpResponse,
2928
3104
  context: __SerdeContext
2929
3105
  ) => Promise<CreateTrainingJobCommandOutput>;
3106
+ export declare const de_CreateTrainingPlanCommand: (
3107
+ output: __HttpResponse,
3108
+ context: __SerdeContext
3109
+ ) => Promise<CreateTrainingPlanCommandOutput>;
2930
3110
  export declare const de_CreateTransformJobCommand: (
2931
3111
  output: __HttpResponse,
2932
3112
  context: __SerdeContext
@@ -2979,6 +3159,10 @@ export declare const de_DeleteClusterCommand: (
2979
3159
  output: __HttpResponse,
2980
3160
  context: __SerdeContext
2981
3161
  ) => Promise<DeleteClusterCommandOutput>;
3162
+ export declare const de_DeleteClusterSchedulerConfigCommand: (
3163
+ output: __HttpResponse,
3164
+ context: __SerdeContext
3165
+ ) => Promise<DeleteClusterSchedulerConfigCommandOutput>;
2982
3166
  export declare const de_DeleteCodeRepositoryCommand: (
2983
3167
  output: __HttpResponse,
2984
3168
  context: __SerdeContext
@@ -2987,6 +3171,10 @@ export declare const de_DeleteCompilationJobCommand: (
2987
3171
  output: __HttpResponse,
2988
3172
  context: __SerdeContext
2989
3173
  ) => Promise<DeleteCompilationJobCommandOutput>;
3174
+ export declare const de_DeleteComputeQuotaCommand: (
3175
+ output: __HttpResponse,
3176
+ context: __SerdeContext
3177
+ ) => Promise<DeleteComputeQuotaCommandOutput>;
2990
3178
  export declare const de_DeleteContextCommand: (
2991
3179
  output: __HttpResponse,
2992
3180
  context: __SerdeContext
@@ -3119,6 +3307,10 @@ export declare const de_DeleteOptimizationJobCommand: (
3119
3307
  output: __HttpResponse,
3120
3308
  context: __SerdeContext
3121
3309
  ) => Promise<DeleteOptimizationJobCommandOutput>;
3310
+ export declare const de_DeletePartnerAppCommand: (
3311
+ output: __HttpResponse,
3312
+ context: __SerdeContext
3313
+ ) => Promise<DeletePartnerAppCommandOutput>;
3122
3314
  export declare const de_DeletePipelineCommand: (
3123
3315
  output: __HttpResponse,
3124
3316
  context: __SerdeContext
@@ -3199,6 +3391,10 @@ export declare const de_DescribeClusterNodeCommand: (
3199
3391
  output: __HttpResponse,
3200
3392
  context: __SerdeContext
3201
3393
  ) => Promise<DescribeClusterNodeCommandOutput>;
3394
+ export declare const de_DescribeClusterSchedulerConfigCommand: (
3395
+ output: __HttpResponse,
3396
+ context: __SerdeContext
3397
+ ) => Promise<DescribeClusterSchedulerConfigCommandOutput>;
3202
3398
  export declare const de_DescribeCodeRepositoryCommand: (
3203
3399
  output: __HttpResponse,
3204
3400
  context: __SerdeContext
@@ -3207,6 +3403,10 @@ export declare const de_DescribeCompilationJobCommand: (
3207
3403
  output: __HttpResponse,
3208
3404
  context: __SerdeContext
3209
3405
  ) => Promise<DescribeCompilationJobCommandOutput>;
3406
+ export declare const de_DescribeComputeQuotaCommand: (
3407
+ output: __HttpResponse,
3408
+ context: __SerdeContext
3409
+ ) => Promise<DescribeComputeQuotaCommandOutput>;
3210
3410
  export declare const de_DescribeContextCommand: (
3211
3411
  output: __HttpResponse,
3212
3412
  context: __SerdeContext
@@ -3355,6 +3555,10 @@ export declare const de_DescribeOptimizationJobCommand: (
3355
3555
  output: __HttpResponse,
3356
3556
  context: __SerdeContext
3357
3557
  ) => Promise<DescribeOptimizationJobCommandOutput>;
3558
+ export declare const de_DescribePartnerAppCommand: (
3559
+ output: __HttpResponse,
3560
+ context: __SerdeContext
3561
+ ) => Promise<DescribePartnerAppCommandOutput>;
3358
3562
  export declare const de_DescribePipelineCommand: (
3359
3563
  output: __HttpResponse,
3360
3564
  context: __SerdeContext
@@ -3391,6 +3595,10 @@ export declare const de_DescribeTrainingJobCommand: (
3391
3595
  output: __HttpResponse,
3392
3596
  context: __SerdeContext
3393
3597
  ) => Promise<DescribeTrainingJobCommandOutput>;
3598
+ export declare const de_DescribeTrainingPlanCommand: (
3599
+ output: __HttpResponse,
3600
+ context: __SerdeContext
3601
+ ) => Promise<DescribeTrainingPlanCommandOutput>;
3394
3602
  export declare const de_DescribeTransformJobCommand: (
3395
3603
  output: __HttpResponse,
3396
3604
  context: __SerdeContext
@@ -3499,6 +3707,10 @@ export declare const de_ListClustersCommand: (
3499
3707
  output: __HttpResponse,
3500
3708
  context: __SerdeContext
3501
3709
  ) => Promise<ListClustersCommandOutput>;
3710
+ export declare const de_ListClusterSchedulerConfigsCommand: (
3711
+ output: __HttpResponse,
3712
+ context: __SerdeContext
3713
+ ) => Promise<ListClusterSchedulerConfigsCommandOutput>;
3502
3714
  export declare const de_ListCodeRepositoriesCommand: (
3503
3715
  output: __HttpResponse,
3504
3716
  context: __SerdeContext
@@ -3507,6 +3719,10 @@ export declare const de_ListCompilationJobsCommand: (
3507
3719
  output: __HttpResponse,
3508
3720
  context: __SerdeContext
3509
3721
  ) => Promise<ListCompilationJobsCommandOutput>;
3722
+ export declare const de_ListComputeQuotasCommand: (
3723
+ output: __HttpResponse,
3724
+ context: __SerdeContext
3725
+ ) => Promise<ListComputeQuotasCommandOutput>;
3510
3726
  export declare const de_ListContextsCommand: (
3511
3727
  output: __HttpResponse,
3512
3728
  context: __SerdeContext
@@ -3683,6 +3899,10 @@ export declare const de_ListOptimizationJobsCommand: (
3683
3899
  output: __HttpResponse,
3684
3900
  context: __SerdeContext
3685
3901
  ) => Promise<ListOptimizationJobsCommandOutput>;
3902
+ export declare const de_ListPartnerAppsCommand: (
3903
+ output: __HttpResponse,
3904
+ context: __SerdeContext
3905
+ ) => Promise<ListPartnerAppsCommandOutput>;
3686
3906
  export declare const de_ListPipelineExecutionsCommand: (
3687
3907
  output: __HttpResponse,
3688
3908
  context: __SerdeContext
@@ -3739,6 +3959,10 @@ export declare const de_ListTrainingJobsForHyperParameterTuningJobCommand: (
3739
3959
  output: __HttpResponse,
3740
3960
  context: __SerdeContext
3741
3961
  ) => Promise<ListTrainingJobsForHyperParameterTuningJobCommandOutput>;
3962
+ export declare const de_ListTrainingPlansCommand: (
3963
+ output: __HttpResponse,
3964
+ context: __SerdeContext
3965
+ ) => Promise<ListTrainingPlansCommandOutput>;
3742
3966
  export declare const de_ListTransformJobsCommand: (
3743
3967
  output: __HttpResponse,
3744
3968
  context: __SerdeContext
@@ -3787,6 +4011,10 @@ export declare const de_SearchCommand: (
3787
4011
  output: __HttpResponse,
3788
4012
  context: __SerdeContext
3789
4013
  ) => Promise<SearchCommandOutput>;
4014
+ export declare const de_SearchTrainingPlanOfferingsCommand: (
4015
+ output: __HttpResponse,
4016
+ context: __SerdeContext
4017
+ ) => Promise<SearchTrainingPlanOfferingsCommandOutput>;
3790
4018
  export declare const de_SendPipelineExecutionStepFailureCommand: (
3791
4019
  output: __HttpResponse,
3792
4020
  context: __SerdeContext
@@ -3899,6 +4127,10 @@ export declare const de_UpdateClusterCommand: (
3899
4127
  output: __HttpResponse,
3900
4128
  context: __SerdeContext
3901
4129
  ) => Promise<UpdateClusterCommandOutput>;
4130
+ export declare const de_UpdateClusterSchedulerConfigCommand: (
4131
+ output: __HttpResponse,
4132
+ context: __SerdeContext
4133
+ ) => Promise<UpdateClusterSchedulerConfigCommandOutput>;
3902
4134
  export declare const de_UpdateClusterSoftwareCommand: (
3903
4135
  output: __HttpResponse,
3904
4136
  context: __SerdeContext
@@ -3907,6 +4139,10 @@ export declare const de_UpdateCodeRepositoryCommand: (
3907
4139
  output: __HttpResponse,
3908
4140
  context: __SerdeContext
3909
4141
  ) => Promise<UpdateCodeRepositoryCommandOutput>;
4142
+ export declare const de_UpdateComputeQuotaCommand: (
4143
+ output: __HttpResponse,
4144
+ context: __SerdeContext
4145
+ ) => Promise<UpdateComputeQuotaCommandOutput>;
3910
4146
  export declare const de_UpdateContextCommand: (
3911
4147
  output: __HttpResponse,
3912
4148
  context: __SerdeContext
@@ -3995,6 +4231,10 @@ export declare const de_UpdateNotebookInstanceLifecycleConfigCommand: (
3995
4231
  output: __HttpResponse,
3996
4232
  context: __SerdeContext
3997
4233
  ) => Promise<UpdateNotebookInstanceLifecycleConfigCommandOutput>;
4234
+ export declare const de_UpdatePartnerAppCommand: (
4235
+ output: __HttpResponse,
4236
+ context: __SerdeContext
4237
+ ) => Promise<UpdatePartnerAppCommandOutput>;
3998
4238
  export declare const de_UpdatePipelineCommand: (
3999
4239
  output: __HttpResponse,
4000
4240
  context: __SerdeContext