@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
@@ -84,6 +84,12 @@ export const se_CreateClusterCommand = async (input, context) => {
84
84
  body = JSON.stringify(_json(input));
85
85
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
86
86
  };
87
+ export const se_CreateClusterSchedulerConfigCommand = async (input, context) => {
88
+ const headers = sharedHeaders("CreateClusterSchedulerConfig");
89
+ let body;
90
+ body = JSON.stringify(_json(input));
91
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
92
+ };
87
93
  export const se_CreateCodeRepositoryCommand = async (input, context) => {
88
94
  const headers = sharedHeaders("CreateCodeRepository");
89
95
  let body;
@@ -96,6 +102,12 @@ export const se_CreateCompilationJobCommand = async (input, context) => {
96
102
  body = JSON.stringify(_json(input));
97
103
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
98
104
  };
105
+ export const se_CreateComputeQuotaCommand = async (input, context) => {
106
+ const headers = sharedHeaders("CreateComputeQuota");
107
+ let body;
108
+ body = JSON.stringify(_json(input));
109
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
110
+ };
99
111
  export const se_CreateContextCommand = async (input, context) => {
100
112
  const headers = sharedHeaders("CreateContext");
101
113
  let body;
@@ -306,6 +318,18 @@ export const se_CreateOptimizationJobCommand = async (input, context) => {
306
318
  body = JSON.stringify(_json(input));
307
319
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
308
320
  };
321
+ export const se_CreatePartnerAppCommand = async (input, context) => {
322
+ const headers = sharedHeaders("CreatePartnerApp");
323
+ let body;
324
+ body = JSON.stringify(se_CreatePartnerAppRequest(input, context));
325
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
326
+ };
327
+ export const se_CreatePartnerAppPresignedUrlCommand = async (input, context) => {
328
+ const headers = sharedHeaders("CreatePartnerAppPresignedUrl");
329
+ let body;
330
+ body = JSON.stringify(_json(input));
331
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
332
+ };
309
333
  export const se_CreatePipelineCommand = async (input, context) => {
310
334
  const headers = sharedHeaders("CreatePipeline");
311
335
  let body;
@@ -360,6 +384,12 @@ export const se_CreateTrainingJobCommand = async (input, context) => {
360
384
  body = JSON.stringify(_json(input));
361
385
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
362
386
  };
387
+ export const se_CreateTrainingPlanCommand = async (input, context) => {
388
+ const headers = sharedHeaders("CreateTrainingPlan");
389
+ let body;
390
+ body = JSON.stringify(_json(input));
391
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
392
+ };
363
393
  export const se_CreateTransformJobCommand = async (input, context) => {
364
394
  const headers = sharedHeaders("CreateTransformJob");
365
395
  let body;
@@ -438,6 +468,12 @@ export const se_DeleteClusterCommand = async (input, context) => {
438
468
  body = JSON.stringify(_json(input));
439
469
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
440
470
  };
471
+ export const se_DeleteClusterSchedulerConfigCommand = async (input, context) => {
472
+ const headers = sharedHeaders("DeleteClusterSchedulerConfig");
473
+ let body;
474
+ body = JSON.stringify(_json(input));
475
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
476
+ };
441
477
  export const se_DeleteCodeRepositoryCommand = async (input, context) => {
442
478
  const headers = sharedHeaders("DeleteCodeRepository");
443
479
  let body;
@@ -450,6 +486,12 @@ export const se_DeleteCompilationJobCommand = async (input, context) => {
450
486
  body = JSON.stringify(_json(input));
451
487
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
452
488
  };
489
+ export const se_DeleteComputeQuotaCommand = async (input, context) => {
490
+ const headers = sharedHeaders("DeleteComputeQuota");
491
+ let body;
492
+ body = JSON.stringify(_json(input));
493
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
494
+ };
453
495
  export const se_DeleteContextCommand = async (input, context) => {
454
496
  const headers = sharedHeaders("DeleteContext");
455
497
  let body;
@@ -648,6 +690,12 @@ export const se_DeleteOptimizationJobCommand = async (input, context) => {
648
690
  body = JSON.stringify(_json(input));
649
691
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
650
692
  };
693
+ export const se_DeletePartnerAppCommand = async (input, context) => {
694
+ const headers = sharedHeaders("DeletePartnerApp");
695
+ let body;
696
+ body = JSON.stringify(se_DeletePartnerAppRequest(input, context));
697
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
698
+ };
651
699
  export const se_DeletePipelineCommand = async (input, context) => {
652
700
  const headers = sharedHeaders("DeletePipeline");
653
701
  let body;
@@ -768,6 +816,12 @@ export const se_DescribeClusterNodeCommand = async (input, context) => {
768
816
  body = JSON.stringify(_json(input));
769
817
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
770
818
  };
819
+ export const se_DescribeClusterSchedulerConfigCommand = async (input, context) => {
820
+ const headers = sharedHeaders("DescribeClusterSchedulerConfig");
821
+ let body;
822
+ body = JSON.stringify(_json(input));
823
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
824
+ };
771
825
  export const se_DescribeCodeRepositoryCommand = async (input, context) => {
772
826
  const headers = sharedHeaders("DescribeCodeRepository");
773
827
  let body;
@@ -780,6 +834,12 @@ export const se_DescribeCompilationJobCommand = async (input, context) => {
780
834
  body = JSON.stringify(_json(input));
781
835
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
782
836
  };
837
+ export const se_DescribeComputeQuotaCommand = async (input, context) => {
838
+ const headers = sharedHeaders("DescribeComputeQuota");
839
+ let body;
840
+ body = JSON.stringify(_json(input));
841
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
842
+ };
783
843
  export const se_DescribeContextCommand = async (input, context) => {
784
844
  const headers = sharedHeaders("DescribeContext");
785
845
  let body;
@@ -1002,6 +1062,12 @@ export const se_DescribeOptimizationJobCommand = async (input, context) => {
1002
1062
  body = JSON.stringify(_json(input));
1003
1063
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1004
1064
  };
1065
+ export const se_DescribePartnerAppCommand = async (input, context) => {
1066
+ const headers = sharedHeaders("DescribePartnerApp");
1067
+ let body;
1068
+ body = JSON.stringify(_json(input));
1069
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1070
+ };
1005
1071
  export const se_DescribePipelineCommand = async (input, context) => {
1006
1072
  const headers = sharedHeaders("DescribePipeline");
1007
1073
  let body;
@@ -1056,6 +1122,12 @@ export const se_DescribeTrainingJobCommand = async (input, context) => {
1056
1122
  body = JSON.stringify(_json(input));
1057
1123
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1058
1124
  };
1125
+ export const se_DescribeTrainingPlanCommand = async (input, context) => {
1126
+ const headers = sharedHeaders("DescribeTrainingPlan");
1127
+ let body;
1128
+ body = JSON.stringify(_json(input));
1129
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1130
+ };
1059
1131
  export const se_DescribeTransformJobCommand = async (input, context) => {
1060
1132
  const headers = sharedHeaders("DescribeTransformJob");
1061
1133
  let body;
@@ -1218,6 +1290,12 @@ export const se_ListClustersCommand = async (input, context) => {
1218
1290
  body = JSON.stringify(se_ListClustersRequest(input, context));
1219
1291
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1220
1292
  };
1293
+ export const se_ListClusterSchedulerConfigsCommand = async (input, context) => {
1294
+ const headers = sharedHeaders("ListClusterSchedulerConfigs");
1295
+ let body;
1296
+ body = JSON.stringify(se_ListClusterSchedulerConfigsRequest(input, context));
1297
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1298
+ };
1221
1299
  export const se_ListCodeRepositoriesCommand = async (input, context) => {
1222
1300
  const headers = sharedHeaders("ListCodeRepositories");
1223
1301
  let body;
@@ -1230,6 +1308,12 @@ export const se_ListCompilationJobsCommand = async (input, context) => {
1230
1308
  body = JSON.stringify(se_ListCompilationJobsRequest(input, context));
1231
1309
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1232
1310
  };
1311
+ export const se_ListComputeQuotasCommand = async (input, context) => {
1312
+ const headers = sharedHeaders("ListComputeQuotas");
1313
+ let body;
1314
+ body = JSON.stringify(se_ListComputeQuotasRequest(input, context));
1315
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1316
+ };
1233
1317
  export const se_ListContextsCommand = async (input, context) => {
1234
1318
  const headers = sharedHeaders("ListContexts");
1235
1319
  let body;
@@ -1494,6 +1578,12 @@ export const se_ListOptimizationJobsCommand = async (input, context) => {
1494
1578
  body = JSON.stringify(se_ListOptimizationJobsRequest(input, context));
1495
1579
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1496
1580
  };
1581
+ export const se_ListPartnerAppsCommand = async (input, context) => {
1582
+ const headers = sharedHeaders("ListPartnerApps");
1583
+ let body;
1584
+ body = JSON.stringify(_json(input));
1585
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1586
+ };
1497
1587
  export const se_ListPipelineExecutionsCommand = async (input, context) => {
1498
1588
  const headers = sharedHeaders("ListPipelineExecutions");
1499
1589
  let body;
@@ -1578,6 +1668,12 @@ export const se_ListTrainingJobsForHyperParameterTuningJobCommand = async (input
1578
1668
  body = JSON.stringify(_json(input));
1579
1669
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1580
1670
  };
1671
+ export const se_ListTrainingPlansCommand = async (input, context) => {
1672
+ const headers = sharedHeaders("ListTrainingPlans");
1673
+ let body;
1674
+ body = JSON.stringify(se_ListTrainingPlansRequest(input, context));
1675
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1676
+ };
1581
1677
  export const se_ListTransformJobsCommand = async (input, context) => {
1582
1678
  const headers = sharedHeaders("ListTransformJobs");
1583
1679
  let body;
@@ -1650,6 +1746,12 @@ export const se_SearchCommand = async (input, context) => {
1650
1746
  body = JSON.stringify(se_SearchRequest(input, context));
1651
1747
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1652
1748
  };
1749
+ export const se_SearchTrainingPlanOfferingsCommand = async (input, context) => {
1750
+ const headers = sharedHeaders("SearchTrainingPlanOfferings");
1751
+ let body;
1752
+ body = JSON.stringify(se_SearchTrainingPlanOfferingsRequest(input, context));
1753
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1754
+ };
1653
1755
  export const se_SendPipelineExecutionStepFailureCommand = async (input, context) => {
1654
1756
  const headers = sharedHeaders("SendPipelineExecutionStepFailure");
1655
1757
  let body;
@@ -1818,6 +1920,12 @@ export const se_UpdateClusterCommand = async (input, context) => {
1818
1920
  body = JSON.stringify(_json(input));
1819
1921
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1820
1922
  };
1923
+ export const se_UpdateClusterSchedulerConfigCommand = async (input, context) => {
1924
+ const headers = sharedHeaders("UpdateClusterSchedulerConfig");
1925
+ let body;
1926
+ body = JSON.stringify(_json(input));
1927
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1928
+ };
1821
1929
  export const se_UpdateClusterSoftwareCommand = async (input, context) => {
1822
1930
  const headers = sharedHeaders("UpdateClusterSoftware");
1823
1931
  let body;
@@ -1830,6 +1938,12 @@ export const se_UpdateCodeRepositoryCommand = async (input, context) => {
1830
1938
  body = JSON.stringify(_json(input));
1831
1939
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1832
1940
  };
1941
+ export const se_UpdateComputeQuotaCommand = async (input, context) => {
1942
+ const headers = sharedHeaders("UpdateComputeQuota");
1943
+ let body;
1944
+ body = JSON.stringify(_json(input));
1945
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1946
+ };
1833
1947
  export const se_UpdateContextCommand = async (input, context) => {
1834
1948
  const headers = sharedHeaders("UpdateContext");
1835
1949
  let body;
@@ -1962,6 +2076,12 @@ export const se_UpdateNotebookInstanceLifecycleConfigCommand = async (input, con
1962
2076
  body = JSON.stringify(_json(input));
1963
2077
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1964
2078
  };
2079
+ export const se_UpdatePartnerAppCommand = async (input, context) => {
2080
+ const headers = sharedHeaders("UpdatePartnerApp");
2081
+ let body;
2082
+ body = JSON.stringify(se_UpdatePartnerAppRequest(input, context));
2083
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
2084
+ };
1965
2085
  export const se_UpdatePipelineCommand = async (input, context) => {
1966
2086
  const headers = sharedHeaders("UpdatePipeline");
1967
2087
  let body;
@@ -2191,6 +2311,19 @@ export const de_CreateClusterCommand = async (output, context) => {
2191
2311
  };
2192
2312
  return response;
2193
2313
  };
2314
+ export const de_CreateClusterSchedulerConfigCommand = async (output, context) => {
2315
+ if (output.statusCode >= 300) {
2316
+ return de_CommandError(output, context);
2317
+ }
2318
+ const data = await parseBody(output.body, context);
2319
+ let contents = {};
2320
+ contents = de_CreateClusterSchedulerConfigResponse(data, context);
2321
+ const response = {
2322
+ $metadata: deserializeMetadata(output),
2323
+ ...contents,
2324
+ };
2325
+ return response;
2326
+ };
2194
2327
  export const de_CreateCodeRepositoryCommand = async (output, context) => {
2195
2328
  if (output.statusCode >= 300) {
2196
2329
  return de_CommandError(output, context);
@@ -2217,6 +2350,19 @@ export const de_CreateCompilationJobCommand = async (output, context) => {
2217
2350
  };
2218
2351
  return response;
2219
2352
  };
2353
+ export const de_CreateComputeQuotaCommand = async (output, context) => {
2354
+ if (output.statusCode >= 300) {
2355
+ return de_CommandError(output, context);
2356
+ }
2357
+ const data = await parseBody(output.body, context);
2358
+ let contents = {};
2359
+ contents = de_CreateComputeQuotaResponse(data, context);
2360
+ const response = {
2361
+ $metadata: deserializeMetadata(output),
2362
+ ...contents,
2363
+ };
2364
+ return response;
2365
+ };
2220
2366
  export const de_CreateContextCommand = async (output, context) => {
2221
2367
  if (output.statusCode >= 300) {
2222
2368
  return de_CommandError(output, context);
@@ -2663,6 +2809,32 @@ export const de_CreateOptimizationJobCommand = async (output, context) => {
2663
2809
  };
2664
2810
  return response;
2665
2811
  };
2812
+ export const de_CreatePartnerAppCommand = async (output, context) => {
2813
+ if (output.statusCode >= 300) {
2814
+ return de_CommandError(output, context);
2815
+ }
2816
+ const data = await parseBody(output.body, context);
2817
+ let contents = {};
2818
+ contents = de_CreatePartnerAppResponse(data, context);
2819
+ const response = {
2820
+ $metadata: deserializeMetadata(output),
2821
+ ...contents,
2822
+ };
2823
+ return response;
2824
+ };
2825
+ export const de_CreatePartnerAppPresignedUrlCommand = async (output, context) => {
2826
+ if (output.statusCode >= 300) {
2827
+ return de_CommandError(output, context);
2828
+ }
2829
+ const data = await parseBody(output.body, context);
2830
+ let contents = {};
2831
+ contents = de_CreatePartnerAppPresignedUrlResponse(data, context);
2832
+ const response = {
2833
+ $metadata: deserializeMetadata(output),
2834
+ ...contents,
2835
+ };
2836
+ return response;
2837
+ };
2666
2838
  export const de_CreatePipelineCommand = async (output, context) => {
2667
2839
  if (output.statusCode >= 300) {
2668
2840
  return de_CommandError(output, context);
@@ -2780,6 +2952,19 @@ export const de_CreateTrainingJobCommand = async (output, context) => {
2780
2952
  };
2781
2953
  return response;
2782
2954
  };
2955
+ export const de_CreateTrainingPlanCommand = async (output, context) => {
2956
+ if (output.statusCode >= 300) {
2957
+ return de_CommandError(output, context);
2958
+ }
2959
+ const data = await parseBody(output.body, context);
2960
+ let contents = {};
2961
+ contents = de_CreateTrainingPlanResponse(data, context);
2962
+ const response = {
2963
+ $metadata: deserializeMetadata(output),
2964
+ ...contents,
2965
+ };
2966
+ return response;
2967
+ };
2783
2968
  export const de_CreateTransformJobCommand = async (output, context) => {
2784
2969
  if (output.statusCode >= 300) {
2785
2970
  return de_CommandError(output, context);
@@ -2940,6 +3125,16 @@ export const de_DeleteClusterCommand = async (output, context) => {
2940
3125
  };
2941
3126
  return response;
2942
3127
  };
3128
+ export const de_DeleteClusterSchedulerConfigCommand = async (output, context) => {
3129
+ if (output.statusCode >= 300) {
3130
+ return de_CommandError(output, context);
3131
+ }
3132
+ await collectBody(output.body, context);
3133
+ const response = {
3134
+ $metadata: deserializeMetadata(output),
3135
+ };
3136
+ return response;
3137
+ };
2943
3138
  export const de_DeleteCodeRepositoryCommand = async (output, context) => {
2944
3139
  if (output.statusCode >= 300) {
2945
3140
  return de_CommandError(output, context);
@@ -2960,6 +3155,16 @@ export const de_DeleteCompilationJobCommand = async (output, context) => {
2960
3155
  };
2961
3156
  return response;
2962
3157
  };
3158
+ export const de_DeleteComputeQuotaCommand = async (output, context) => {
3159
+ if (output.statusCode >= 300) {
3160
+ return de_CommandError(output, context);
3161
+ }
3162
+ await collectBody(output.body, context);
3163
+ const response = {
3164
+ $metadata: deserializeMetadata(output),
3165
+ };
3166
+ return response;
3167
+ };
2963
3168
  export const de_DeleteContextCommand = async (output, context) => {
2964
3169
  if (output.statusCode >= 300) {
2965
3170
  return de_CommandError(output, context);
@@ -3314,6 +3519,19 @@ export const de_DeleteOptimizationJobCommand = async (output, context) => {
3314
3519
  };
3315
3520
  return response;
3316
3521
  };
3522
+ export const de_DeletePartnerAppCommand = async (output, context) => {
3523
+ if (output.statusCode >= 300) {
3524
+ return de_CommandError(output, context);
3525
+ }
3526
+ const data = await parseBody(output.body, context);
3527
+ let contents = {};
3528
+ contents = de_DeletePartnerAppResponse(data, context);
3529
+ const response = {
3530
+ $metadata: deserializeMetadata(output),
3531
+ ...contents,
3532
+ };
3533
+ return response;
3534
+ };
3317
3535
  export const de_DeletePipelineCommand = async (output, context) => {
3318
3536
  if (output.statusCode >= 300) {
3319
3537
  return de_CommandError(output, context);
@@ -3559,6 +3777,19 @@ export const de_DescribeClusterNodeCommand = async (output, context) => {
3559
3777
  };
3560
3778
  return response;
3561
3779
  };
3780
+ export const de_DescribeClusterSchedulerConfigCommand = async (output, context) => {
3781
+ if (output.statusCode >= 300) {
3782
+ return de_CommandError(output, context);
3783
+ }
3784
+ const data = await parseBody(output.body, context);
3785
+ let contents = {};
3786
+ contents = de_DescribeClusterSchedulerConfigResponse(data, context);
3787
+ const response = {
3788
+ $metadata: deserializeMetadata(output),
3789
+ ...contents,
3790
+ };
3791
+ return response;
3792
+ };
3562
3793
  export const de_DescribeCodeRepositoryCommand = async (output, context) => {
3563
3794
  if (output.statusCode >= 300) {
3564
3795
  return de_CommandError(output, context);
@@ -3585,6 +3816,19 @@ export const de_DescribeCompilationJobCommand = async (output, context) => {
3585
3816
  };
3586
3817
  return response;
3587
3818
  };
3819
+ export const de_DescribeComputeQuotaCommand = async (output, context) => {
3820
+ if (output.statusCode >= 300) {
3821
+ return de_CommandError(output, context);
3822
+ }
3823
+ const data = await parseBody(output.body, context);
3824
+ let contents = {};
3825
+ contents = de_DescribeComputeQuotaResponse(data, context);
3826
+ const response = {
3827
+ $metadata: deserializeMetadata(output),
3828
+ ...contents,
3829
+ };
3830
+ return response;
3831
+ };
3588
3832
  export const de_DescribeContextCommand = async (output, context) => {
3589
3833
  if (output.statusCode >= 300) {
3590
3834
  return de_CommandError(output, context);
@@ -4066,6 +4310,19 @@ export const de_DescribeOptimizationJobCommand = async (output, context) => {
4066
4310
  };
4067
4311
  return response;
4068
4312
  };
4313
+ export const de_DescribePartnerAppCommand = async (output, context) => {
4314
+ if (output.statusCode >= 300) {
4315
+ return de_CommandError(output, context);
4316
+ }
4317
+ const data = await parseBody(output.body, context);
4318
+ let contents = {};
4319
+ contents = de_DescribePartnerAppResponse(data, context);
4320
+ const response = {
4321
+ $metadata: deserializeMetadata(output),
4322
+ ...contents,
4323
+ };
4324
+ return response;
4325
+ };
4069
4326
  export const de_DescribePipelineCommand = async (output, context) => {
4070
4327
  if (output.statusCode >= 300) {
4071
4328
  return de_CommandError(output, context);
@@ -4183,6 +4440,19 @@ export const de_DescribeTrainingJobCommand = async (output, context) => {
4183
4440
  };
4184
4441
  return response;
4185
4442
  };
4443
+ export const de_DescribeTrainingPlanCommand = async (output, context) => {
4444
+ if (output.statusCode >= 300) {
4445
+ return de_CommandError(output, context);
4446
+ }
4447
+ const data = await parseBody(output.body, context);
4448
+ let contents = {};
4449
+ contents = de_DescribeTrainingPlanResponse(data, context);
4450
+ const response = {
4451
+ $metadata: deserializeMetadata(output),
4452
+ ...contents,
4453
+ };
4454
+ return response;
4455
+ };
4186
4456
  export const de_DescribeTransformJobCommand = async (output, context) => {
4187
4457
  if (output.statusCode >= 300) {
4188
4458
  return de_CommandError(output, context);
@@ -4534,6 +4804,19 @@ export const de_ListClustersCommand = async (output, context) => {
4534
4804
  };
4535
4805
  return response;
4536
4806
  };
4807
+ export const de_ListClusterSchedulerConfigsCommand = async (output, context) => {
4808
+ if (output.statusCode >= 300) {
4809
+ return de_CommandError(output, context);
4810
+ }
4811
+ const data = await parseBody(output.body, context);
4812
+ let contents = {};
4813
+ contents = de_ListClusterSchedulerConfigsResponse(data, context);
4814
+ const response = {
4815
+ $metadata: deserializeMetadata(output),
4816
+ ...contents,
4817
+ };
4818
+ return response;
4819
+ };
4537
4820
  export const de_ListCodeRepositoriesCommand = async (output, context) => {
4538
4821
  if (output.statusCode >= 300) {
4539
4822
  return de_CommandError(output, context);
@@ -4560,6 +4843,19 @@ export const de_ListCompilationJobsCommand = async (output, context) => {
4560
4843
  };
4561
4844
  return response;
4562
4845
  };
4846
+ export const de_ListComputeQuotasCommand = async (output, context) => {
4847
+ if (output.statusCode >= 300) {
4848
+ return de_CommandError(output, context);
4849
+ }
4850
+ const data = await parseBody(output.body, context);
4851
+ let contents = {};
4852
+ contents = de_ListComputeQuotasResponse(data, context);
4853
+ const response = {
4854
+ $metadata: deserializeMetadata(output),
4855
+ ...contents,
4856
+ };
4857
+ return response;
4858
+ };
4563
4859
  export const de_ListContextsCommand = async (output, context) => {
4564
4860
  if (output.statusCode >= 300) {
4565
4861
  return de_CommandError(output, context);
@@ -5132,6 +5428,19 @@ export const de_ListOptimizationJobsCommand = async (output, context) => {
5132
5428
  };
5133
5429
  return response;
5134
5430
  };
5431
+ export const de_ListPartnerAppsCommand = async (output, context) => {
5432
+ if (output.statusCode >= 300) {
5433
+ return de_CommandError(output, context);
5434
+ }
5435
+ const data = await parseBody(output.body, context);
5436
+ let contents = {};
5437
+ contents = de_ListPartnerAppsResponse(data, context);
5438
+ const response = {
5439
+ $metadata: deserializeMetadata(output),
5440
+ ...contents,
5441
+ };
5442
+ return response;
5443
+ };
5135
5444
  export const de_ListPipelineExecutionsCommand = async (output, context) => {
5136
5445
  if (output.statusCode >= 300) {
5137
5446
  return de_CommandError(output, context);
@@ -5314,6 +5623,19 @@ export const de_ListTrainingJobsForHyperParameterTuningJobCommand = async (outpu
5314
5623
  };
5315
5624
  return response;
5316
5625
  };
5626
+ export const de_ListTrainingPlansCommand = async (output, context) => {
5627
+ if (output.statusCode >= 300) {
5628
+ return de_CommandError(output, context);
5629
+ }
5630
+ const data = await parseBody(output.body, context);
5631
+ let contents = {};
5632
+ contents = de_ListTrainingPlansResponse(data, context);
5633
+ const response = {
5634
+ $metadata: deserializeMetadata(output),
5635
+ ...contents,
5636
+ };
5637
+ return response;
5638
+ };
5317
5639
  export const de_ListTransformJobsCommand = async (output, context) => {
5318
5640
  if (output.statusCode >= 300) {
5319
5641
  return de_CommandError(output, context);
@@ -5467,6 +5789,19 @@ export const de_SearchCommand = async (output, context) => {
5467
5789
  };
5468
5790
  return response;
5469
5791
  };
5792
+ export const de_SearchTrainingPlanOfferingsCommand = async (output, context) => {
5793
+ if (output.statusCode >= 300) {
5794
+ return de_CommandError(output, context);
5795
+ }
5796
+ const data = await parseBody(output.body, context);
5797
+ let contents = {};
5798
+ contents = de_SearchTrainingPlanOfferingsResponse(data, context);
5799
+ const response = {
5800
+ $metadata: deserializeMetadata(output),
5801
+ ...contents,
5802
+ };
5803
+ return response;
5804
+ };
5470
5805
  export const de_SendPipelineExecutionStepFailureCommand = async (output, context) => {
5471
5806
  if (output.statusCode >= 300) {
5472
5807
  return de_CommandError(output, context);
@@ -5783,6 +6118,19 @@ export const de_UpdateClusterCommand = async (output, context) => {
5783
6118
  };
5784
6119
  return response;
5785
6120
  };
6121
+ export const de_UpdateClusterSchedulerConfigCommand = async (output, context) => {
6122
+ if (output.statusCode >= 300) {
6123
+ return de_CommandError(output, context);
6124
+ }
6125
+ const data = await parseBody(output.body, context);
6126
+ let contents = {};
6127
+ contents = de_UpdateClusterSchedulerConfigResponse(data, context);
6128
+ const response = {
6129
+ $metadata: deserializeMetadata(output),
6130
+ ...contents,
6131
+ };
6132
+ return response;
6133
+ };
5786
6134
  export const de_UpdateClusterSoftwareCommand = async (output, context) => {
5787
6135
  if (output.statusCode >= 300) {
5788
6136
  return de_CommandError(output, context);
@@ -5809,6 +6157,19 @@ export const de_UpdateCodeRepositoryCommand = async (output, context) => {
5809
6157
  };
5810
6158
  return response;
5811
6159
  };
6160
+ export const de_UpdateComputeQuotaCommand = async (output, context) => {
6161
+ if (output.statusCode >= 300) {
6162
+ return de_CommandError(output, context);
6163
+ }
6164
+ const data = await parseBody(output.body, context);
6165
+ let contents = {};
6166
+ contents = de_UpdateComputeQuotaResponse(data, context);
6167
+ const response = {
6168
+ $metadata: deserializeMetadata(output),
6169
+ ...contents,
6170
+ };
6171
+ return response;
6172
+ };
5812
6173
  export const de_UpdateContextCommand = async (output, context) => {
5813
6174
  if (output.statusCode >= 300) {
5814
6175
  return de_CommandError(output, context);
@@ -6086,6 +6447,19 @@ export const de_UpdateNotebookInstanceLifecycleConfigCommand = async (output, co
6086
6447
  };
6087
6448
  return response;
6088
6449
  };
6450
+ export const de_UpdatePartnerAppCommand = async (output, context) => {
6451
+ if (output.statusCode >= 300) {
6452
+ return de_CommandError(output, context);
6453
+ }
6454
+ const data = await parseBody(output.body, context);
6455
+ let contents = {};
6456
+ contents = de_UpdatePartnerAppResponse(data, context);
6457
+ const response = {
6458
+ $metadata: deserializeMetadata(output),
6459
+ ...contents,
6460
+ };
6461
+ return response;
6462
+ };
6089
6463
  export const de_UpdatePipelineCommand = async (output, context) => {
6090
6464
  if (output.statusCode >= 300) {
6091
6465
  return de_CommandError(output, context);
@@ -6506,6 +6880,20 @@ const se_CreateMonitoringScheduleRequest = (input, context) => {
6506
6880
  Tags: _json,
6507
6881
  });
6508
6882
  };
6883
+ const se_CreatePartnerAppRequest = (input, context) => {
6884
+ return take(input, {
6885
+ ApplicationConfig: _json,
6886
+ AuthType: [],
6887
+ ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
6888
+ EnableIamSessionBasedIdentity: [],
6889
+ ExecutionRoleArn: [],
6890
+ MaintenanceConfig: _json,
6891
+ Name: [],
6892
+ Tags: _json,
6893
+ Tier: [],
6894
+ Type: [],
6895
+ });
6896
+ };
6509
6897
  const se_CreatePipelineRequest = (input, context) => {
6510
6898
  return take(input, {
6511
6899
  ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
@@ -6539,6 +6927,12 @@ const se_DataQualityJobInput = (input, context) => {
6539
6927
  EndpointInput: (_) => se_EndpointInput(_, context),
6540
6928
  });
6541
6929
  };
6930
+ const se_DeletePartnerAppRequest = (input, context) => {
6931
+ return take(input, {
6932
+ Arn: [],
6933
+ ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
6934
+ });
6935
+ };
6542
6936
  const se_DeletePipelineRequest = (input, context) => {
6543
6937
  return take(input, {
6544
6938
  ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
@@ -6577,7 +6971,7 @@ const se_EndpointInput = (input, context) => {
6577
6971
  };
6578
6972
  const se_HumanLoopActivationConditionsConfig = (input, context) => {
6579
6973
  return take(input, {
6580
- HumanLoopActivationConditions: __LazyJsonString.fromObject,
6974
+ HumanLoopActivationConditions: __LazyJsonString.from,
6581
6975
  });
6582
6976
  };
6583
6977
  const se_HumanLoopActivationConfig = (input, context) => {
@@ -6709,6 +7103,19 @@ const se_ListClusterNodesRequest = (input, context) => {
6709
7103
  SortOrder: [],
6710
7104
  });
6711
7105
  };
7106
+ const se_ListClusterSchedulerConfigsRequest = (input, context) => {
7107
+ return take(input, {
7108
+ ClusterArn: [],
7109
+ CreatedAfter: (_) => _.getTime() / 1000,
7110
+ CreatedBefore: (_) => _.getTime() / 1000,
7111
+ MaxResults: [],
7112
+ NameContains: [],
7113
+ NextToken: [],
7114
+ SortBy: [],
7115
+ SortOrder: [],
7116
+ Status: [],
7117
+ });
7118
+ };
6712
7119
  const se_ListClustersRequest = (input, context) => {
6713
7120
  return take(input, {
6714
7121
  CreationTimeAfter: (_) => _.getTime() / 1000,
@@ -6718,6 +7125,7 @@ const se_ListClustersRequest = (input, context) => {
6718
7125
  NextToken: [],
6719
7126
  SortBy: [],
6720
7127
  SortOrder: [],
7128
+ TrainingPlanArn: [],
6721
7129
  });
6722
7130
  };
6723
7131
  const se_ListCodeRepositoriesInput = (input, context) => {
@@ -6747,6 +7155,19 @@ const se_ListCompilationJobsRequest = (input, context) => {
6747
7155
  StatusEquals: [],
6748
7156
  });
6749
7157
  };
7158
+ const se_ListComputeQuotasRequest = (input, context) => {
7159
+ return take(input, {
7160
+ ClusterArn: [],
7161
+ CreatedAfter: (_) => _.getTime() / 1000,
7162
+ CreatedBefore: (_) => _.getTime() / 1000,
7163
+ MaxResults: [],
7164
+ NameContains: [],
7165
+ NextToken: [],
7166
+ SortBy: [],
7167
+ SortOrder: [],
7168
+ Status: [],
7169
+ });
7170
+ };
6750
7171
  const se_ListContextsRequest = (input, context) => {
6751
7172
  return take(input, {
6752
7173
  ContextType: [],
@@ -7354,9 +7775,21 @@ const se_ListTrainingJobsRequest = (input, context) => {
7354
7775
  SortBy: [],
7355
7776
  SortOrder: [],
7356
7777
  StatusEquals: [],
7778
+ TrainingPlanArnEquals: [],
7357
7779
  WarmPoolStatusEquals: [],
7358
7780
  });
7359
7781
  };
7782
+ const se_ListTrainingPlansRequest = (input, context) => {
7783
+ return take(input, {
7784
+ Filters: _json,
7785
+ MaxResults: [],
7786
+ NextToken: [],
7787
+ SortBy: [],
7788
+ SortOrder: [],
7789
+ StartTimeAfter: (_) => _.getTime() / 1000,
7790
+ StartTimeBefore: (_) => _.getTime() / 1000,
7791
+ });
7792
+ };
7360
7793
  const se_ListTransformJobsRequest = (input, context) => {
7361
7794
  return take(input, {
7362
7795
  CreationTimeAfter: (_) => _.getTime() / 1000,
@@ -7532,6 +7965,16 @@ const se_SearchRequest = (input, context) => {
7532
7965
  VisibilityConditions: _json,
7533
7966
  });
7534
7967
  };
7968
+ const se_SearchTrainingPlanOfferingsRequest = (input, context) => {
7969
+ return take(input, {
7970
+ DurationHours: [],
7971
+ EndTimeBefore: (_) => _.getTime() / 1000,
7972
+ InstanceCount: [],
7973
+ InstanceType: [],
7974
+ StartTimeAfter: (_) => _.getTime() / 1000,
7975
+ TargetResources: _json,
7976
+ });
7977
+ };
7535
7978
  const se_SendPipelineExecutionStepFailureRequest = (input, context) => {
7536
7979
  return take(input, {
7537
7980
  CallbackToken: [],
@@ -7615,6 +8058,17 @@ const se_UpdateMonitoringScheduleRequest = (input, context) => {
7615
8058
  MonitoringScheduleName: [],
7616
8059
  });
7617
8060
  };
8061
+ const se_UpdatePartnerAppRequest = (input, context) => {
8062
+ return take(input, {
8063
+ ApplicationConfig: _json,
8064
+ Arn: [],
8065
+ ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
8066
+ EnableIamSessionBasedIdentity: [],
8067
+ MaintenanceConfig: _json,
8068
+ Tags: _json,
8069
+ Tier: [],
8070
+ });
8071
+ };
7618
8072
  const se_UpdateTrialComponentRequest = (input, context) => {
7619
8073
  return take(input, {
7620
8074
  DisplayName: [],
@@ -8658,8 +9112,11 @@ const de_ClusterInstanceGroupDetails = (output, context) => {
8658
9112
  LifeCycleConfig: (_) => de_ClusterLifeCycleConfig(_, context),
8659
9113
  OnStartDeepHealthChecks: (_) => de_OnStartDeepHealthChecks(_, context),
8660
9114
  OverrideVpcConfig: (_) => de_VpcConfig(_, context),
9115
+ Status: __expectString,
8661
9116
  TargetCount: __expectInt32,
8662
9117
  ThreadsPerCore: __expectInt32,
9118
+ TrainingPlanArn: __expectString,
9119
+ TrainingPlanStatus: __expectString,
8663
9120
  });
8664
9121
  };
8665
9122
  const de_ClusterInstanceGroupDetailsList = (output, context) => {
@@ -8755,6 +9212,26 @@ const de_ClusterOrchestratorEksConfig = (output, context) => {
8755
9212
  ClusterArn: __expectString,
8756
9213
  });
8757
9214
  };
9215
+ const de_ClusterSchedulerConfigSummary = (output, context) => {
9216
+ return take(output, {
9217
+ ClusterArn: __expectString,
9218
+ ClusterSchedulerConfigArn: __expectString,
9219
+ ClusterSchedulerConfigId: __expectString,
9220
+ ClusterSchedulerConfigVersion: __expectInt32,
9221
+ CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9222
+ LastModifiedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9223
+ Name: __expectString,
9224
+ Status: __expectString,
9225
+ });
9226
+ };
9227
+ const de_ClusterSchedulerConfigSummaryList = (output, context) => {
9228
+ const retVal = (output || [])
9229
+ .filter((e) => e != null)
9230
+ .map((entry) => {
9231
+ return de_ClusterSchedulerConfigSummary(entry, context);
9232
+ });
9233
+ return retVal;
9234
+ };
8758
9235
  const de_ClusterSummaries = (output, context) => {
8759
9236
  const retVal = (output || [])
8760
9237
  .filter((e) => e != null)
@@ -8769,6 +9246,7 @@ const de_ClusterSummary = (output, context) => {
8769
9246
  ClusterName: __expectString,
8770
9247
  ClusterStatus: __expectString,
8771
9248
  CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9249
+ TrainingPlanArns: (_) => de_TrainingPlanArns(_, context),
8772
9250
  });
8773
9251
  };
8774
9252
  const de_CodeEditorAppImageConfig = (output, context) => {
@@ -8849,48 +9327,98 @@ const de_CollectionConfigurations = (output, context) => {
8849
9327
  .map((entry) => {
8850
9328
  return de_CollectionConfiguration(entry, context);
8851
9329
  });
8852
- return retVal;
8853
- };
8854
- const de_CollectionParameters = (output, context) => {
8855
- return Object.entries(output).reduce((acc, [key, value]) => {
8856
- if (value === null) {
8857
- return acc;
8858
- }
8859
- acc[key] = __expectString(value);
8860
- return acc;
8861
- }, {});
9330
+ return retVal;
9331
+ };
9332
+ const de_CollectionParameters = (output, context) => {
9333
+ return Object.entries(output).reduce((acc, [key, value]) => {
9334
+ if (value === null) {
9335
+ return acc;
9336
+ }
9337
+ acc[key] = __expectString(value);
9338
+ return acc;
9339
+ }, {});
9340
+ };
9341
+ const de_CompilationJobSummaries = (output, context) => {
9342
+ const retVal = (output || [])
9343
+ .filter((e) => e != null)
9344
+ .map((entry) => {
9345
+ return de_CompilationJobSummary(entry, context);
9346
+ });
9347
+ return retVal;
9348
+ };
9349
+ const de_CompilationJobSummary = (output, context) => {
9350
+ return take(output, {
9351
+ CompilationEndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9352
+ CompilationJobArn: __expectString,
9353
+ CompilationJobName: __expectString,
9354
+ CompilationJobStatus: __expectString,
9355
+ CompilationStartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9356
+ CompilationTargetDevice: __expectString,
9357
+ CompilationTargetPlatformAccelerator: __expectString,
9358
+ CompilationTargetPlatformArch: __expectString,
9359
+ CompilationTargetPlatformOs: __expectString,
9360
+ CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9361
+ LastModifiedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9362
+ });
9363
+ };
9364
+ const de_CompressionTypes = (output, context) => {
9365
+ const retVal = (output || [])
9366
+ .filter((e) => e != null)
9367
+ .map((entry) => {
9368
+ return __expectString(entry);
9369
+ });
9370
+ return retVal;
9371
+ };
9372
+ const de_ComputeQuotaConfig = (output, context) => {
9373
+ return take(output, {
9374
+ ComputeQuotaResources: (_) => de_ComputeQuotaResourceConfigList(_, context),
9375
+ PreemptTeamTasks: __expectString,
9376
+ ResourceSharingConfig: (_) => de_ResourceSharingConfig(_, context),
9377
+ });
9378
+ };
9379
+ const de_ComputeQuotaResourceConfig = (output, context) => {
9380
+ return take(output, {
9381
+ Count: __expectInt32,
9382
+ InstanceType: __expectString,
9383
+ });
8862
9384
  };
8863
- const de_CompilationJobSummaries = (output, context) => {
9385
+ const de_ComputeQuotaResourceConfigList = (output, context) => {
8864
9386
  const retVal = (output || [])
8865
9387
  .filter((e) => e != null)
8866
9388
  .map((entry) => {
8867
- return de_CompilationJobSummary(entry, context);
9389
+ return de_ComputeQuotaResourceConfig(entry, context);
8868
9390
  });
8869
9391
  return retVal;
8870
9392
  };
8871
- const de_CompilationJobSummary = (output, context) => {
9393
+ const de_ComputeQuotaSummary = (output, context) => {
8872
9394
  return take(output, {
8873
- CompilationEndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
8874
- CompilationJobArn: __expectString,
8875
- CompilationJobName: __expectString,
8876
- CompilationJobStatus: __expectString,
8877
- CompilationStartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
8878
- CompilationTargetDevice: __expectString,
8879
- CompilationTargetPlatformAccelerator: __expectString,
8880
- CompilationTargetPlatformArch: __expectString,
8881
- CompilationTargetPlatformOs: __expectString,
9395
+ ActivationState: __expectString,
9396
+ ClusterArn: __expectString,
9397
+ ComputeQuotaArn: __expectString,
9398
+ ComputeQuotaConfig: (_) => de_ComputeQuotaConfig(_, context),
9399
+ ComputeQuotaId: __expectString,
9400
+ ComputeQuotaTarget: (_) => de_ComputeQuotaTarget(_, context),
9401
+ ComputeQuotaVersion: __expectInt32,
8882
9402
  CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
8883
9403
  LastModifiedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
9404
+ Name: __expectString,
9405
+ Status: __expectString,
8884
9406
  });
8885
9407
  };
8886
- const de_CompressionTypes = (output, context) => {
9408
+ const de_ComputeQuotaSummaryList = (output, context) => {
8887
9409
  const retVal = (output || [])
8888
9410
  .filter((e) => e != null)
8889
9411
  .map((entry) => {
8890
- return __expectString(entry);
9412
+ return de_ComputeQuotaSummary(entry, context);
8891
9413
  });
8892
9414
  return retVal;
8893
9415
  };
9416
+ const de_ComputeQuotaTarget = (output, context) => {
9417
+ return take(output, {
9418
+ FairShareWeight: __expectInt32,
9419
+ TeamName: __expectString,
9420
+ });
9421
+ };
8894
9422
  const de_ConditionStepMetadata = (output, context) => {
8895
9423
  return take(output, {
8896
9424
  Outcome: __expectString,
@@ -9055,6 +9583,12 @@ const de_CreateClusterResponse = (output, context) => {
9055
9583
  ClusterArn: __expectString,
9056
9584
  });
9057
9585
  };
9586
+ const de_CreateClusterSchedulerConfigResponse = (output, context) => {
9587
+ return take(output, {
9588
+ ClusterSchedulerConfigArn: __expectString,
9589
+ ClusterSchedulerConfigId: __expectString,
9590
+ });
9591
+ };
9058
9592
  const de_CreateCodeRepositoryOutput = (output, context) => {
9059
9593
  return take(output, {
9060
9594
  CodeRepositoryArn: __expectString,
@@ -9065,6 +9599,12 @@ const de_CreateCompilationJobResponse = (output, context) => {
9065
9599
  CompilationJobArn: __expectString,
9066
9600
  });
9067
9601
  };
9602
+ const de_CreateComputeQuotaResponse = (output, context) => {
9603
+ return take(output, {
9604
+ ComputeQuotaArn: __expectString,
9605
+ ComputeQuotaId: __expectString,
9606
+ });
9607
+ };
9068
9608
  const de_CreateContextResponse = (output, context) => {
9069
9609
  return take(output, {
9070
9610
  ContextArn: __expectString,
@@ -9227,6 +9767,16 @@ const de_CreateOptimizationJobResponse = (output, context) => {
9227
9767
  OptimizationJobArn: __expectString,
9228
9768
  });
9229
9769
  };
9770
+ const de_CreatePartnerAppPresignedUrlResponse = (output, context) => {
9771
+ return take(output, {
9772
+ Url: __expectString,
9773
+ });
9774
+ };
9775
+ const de_CreatePartnerAppResponse = (output, context) => {
9776
+ return take(output, {
9777
+ Arn: __expectString,
9778
+ });
9779
+ };
9230
9780
  const de_CreatePipelineResponse = (output, context) => {
9231
9781
  return take(output, {
9232
9782
  PipelineArn: __expectString,
@@ -9273,6 +9823,11 @@ const de_CreateTrainingJobResponse = (output, context) => {
9273
9823
  TrainingJobArn: __expectString,
9274
9824
  });
9275
9825
  };
9826
+ const de_CreateTrainingPlanResponse = (output, context) => {
9827
+ return take(output, {
9828
+ TrainingPlanArn: __expectString,
9829
+ });
9830
+ };
9276
9831
  const de_CreateTransformJobResponse = (output, context) => {
9277
9832
  return take(output, {
9278
9833
  TransformJobArn: __expectString,
@@ -9326,6 +9881,11 @@ const de_CustomFileSystem = (output, context) => {
9326
9881
  EFSFileSystem: de_EFSFileSystem(output.EFSFileSystem, context),
9327
9882
  };
9328
9883
  }
9884
+ if (output.FSxLustreFileSystem != null) {
9885
+ return {
9886
+ FSxLustreFileSystem: de_FSxLustreFileSystem(output.FSxLustreFileSystem, context),
9887
+ };
9888
+ }
9329
9889
  return { $unknown: Object.entries(output)[0] };
9330
9890
  };
9331
9891
  const de_CustomFileSystemConfig = (output, context) => {
@@ -9334,6 +9894,11 @@ const de_CustomFileSystemConfig = (output, context) => {
9334
9894
  EFSFileSystemConfig: de_EFSFileSystemConfig(output.EFSFileSystemConfig, context),
9335
9895
  };
9336
9896
  }
9897
+ if (output.FSxLustreFileSystemConfig != null) {
9898
+ return {
9899
+ FSxLustreFileSystemConfig: de_FSxLustreFileSystemConfig(output.FSxLustreFileSystemConfig, context),
9900
+ };
9901
+ }
9337
9902
  return { $unknown: Object.entries(output)[0] };
9338
9903
  };
9339
9904
  const de_CustomFileSystemConfigs = (output, context) => {
@@ -9596,6 +10161,11 @@ const de_DeleteMlflowTrackingServerResponse = (output, context) => {
9596
10161
  TrackingServerArn: __expectString,
9597
10162
  });
9598
10163
  };
10164
+ const de_DeletePartnerAppResponse = (output, context) => {
10165
+ return take(output, {
10166
+ Arn: __expectString,
10167
+ });
10168
+ };
9599
10169
  const de_DeletePipelineResponse = (output, context) => {
9600
10170
  return take(output, {
9601
10171
  PipelineArn: __expectString,
@@ -9816,6 +10386,23 @@ const de_DescribeClusterResponse = (output, context) => {
9816
10386
  VpcConfig: (_) => de_VpcConfig(_, context),
9817
10387
  });
9818
10388
  };
10389
+ const de_DescribeClusterSchedulerConfigResponse = (output, context) => {
10390
+ return take(output, {
10391
+ ClusterArn: __expectString,
10392
+ ClusterSchedulerConfigArn: __expectString,
10393
+ ClusterSchedulerConfigId: __expectString,
10394
+ ClusterSchedulerConfigVersion: __expectInt32,
10395
+ CreatedBy: (_) => de_UserContext(_, context),
10396
+ CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
10397
+ Description: __expectString,
10398
+ FailureReason: __expectString,
10399
+ LastModifiedBy: (_) => de_UserContext(_, context),
10400
+ LastModifiedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
10401
+ Name: __expectString,
10402
+ SchedulerConfig: (_) => de_SchedulerConfig(_, context),
10403
+ Status: __expectString,
10404
+ });
10405
+ };
9819
10406
  const de_DescribeCodeRepositoryOutput = (output, context) => {
9820
10407
  return take(output, {
9821
10408
  CodeRepositoryArn: __expectString,
@@ -9847,6 +10434,25 @@ const de_DescribeCompilationJobResponse = (output, context) => {
9847
10434
  VpcConfig: (_) => de_NeoVpcConfig(_, context),
9848
10435
  });
9849
10436
  };
10437
+ const de_DescribeComputeQuotaResponse = (output, context) => {
10438
+ return take(output, {
10439
+ ActivationState: __expectString,
10440
+ ClusterArn: __expectString,
10441
+ ComputeQuotaArn: __expectString,
10442
+ ComputeQuotaConfig: (_) => de_ComputeQuotaConfig(_, context),
10443
+ ComputeQuotaId: __expectString,
10444
+ ComputeQuotaTarget: (_) => de_ComputeQuotaTarget(_, context),
10445
+ ComputeQuotaVersion: __expectInt32,
10446
+ CreatedBy: (_) => de_UserContext(_, context),
10447
+ CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
10448
+ Description: __expectString,
10449
+ FailureReason: __expectString,
10450
+ LastModifiedBy: (_) => de_UserContext(_, context),
10451
+ LastModifiedTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
10452
+ Name: __expectString,
10453
+ Status: __expectString,
10454
+ });
10455
+ };
9850
10456
  const de_DescribeContextResponse = (output, context) => {
9851
10457
  return take(output, {
9852
10458
  ContextArn: __expectString,
@@ -10470,6 +11076,24 @@ const de_DescribeOptimizationJobResponse = (output, context) => {
10470
11076
  VpcConfig: (_) => de_OptimizationVpcConfig(_, context),
10471
11077
  });
10472
11078
  };
11079
+ const de_DescribePartnerAppResponse = (output, context) => {
11080
+ return take(output, {
11081
+ ApplicationConfig: (_) => de_PartnerAppConfig(_, context),
11082
+ Arn: __expectString,
11083
+ AuthType: __expectString,
11084
+ BaseUrl: __expectString,
11085
+ CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
11086
+ EnableIamSessionBasedIdentity: __expectBoolean,
11087
+ Error: (_) => de_ErrorInfo(_, context),
11088
+ ExecutionRoleArn: __expectString,
11089
+ MaintenanceConfig: (_) => de_PartnerAppMaintenanceConfig(_, context),
11090
+ Name: __expectString,
11091
+ Status: __expectString,
11092
+ Tier: __expectString,
11093
+ Type: __expectString,
11094
+ Version: __expectString,
11095
+ });
11096
+ };
10473
11097
  const de_DescribePipelineDefinitionForExecutionResponse = (output, context) => {
10474
11098
  return take(output, {
10475
11099
  CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
@@ -10629,6 +11253,25 @@ const de_DescribeTrainingJobResponse = (output, context) => {
10629
11253
  WarmPoolStatus: (_) => de_WarmPoolStatus(_, context),
10630
11254
  });
10631
11255
  };
11256
+ const de_DescribeTrainingPlanResponse = (output, context) => {
11257
+ return take(output, {
11258
+ AvailableInstanceCount: __expectInt32,
11259
+ CurrencyCode: __expectString,
11260
+ DurationHours: __expectLong,
11261
+ DurationMinutes: __expectLong,
11262
+ EndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
11263
+ InUseInstanceCount: __expectInt32,
11264
+ ReservedCapacitySummaries: (_) => de_ReservedCapacitySummaries(_, context),
11265
+ StartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
11266
+ Status: __expectString,
11267
+ StatusMessage: __expectString,
11268
+ TargetResources: (_) => de_SageMakerResourceNames(_, context),
11269
+ TotalInstanceCount: __expectInt32,
11270
+ TrainingPlanArn: __expectString,
11271
+ TrainingPlanName: __expectString,
11272
+ UpfrontFee: __expectString,
11273
+ });
11274
+ };
10632
11275
  const de_DescribeTransformJobResponse = (output, context) => {
10633
11276
  return take(output, {
10634
11277
  AutoMLJobArn: __expectString,
@@ -11249,6 +11892,12 @@ const de_EnvironmentParameters = (output, context) => {
11249
11892
  });
11250
11893
  return retVal;
11251
11894
  };
11895
+ const de_ErrorInfo = (output, context) => {
11896
+ return take(output, {
11897
+ Code: __expectString,
11898
+ Reason: __expectString,
11899
+ });
11900
+ };
11252
11901
  const de_ExecutionRoleArns = (output, context) => {
11253
11902
  const retVal = (output || [])
11254
11903
  .filter((e) => e != null)
@@ -11499,6 +12148,17 @@ const de_ForecastQuantiles = (output, context) => {
11499
12148
  });
11500
12149
  return retVal;
11501
12150
  };
12151
+ const de_FSxLustreFileSystem = (output, context) => {
12152
+ return take(output, {
12153
+ FileSystemId: __expectString,
12154
+ });
12155
+ };
12156
+ const de_FSxLustreFileSystemConfig = (output, context) => {
12157
+ return take(output, {
12158
+ FileSystemId: __expectString,
12159
+ FileSystemPath: __expectString,
12160
+ });
12161
+ };
11502
12162
  const de_GenerativeAiSettings = (output, context) => {
11503
12163
  return take(output, {
11504
12164
  AmazonBedrockRoleArn: __expectString,
@@ -11713,7 +12373,7 @@ const de_HubSearchKeywordList = (output, context) => {
11713
12373
  };
11714
12374
  const de_HumanLoopActivationConditionsConfig = (output, context) => {
11715
12375
  return take(output, {
11716
- HumanLoopActivationConditions: (_) => new __LazyJsonString(_),
12376
+ HumanLoopActivationConditions: __LazyJsonString.from,
11717
12377
  });
11718
12378
  };
11719
12379
  const de_HumanLoopActivationConfig = (output, context) => {
@@ -12625,6 +13285,12 @@ const de_ListClusterNodesResponse = (output, context) => {
12625
13285
  NextToken: __expectString,
12626
13286
  });
12627
13287
  };
13288
+ const de_ListClusterSchedulerConfigsResponse = (output, context) => {
13289
+ return take(output, {
13290
+ ClusterSchedulerConfigSummaries: (_) => de_ClusterSchedulerConfigSummaryList(_, context),
13291
+ NextToken: __expectString,
13292
+ });
13293
+ };
12628
13294
  const de_ListClustersResponse = (output, context) => {
12629
13295
  return take(output, {
12630
13296
  ClusterSummaries: (_) => de_ClusterSummaries(_, context),
@@ -12643,6 +13309,12 @@ const de_ListCompilationJobsResponse = (output, context) => {
12643
13309
  NextToken: __expectString,
12644
13310
  });
12645
13311
  };
13312
+ const de_ListComputeQuotasResponse = (output, context) => {
13313
+ return take(output, {
13314
+ ComputeQuotaSummaries: (_) => de_ComputeQuotaSummaryList(_, context),
13315
+ NextToken: __expectString,
13316
+ });
13317
+ };
12646
13318
  const de_ListContextsResponse = (output, context) => {
12647
13319
  return take(output, {
12648
13320
  ContextSummaries: (_) => de_ContextSummaries(_, context),
@@ -12907,6 +13579,12 @@ const de_ListOptimizationJobsResponse = (output, context) => {
12907
13579
  OptimizationJobSummaries: (_) => de_OptimizationJobSummaries(_, context),
12908
13580
  });
12909
13581
  };
13582
+ const de_ListPartnerAppsResponse = (output, context) => {
13583
+ return take(output, {
13584
+ NextToken: __expectString,
13585
+ Summaries: (_) => de_PartnerAppSummaries(_, context),
13586
+ });
13587
+ };
12910
13588
  const de_ListPipelineExecutionsResponse = (output, context) => {
12911
13589
  return take(output, {
12912
13590
  NextToken: __expectString,
@@ -12991,6 +13669,12 @@ const de_ListTrainingJobsResponse = (output, context) => {
12991
13669
  TrainingJobSummaries: (_) => de_TrainingJobSummaries(_, context),
12992
13670
  });
12993
13671
  };
13672
+ const de_ListTrainingPlansResponse = (output, context) => {
13673
+ return take(output, {
13674
+ NextToken: __expectString,
13675
+ TrainingPlanSummaries: (_) => de_TrainingPlanSummaries(_, context),
13676
+ });
13677
+ };
12994
13678
  const de_ListTransformJobsResponse = (output, context) => {
12995
13679
  return take(output, {
12996
13680
  NextToken: __expectString,
@@ -14338,6 +15022,51 @@ const de_Parents = (output, context) => {
14338
15022
  });
14339
15023
  return retVal;
14340
15024
  };
15025
+ const de_PartnerAppAdminUserList = (output, context) => {
15026
+ const retVal = (output || [])
15027
+ .filter((e) => e != null)
15028
+ .map((entry) => {
15029
+ return __expectString(entry);
15030
+ });
15031
+ return retVal;
15032
+ };
15033
+ const de_PartnerAppArguments = (output, context) => {
15034
+ return Object.entries(output).reduce((acc, [key, value]) => {
15035
+ if (value === null) {
15036
+ return acc;
15037
+ }
15038
+ acc[key] = __expectString(value);
15039
+ return acc;
15040
+ }, {});
15041
+ };
15042
+ const de_PartnerAppConfig = (output, context) => {
15043
+ return take(output, {
15044
+ AdminUsers: (_) => de_PartnerAppAdminUserList(_, context),
15045
+ Arguments: (_) => de_PartnerAppArguments(_, context),
15046
+ });
15047
+ };
15048
+ const de_PartnerAppMaintenanceConfig = (output, context) => {
15049
+ return take(output, {
15050
+ MaintenanceWindowStart: __expectString,
15051
+ });
15052
+ };
15053
+ const de_PartnerAppSummaries = (output, context) => {
15054
+ const retVal = (output || [])
15055
+ .filter((e) => e != null)
15056
+ .map((entry) => {
15057
+ return de_PartnerAppSummary(entry, context);
15058
+ });
15059
+ return retVal;
15060
+ };
15061
+ const de_PartnerAppSummary = (output, context) => {
15062
+ return take(output, {
15063
+ Arn: __expectString,
15064
+ CreationTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
15065
+ Name: __expectString,
15066
+ Status: __expectString,
15067
+ Type: __expectString,
15068
+ });
15069
+ };
14341
15070
  const de_PendingDeploymentSummary = (output, context) => {
14342
15071
  return take(output, {
14343
15072
  EndpointConfigName: __expectString,
@@ -14513,6 +15242,20 @@ const de_PredefinedMetricSpecification = (output, context) => {
14513
15242
  PredefinedMetricType: __expectString,
14514
15243
  });
14515
15244
  };
15245
+ const de_PriorityClass = (output, context) => {
15246
+ return take(output, {
15247
+ Name: __expectString,
15248
+ Weight: __expectInt32,
15249
+ });
15250
+ };
15251
+ const de_PriorityClassList = (output, context) => {
15252
+ const retVal = (output || [])
15253
+ .filter((e) => e != null)
15254
+ .map((entry) => {
15255
+ return de_PriorityClass(entry, context);
15256
+ });
15257
+ return retVal;
15258
+ };
14516
15259
  const de_ProcessingClusterConfig = (output, context) => {
14517
15260
  return take(output, {
14518
15261
  InstanceCount: __expectInt32,
@@ -15086,6 +15829,46 @@ const de_RepositoryAuthConfig = (output, context) => {
15086
15829
  RepositoryCredentialsProviderArn: __expectString,
15087
15830
  });
15088
15831
  };
15832
+ const de_ReservedCapacityOffering = (output, context) => {
15833
+ return take(output, {
15834
+ AvailabilityZone: __expectString,
15835
+ DurationHours: __expectLong,
15836
+ DurationMinutes: __expectLong,
15837
+ EndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
15838
+ InstanceCount: __expectInt32,
15839
+ InstanceType: __expectString,
15840
+ StartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
15841
+ });
15842
+ };
15843
+ const de_ReservedCapacityOfferings = (output, context) => {
15844
+ const retVal = (output || [])
15845
+ .filter((e) => e != null)
15846
+ .map((entry) => {
15847
+ return de_ReservedCapacityOffering(entry, context);
15848
+ });
15849
+ return retVal;
15850
+ };
15851
+ const de_ReservedCapacitySummaries = (output, context) => {
15852
+ const retVal = (output || [])
15853
+ .filter((e) => e != null)
15854
+ .map((entry) => {
15855
+ return de_ReservedCapacitySummary(entry, context);
15856
+ });
15857
+ return retVal;
15858
+ };
15859
+ const de_ReservedCapacitySummary = (output, context) => {
15860
+ return take(output, {
15861
+ AvailabilityZone: __expectString,
15862
+ DurationHours: __expectLong,
15863
+ DurationMinutes: __expectLong,
15864
+ EndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
15865
+ InstanceType: __expectString,
15866
+ ReservedCapacityArn: __expectString,
15867
+ StartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
15868
+ Status: __expectString,
15869
+ TotalInstanceCount: __expectInt32,
15870
+ });
15871
+ };
15089
15872
  const de_ResolvedAttributes = (output, context) => {
15090
15873
  return take(output, {
15091
15874
  AutoMLJobObjective: (_) => de_AutoMLJobObjective(_, context),
@@ -15115,6 +15898,7 @@ const de_ResourceConfig = (output, context) => {
15115
15898
  InstanceGroups: (_) => de_InstanceGroups(_, context),
15116
15899
  InstanceType: __expectString,
15117
15900
  KeepAlivePeriodInSeconds: __expectInt32,
15901
+ TrainingPlanArn: __expectString,
15118
15902
  VolumeKmsKeyId: __expectString,
15119
15903
  VolumeSizeInGB: __expectInt32,
15120
15904
  });
@@ -15141,6 +15925,12 @@ const de_ResourceNotFound = (output, context) => {
15141
15925
  Message: __expectString,
15142
15926
  });
15143
15927
  };
15928
+ const de_ResourceSharingConfig = (output, context) => {
15929
+ return take(output, {
15930
+ BorrowLimit: __expectInt32,
15931
+ Strategy: __expectString,
15932
+ });
15933
+ };
15144
15934
  const de_ResourceSpec = (output, context) => {
15145
15935
  return take(output, {
15146
15936
  InstanceType: __expectString,
@@ -15244,6 +16034,14 @@ const de_SageMakerImageVersionAliases = (output, context) => {
15244
16034
  });
15245
16035
  return retVal;
15246
16036
  };
16037
+ const de_SageMakerResourceNames = (output, context) => {
16038
+ const retVal = (output || [])
16039
+ .filter((e) => e != null)
16040
+ .map((entry) => {
16041
+ return __expectString(entry);
16042
+ });
16043
+ return retVal;
16044
+ };
15247
16045
  const de_ScalingPolicies = (output, context) => {
15248
16046
  const retVal = (output || [])
15249
16047
  .filter((e) => e != null)
@@ -15279,6 +16077,12 @@ const de_ScheduleConfig = (output, context) => {
15279
16077
  ScheduleExpression: __expectString,
15280
16078
  });
15281
16079
  };
16080
+ const de_SchedulerConfig = (output, context) => {
16081
+ return take(output, {
16082
+ FairShare: __expectString,
16083
+ PriorityClasses: (_) => de_PriorityClassList(_, context),
16084
+ });
16085
+ };
15282
16086
  const de_SearchRecord = (output, context) => {
15283
16087
  return take(output, {
15284
16088
  Endpoint: (_) => de_Endpoint(_, context),
@@ -15312,6 +16116,11 @@ const de_SearchResultsList = (output, context) => {
15312
16116
  });
15313
16117
  return retVal;
15314
16118
  };
16119
+ const de_SearchTrainingPlanOfferingsResponse = (output, context) => {
16120
+ return take(output, {
16121
+ TrainingPlanOfferings: (_) => de_TrainingPlanOfferings(_, context),
16122
+ });
16123
+ };
15315
16124
  const de_SecondaryStatusTransition = (output, context) => {
15316
16125
  return take(output, {
15317
16126
  EndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
@@ -15899,9 +16708,66 @@ const de_TrainingJobSummary = (output, context) => {
15899
16708
  TrainingJobArn: __expectString,
15900
16709
  TrainingJobName: __expectString,
15901
16710
  TrainingJobStatus: __expectString,
16711
+ TrainingPlanArn: __expectString,
15902
16712
  WarmPoolStatus: (_) => de_WarmPoolStatus(_, context),
15903
16713
  });
15904
16714
  };
16715
+ const de_TrainingPlanArns = (output, context) => {
16716
+ const retVal = (output || [])
16717
+ .filter((e) => e != null)
16718
+ .map((entry) => {
16719
+ return __expectString(entry);
16720
+ });
16721
+ return retVal;
16722
+ };
16723
+ const de_TrainingPlanOffering = (output, context) => {
16724
+ return take(output, {
16725
+ CurrencyCode: __expectString,
16726
+ DurationHours: __expectLong,
16727
+ DurationMinutes: __expectLong,
16728
+ RequestedEndTimeBefore: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
16729
+ RequestedStartTimeAfter: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
16730
+ ReservedCapacityOfferings: (_) => de_ReservedCapacityOfferings(_, context),
16731
+ TargetResources: (_) => de_SageMakerResourceNames(_, context),
16732
+ TrainingPlanOfferingId: __expectString,
16733
+ UpfrontFee: __expectString,
16734
+ });
16735
+ };
16736
+ const de_TrainingPlanOfferings = (output, context) => {
16737
+ const retVal = (output || [])
16738
+ .filter((e) => e != null)
16739
+ .map((entry) => {
16740
+ return de_TrainingPlanOffering(entry, context);
16741
+ });
16742
+ return retVal;
16743
+ };
16744
+ const de_TrainingPlanSummaries = (output, context) => {
16745
+ const retVal = (output || [])
16746
+ .filter((e) => e != null)
16747
+ .map((entry) => {
16748
+ return de_TrainingPlanSummary(entry, context);
16749
+ });
16750
+ return retVal;
16751
+ };
16752
+ const de_TrainingPlanSummary = (output, context) => {
16753
+ return take(output, {
16754
+ AvailableInstanceCount: __expectInt32,
16755
+ CurrencyCode: __expectString,
16756
+ DurationHours: __expectLong,
16757
+ DurationMinutes: __expectLong,
16758
+ EndTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
16759
+ InUseInstanceCount: __expectInt32,
16760
+ ReservedCapacitySummaries: (_) => de_ReservedCapacitySummaries(_, context),
16761
+ StartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
16762
+ Status: __expectString,
16763
+ StatusMessage: __expectString,
16764
+ TargetResources: (_) => de_SageMakerResourceNames(_, context),
16765
+ TotalInstanceCount: __expectInt32,
16766
+ TrainingPlanArn: __expectString,
16767
+ TrainingPlanName: __expectString,
16768
+ UpfrontFee: __expectString,
16769
+ });
16770
+ };
15905
16771
  const de_TrainingRepositoryAuthConfig = (output, context) => {
15906
16772
  return take(output, {
15907
16773
  TrainingRepositoryCredentialsProviderArn: __expectString,
@@ -16269,6 +17135,12 @@ const de_UpdateClusterResponse = (output, context) => {
16269
17135
  ClusterArn: __expectString,
16270
17136
  });
16271
17137
  };
17138
+ const de_UpdateClusterSchedulerConfigResponse = (output, context) => {
17139
+ return take(output, {
17140
+ ClusterSchedulerConfigArn: __expectString,
17141
+ ClusterSchedulerConfigVersion: __expectInt32,
17142
+ });
17143
+ };
16272
17144
  const de_UpdateClusterSoftwareResponse = (output, context) => {
16273
17145
  return take(output, {
16274
17146
  ClusterArn: __expectString,
@@ -16279,6 +17151,12 @@ const de_UpdateCodeRepositoryOutput = (output, context) => {
16279
17151
  CodeRepositoryArn: __expectString,
16280
17152
  });
16281
17153
  };
17154
+ const de_UpdateComputeQuotaResponse = (output, context) => {
17155
+ return take(output, {
17156
+ ComputeQuotaArn: __expectString,
17157
+ ComputeQuotaVersion: __expectInt32,
17158
+ });
17159
+ };
16282
17160
  const de_UpdateContextResponse = (output, context) => {
16283
17161
  return take(output, {
16284
17162
  ContextArn: __expectString,
@@ -16371,6 +17249,11 @@ const de_UpdateNotebookInstanceLifecycleConfigOutput = (output, context) => {
16371
17249
  const de_UpdateNotebookInstanceOutput = (output, context) => {
16372
17250
  return take(output, {});
16373
17251
  };
17252
+ const de_UpdatePartnerAppResponse = (output, context) => {
17253
+ return take(output, {
17254
+ Arn: __expectString,
17255
+ });
17256
+ };
16374
17257
  const de_UpdatePipelineExecutionResponse = (output, context) => {
16375
17258
  return take(output, {
16376
17259
  PipelineExecutionArn: __expectString,