@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
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateTrainingPlanRequest,
5
+ CreateTrainingPlanResponse,
6
+ } from "../models/models_2";
7
+ import {
8
+ SageMakerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SageMakerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateTrainingPlanCommandInput
15
+ extends CreateTrainingPlanRequest {}
16
+ export interface CreateTrainingPlanCommandOutput
17
+ extends CreateTrainingPlanResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateTrainingPlanCommand_base: {
20
+ new (
21
+ input: CreateTrainingPlanCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateTrainingPlanCommandInput,
24
+ CreateTrainingPlanCommandOutput,
25
+ SageMakerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateTrainingPlanCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateTrainingPlanCommandInput,
33
+ CreateTrainingPlanCommandOutput,
34
+ SageMakerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateTrainingPlanCommand extends CreateTrainingPlanCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateTrainingPlanRequest;
44
+ output: CreateTrainingPlanResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateTrainingPlanCommandInput;
48
+ output: CreateTrainingPlanCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteClusterSchedulerConfigRequest } from "../models/models_2";
4
+ import {
5
+ SageMakerClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SageMakerClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteClusterSchedulerConfigCommandInput
12
+ extends DeleteClusterSchedulerConfigRequest {}
13
+ export interface DeleteClusterSchedulerConfigCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteClusterSchedulerConfigCommand_base: {
16
+ new (
17
+ input: DeleteClusterSchedulerConfigCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteClusterSchedulerConfigCommandInput,
20
+ DeleteClusterSchedulerConfigCommandOutput,
21
+ SageMakerClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DeleteClusterSchedulerConfigCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteClusterSchedulerConfigCommandInput,
29
+ DeleteClusterSchedulerConfigCommandOutput,
30
+ SageMakerClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteClusterSchedulerConfigCommand extends DeleteClusterSchedulerConfigCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteClusterSchedulerConfigRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteClusterSchedulerConfigCommandInput;
44
+ output: DeleteClusterSchedulerConfigCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,46 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteComputeQuotaRequest } from "../models/models_2";
4
+ import {
5
+ SageMakerClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../SageMakerClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteComputeQuotaCommandInput
12
+ extends DeleteComputeQuotaRequest {}
13
+ export interface DeleteComputeQuotaCommandOutput extends __MetadataBearer {}
14
+ declare const DeleteComputeQuotaCommand_base: {
15
+ new (
16
+ input: DeleteComputeQuotaCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteComputeQuotaCommandInput,
19
+ DeleteComputeQuotaCommandOutput,
20
+ SageMakerClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: DeleteComputeQuotaCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteComputeQuotaCommandInput,
28
+ DeleteComputeQuotaCommandOutput,
29
+ SageMakerClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class DeleteComputeQuotaCommand extends DeleteComputeQuotaCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: DeleteComputeQuotaRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: DeleteComputeQuotaCommandInput;
43
+ output: DeleteComputeQuotaCommandOutput;
44
+ };
45
+ };
46
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeletePartnerAppRequest,
5
+ DeletePartnerAppResponse,
6
+ } from "../models/models_2";
7
+ import {
8
+ SageMakerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SageMakerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeletePartnerAppCommandInput extends DeletePartnerAppRequest {}
15
+ export interface DeletePartnerAppCommandOutput
16
+ extends DeletePartnerAppResponse,
17
+ __MetadataBearer {}
18
+ declare const DeletePartnerAppCommand_base: {
19
+ new (
20
+ input: DeletePartnerAppCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeletePartnerAppCommandInput,
23
+ DeletePartnerAppCommandOutput,
24
+ SageMakerClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeletePartnerAppCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeletePartnerAppCommandInput,
32
+ DeletePartnerAppCommandOutput,
33
+ SageMakerClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeletePartnerAppCommand extends DeletePartnerAppCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeletePartnerAppRequest;
43
+ output: DeletePartnerAppResponse;
44
+ };
45
+ sdk: {
46
+ input: DeletePartnerAppCommandInput;
47
+ output: DeletePartnerAppCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DescribeClusterSchedulerConfigRequest,
5
+ DescribeClusterSchedulerConfigResponse,
6
+ } from "../models/models_2";
7
+ import {
8
+ SageMakerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SageMakerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeClusterSchedulerConfigCommandInput
15
+ extends DescribeClusterSchedulerConfigRequest {}
16
+ export interface DescribeClusterSchedulerConfigCommandOutput
17
+ extends DescribeClusterSchedulerConfigResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeClusterSchedulerConfigCommand_base: {
20
+ new (
21
+ input: DescribeClusterSchedulerConfigCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeClusterSchedulerConfigCommandInput,
24
+ DescribeClusterSchedulerConfigCommandOutput,
25
+ SageMakerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DescribeClusterSchedulerConfigCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeClusterSchedulerConfigCommandInput,
33
+ DescribeClusterSchedulerConfigCommandOutput,
34
+ SageMakerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeClusterSchedulerConfigCommand extends DescribeClusterSchedulerConfigCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeClusterSchedulerConfigRequest;
44
+ output: DescribeClusterSchedulerConfigResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeClusterSchedulerConfigCommandInput;
48
+ output: DescribeClusterSchedulerConfigCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DescribeComputeQuotaRequest,
5
+ DescribeComputeQuotaResponse,
6
+ } from "../models/models_2";
7
+ import {
8
+ SageMakerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SageMakerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeComputeQuotaCommandInput
15
+ extends DescribeComputeQuotaRequest {}
16
+ export interface DescribeComputeQuotaCommandOutput
17
+ extends DescribeComputeQuotaResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeComputeQuotaCommand_base: {
20
+ new (
21
+ input: DescribeComputeQuotaCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeComputeQuotaCommandInput,
24
+ DescribeComputeQuotaCommandOutput,
25
+ SageMakerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DescribeComputeQuotaCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeComputeQuotaCommandInput,
33
+ DescribeComputeQuotaCommandOutput,
34
+ SageMakerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeComputeQuotaCommand extends DescribeComputeQuotaCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeComputeQuotaRequest;
44
+ output: DescribeComputeQuotaResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeComputeQuotaCommandInput;
48
+ output: DescribeComputeQuotaCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- DescribeHumanTaskUiRequest,
5
- DescribeHumanTaskUiResponse,
6
- } from "../models/models_2";
3
+ import { DescribeHumanTaskUiRequest } from "../models/models_2";
4
+ import { DescribeHumanTaskUiResponse } from "../models/models_3";
7
5
  import {
8
6
  SageMakerClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeHyperParameterTuningJobRequest,
5
5
  DescribeHyperParameterTuningJobResponse,
6
- } from "../models/models_2";
6
+ } from "../models/models_3";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeImageRequest,
5
5
  DescribeImageResponse,
6
- } from "../models/models_2";
6
+ } from "../models/models_3";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeImageVersionRequest,
5
5
  DescribeImageVersionResponse,
6
- } from "../models/models_2";
6
+ } from "../models/models_3";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeInferenceComponentInput,
5
5
  DescribeInferenceComponentOutput,
6
- } from "../models/models_2";
6
+ } from "../models/models_3";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  DescribeInferenceExperimentRequest,
5
5
  DescribeInferenceExperimentResponse,
6
- } from "../models/models_2";
6
+ } from "../models/models_3";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -1,7 +1,9 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { DescribeInferenceRecommendationsJobRequest } from "../models/models_2";
4
- import { DescribeInferenceRecommendationsJobResponse } from "../models/models_3";
3
+ import {
4
+ DescribeInferenceRecommendationsJobRequest,
5
+ DescribeInferenceRecommendationsJobResponse,
6
+ } from "../models/models_3";
5
7
  import {
6
8
  SageMakerClientResolvedConfig,
7
9
  ServiceInputTypes,
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DescribePartnerAppRequest,
5
+ DescribePartnerAppResponse,
6
+ } from "../models/models_3";
7
+ import {
8
+ SageMakerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SageMakerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribePartnerAppCommandInput
15
+ extends DescribePartnerAppRequest {}
16
+ export interface DescribePartnerAppCommandOutput
17
+ extends DescribePartnerAppResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribePartnerAppCommand_base: {
20
+ new (
21
+ input: DescribePartnerAppCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribePartnerAppCommandInput,
24
+ DescribePartnerAppCommandOutput,
25
+ SageMakerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DescribePartnerAppCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribePartnerAppCommandInput,
33
+ DescribePartnerAppCommandOutput,
34
+ SageMakerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribePartnerAppCommand extends DescribePartnerAppCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribePartnerAppRequest;
44
+ output: DescribePartnerAppResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribePartnerAppCommandInput;
48
+ output: DescribePartnerAppCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DescribeTrainingPlanRequest,
5
+ DescribeTrainingPlanResponse,
6
+ } from "../models/models_3";
7
+ import {
8
+ SageMakerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SageMakerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeTrainingPlanCommandInput
15
+ extends DescribeTrainingPlanRequest {}
16
+ export interface DescribeTrainingPlanCommandOutput
17
+ extends DescribeTrainingPlanResponse,
18
+ __MetadataBearer {}
19
+ declare const DescribeTrainingPlanCommand_base: {
20
+ new (
21
+ input: DescribeTrainingPlanCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeTrainingPlanCommandInput,
24
+ DescribeTrainingPlanCommandOutput,
25
+ SageMakerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DescribeTrainingPlanCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeTrainingPlanCommandInput,
33
+ DescribeTrainingPlanCommandOutput,
34
+ SageMakerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeTrainingPlanCommand extends DescribeTrainingPlanCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeTrainingPlanRequest;
44
+ output: DescribeTrainingPlanResponse;
45
+ };
46
+ sdk: {
47
+ input: DescribeTrainingPlanCommandInput;
48
+ output: DescribeTrainingPlanCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListClusterSchedulerConfigsRequest,
5
+ ListClusterSchedulerConfigsResponse,
6
+ } from "../models/models_3";
7
+ import {
8
+ SageMakerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SageMakerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListClusterSchedulerConfigsCommandInput
15
+ extends ListClusterSchedulerConfigsRequest {}
16
+ export interface ListClusterSchedulerConfigsCommandOutput
17
+ extends ListClusterSchedulerConfigsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListClusterSchedulerConfigsCommand_base: {
20
+ new (
21
+ input: ListClusterSchedulerConfigsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListClusterSchedulerConfigsCommandInput,
24
+ ListClusterSchedulerConfigsCommandOutput,
25
+ SageMakerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListClusterSchedulerConfigsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListClusterSchedulerConfigsCommandInput,
33
+ ListClusterSchedulerConfigsCommandOutput,
34
+ SageMakerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListClusterSchedulerConfigsCommand extends ListClusterSchedulerConfigsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListClusterSchedulerConfigsRequest;
44
+ output: ListClusterSchedulerConfigsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListClusterSchedulerConfigsCommandInput;
48
+ output: ListClusterSchedulerConfigsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListComputeQuotasRequest,
5
+ ListComputeQuotasResponse,
6
+ } from "../models/models_3";
7
+ import {
8
+ SageMakerClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../SageMakerClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListComputeQuotasCommandInput
15
+ extends ListComputeQuotasRequest {}
16
+ export interface ListComputeQuotasCommandOutput
17
+ extends ListComputeQuotasResponse,
18
+ __MetadataBearer {}
19
+ declare const ListComputeQuotasCommand_base: {
20
+ new (
21
+ input: ListComputeQuotasCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListComputeQuotasCommandInput,
24
+ ListComputeQuotasCommandOutput,
25
+ SageMakerClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListComputeQuotasCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListComputeQuotasCommandInput,
33
+ ListComputeQuotasCommandOutput,
34
+ SageMakerClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListComputeQuotasCommand extends ListComputeQuotasCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListComputeQuotasRequest;
44
+ output: ListComputeQuotasResponse;
45
+ };
46
+ sdk: {
47
+ input: ListComputeQuotasCommandInput;
48
+ output: ListComputeQuotasCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -1,9 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- ListDeviceFleetsRequest,
5
- ListDeviceFleetsResponse,
6
- } from "../models/models_3";
3
+ import { ListDeviceFleetsRequest } from "../models/models_3";
4
+ import { ListDeviceFleetsResponse } from "../models/models_4";
7
5
  import {
8
6
  SageMakerClientResolvedConfig,
9
7
  ServiceInputTypes,
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListDevicesRequest, ListDevicesResponse } from "../models/models_3";
3
+ import { ListDevicesRequest, ListDevicesResponse } from "../models/models_4";
4
4
  import {
5
5
  SageMakerClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListDomainsRequest, ListDomainsResponse } from "../models/models_3";
3
+ import { ListDomainsRequest, ListDomainsResponse } from "../models/models_4";
4
4
  import {
5
5
  SageMakerClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  ListEdgeDeploymentPlansRequest,
5
5
  ListEdgeDeploymentPlansResponse,
6
- } from "../models/models_3";
6
+ } from "../models/models_4";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  ListEdgePackagingJobsRequest,
5
5
  ListEdgePackagingJobsResponse,
6
- } from "../models/models_3";
6
+ } from "../models/models_4";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  ListEndpointConfigsInput,
5
5
  ListEndpointConfigsOutput,
6
- } from "../models/models_3";
6
+ } from "../models/models_4";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,
@@ -1,6 +1,6 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { ListEndpointsInput, ListEndpointsOutput } from "../models/models_3";
3
+ import { ListEndpointsInput, ListEndpointsOutput } from "../models/models_4";
4
4
  import {
5
5
  SageMakerClientResolvedConfig,
6
6
  ServiceInputTypes,
@@ -3,7 +3,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import {
4
4
  ListExperimentsRequest,
5
5
  ListExperimentsResponse,
6
- } from "../models/models_3";
6
+ } from "../models/models_4";
7
7
  import {
8
8
  SageMakerClientResolvedConfig,
9
9
  ServiceInputTypes,