@aws-sdk/client-sagemaker 3.460.0 → 3.462.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 (181) hide show
  1. package/README.md +104 -0
  2. package/dist-cjs/SageMaker.js +26 -0
  3. package/dist-cjs/commands/CreateClusterCommand.js +51 -0
  4. package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
  5. package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
  7. package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
  8. package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
  9. package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
  10. package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
  11. package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
  12. package/dist-cjs/commands/ListClustersCommand.js +51 -0
  13. package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
  14. package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
  15. package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
  16. package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
  17. package/dist-cjs/commands/index.js +13 -0
  18. package/dist-cjs/models/models_0.js +62 -51
  19. package/dist-cjs/models/models_1.js +63 -30
  20. package/dist-cjs/models/models_2.js +37 -39
  21. package/dist-cjs/models/models_3.js +45 -44
  22. package/dist-cjs/models/models_4.js +45 -3
  23. package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
  24. package/dist-cjs/pagination/index.js +1 -0
  25. package/dist-cjs/protocols/Aws_json1_1.js +845 -13
  26. package/dist-es/SageMaker.js +26 -0
  27. package/dist-es/commands/CreateClusterCommand.js +47 -0
  28. package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
  29. package/dist-es/commands/CreateWorkforceCommand.js +1 -1
  30. package/dist-es/commands/DeleteClusterCommand.js +47 -0
  31. package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
  32. package/dist-es/commands/DescribeClusterCommand.js +47 -0
  33. package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
  34. package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
  35. package/dist-es/commands/ListClusterNodesCommand.js +47 -0
  36. package/dist-es/commands/ListClustersCommand.js +47 -0
  37. package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
  38. package/dist-es/commands/UpdateClusterCommand.js +47 -0
  39. package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
  40. package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
  41. package/dist-es/commands/index.js +13 -0
  42. package/dist-es/models/models_0.js +60 -50
  43. package/dist-es/models/models_1.js +62 -27
  44. package/dist-es/models/models_2.js +34 -38
  45. package/dist-es/models/models_3.js +43 -42
  46. package/dist-es/models/models_4.js +43 -1
  47. package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
  48. package/dist-es/pagination/index.js +1 -0
  49. package/dist-es/protocols/Aws_json1_1.js +807 -1
  50. package/dist-types/SageMaker.d.ts +91 -0
  51. package/dist-types/SageMakerClient.d.ts +15 -2
  52. package/dist-types/commands/AddTagsCommand.d.ts +1 -1
  53. package/dist-types/commands/CreateAppCommand.d.ts +2 -1
  54. package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
  55. package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
  56. package/dist-types/commands/CreateDomainCommand.d.ts +15 -8
  57. package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
  58. package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
  59. package/dist-types/commands/CreateModelCommand.d.ts +1 -1
  60. package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
  61. package/dist-types/commands/CreateSpaceCommand.d.ts +2 -0
  62. package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +1 -1
  63. package/dist-types/commands/CreateTrainingJobCommand.d.ts +3 -0
  64. package/dist-types/commands/CreateUserProfileCommand.d.ts +9 -2
  65. package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
  66. package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
  67. package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
  68. package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
  69. package/dist-types/commands/DeleteAppCommand.d.ts +1 -1
  70. package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
  71. package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
  72. package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
  73. package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
  74. package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
  75. package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
  76. package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
  77. package/dist-types/commands/DescribeAppCommand.d.ts +1 -0
  78. package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
  79. package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
  80. package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
  81. package/dist-types/commands/DescribeDomainCommand.d.ts +7 -0
  82. package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
  83. package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
  84. package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
  85. package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
  86. package/dist-types/commands/DescribeSpaceCommand.d.ts +3 -0
  87. package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +1 -1
  88. package/dist-types/commands/DescribeTrainingJobCommand.d.ts +3 -0
  89. package/dist-types/commands/DescribeUserProfileCommand.d.ts +8 -1
  90. package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
  91. package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
  92. package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  93. package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
  94. package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  95. package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
  96. package/dist-types/commands/ListClustersCommand.d.ts +87 -0
  97. package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
  98. package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
  99. package/dist-types/commands/ListSpacesCommand.d.ts +1 -1
  100. package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
  101. package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +2 -2
  102. package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
  103. package/dist-types/commands/ListTagsCommand.d.ts +1 -1
  104. package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
  105. package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  106. package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
  107. package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
  108. package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
  109. package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
  110. package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
  111. package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
  112. package/dist-types/commands/SearchCommand.d.ts +16 -0
  113. package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
  114. package/dist-types/commands/UpdateDomainCommand.d.ts +11 -0
  115. package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
  116. package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
  117. package/dist-types/commands/UpdateSpaceCommand.d.ts +2 -0
  118. package/dist-types/commands/UpdateUserProfileCommand.d.ts +6 -0
  119. package/dist-types/commands/index.d.ts +13 -0
  120. package/dist-types/models/models_0.d.ts +409 -345
  121. package/dist-types/models/models_1.d.ts +708 -551
  122. package/dist-types/models/models_2.d.ts +5059 -5239
  123. package/dist-types/models/models_3.d.ts +4732 -4693
  124. package/dist-types/models/models_4.d.ts +1446 -4
  125. package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
  126. package/dist-types/pagination/index.d.ts +1 -0
  127. package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
  128. package/dist-types/ts3.4/SageMaker.d.ts +227 -0
  129. package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
  130. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
  131. package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
  132. package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +2 -4
  133. package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
  134. package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
  135. package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
  136. package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
  137. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
  138. package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
  139. package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
  142. package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
  143. package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
  144. package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
  145. package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
  146. package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +2 -4
  147. package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
  148. package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
  149. package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  150. package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
  151. package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
  152. package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
  153. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
  154. package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
  155. package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
  156. package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
  157. package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
  158. package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
  159. package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
  160. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
  161. package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
  162. package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
  163. package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
  164. package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
  166. package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
  168. package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
  170. package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
  171. package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
  172. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  173. package/dist-types/ts3.4/models/models_0.d.ts +124 -111
  174. package/dist-types/ts3.4/models/models_1.d.ts +188 -151
  175. package/dist-types/ts3.4/models/models_2.d.ts +227 -288
  176. package/dist-types/ts3.4/models/models_3.d.ts +349 -344
  177. package/dist-types/ts3.4/models/models_4.d.ts +372 -15
  178. package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.d.ts +11 -0
  179. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  180. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +156 -0
  181. package/package.json +3 -3
@@ -1,18 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.se_CreateSpaceCommand = exports.se_CreateProjectCommand = exports.se_CreateProcessingJobCommand = exports.se_CreatePresignedNotebookInstanceUrlCommand = exports.se_CreatePresignedDomainUrlCommand = exports.se_CreatePipelineCommand = exports.se_CreateNotebookInstanceLifecycleConfigCommand = exports.se_CreateNotebookInstanceCommand = exports.se_CreateMonitoringScheduleCommand = exports.se_CreateModelQualityJobDefinitionCommand = exports.se_CreateModelPackageGroupCommand = exports.se_CreateModelPackageCommand = exports.se_CreateModelExplainabilityJobDefinitionCommand = exports.se_CreateModelCardExportJobCommand = exports.se_CreateModelCardCommand = exports.se_CreateModelBiasJobDefinitionCommand = exports.se_CreateModelCommand = exports.se_CreateLabelingJobCommand = exports.se_CreateInferenceRecommendationsJobCommand = exports.se_CreateInferenceExperimentCommand = exports.se_CreateImageVersionCommand = exports.se_CreateImageCommand = exports.se_CreateHyperParameterTuningJobCommand = exports.se_CreateHumanTaskUiCommand = exports.se_CreateHubCommand = exports.se_CreateFlowDefinitionCommand = exports.se_CreateFeatureGroupCommand = exports.se_CreateExperimentCommand = exports.se_CreateEndpointConfigCommand = exports.se_CreateEndpointCommand = exports.se_CreateEdgePackagingJobCommand = exports.se_CreateEdgeDeploymentStageCommand = exports.se_CreateEdgeDeploymentPlanCommand = exports.se_CreateDomainCommand = exports.se_CreateDeviceFleetCommand = exports.se_CreateDataQualityJobDefinitionCommand = exports.se_CreateContextCommand = exports.se_CreateCompilationJobCommand = exports.se_CreateCodeRepositoryCommand = exports.se_CreateAutoMLJobV2Command = exports.se_CreateAutoMLJobCommand = exports.se_CreateArtifactCommand = exports.se_CreateAppImageConfigCommand = exports.se_CreateAppCommand = exports.se_CreateAlgorithmCommand = exports.se_CreateActionCommand = exports.se_BatchDescribeModelPackageCommand = exports.se_AssociateTrialComponentCommand = exports.se_AddTagsCommand = exports.se_AddAssociationCommand = void 0;
4
- exports.se_DeleteTrialComponentCommand = exports.se_DeleteTrialCommand = exports.se_DeleteTagsCommand = exports.se_DeleteStudioLifecycleConfigCommand = exports.se_DeleteSpaceCommand = exports.se_DeleteProjectCommand = exports.se_DeletePipelineCommand = exports.se_DeleteNotebookInstanceLifecycleConfigCommand = exports.se_DeleteNotebookInstanceCommand = exports.se_DeleteMonitoringScheduleCommand = exports.se_DeleteModelQualityJobDefinitionCommand = exports.se_DeleteModelPackageGroupPolicyCommand = exports.se_DeleteModelPackageGroupCommand = exports.se_DeleteModelPackageCommand = exports.se_DeleteModelExplainabilityJobDefinitionCommand = exports.se_DeleteModelCardCommand = exports.se_DeleteModelBiasJobDefinitionCommand = exports.se_DeleteModelCommand = exports.se_DeleteInferenceExperimentCommand = exports.se_DeleteImageVersionCommand = exports.se_DeleteImageCommand = exports.se_DeleteHumanTaskUiCommand = exports.se_DeleteHubContentCommand = exports.se_DeleteHubCommand = exports.se_DeleteFlowDefinitionCommand = exports.se_DeleteFeatureGroupCommand = exports.se_DeleteExperimentCommand = exports.se_DeleteEndpointConfigCommand = exports.se_DeleteEndpointCommand = exports.se_DeleteEdgeDeploymentStageCommand = exports.se_DeleteEdgeDeploymentPlanCommand = exports.se_DeleteDomainCommand = exports.se_DeleteDeviceFleetCommand = exports.se_DeleteDataQualityJobDefinitionCommand = exports.se_DeleteContextCommand = exports.se_DeleteCodeRepositoryCommand = exports.se_DeleteAssociationCommand = exports.se_DeleteArtifactCommand = exports.se_DeleteAppImageConfigCommand = exports.se_DeleteAppCommand = exports.se_DeleteAlgorithmCommand = exports.se_DeleteActionCommand = exports.se_CreateWorkteamCommand = exports.se_CreateWorkforceCommand = exports.se_CreateUserProfileCommand = exports.se_CreateTrialComponentCommand = exports.se_CreateTrialCommand = exports.se_CreateTransformJobCommand = exports.se_CreateTrainingJobCommand = exports.se_CreateStudioLifecycleConfigCommand = void 0;
5
- exports.se_DescribePipelineExecutionCommand = exports.se_DescribePipelineDefinitionForExecutionCommand = exports.se_DescribePipelineCommand = exports.se_DescribeNotebookInstanceLifecycleConfigCommand = exports.se_DescribeNotebookInstanceCommand = exports.se_DescribeMonitoringScheduleCommand = exports.se_DescribeModelQualityJobDefinitionCommand = exports.se_DescribeModelPackageGroupCommand = exports.se_DescribeModelPackageCommand = exports.se_DescribeModelExplainabilityJobDefinitionCommand = exports.se_DescribeModelCardExportJobCommand = exports.se_DescribeModelCardCommand = exports.se_DescribeModelBiasJobDefinitionCommand = exports.se_DescribeModelCommand = exports.se_DescribeLineageGroupCommand = exports.se_DescribeLabelingJobCommand = exports.se_DescribeInferenceRecommendationsJobCommand = exports.se_DescribeInferenceExperimentCommand = exports.se_DescribeImageVersionCommand = exports.se_DescribeImageCommand = exports.se_DescribeHyperParameterTuningJobCommand = exports.se_DescribeHumanTaskUiCommand = exports.se_DescribeHubContentCommand = exports.se_DescribeHubCommand = exports.se_DescribeFlowDefinitionCommand = exports.se_DescribeFeatureMetadataCommand = exports.se_DescribeFeatureGroupCommand = exports.se_DescribeExperimentCommand = exports.se_DescribeEndpointConfigCommand = exports.se_DescribeEndpointCommand = exports.se_DescribeEdgePackagingJobCommand = exports.se_DescribeEdgeDeploymentPlanCommand = exports.se_DescribeDomainCommand = exports.se_DescribeDeviceFleetCommand = exports.se_DescribeDeviceCommand = exports.se_DescribeDataQualityJobDefinitionCommand = exports.se_DescribeContextCommand = exports.se_DescribeCompilationJobCommand = exports.se_DescribeCodeRepositoryCommand = exports.se_DescribeAutoMLJobV2Command = exports.se_DescribeAutoMLJobCommand = exports.se_DescribeArtifactCommand = exports.se_DescribeAppImageConfigCommand = exports.se_DescribeAppCommand = exports.se_DescribeAlgorithmCommand = exports.se_DescribeActionCommand = exports.se_DeregisterDevicesCommand = exports.se_DeleteWorkteamCommand = exports.se_DeleteWorkforceCommand = exports.se_DeleteUserProfileCommand = void 0;
6
- exports.se_ListHyperParameterTuningJobsCommand = exports.se_ListHumanTaskUisCommand = exports.se_ListHubsCommand = exports.se_ListHubContentVersionsCommand = exports.se_ListHubContentsCommand = exports.se_ListFlowDefinitionsCommand = exports.se_ListFeatureGroupsCommand = exports.se_ListExperimentsCommand = exports.se_ListEndpointsCommand = exports.se_ListEndpointConfigsCommand = exports.se_ListEdgePackagingJobsCommand = exports.se_ListEdgeDeploymentPlansCommand = exports.se_ListDomainsCommand = exports.se_ListDevicesCommand = exports.se_ListDeviceFleetsCommand = exports.se_ListDataQualityJobDefinitionsCommand = exports.se_ListContextsCommand = exports.se_ListCompilationJobsCommand = exports.se_ListCodeRepositoriesCommand = exports.se_ListCandidatesForAutoMLJobCommand = exports.se_ListAutoMLJobsCommand = exports.se_ListAssociationsCommand = exports.se_ListArtifactsCommand = exports.se_ListAppsCommand = exports.se_ListAppImageConfigsCommand = exports.se_ListAliasesCommand = exports.se_ListAlgorithmsCommand = exports.se_ListActionsCommand = exports.se_ImportHubContentCommand = exports.se_GetSearchSuggestionsCommand = exports.se_GetScalingConfigurationRecommendationCommand = exports.se_GetSagemakerServicecatalogPortfolioStatusCommand = exports.se_GetModelPackageGroupPolicyCommand = exports.se_GetLineageGroupPolicyCommand = exports.se_GetDeviceFleetReportCommand = exports.se_EnableSagemakerServicecatalogPortfolioCommand = exports.se_DisassociateTrialComponentCommand = exports.se_DisableSagemakerServicecatalogPortfolioCommand = exports.se_DescribeWorkteamCommand = exports.se_DescribeWorkforceCommand = exports.se_DescribeUserProfileCommand = exports.se_DescribeTrialComponentCommand = exports.se_DescribeTrialCommand = exports.se_DescribeTransformJobCommand = exports.se_DescribeTrainingJobCommand = exports.se_DescribeSubscribedWorkteamCommand = exports.se_DescribeStudioLifecycleConfigCommand = exports.se_DescribeSpaceCommand = exports.se_DescribeProjectCommand = exports.se_DescribeProcessingJobCommand = void 0;
7
- exports.se_SearchCommand = exports.se_RetryPipelineExecutionCommand = exports.se_RenderUiTemplateCommand = exports.se_RegisterDevicesCommand = exports.se_QueryLineageCommand = exports.se_PutModelPackageGroupPolicyCommand = exports.se_ListWorkteamsCommand = exports.se_ListWorkforcesCommand = exports.se_ListUserProfilesCommand = exports.se_ListTrialsCommand = exports.se_ListTrialComponentsCommand = exports.se_ListTransformJobsCommand = exports.se_ListTrainingJobsForHyperParameterTuningJobCommand = exports.se_ListTrainingJobsCommand = exports.se_ListTagsCommand = exports.se_ListSubscribedWorkteamsCommand = exports.se_ListStudioLifecycleConfigsCommand = exports.se_ListStageDevicesCommand = exports.se_ListSpacesCommand = exports.se_ListResourceCatalogsCommand = exports.se_ListProjectsCommand = exports.se_ListProcessingJobsCommand = exports.se_ListPipelinesCommand = exports.se_ListPipelineParametersForExecutionCommand = exports.se_ListPipelineExecutionStepsCommand = exports.se_ListPipelineExecutionsCommand = exports.se_ListNotebookInstancesCommand = exports.se_ListNotebookInstanceLifecycleConfigsCommand = exports.se_ListMonitoringSchedulesCommand = exports.se_ListMonitoringExecutionsCommand = exports.se_ListMonitoringAlertsCommand = exports.se_ListMonitoringAlertHistoryCommand = exports.se_ListModelsCommand = exports.se_ListModelQualityJobDefinitionsCommand = exports.se_ListModelPackagesCommand = exports.se_ListModelPackageGroupsCommand = exports.se_ListModelMetadataCommand = exports.se_ListModelExplainabilityJobDefinitionsCommand = exports.se_ListModelCardVersionsCommand = exports.se_ListModelCardsCommand = exports.se_ListModelCardExportJobsCommand = exports.se_ListModelBiasJobDefinitionsCommand = exports.se_ListLineageGroupsCommand = exports.se_ListLabelingJobsForWorkteamCommand = exports.se_ListLabelingJobsCommand = exports.se_ListInferenceRecommendationsJobStepsCommand = exports.se_ListInferenceRecommendationsJobsCommand = exports.se_ListInferenceExperimentsCommand = exports.se_ListImageVersionsCommand = exports.se_ListImagesCommand = void 0;
8
- exports.se_UpdateTrialCommand = exports.se_UpdateTrainingJobCommand = exports.se_UpdateSpaceCommand = exports.se_UpdateProjectCommand = exports.se_UpdatePipelineExecutionCommand = exports.se_UpdatePipelineCommand = exports.se_UpdateNotebookInstanceLifecycleConfigCommand = exports.se_UpdateNotebookInstanceCommand = exports.se_UpdateMonitoringScheduleCommand = exports.se_UpdateMonitoringAlertCommand = exports.se_UpdateModelPackageCommand = exports.se_UpdateModelCardCommand = exports.se_UpdateInferenceExperimentCommand = exports.se_UpdateImageVersionCommand = exports.se_UpdateImageCommand = exports.se_UpdateHubCommand = exports.se_UpdateFeatureMetadataCommand = exports.se_UpdateFeatureGroupCommand = exports.se_UpdateExperimentCommand = exports.se_UpdateEndpointWeightsAndCapacitiesCommand = exports.se_UpdateEndpointCommand = exports.se_UpdateDomainCommand = exports.se_UpdateDevicesCommand = exports.se_UpdateDeviceFleetCommand = exports.se_UpdateContextCommand = exports.se_UpdateCodeRepositoryCommand = exports.se_UpdateArtifactCommand = exports.se_UpdateAppImageConfigCommand = exports.se_UpdateActionCommand = exports.se_StopTransformJobCommand = exports.se_StopTrainingJobCommand = exports.se_StopProcessingJobCommand = exports.se_StopPipelineExecutionCommand = exports.se_StopNotebookInstanceCommand = exports.se_StopMonitoringScheduleCommand = exports.se_StopLabelingJobCommand = exports.se_StopInferenceRecommendationsJobCommand = exports.se_StopInferenceExperimentCommand = exports.se_StopHyperParameterTuningJobCommand = exports.se_StopEdgePackagingJobCommand = exports.se_StopEdgeDeploymentStageCommand = exports.se_StopCompilationJobCommand = exports.se_StopAutoMLJobCommand = exports.se_StartPipelineExecutionCommand = exports.se_StartNotebookInstanceCommand = exports.se_StartMonitoringScheduleCommand = exports.se_StartInferenceExperimentCommand = exports.se_StartEdgeDeploymentStageCommand = exports.se_SendPipelineExecutionStepSuccessCommand = exports.se_SendPipelineExecutionStepFailureCommand = void 0;
9
- exports.de_CreatePresignedDomainUrlCommand = exports.de_CreatePipelineCommand = exports.de_CreateNotebookInstanceLifecycleConfigCommand = exports.de_CreateNotebookInstanceCommand = exports.de_CreateMonitoringScheduleCommand = exports.de_CreateModelQualityJobDefinitionCommand = exports.de_CreateModelPackageGroupCommand = exports.de_CreateModelPackageCommand = exports.de_CreateModelExplainabilityJobDefinitionCommand = exports.de_CreateModelCardExportJobCommand = exports.de_CreateModelCardCommand = exports.de_CreateModelBiasJobDefinitionCommand = exports.de_CreateModelCommand = exports.de_CreateLabelingJobCommand = exports.de_CreateInferenceRecommendationsJobCommand = exports.de_CreateInferenceExperimentCommand = exports.de_CreateImageVersionCommand = exports.de_CreateImageCommand = exports.de_CreateHyperParameterTuningJobCommand = exports.de_CreateHumanTaskUiCommand = exports.de_CreateHubCommand = exports.de_CreateFlowDefinitionCommand = exports.de_CreateFeatureGroupCommand = exports.de_CreateExperimentCommand = exports.de_CreateEndpointConfigCommand = exports.de_CreateEndpointCommand = exports.de_CreateEdgePackagingJobCommand = exports.de_CreateEdgeDeploymentStageCommand = exports.de_CreateEdgeDeploymentPlanCommand = exports.de_CreateDomainCommand = exports.de_CreateDeviceFleetCommand = exports.de_CreateDataQualityJobDefinitionCommand = exports.de_CreateContextCommand = exports.de_CreateCompilationJobCommand = exports.de_CreateCodeRepositoryCommand = exports.de_CreateAutoMLJobV2Command = exports.de_CreateAutoMLJobCommand = exports.de_CreateArtifactCommand = exports.de_CreateAppImageConfigCommand = exports.de_CreateAppCommand = exports.de_CreateAlgorithmCommand = exports.de_CreateActionCommand = exports.de_BatchDescribeModelPackageCommand = exports.de_AssociateTrialComponentCommand = exports.de_AddTagsCommand = exports.de_AddAssociationCommand = exports.se_UpdateWorkteamCommand = exports.se_UpdateWorkforceCommand = exports.se_UpdateUserProfileCommand = exports.se_UpdateTrialComponentCommand = void 0;
10
- exports.de_DeleteSpaceCommand = exports.de_DeleteProjectCommand = exports.de_DeletePipelineCommand = exports.de_DeleteNotebookInstanceLifecycleConfigCommand = exports.de_DeleteNotebookInstanceCommand = exports.de_DeleteMonitoringScheduleCommand = exports.de_DeleteModelQualityJobDefinitionCommand = exports.de_DeleteModelPackageGroupPolicyCommand = exports.de_DeleteModelPackageGroupCommand = exports.de_DeleteModelPackageCommand = exports.de_DeleteModelExplainabilityJobDefinitionCommand = exports.de_DeleteModelCardCommand = exports.de_DeleteModelBiasJobDefinitionCommand = exports.de_DeleteModelCommand = exports.de_DeleteInferenceExperimentCommand = exports.de_DeleteImageVersionCommand = exports.de_DeleteImageCommand = exports.de_DeleteHumanTaskUiCommand = exports.de_DeleteHubContentCommand = exports.de_DeleteHubCommand = exports.de_DeleteFlowDefinitionCommand = exports.de_DeleteFeatureGroupCommand = exports.de_DeleteExperimentCommand = exports.de_DeleteEndpointConfigCommand = exports.de_DeleteEndpointCommand = exports.de_DeleteEdgeDeploymentStageCommand = exports.de_DeleteEdgeDeploymentPlanCommand = exports.de_DeleteDomainCommand = exports.de_DeleteDeviceFleetCommand = exports.de_DeleteDataQualityJobDefinitionCommand = exports.de_DeleteContextCommand = exports.de_DeleteCodeRepositoryCommand = exports.de_DeleteAssociationCommand = exports.de_DeleteArtifactCommand = exports.de_DeleteAppImageConfigCommand = exports.de_DeleteAppCommand = exports.de_DeleteAlgorithmCommand = exports.de_DeleteActionCommand = exports.de_CreateWorkteamCommand = exports.de_CreateWorkforceCommand = exports.de_CreateUserProfileCommand = exports.de_CreateTrialComponentCommand = exports.de_CreateTrialCommand = exports.de_CreateTransformJobCommand = exports.de_CreateTrainingJobCommand = exports.de_CreateStudioLifecycleConfigCommand = exports.de_CreateSpaceCommand = exports.de_CreateProjectCommand = exports.de_CreateProcessingJobCommand = exports.de_CreatePresignedNotebookInstanceUrlCommand = void 0;
11
- exports.de_DescribeNotebookInstanceCommand = exports.de_DescribeMonitoringScheduleCommand = exports.de_DescribeModelQualityJobDefinitionCommand = exports.de_DescribeModelPackageGroupCommand = exports.de_DescribeModelPackageCommand = exports.de_DescribeModelExplainabilityJobDefinitionCommand = exports.de_DescribeModelCardExportJobCommand = exports.de_DescribeModelCardCommand = exports.de_DescribeModelBiasJobDefinitionCommand = exports.de_DescribeModelCommand = exports.de_DescribeLineageGroupCommand = exports.de_DescribeLabelingJobCommand = exports.de_DescribeInferenceRecommendationsJobCommand = exports.de_DescribeInferenceExperimentCommand = exports.de_DescribeImageVersionCommand = exports.de_DescribeImageCommand = exports.de_DescribeHyperParameterTuningJobCommand = exports.de_DescribeHumanTaskUiCommand = exports.de_DescribeHubContentCommand = exports.de_DescribeHubCommand = exports.de_DescribeFlowDefinitionCommand = exports.de_DescribeFeatureMetadataCommand = exports.de_DescribeFeatureGroupCommand = exports.de_DescribeExperimentCommand = exports.de_DescribeEndpointConfigCommand = exports.de_DescribeEndpointCommand = exports.de_DescribeEdgePackagingJobCommand = exports.de_DescribeEdgeDeploymentPlanCommand = exports.de_DescribeDomainCommand = exports.de_DescribeDeviceFleetCommand = exports.de_DescribeDeviceCommand = exports.de_DescribeDataQualityJobDefinitionCommand = exports.de_DescribeContextCommand = exports.de_DescribeCompilationJobCommand = exports.de_DescribeCodeRepositoryCommand = exports.de_DescribeAutoMLJobV2Command = exports.de_DescribeAutoMLJobCommand = exports.de_DescribeArtifactCommand = exports.de_DescribeAppImageConfigCommand = exports.de_DescribeAppCommand = exports.de_DescribeAlgorithmCommand = exports.de_DescribeActionCommand = exports.de_DeregisterDevicesCommand = exports.de_DeleteWorkteamCommand = exports.de_DeleteWorkforceCommand = exports.de_DeleteUserProfileCommand = exports.de_DeleteTrialComponentCommand = exports.de_DeleteTrialCommand = exports.de_DeleteTagsCommand = exports.de_DeleteStudioLifecycleConfigCommand = void 0;
12
- exports.de_ListHubContentsCommand = exports.de_ListFlowDefinitionsCommand = exports.de_ListFeatureGroupsCommand = exports.de_ListExperimentsCommand = exports.de_ListEndpointsCommand = exports.de_ListEndpointConfigsCommand = exports.de_ListEdgePackagingJobsCommand = exports.de_ListEdgeDeploymentPlansCommand = exports.de_ListDomainsCommand = exports.de_ListDevicesCommand = exports.de_ListDeviceFleetsCommand = exports.de_ListDataQualityJobDefinitionsCommand = exports.de_ListContextsCommand = exports.de_ListCompilationJobsCommand = exports.de_ListCodeRepositoriesCommand = exports.de_ListCandidatesForAutoMLJobCommand = exports.de_ListAutoMLJobsCommand = exports.de_ListAssociationsCommand = exports.de_ListArtifactsCommand = exports.de_ListAppsCommand = exports.de_ListAppImageConfigsCommand = exports.de_ListAliasesCommand = exports.de_ListAlgorithmsCommand = exports.de_ListActionsCommand = exports.de_ImportHubContentCommand = exports.de_GetSearchSuggestionsCommand = exports.de_GetScalingConfigurationRecommendationCommand = exports.de_GetSagemakerServicecatalogPortfolioStatusCommand = exports.de_GetModelPackageGroupPolicyCommand = exports.de_GetLineageGroupPolicyCommand = exports.de_GetDeviceFleetReportCommand = exports.de_EnableSagemakerServicecatalogPortfolioCommand = exports.de_DisassociateTrialComponentCommand = exports.de_DisableSagemakerServicecatalogPortfolioCommand = exports.de_DescribeWorkteamCommand = exports.de_DescribeWorkforceCommand = exports.de_DescribeUserProfileCommand = exports.de_DescribeTrialComponentCommand = exports.de_DescribeTrialCommand = exports.de_DescribeTransformJobCommand = exports.de_DescribeTrainingJobCommand = exports.de_DescribeSubscribedWorkteamCommand = exports.de_DescribeStudioLifecycleConfigCommand = exports.de_DescribeSpaceCommand = exports.de_DescribeProjectCommand = exports.de_DescribeProcessingJobCommand = exports.de_DescribePipelineExecutionCommand = exports.de_DescribePipelineDefinitionForExecutionCommand = exports.de_DescribePipelineCommand = exports.de_DescribeNotebookInstanceLifecycleConfigCommand = void 0;
13
- exports.de_QueryLineageCommand = exports.de_PutModelPackageGroupPolicyCommand = exports.de_ListWorkteamsCommand = exports.de_ListWorkforcesCommand = exports.de_ListUserProfilesCommand = exports.de_ListTrialsCommand = exports.de_ListTrialComponentsCommand = exports.de_ListTransformJobsCommand = exports.de_ListTrainingJobsForHyperParameterTuningJobCommand = exports.de_ListTrainingJobsCommand = exports.de_ListTagsCommand = exports.de_ListSubscribedWorkteamsCommand = exports.de_ListStudioLifecycleConfigsCommand = exports.de_ListStageDevicesCommand = exports.de_ListSpacesCommand = exports.de_ListResourceCatalogsCommand = exports.de_ListProjectsCommand = exports.de_ListProcessingJobsCommand = exports.de_ListPipelinesCommand = exports.de_ListPipelineParametersForExecutionCommand = exports.de_ListPipelineExecutionStepsCommand = exports.de_ListPipelineExecutionsCommand = exports.de_ListNotebookInstancesCommand = exports.de_ListNotebookInstanceLifecycleConfigsCommand = exports.de_ListMonitoringSchedulesCommand = exports.de_ListMonitoringExecutionsCommand = exports.de_ListMonitoringAlertsCommand = exports.de_ListMonitoringAlertHistoryCommand = exports.de_ListModelsCommand = exports.de_ListModelQualityJobDefinitionsCommand = exports.de_ListModelPackagesCommand = exports.de_ListModelPackageGroupsCommand = exports.de_ListModelMetadataCommand = exports.de_ListModelExplainabilityJobDefinitionsCommand = exports.de_ListModelCardVersionsCommand = exports.de_ListModelCardsCommand = exports.de_ListModelCardExportJobsCommand = exports.de_ListModelBiasJobDefinitionsCommand = exports.de_ListLineageGroupsCommand = exports.de_ListLabelingJobsForWorkteamCommand = exports.de_ListLabelingJobsCommand = exports.de_ListInferenceRecommendationsJobStepsCommand = exports.de_ListInferenceRecommendationsJobsCommand = exports.de_ListInferenceExperimentsCommand = exports.de_ListImageVersionsCommand = exports.de_ListImagesCommand = exports.de_ListHyperParameterTuningJobsCommand = exports.de_ListHumanTaskUisCommand = exports.de_ListHubsCommand = exports.de_ListHubContentVersionsCommand = void 0;
14
- exports.de_UpdatePipelineExecutionCommand = exports.de_UpdatePipelineCommand = exports.de_UpdateNotebookInstanceLifecycleConfigCommand = exports.de_UpdateNotebookInstanceCommand = exports.de_UpdateMonitoringScheduleCommand = exports.de_UpdateMonitoringAlertCommand = exports.de_UpdateModelPackageCommand = exports.de_UpdateModelCardCommand = exports.de_UpdateInferenceExperimentCommand = exports.de_UpdateImageVersionCommand = exports.de_UpdateImageCommand = exports.de_UpdateHubCommand = exports.de_UpdateFeatureMetadataCommand = exports.de_UpdateFeatureGroupCommand = exports.de_UpdateExperimentCommand = exports.de_UpdateEndpointWeightsAndCapacitiesCommand = exports.de_UpdateEndpointCommand = exports.de_UpdateDomainCommand = exports.de_UpdateDevicesCommand = exports.de_UpdateDeviceFleetCommand = exports.de_UpdateContextCommand = exports.de_UpdateCodeRepositoryCommand = exports.de_UpdateArtifactCommand = exports.de_UpdateAppImageConfigCommand = exports.de_UpdateActionCommand = exports.de_StopTransformJobCommand = exports.de_StopTrainingJobCommand = exports.de_StopProcessingJobCommand = exports.de_StopPipelineExecutionCommand = exports.de_StopNotebookInstanceCommand = exports.de_StopMonitoringScheduleCommand = exports.de_StopLabelingJobCommand = exports.de_StopInferenceRecommendationsJobCommand = exports.de_StopInferenceExperimentCommand = exports.de_StopHyperParameterTuningJobCommand = exports.de_StopEdgePackagingJobCommand = exports.de_StopEdgeDeploymentStageCommand = exports.de_StopCompilationJobCommand = exports.de_StopAutoMLJobCommand = exports.de_StartPipelineExecutionCommand = exports.de_StartNotebookInstanceCommand = exports.de_StartMonitoringScheduleCommand = exports.de_StartInferenceExperimentCommand = exports.de_StartEdgeDeploymentStageCommand = exports.de_SendPipelineExecutionStepSuccessCommand = exports.de_SendPipelineExecutionStepFailureCommand = exports.de_SearchCommand = exports.de_RetryPipelineExecutionCommand = exports.de_RenderUiTemplateCommand = exports.de_RegisterDevicesCommand = void 0;
15
- exports.de_UpdateWorkteamCommand = exports.de_UpdateWorkforceCommand = exports.de_UpdateUserProfileCommand = exports.de_UpdateTrialComponentCommand = exports.de_UpdateTrialCommand = exports.de_UpdateTrainingJobCommand = exports.de_UpdateSpaceCommand = exports.de_UpdateProjectCommand = void 0;
3
+ exports.se_CreateProcessingJobCommand = exports.se_CreatePresignedNotebookInstanceUrlCommand = exports.se_CreatePresignedDomainUrlCommand = exports.se_CreatePipelineCommand = exports.se_CreateNotebookInstanceLifecycleConfigCommand = exports.se_CreateNotebookInstanceCommand = exports.se_CreateMonitoringScheduleCommand = exports.se_CreateModelQualityJobDefinitionCommand = exports.se_CreateModelPackageGroupCommand = exports.se_CreateModelPackageCommand = exports.se_CreateModelExplainabilityJobDefinitionCommand = exports.se_CreateModelCardExportJobCommand = exports.se_CreateModelCardCommand = exports.se_CreateModelBiasJobDefinitionCommand = exports.se_CreateModelCommand = exports.se_CreateLabelingJobCommand = exports.se_CreateInferenceRecommendationsJobCommand = exports.se_CreateInferenceExperimentCommand = exports.se_CreateInferenceComponentCommand = exports.se_CreateImageVersionCommand = exports.se_CreateImageCommand = exports.se_CreateHyperParameterTuningJobCommand = exports.se_CreateHumanTaskUiCommand = exports.se_CreateHubCommand = exports.se_CreateFlowDefinitionCommand = exports.se_CreateFeatureGroupCommand = exports.se_CreateExperimentCommand = exports.se_CreateEndpointConfigCommand = exports.se_CreateEndpointCommand = exports.se_CreateEdgePackagingJobCommand = exports.se_CreateEdgeDeploymentStageCommand = exports.se_CreateEdgeDeploymentPlanCommand = exports.se_CreateDomainCommand = exports.se_CreateDeviceFleetCommand = exports.se_CreateDataQualityJobDefinitionCommand = exports.se_CreateContextCommand = exports.se_CreateCompilationJobCommand = exports.se_CreateCodeRepositoryCommand = exports.se_CreateClusterCommand = exports.se_CreateAutoMLJobV2Command = exports.se_CreateAutoMLJobCommand = exports.se_CreateArtifactCommand = exports.se_CreateAppImageConfigCommand = exports.se_CreateAppCommand = exports.se_CreateAlgorithmCommand = exports.se_CreateActionCommand = exports.se_BatchDescribeModelPackageCommand = exports.se_AssociateTrialComponentCommand = exports.se_AddTagsCommand = exports.se_AddAssociationCommand = void 0;
4
+ exports.se_DeleteSpaceCommand = exports.se_DeleteProjectCommand = exports.se_DeletePipelineCommand = exports.se_DeleteNotebookInstanceLifecycleConfigCommand = exports.se_DeleteNotebookInstanceCommand = exports.se_DeleteMonitoringScheduleCommand = exports.se_DeleteModelQualityJobDefinitionCommand = exports.se_DeleteModelPackageGroupPolicyCommand = exports.se_DeleteModelPackageGroupCommand = exports.se_DeleteModelPackageCommand = exports.se_DeleteModelExplainabilityJobDefinitionCommand = exports.se_DeleteModelCardCommand = exports.se_DeleteModelBiasJobDefinitionCommand = exports.se_DeleteModelCommand = exports.se_DeleteInferenceExperimentCommand = exports.se_DeleteInferenceComponentCommand = exports.se_DeleteImageVersionCommand = exports.se_DeleteImageCommand = exports.se_DeleteHumanTaskUiCommand = exports.se_DeleteHubContentCommand = exports.se_DeleteHubCommand = exports.se_DeleteFlowDefinitionCommand = exports.se_DeleteFeatureGroupCommand = exports.se_DeleteExperimentCommand = exports.se_DeleteEndpointConfigCommand = exports.se_DeleteEndpointCommand = exports.se_DeleteEdgeDeploymentStageCommand = exports.se_DeleteEdgeDeploymentPlanCommand = exports.se_DeleteDomainCommand = exports.se_DeleteDeviceFleetCommand = exports.se_DeleteDataQualityJobDefinitionCommand = exports.se_DeleteContextCommand = exports.se_DeleteCodeRepositoryCommand = exports.se_DeleteClusterCommand = exports.se_DeleteAssociationCommand = exports.se_DeleteArtifactCommand = exports.se_DeleteAppImageConfigCommand = exports.se_DeleteAppCommand = exports.se_DeleteAlgorithmCommand = exports.se_DeleteActionCommand = exports.se_CreateWorkteamCommand = exports.se_CreateWorkforceCommand = exports.se_CreateUserProfileCommand = exports.se_CreateTrialComponentCommand = exports.se_CreateTrialCommand = exports.se_CreateTransformJobCommand = exports.se_CreateTrainingJobCommand = exports.se_CreateStudioLifecycleConfigCommand = exports.se_CreateSpaceCommand = exports.se_CreateProjectCommand = void 0;
5
+ exports.se_DescribeModelPackageGroupCommand = exports.se_DescribeModelPackageCommand = exports.se_DescribeModelExplainabilityJobDefinitionCommand = exports.se_DescribeModelCardExportJobCommand = exports.se_DescribeModelCardCommand = exports.se_DescribeModelBiasJobDefinitionCommand = exports.se_DescribeModelCommand = exports.se_DescribeLineageGroupCommand = exports.se_DescribeLabelingJobCommand = exports.se_DescribeInferenceRecommendationsJobCommand = exports.se_DescribeInferenceExperimentCommand = exports.se_DescribeInferenceComponentCommand = exports.se_DescribeImageVersionCommand = exports.se_DescribeImageCommand = exports.se_DescribeHyperParameterTuningJobCommand = exports.se_DescribeHumanTaskUiCommand = exports.se_DescribeHubContentCommand = exports.se_DescribeHubCommand = exports.se_DescribeFlowDefinitionCommand = exports.se_DescribeFeatureMetadataCommand = exports.se_DescribeFeatureGroupCommand = exports.se_DescribeExperimentCommand = exports.se_DescribeEndpointConfigCommand = exports.se_DescribeEndpointCommand = exports.se_DescribeEdgePackagingJobCommand = exports.se_DescribeEdgeDeploymentPlanCommand = exports.se_DescribeDomainCommand = exports.se_DescribeDeviceFleetCommand = exports.se_DescribeDeviceCommand = exports.se_DescribeDataQualityJobDefinitionCommand = exports.se_DescribeContextCommand = exports.se_DescribeCompilationJobCommand = exports.se_DescribeCodeRepositoryCommand = exports.se_DescribeClusterNodeCommand = exports.se_DescribeClusterCommand = exports.se_DescribeAutoMLJobV2Command = exports.se_DescribeAutoMLJobCommand = exports.se_DescribeArtifactCommand = exports.se_DescribeAppImageConfigCommand = exports.se_DescribeAppCommand = exports.se_DescribeAlgorithmCommand = exports.se_DescribeActionCommand = exports.se_DeregisterDevicesCommand = exports.se_DeleteWorkteamCommand = exports.se_DeleteWorkforceCommand = exports.se_DeleteUserProfileCommand = exports.se_DeleteTrialComponentCommand = exports.se_DeleteTrialCommand = exports.se_DeleteTagsCommand = exports.se_DeleteStudioLifecycleConfigCommand = void 0;
6
+ exports.se_ListEndpointConfigsCommand = exports.se_ListEdgePackagingJobsCommand = exports.se_ListEdgeDeploymentPlansCommand = exports.se_ListDomainsCommand = exports.se_ListDevicesCommand = exports.se_ListDeviceFleetsCommand = exports.se_ListDataQualityJobDefinitionsCommand = exports.se_ListContextsCommand = exports.se_ListCompilationJobsCommand = exports.se_ListCodeRepositoriesCommand = exports.se_ListClustersCommand = exports.se_ListClusterNodesCommand = exports.se_ListCandidatesForAutoMLJobCommand = exports.se_ListAutoMLJobsCommand = exports.se_ListAssociationsCommand = exports.se_ListArtifactsCommand = exports.se_ListAppsCommand = exports.se_ListAppImageConfigsCommand = exports.se_ListAliasesCommand = exports.se_ListAlgorithmsCommand = exports.se_ListActionsCommand = exports.se_ImportHubContentCommand = exports.se_GetSearchSuggestionsCommand = exports.se_GetScalingConfigurationRecommendationCommand = exports.se_GetSagemakerServicecatalogPortfolioStatusCommand = exports.se_GetModelPackageGroupPolicyCommand = exports.se_GetLineageGroupPolicyCommand = exports.se_GetDeviceFleetReportCommand = exports.se_EnableSagemakerServicecatalogPortfolioCommand = exports.se_DisassociateTrialComponentCommand = exports.se_DisableSagemakerServicecatalogPortfolioCommand = exports.se_DescribeWorkteamCommand = exports.se_DescribeWorkforceCommand = exports.se_DescribeUserProfileCommand = exports.se_DescribeTrialComponentCommand = exports.se_DescribeTrialCommand = exports.se_DescribeTransformJobCommand = exports.se_DescribeTrainingJobCommand = exports.se_DescribeSubscribedWorkteamCommand = exports.se_DescribeStudioLifecycleConfigCommand = exports.se_DescribeSpaceCommand = exports.se_DescribeProjectCommand = exports.se_DescribeProcessingJobCommand = exports.se_DescribePipelineExecutionCommand = exports.se_DescribePipelineDefinitionForExecutionCommand = exports.se_DescribePipelineCommand = exports.se_DescribeNotebookInstanceLifecycleConfigCommand = exports.se_DescribeNotebookInstanceCommand = exports.se_DescribeMonitoringScheduleCommand = exports.se_DescribeModelQualityJobDefinitionCommand = void 0;
7
+ exports.se_ListTrialComponentsCommand = exports.se_ListTransformJobsCommand = exports.se_ListTrainingJobsForHyperParameterTuningJobCommand = exports.se_ListTrainingJobsCommand = exports.se_ListTagsCommand = exports.se_ListSubscribedWorkteamsCommand = exports.se_ListStudioLifecycleConfigsCommand = exports.se_ListStageDevicesCommand = exports.se_ListSpacesCommand = exports.se_ListResourceCatalogsCommand = exports.se_ListProjectsCommand = exports.se_ListProcessingJobsCommand = exports.se_ListPipelinesCommand = exports.se_ListPipelineParametersForExecutionCommand = exports.se_ListPipelineExecutionStepsCommand = exports.se_ListPipelineExecutionsCommand = exports.se_ListNotebookInstancesCommand = exports.se_ListNotebookInstanceLifecycleConfigsCommand = exports.se_ListMonitoringSchedulesCommand = exports.se_ListMonitoringExecutionsCommand = exports.se_ListMonitoringAlertsCommand = exports.se_ListMonitoringAlertHistoryCommand = exports.se_ListModelsCommand = exports.se_ListModelQualityJobDefinitionsCommand = exports.se_ListModelPackagesCommand = exports.se_ListModelPackageGroupsCommand = exports.se_ListModelMetadataCommand = exports.se_ListModelExplainabilityJobDefinitionsCommand = exports.se_ListModelCardVersionsCommand = exports.se_ListModelCardsCommand = exports.se_ListModelCardExportJobsCommand = exports.se_ListModelBiasJobDefinitionsCommand = exports.se_ListLineageGroupsCommand = exports.se_ListLabelingJobsForWorkteamCommand = exports.se_ListLabelingJobsCommand = exports.se_ListInferenceRecommendationsJobStepsCommand = exports.se_ListInferenceRecommendationsJobsCommand = exports.se_ListInferenceExperimentsCommand = exports.se_ListInferenceComponentsCommand = exports.se_ListImageVersionsCommand = exports.se_ListImagesCommand = exports.se_ListHyperParameterTuningJobsCommand = exports.se_ListHumanTaskUisCommand = exports.se_ListHubsCommand = exports.se_ListHubContentVersionsCommand = exports.se_ListHubContentsCommand = exports.se_ListFlowDefinitionsCommand = exports.se_ListFeatureGroupsCommand = exports.se_ListExperimentsCommand = exports.se_ListEndpointsCommand = void 0;
8
+ exports.se_UpdateInferenceComponentRuntimeConfigCommand = exports.se_UpdateInferenceComponentCommand = exports.se_UpdateImageVersionCommand = exports.se_UpdateImageCommand = exports.se_UpdateHubCommand = exports.se_UpdateFeatureMetadataCommand = exports.se_UpdateFeatureGroupCommand = exports.se_UpdateExperimentCommand = exports.se_UpdateEndpointWeightsAndCapacitiesCommand = exports.se_UpdateEndpointCommand = exports.se_UpdateDomainCommand = exports.se_UpdateDevicesCommand = exports.se_UpdateDeviceFleetCommand = exports.se_UpdateContextCommand = exports.se_UpdateCodeRepositoryCommand = exports.se_UpdateClusterCommand = exports.se_UpdateArtifactCommand = exports.se_UpdateAppImageConfigCommand = exports.se_UpdateActionCommand = exports.se_StopTransformJobCommand = exports.se_StopTrainingJobCommand = exports.se_StopProcessingJobCommand = exports.se_StopPipelineExecutionCommand = exports.se_StopNotebookInstanceCommand = exports.se_StopMonitoringScheduleCommand = exports.se_StopLabelingJobCommand = exports.se_StopInferenceRecommendationsJobCommand = exports.se_StopInferenceExperimentCommand = exports.se_StopHyperParameterTuningJobCommand = exports.se_StopEdgePackagingJobCommand = exports.se_StopEdgeDeploymentStageCommand = exports.se_StopCompilationJobCommand = exports.se_StopAutoMLJobCommand = exports.se_StartPipelineExecutionCommand = exports.se_StartNotebookInstanceCommand = exports.se_StartMonitoringScheduleCommand = exports.se_StartInferenceExperimentCommand = exports.se_StartEdgeDeploymentStageCommand = exports.se_SendPipelineExecutionStepSuccessCommand = exports.se_SendPipelineExecutionStepFailureCommand = exports.se_SearchCommand = exports.se_RetryPipelineExecutionCommand = exports.se_RenderUiTemplateCommand = exports.se_RegisterDevicesCommand = exports.se_QueryLineageCommand = exports.se_PutModelPackageGroupPolicyCommand = exports.se_ListWorkteamsCommand = exports.se_ListWorkforcesCommand = exports.se_ListUserProfilesCommand = exports.se_ListTrialsCommand = void 0;
9
+ exports.de_CreateInferenceExperimentCommand = exports.de_CreateInferenceComponentCommand = exports.de_CreateImageVersionCommand = exports.de_CreateImageCommand = exports.de_CreateHyperParameterTuningJobCommand = exports.de_CreateHumanTaskUiCommand = exports.de_CreateHubCommand = exports.de_CreateFlowDefinitionCommand = exports.de_CreateFeatureGroupCommand = exports.de_CreateExperimentCommand = exports.de_CreateEndpointConfigCommand = exports.de_CreateEndpointCommand = exports.de_CreateEdgePackagingJobCommand = exports.de_CreateEdgeDeploymentStageCommand = exports.de_CreateEdgeDeploymentPlanCommand = exports.de_CreateDomainCommand = exports.de_CreateDeviceFleetCommand = exports.de_CreateDataQualityJobDefinitionCommand = exports.de_CreateContextCommand = exports.de_CreateCompilationJobCommand = exports.de_CreateCodeRepositoryCommand = exports.de_CreateClusterCommand = exports.de_CreateAutoMLJobV2Command = exports.de_CreateAutoMLJobCommand = exports.de_CreateArtifactCommand = exports.de_CreateAppImageConfigCommand = exports.de_CreateAppCommand = exports.de_CreateAlgorithmCommand = exports.de_CreateActionCommand = exports.de_BatchDescribeModelPackageCommand = exports.de_AssociateTrialComponentCommand = exports.de_AddTagsCommand = exports.de_AddAssociationCommand = exports.se_UpdateWorkteamCommand = exports.se_UpdateWorkforceCommand = exports.se_UpdateUserProfileCommand = exports.se_UpdateTrialComponentCommand = exports.se_UpdateTrialCommand = exports.se_UpdateTrainingJobCommand = exports.se_UpdateSpaceCommand = exports.se_UpdateProjectCommand = exports.se_UpdatePipelineExecutionCommand = exports.se_UpdatePipelineCommand = exports.se_UpdateNotebookInstanceLifecycleConfigCommand = exports.se_UpdateNotebookInstanceCommand = exports.se_UpdateMonitoringScheduleCommand = exports.se_UpdateMonitoringAlertCommand = exports.se_UpdateModelPackageCommand = exports.se_UpdateModelCardCommand = exports.se_UpdateInferenceExperimentCommand = void 0;
10
+ exports.de_DeleteImageCommand = exports.de_DeleteHumanTaskUiCommand = exports.de_DeleteHubContentCommand = exports.de_DeleteHubCommand = exports.de_DeleteFlowDefinitionCommand = exports.de_DeleteFeatureGroupCommand = exports.de_DeleteExperimentCommand = exports.de_DeleteEndpointConfigCommand = exports.de_DeleteEndpointCommand = exports.de_DeleteEdgeDeploymentStageCommand = exports.de_DeleteEdgeDeploymentPlanCommand = exports.de_DeleteDomainCommand = exports.de_DeleteDeviceFleetCommand = exports.de_DeleteDataQualityJobDefinitionCommand = exports.de_DeleteContextCommand = exports.de_DeleteCodeRepositoryCommand = exports.de_DeleteClusterCommand = exports.de_DeleteAssociationCommand = exports.de_DeleteArtifactCommand = exports.de_DeleteAppImageConfigCommand = exports.de_DeleteAppCommand = exports.de_DeleteAlgorithmCommand = exports.de_DeleteActionCommand = exports.de_CreateWorkteamCommand = exports.de_CreateWorkforceCommand = exports.de_CreateUserProfileCommand = exports.de_CreateTrialComponentCommand = exports.de_CreateTrialCommand = exports.de_CreateTransformJobCommand = exports.de_CreateTrainingJobCommand = exports.de_CreateStudioLifecycleConfigCommand = exports.de_CreateSpaceCommand = exports.de_CreateProjectCommand = exports.de_CreateProcessingJobCommand = exports.de_CreatePresignedNotebookInstanceUrlCommand = exports.de_CreatePresignedDomainUrlCommand = exports.de_CreatePipelineCommand = exports.de_CreateNotebookInstanceLifecycleConfigCommand = exports.de_CreateNotebookInstanceCommand = exports.de_CreateMonitoringScheduleCommand = exports.de_CreateModelQualityJobDefinitionCommand = exports.de_CreateModelPackageGroupCommand = exports.de_CreateModelPackageCommand = exports.de_CreateModelExplainabilityJobDefinitionCommand = exports.de_CreateModelCardExportJobCommand = exports.de_CreateModelCardCommand = exports.de_CreateModelBiasJobDefinitionCommand = exports.de_CreateModelCommand = exports.de_CreateLabelingJobCommand = exports.de_CreateInferenceRecommendationsJobCommand = void 0;
11
+ exports.de_DescribeHubCommand = exports.de_DescribeFlowDefinitionCommand = exports.de_DescribeFeatureMetadataCommand = exports.de_DescribeFeatureGroupCommand = exports.de_DescribeExperimentCommand = exports.de_DescribeEndpointConfigCommand = exports.de_DescribeEndpointCommand = exports.de_DescribeEdgePackagingJobCommand = exports.de_DescribeEdgeDeploymentPlanCommand = exports.de_DescribeDomainCommand = exports.de_DescribeDeviceFleetCommand = exports.de_DescribeDeviceCommand = exports.de_DescribeDataQualityJobDefinitionCommand = exports.de_DescribeContextCommand = exports.de_DescribeCompilationJobCommand = exports.de_DescribeCodeRepositoryCommand = exports.de_DescribeClusterNodeCommand = exports.de_DescribeClusterCommand = exports.de_DescribeAutoMLJobV2Command = exports.de_DescribeAutoMLJobCommand = exports.de_DescribeArtifactCommand = exports.de_DescribeAppImageConfigCommand = exports.de_DescribeAppCommand = exports.de_DescribeAlgorithmCommand = exports.de_DescribeActionCommand = exports.de_DeregisterDevicesCommand = exports.de_DeleteWorkteamCommand = exports.de_DeleteWorkforceCommand = exports.de_DeleteUserProfileCommand = exports.de_DeleteTrialComponentCommand = exports.de_DeleteTrialCommand = exports.de_DeleteTagsCommand = exports.de_DeleteStudioLifecycleConfigCommand = exports.de_DeleteSpaceCommand = exports.de_DeleteProjectCommand = exports.de_DeletePipelineCommand = exports.de_DeleteNotebookInstanceLifecycleConfigCommand = exports.de_DeleteNotebookInstanceCommand = exports.de_DeleteMonitoringScheduleCommand = exports.de_DeleteModelQualityJobDefinitionCommand = exports.de_DeleteModelPackageGroupPolicyCommand = exports.de_DeleteModelPackageGroupCommand = exports.de_DeleteModelPackageCommand = exports.de_DeleteModelExplainabilityJobDefinitionCommand = exports.de_DeleteModelCardCommand = exports.de_DeleteModelBiasJobDefinitionCommand = exports.de_DeleteModelCommand = exports.de_DeleteInferenceExperimentCommand = exports.de_DeleteInferenceComponentCommand = exports.de_DeleteImageVersionCommand = void 0;
12
+ exports.de_ListAppImageConfigsCommand = exports.de_ListAliasesCommand = exports.de_ListAlgorithmsCommand = exports.de_ListActionsCommand = exports.de_ImportHubContentCommand = exports.de_GetSearchSuggestionsCommand = exports.de_GetScalingConfigurationRecommendationCommand = exports.de_GetSagemakerServicecatalogPortfolioStatusCommand = exports.de_GetModelPackageGroupPolicyCommand = exports.de_GetLineageGroupPolicyCommand = exports.de_GetDeviceFleetReportCommand = exports.de_EnableSagemakerServicecatalogPortfolioCommand = exports.de_DisassociateTrialComponentCommand = exports.de_DisableSagemakerServicecatalogPortfolioCommand = exports.de_DescribeWorkteamCommand = exports.de_DescribeWorkforceCommand = exports.de_DescribeUserProfileCommand = exports.de_DescribeTrialComponentCommand = exports.de_DescribeTrialCommand = exports.de_DescribeTransformJobCommand = exports.de_DescribeTrainingJobCommand = exports.de_DescribeSubscribedWorkteamCommand = exports.de_DescribeStudioLifecycleConfigCommand = exports.de_DescribeSpaceCommand = exports.de_DescribeProjectCommand = exports.de_DescribeProcessingJobCommand = exports.de_DescribePipelineExecutionCommand = exports.de_DescribePipelineDefinitionForExecutionCommand = exports.de_DescribePipelineCommand = exports.de_DescribeNotebookInstanceLifecycleConfigCommand = exports.de_DescribeNotebookInstanceCommand = exports.de_DescribeMonitoringScheduleCommand = exports.de_DescribeModelQualityJobDefinitionCommand = exports.de_DescribeModelPackageGroupCommand = exports.de_DescribeModelPackageCommand = exports.de_DescribeModelExplainabilityJobDefinitionCommand = exports.de_DescribeModelCardExportJobCommand = exports.de_DescribeModelCardCommand = exports.de_DescribeModelBiasJobDefinitionCommand = exports.de_DescribeModelCommand = exports.de_DescribeLineageGroupCommand = exports.de_DescribeLabelingJobCommand = exports.de_DescribeInferenceRecommendationsJobCommand = exports.de_DescribeInferenceExperimentCommand = exports.de_DescribeInferenceComponentCommand = exports.de_DescribeImageVersionCommand = exports.de_DescribeImageCommand = exports.de_DescribeHyperParameterTuningJobCommand = exports.de_DescribeHumanTaskUiCommand = exports.de_DescribeHubContentCommand = void 0;
13
+ exports.de_ListNotebookInstanceLifecycleConfigsCommand = exports.de_ListMonitoringSchedulesCommand = exports.de_ListMonitoringExecutionsCommand = exports.de_ListMonitoringAlertsCommand = exports.de_ListMonitoringAlertHistoryCommand = exports.de_ListModelsCommand = exports.de_ListModelQualityJobDefinitionsCommand = exports.de_ListModelPackagesCommand = exports.de_ListModelPackageGroupsCommand = exports.de_ListModelMetadataCommand = exports.de_ListModelExplainabilityJobDefinitionsCommand = exports.de_ListModelCardVersionsCommand = exports.de_ListModelCardsCommand = exports.de_ListModelCardExportJobsCommand = exports.de_ListModelBiasJobDefinitionsCommand = exports.de_ListLineageGroupsCommand = exports.de_ListLabelingJobsForWorkteamCommand = exports.de_ListLabelingJobsCommand = exports.de_ListInferenceRecommendationsJobStepsCommand = exports.de_ListInferenceRecommendationsJobsCommand = exports.de_ListInferenceExperimentsCommand = exports.de_ListInferenceComponentsCommand = exports.de_ListImageVersionsCommand = exports.de_ListImagesCommand = exports.de_ListHyperParameterTuningJobsCommand = exports.de_ListHumanTaskUisCommand = exports.de_ListHubsCommand = exports.de_ListHubContentVersionsCommand = exports.de_ListHubContentsCommand = exports.de_ListFlowDefinitionsCommand = exports.de_ListFeatureGroupsCommand = exports.de_ListExperimentsCommand = exports.de_ListEndpointsCommand = exports.de_ListEndpointConfigsCommand = exports.de_ListEdgePackagingJobsCommand = exports.de_ListEdgeDeploymentPlansCommand = exports.de_ListDomainsCommand = exports.de_ListDevicesCommand = exports.de_ListDeviceFleetsCommand = exports.de_ListDataQualityJobDefinitionsCommand = exports.de_ListContextsCommand = exports.de_ListCompilationJobsCommand = exports.de_ListCodeRepositoriesCommand = exports.de_ListClustersCommand = exports.de_ListClusterNodesCommand = exports.de_ListCandidatesForAutoMLJobCommand = exports.de_ListAutoMLJobsCommand = exports.de_ListAssociationsCommand = exports.de_ListArtifactsCommand = exports.de_ListAppsCommand = void 0;
14
+ exports.de_UpdateAppImageConfigCommand = exports.de_UpdateActionCommand = exports.de_StopTransformJobCommand = exports.de_StopTrainingJobCommand = exports.de_StopProcessingJobCommand = exports.de_StopPipelineExecutionCommand = exports.de_StopNotebookInstanceCommand = exports.de_StopMonitoringScheduleCommand = exports.de_StopLabelingJobCommand = exports.de_StopInferenceRecommendationsJobCommand = exports.de_StopInferenceExperimentCommand = exports.de_StopHyperParameterTuningJobCommand = exports.de_StopEdgePackagingJobCommand = exports.de_StopEdgeDeploymentStageCommand = exports.de_StopCompilationJobCommand = exports.de_StopAutoMLJobCommand = exports.de_StartPipelineExecutionCommand = exports.de_StartNotebookInstanceCommand = exports.de_StartMonitoringScheduleCommand = exports.de_StartInferenceExperimentCommand = exports.de_StartEdgeDeploymentStageCommand = exports.de_SendPipelineExecutionStepSuccessCommand = exports.de_SendPipelineExecutionStepFailureCommand = exports.de_SearchCommand = exports.de_RetryPipelineExecutionCommand = exports.de_RenderUiTemplateCommand = exports.de_RegisterDevicesCommand = exports.de_QueryLineageCommand = exports.de_PutModelPackageGroupPolicyCommand = exports.de_ListWorkteamsCommand = exports.de_ListWorkforcesCommand = exports.de_ListUserProfilesCommand = exports.de_ListTrialsCommand = exports.de_ListTrialComponentsCommand = exports.de_ListTransformJobsCommand = exports.de_ListTrainingJobsForHyperParameterTuningJobCommand = exports.de_ListTrainingJobsCommand = exports.de_ListTagsCommand = exports.de_ListSubscribedWorkteamsCommand = exports.de_ListStudioLifecycleConfigsCommand = exports.de_ListStageDevicesCommand = exports.de_ListSpacesCommand = exports.de_ListResourceCatalogsCommand = exports.de_ListProjectsCommand = exports.de_ListProcessingJobsCommand = exports.de_ListPipelinesCommand = exports.de_ListPipelineParametersForExecutionCommand = exports.de_ListPipelineExecutionStepsCommand = exports.de_ListPipelineExecutionsCommand = exports.de_ListNotebookInstancesCommand = void 0;
15
+ exports.de_UpdateWorkteamCommand = exports.de_UpdateWorkforceCommand = exports.de_UpdateUserProfileCommand = exports.de_UpdateTrialComponentCommand = exports.de_UpdateTrialCommand = exports.de_UpdateTrainingJobCommand = exports.de_UpdateSpaceCommand = exports.de_UpdateProjectCommand = exports.de_UpdatePipelineExecutionCommand = exports.de_UpdatePipelineCommand = exports.de_UpdateNotebookInstanceLifecycleConfigCommand = exports.de_UpdateNotebookInstanceCommand = exports.de_UpdateMonitoringScheduleCommand = exports.de_UpdateMonitoringAlertCommand = exports.de_UpdateModelPackageCommand = exports.de_UpdateModelCardCommand = exports.de_UpdateInferenceExperimentCommand = exports.de_UpdateInferenceComponentRuntimeConfigCommand = exports.de_UpdateInferenceComponentCommand = exports.de_UpdateImageVersionCommand = exports.de_UpdateImageCommand = exports.de_UpdateHubCommand = exports.de_UpdateFeatureMetadataCommand = exports.de_UpdateFeatureGroupCommand = exports.de_UpdateExperimentCommand = exports.de_UpdateEndpointWeightsAndCapacitiesCommand = exports.de_UpdateEndpointCommand = exports.de_UpdateDomainCommand = exports.de_UpdateDevicesCommand = exports.de_UpdateDeviceFleetCommand = exports.de_UpdateContextCommand = exports.de_UpdateCodeRepositoryCommand = exports.de_UpdateClusterCommand = exports.de_UpdateArtifactCommand = void 0;
16
16
  const core_1 = require("@aws-sdk/core");
17
17
  const protocol_http_1 = require("@smithy/protocol-http");
18
18
  const smithy_client_1 = require("@smithy/smithy-client");
@@ -97,6 +97,13 @@ const se_CreateAutoMLJobV2Command = async (input, context) => {
97
97
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
98
98
  };
99
99
  exports.se_CreateAutoMLJobV2Command = se_CreateAutoMLJobV2Command;
100
+ const se_CreateClusterCommand = async (input, context) => {
101
+ const headers = sharedHeaders("CreateCluster");
102
+ let body;
103
+ body = JSON.stringify((0, smithy_client_1._json)(input));
104
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
105
+ };
106
+ exports.se_CreateClusterCommand = se_CreateClusterCommand;
100
107
  const se_CreateCodeRepositoryCommand = async (input, context) => {
101
108
  const headers = sharedHeaders("CreateCodeRepository");
102
109
  let body;
@@ -230,6 +237,13 @@ const se_CreateImageVersionCommand = async (input, context) => {
230
237
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
231
238
  };
232
239
  exports.se_CreateImageVersionCommand = se_CreateImageVersionCommand;
240
+ const se_CreateInferenceComponentCommand = async (input, context) => {
241
+ const headers = sharedHeaders("CreateInferenceComponent");
242
+ let body;
243
+ body = JSON.stringify(se_CreateInferenceComponentInput(input, context));
244
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
245
+ };
246
+ exports.se_CreateInferenceComponentCommand = se_CreateInferenceComponentCommand;
233
247
  const se_CreateInferenceExperimentCommand = async (input, context) => {
234
248
  const headers = sharedHeaders("CreateInferenceExperiment");
235
249
  let body;
@@ -468,6 +482,13 @@ const se_DeleteAssociationCommand = async (input, context) => {
468
482
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
469
483
  };
470
484
  exports.se_DeleteAssociationCommand = se_DeleteAssociationCommand;
485
+ const se_DeleteClusterCommand = async (input, context) => {
486
+ const headers = sharedHeaders("DeleteCluster");
487
+ let body;
488
+ body = JSON.stringify((0, smithy_client_1._json)(input));
489
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
490
+ };
491
+ exports.se_DeleteClusterCommand = se_DeleteClusterCommand;
471
492
  const se_DeleteCodeRepositoryCommand = async (input, context) => {
472
493
  const headers = sharedHeaders("DeleteCodeRepository");
473
494
  let body;
@@ -587,6 +608,13 @@ const se_DeleteImageVersionCommand = async (input, context) => {
587
608
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
588
609
  };
589
610
  exports.se_DeleteImageVersionCommand = se_DeleteImageVersionCommand;
611
+ const se_DeleteInferenceComponentCommand = async (input, context) => {
612
+ const headers = sharedHeaders("DeleteInferenceComponent");
613
+ let body;
614
+ body = JSON.stringify((0, smithy_client_1._json)(input));
615
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
616
+ };
617
+ exports.se_DeleteInferenceComponentCommand = se_DeleteInferenceComponentCommand;
590
618
  const se_DeleteInferenceExperimentCommand = async (input, context) => {
591
619
  const headers = sharedHeaders("DeleteInferenceExperiment");
592
620
  let body;
@@ -797,6 +825,20 @@ const se_DescribeAutoMLJobV2Command = async (input, context) => {
797
825
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
798
826
  };
799
827
  exports.se_DescribeAutoMLJobV2Command = se_DescribeAutoMLJobV2Command;
828
+ const se_DescribeClusterCommand = async (input, context) => {
829
+ const headers = sharedHeaders("DescribeCluster");
830
+ let body;
831
+ body = JSON.stringify((0, smithy_client_1._json)(input));
832
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
833
+ };
834
+ exports.se_DescribeClusterCommand = se_DescribeClusterCommand;
835
+ const se_DescribeClusterNodeCommand = async (input, context) => {
836
+ const headers = sharedHeaders("DescribeClusterNode");
837
+ let body;
838
+ body = JSON.stringify((0, smithy_client_1._json)(input));
839
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
840
+ };
841
+ exports.se_DescribeClusterNodeCommand = se_DescribeClusterNodeCommand;
800
842
  const se_DescribeCodeRepositoryCommand = async (input, context) => {
801
843
  const headers = sharedHeaders("DescribeCodeRepository");
802
844
  let body;
@@ -944,6 +986,13 @@ const se_DescribeImageVersionCommand = async (input, context) => {
944
986
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
945
987
  };
946
988
  exports.se_DescribeImageVersionCommand = se_DescribeImageVersionCommand;
989
+ const se_DescribeInferenceComponentCommand = async (input, context) => {
990
+ const headers = sharedHeaders("DescribeInferenceComponent");
991
+ let body;
992
+ body = JSON.stringify((0, smithy_client_1._json)(input));
993
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
994
+ };
995
+ exports.se_DescribeInferenceComponentCommand = se_DescribeInferenceComponentCommand;
947
996
  const se_DescribeInferenceExperimentCommand = async (input, context) => {
948
997
  const headers = sharedHeaders("DescribeInferenceExperiment");
949
998
  let body;
@@ -1287,6 +1336,20 @@ const se_ListCandidatesForAutoMLJobCommand = async (input, context) => {
1287
1336
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1288
1337
  };
1289
1338
  exports.se_ListCandidatesForAutoMLJobCommand = se_ListCandidatesForAutoMLJobCommand;
1339
+ const se_ListClusterNodesCommand = async (input, context) => {
1340
+ const headers = sharedHeaders("ListClusterNodes");
1341
+ let body;
1342
+ body = JSON.stringify(se_ListClusterNodesRequest(input, context));
1343
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1344
+ };
1345
+ exports.se_ListClusterNodesCommand = se_ListClusterNodesCommand;
1346
+ const se_ListClustersCommand = async (input, context) => {
1347
+ const headers = sharedHeaders("ListClusters");
1348
+ let body;
1349
+ body = JSON.stringify(se_ListClustersRequest(input, context));
1350
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1351
+ };
1352
+ exports.se_ListClustersCommand = se_ListClustersCommand;
1290
1353
  const se_ListCodeRepositoriesCommand = async (input, context) => {
1291
1354
  const headers = sharedHeaders("ListCodeRepositories");
1292
1355
  let body;
@@ -1434,6 +1497,13 @@ const se_ListImageVersionsCommand = async (input, context) => {
1434
1497
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1435
1498
  };
1436
1499
  exports.se_ListImageVersionsCommand = se_ListImageVersionsCommand;
1500
+ const se_ListInferenceComponentsCommand = async (input, context) => {
1501
+ const headers = sharedHeaders("ListInferenceComponents");
1502
+ let body;
1503
+ body = JSON.stringify(se_ListInferenceComponentsInput(input, context));
1504
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
1505
+ };
1506
+ exports.se_ListInferenceComponentsCommand = se_ListInferenceComponentsCommand;
1437
1507
  const se_ListInferenceExperimentsCommand = async (input, context) => {
1438
1508
  const headers = sharedHeaders("ListInferenceExperiments");
1439
1509
  let body;
@@ -1938,6 +2008,13 @@ const se_UpdateArtifactCommand = async (input, context) => {
1938
2008
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
1939
2009
  };
1940
2010
  exports.se_UpdateArtifactCommand = se_UpdateArtifactCommand;
2011
+ const se_UpdateClusterCommand = async (input, context) => {
2012
+ const headers = sharedHeaders("UpdateCluster");
2013
+ let body;
2014
+ body = JSON.stringify((0, smithy_client_1._json)(input));
2015
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
2016
+ };
2017
+ exports.se_UpdateClusterCommand = se_UpdateClusterCommand;
1941
2018
  const se_UpdateCodeRepositoryCommand = async (input, context) => {
1942
2019
  const headers = sharedHeaders("UpdateCodeRepository");
1943
2020
  let body;
@@ -2029,6 +2106,20 @@ const se_UpdateImageVersionCommand = async (input, context) => {
2029
2106
  return buildHttpRpcRequest(context, headers, "/", undefined, body);
2030
2107
  };
2031
2108
  exports.se_UpdateImageVersionCommand = se_UpdateImageVersionCommand;
2109
+ const se_UpdateInferenceComponentCommand = async (input, context) => {
2110
+ const headers = sharedHeaders("UpdateInferenceComponent");
2111
+ let body;
2112
+ body = JSON.stringify(se_UpdateInferenceComponentInput(input, context));
2113
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
2114
+ };
2115
+ exports.se_UpdateInferenceComponentCommand = se_UpdateInferenceComponentCommand;
2116
+ const se_UpdateInferenceComponentRuntimeConfigCommand = async (input, context) => {
2117
+ const headers = sharedHeaders("UpdateInferenceComponentRuntimeConfig");
2118
+ let body;
2119
+ body = JSON.stringify((0, smithy_client_1._json)(input));
2120
+ return buildHttpRpcRequest(context, headers, "/", undefined, body);
2121
+ };
2122
+ exports.se_UpdateInferenceComponentRuntimeConfigCommand = se_UpdateInferenceComponentRuntimeConfigCommand;
2032
2123
  const se_UpdateInferenceExperimentCommand = async (input, context) => {
2033
2124
  const headers = sharedHeaders("UpdateInferenceExperiment");
2034
2125
  let body;
@@ -2508,6 +2599,42 @@ const de_CreateAutoMLJobV2CommandError = async (output, context) => {
2508
2599
  });
2509
2600
  }
2510
2601
  };
2602
+ const de_CreateClusterCommand = async (output, context) => {
2603
+ if (output.statusCode >= 300) {
2604
+ return de_CreateClusterCommandError(output, context);
2605
+ }
2606
+ const data = await parseBody(output.body, context);
2607
+ let contents = {};
2608
+ contents = de_CreateClusterResponse(data, context);
2609
+ const response = {
2610
+ $metadata: deserializeMetadata(output),
2611
+ ...contents,
2612
+ };
2613
+ return response;
2614
+ };
2615
+ exports.de_CreateClusterCommand = de_CreateClusterCommand;
2616
+ const de_CreateClusterCommandError = async (output, context) => {
2617
+ const parsedOutput = {
2618
+ ...output,
2619
+ body: await parseErrorBody(output.body, context),
2620
+ };
2621
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
2622
+ switch (errorCode) {
2623
+ case "ResourceInUse":
2624
+ case "com.amazonaws.sagemaker#ResourceInUse":
2625
+ throw await de_ResourceInUseRes(parsedOutput, context);
2626
+ case "ResourceLimitExceeded":
2627
+ case "com.amazonaws.sagemaker#ResourceLimitExceeded":
2628
+ throw await de_ResourceLimitExceededRes(parsedOutput, context);
2629
+ default:
2630
+ const parsedBody = parsedOutput.body;
2631
+ return throwDefaultError({
2632
+ output,
2633
+ parsedBody,
2634
+ errorCode,
2635
+ });
2636
+ }
2637
+ };
2511
2638
  const de_CreateCodeRepositoryCommand = async (output, context) => {
2512
2639
  if (output.statusCode >= 300) {
2513
2640
  return de_CreateCodeRepositoryCommandError(output, context);
@@ -3156,6 +3283,39 @@ const de_CreateImageVersionCommandError = async (output, context) => {
3156
3283
  });
3157
3284
  }
3158
3285
  };
3286
+ const de_CreateInferenceComponentCommand = async (output, context) => {
3287
+ if (output.statusCode >= 300) {
3288
+ return de_CreateInferenceComponentCommandError(output, context);
3289
+ }
3290
+ const data = await parseBody(output.body, context);
3291
+ let contents = {};
3292
+ contents = de_CreateInferenceComponentOutput(data, context);
3293
+ const response = {
3294
+ $metadata: deserializeMetadata(output),
3295
+ ...contents,
3296
+ };
3297
+ return response;
3298
+ };
3299
+ exports.de_CreateInferenceComponentCommand = de_CreateInferenceComponentCommand;
3300
+ const de_CreateInferenceComponentCommandError = async (output, context) => {
3301
+ const parsedOutput = {
3302
+ ...output,
3303
+ body: await parseErrorBody(output.body, context),
3304
+ };
3305
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
3306
+ switch (errorCode) {
3307
+ case "ResourceLimitExceeded":
3308
+ case "com.amazonaws.sagemaker#ResourceLimitExceeded":
3309
+ throw await de_ResourceLimitExceededRes(parsedOutput, context);
3310
+ default:
3311
+ const parsedBody = parsedOutput.body;
3312
+ return throwDefaultError({
3313
+ output,
3314
+ parsedBody,
3315
+ errorCode,
3316
+ });
3317
+ }
3318
+ };
3159
3319
  const de_CreateInferenceExperimentCommand = async (output, context) => {
3160
3320
  if (output.statusCode >= 300) {
3161
3321
  return de_CreateInferenceExperimentCommandError(output, context);
@@ -4320,6 +4480,42 @@ const de_DeleteAssociationCommandError = async (output, context) => {
4320
4480
  });
4321
4481
  }
4322
4482
  };
4483
+ const de_DeleteClusterCommand = async (output, context) => {
4484
+ if (output.statusCode >= 300) {
4485
+ return de_DeleteClusterCommandError(output, context);
4486
+ }
4487
+ const data = await parseBody(output.body, context);
4488
+ let contents = {};
4489
+ contents = de_DeleteClusterResponse(data, context);
4490
+ const response = {
4491
+ $metadata: deserializeMetadata(output),
4492
+ ...contents,
4493
+ };
4494
+ return response;
4495
+ };
4496
+ exports.de_DeleteClusterCommand = de_DeleteClusterCommand;
4497
+ const de_DeleteClusterCommandError = async (output, context) => {
4498
+ const parsedOutput = {
4499
+ ...output,
4500
+ body: await parseErrorBody(output.body, context),
4501
+ };
4502
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
4503
+ switch (errorCode) {
4504
+ case "ConflictException":
4505
+ case "com.amazonaws.sagemaker#ConflictException":
4506
+ throw await de_ConflictExceptionRes(parsedOutput, context);
4507
+ case "ResourceNotFound":
4508
+ case "com.amazonaws.sagemaker#ResourceNotFound":
4509
+ throw await de_ResourceNotFoundRes(parsedOutput, context);
4510
+ default:
4511
+ const parsedBody = parsedOutput.body;
4512
+ return throwDefaultError({
4513
+ output,
4514
+ parsedBody,
4515
+ errorCode,
4516
+ });
4517
+ }
4518
+ };
4323
4519
  const de_DeleteCodeRepositoryCommand = async (output, context) => {
4324
4520
  if (output.statusCode >= 300) {
4325
4521
  return de_DeleteCodeRepositoryCommandError(output, context);
@@ -4848,6 +5044,30 @@ const de_DeleteImageVersionCommandError = async (output, context) => {
4848
5044
  });
4849
5045
  }
4850
5046
  };
5047
+ const de_DeleteInferenceComponentCommand = async (output, context) => {
5048
+ if (output.statusCode >= 300) {
5049
+ return de_DeleteInferenceComponentCommandError(output, context);
5050
+ }
5051
+ await (0, smithy_client_1.collectBody)(output.body, context);
5052
+ const response = {
5053
+ $metadata: deserializeMetadata(output),
5054
+ };
5055
+ return response;
5056
+ };
5057
+ exports.de_DeleteInferenceComponentCommand = de_DeleteInferenceComponentCommand;
5058
+ const de_DeleteInferenceComponentCommandError = async (output, context) => {
5059
+ const parsedOutput = {
5060
+ ...output,
5061
+ body: await parseErrorBody(output.body, context),
5062
+ };
5063
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
5064
+ const parsedBody = parsedOutput.body;
5065
+ return throwDefaultError({
5066
+ output,
5067
+ parsedBody,
5068
+ errorCode,
5069
+ });
5070
+ };
4851
5071
  const de_DeleteInferenceExperimentCommand = async (output, context) => {
4852
5072
  if (output.statusCode >= 300) {
4853
5073
  return de_DeleteInferenceExperimentCommandError(output, context);
@@ -5757,6 +5977,72 @@ const de_DescribeAutoMLJobV2CommandError = async (output, context) => {
5757
5977
  });
5758
5978
  }
5759
5979
  };
5980
+ const de_DescribeClusterCommand = async (output, context) => {
5981
+ if (output.statusCode >= 300) {
5982
+ return de_DescribeClusterCommandError(output, context);
5983
+ }
5984
+ const data = await parseBody(output.body, context);
5985
+ let contents = {};
5986
+ contents = de_DescribeClusterResponse(data, context);
5987
+ const response = {
5988
+ $metadata: deserializeMetadata(output),
5989
+ ...contents,
5990
+ };
5991
+ return response;
5992
+ };
5993
+ exports.de_DescribeClusterCommand = de_DescribeClusterCommand;
5994
+ const de_DescribeClusterCommandError = async (output, context) => {
5995
+ const parsedOutput = {
5996
+ ...output,
5997
+ body: await parseErrorBody(output.body, context),
5998
+ };
5999
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
6000
+ switch (errorCode) {
6001
+ case "ResourceNotFound":
6002
+ case "com.amazonaws.sagemaker#ResourceNotFound":
6003
+ throw await de_ResourceNotFoundRes(parsedOutput, context);
6004
+ default:
6005
+ const parsedBody = parsedOutput.body;
6006
+ return throwDefaultError({
6007
+ output,
6008
+ parsedBody,
6009
+ errorCode,
6010
+ });
6011
+ }
6012
+ };
6013
+ const de_DescribeClusterNodeCommand = async (output, context) => {
6014
+ if (output.statusCode >= 300) {
6015
+ return de_DescribeClusterNodeCommandError(output, context);
6016
+ }
6017
+ const data = await parseBody(output.body, context);
6018
+ let contents = {};
6019
+ contents = de_DescribeClusterNodeResponse(data, context);
6020
+ const response = {
6021
+ $metadata: deserializeMetadata(output),
6022
+ ...contents,
6023
+ };
6024
+ return response;
6025
+ };
6026
+ exports.de_DescribeClusterNodeCommand = de_DescribeClusterNodeCommand;
6027
+ const de_DescribeClusterNodeCommandError = async (output, context) => {
6028
+ const parsedOutput = {
6029
+ ...output,
6030
+ body: await parseErrorBody(output.body, context),
6031
+ };
6032
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
6033
+ switch (errorCode) {
6034
+ case "ResourceNotFound":
6035
+ case "com.amazonaws.sagemaker#ResourceNotFound":
6036
+ throw await de_ResourceNotFoundRes(parsedOutput, context);
6037
+ default:
6038
+ const parsedBody = parsedOutput.body;
6039
+ return throwDefaultError({
6040
+ output,
6041
+ parsedBody,
6042
+ errorCode,
6043
+ });
6044
+ }
6045
+ };
5760
6046
  const de_DescribeCodeRepositoryCommand = async (output, context) => {
5761
6047
  if (output.statusCode >= 300) {
5762
6048
  return de_DescribeCodeRepositoryCommandError(output, context);
@@ -6432,6 +6718,33 @@ const de_DescribeImageVersionCommandError = async (output, context) => {
6432
6718
  });
6433
6719
  }
6434
6720
  };
6721
+ const de_DescribeInferenceComponentCommand = async (output, context) => {
6722
+ if (output.statusCode >= 300) {
6723
+ return de_DescribeInferenceComponentCommandError(output, context);
6724
+ }
6725
+ const data = await parseBody(output.body, context);
6726
+ let contents = {};
6727
+ contents = de_DescribeInferenceComponentOutput(data, context);
6728
+ const response = {
6729
+ $metadata: deserializeMetadata(output),
6730
+ ...contents,
6731
+ };
6732
+ return response;
6733
+ };
6734
+ exports.de_DescribeInferenceComponentCommand = de_DescribeInferenceComponentCommand;
6735
+ const de_DescribeInferenceComponentCommandError = async (output, context) => {
6736
+ const parsedOutput = {
6737
+ ...output,
6738
+ body: await parseErrorBody(output.body, context),
6739
+ };
6740
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
6741
+ const parsedBody = parsedOutput.body;
6742
+ return throwDefaultError({
6743
+ output,
6744
+ parsedBody,
6745
+ errorCode,
6746
+ });
6747
+ };
6435
6748
  const de_DescribeInferenceExperimentCommand = async (output, context) => {
6436
6749
  if (output.statusCode >= 300) {
6437
6750
  return de_DescribeInferenceExperimentCommandError(output, context);
@@ -7941,6 +8254,66 @@ const de_ListCandidatesForAutoMLJobCommandError = async (output, context) => {
7941
8254
  });
7942
8255
  }
7943
8256
  };
8257
+ const de_ListClusterNodesCommand = async (output, context) => {
8258
+ if (output.statusCode >= 300) {
8259
+ return de_ListClusterNodesCommandError(output, context);
8260
+ }
8261
+ const data = await parseBody(output.body, context);
8262
+ let contents = {};
8263
+ contents = de_ListClusterNodesResponse(data, context);
8264
+ const response = {
8265
+ $metadata: deserializeMetadata(output),
8266
+ ...contents,
8267
+ };
8268
+ return response;
8269
+ };
8270
+ exports.de_ListClusterNodesCommand = de_ListClusterNodesCommand;
8271
+ const de_ListClusterNodesCommandError = async (output, context) => {
8272
+ const parsedOutput = {
8273
+ ...output,
8274
+ body: await parseErrorBody(output.body, context),
8275
+ };
8276
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
8277
+ switch (errorCode) {
8278
+ case "ResourceNotFound":
8279
+ case "com.amazonaws.sagemaker#ResourceNotFound":
8280
+ throw await de_ResourceNotFoundRes(parsedOutput, context);
8281
+ default:
8282
+ const parsedBody = parsedOutput.body;
8283
+ return throwDefaultError({
8284
+ output,
8285
+ parsedBody,
8286
+ errorCode,
8287
+ });
8288
+ }
8289
+ };
8290
+ const de_ListClustersCommand = async (output, context) => {
8291
+ if (output.statusCode >= 300) {
8292
+ return de_ListClustersCommandError(output, context);
8293
+ }
8294
+ const data = await parseBody(output.body, context);
8295
+ let contents = {};
8296
+ contents = de_ListClustersResponse(data, context);
8297
+ const response = {
8298
+ $metadata: deserializeMetadata(output),
8299
+ ...contents,
8300
+ };
8301
+ return response;
8302
+ };
8303
+ exports.de_ListClustersCommand = de_ListClustersCommand;
8304
+ const de_ListClustersCommandError = async (output, context) => {
8305
+ const parsedOutput = {
8306
+ ...output,
8307
+ body: await parseErrorBody(output.body, context),
8308
+ };
8309
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
8310
+ const parsedBody = parsedOutput.body;
8311
+ return throwDefaultError({
8312
+ output,
8313
+ parsedBody,
8314
+ errorCode,
8315
+ });
8316
+ };
7944
8317
  const de_ListCodeRepositoriesCommand = async (output, context) => {
7945
8318
  if (output.statusCode >= 300) {
7946
8319
  return de_ListCodeRepositoriesCommandError(output, context);
@@ -8532,6 +8905,33 @@ const de_ListImageVersionsCommandError = async (output, context) => {
8532
8905
  });
8533
8906
  }
8534
8907
  };
8908
+ const de_ListInferenceComponentsCommand = async (output, context) => {
8909
+ if (output.statusCode >= 300) {
8910
+ return de_ListInferenceComponentsCommandError(output, context);
8911
+ }
8912
+ const data = await parseBody(output.body, context);
8913
+ let contents = {};
8914
+ contents = de_ListInferenceComponentsOutput(data, context);
8915
+ const response = {
8916
+ $metadata: deserializeMetadata(output),
8917
+ ...contents,
8918
+ };
8919
+ return response;
8920
+ };
8921
+ exports.de_ListInferenceComponentsCommand = de_ListInferenceComponentsCommand;
8922
+ const de_ListInferenceComponentsCommandError = async (output, context) => {
8923
+ const parsedOutput = {
8924
+ ...output,
8925
+ body: await parseErrorBody(output.body, context),
8926
+ };
8927
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
8928
+ const parsedBody = parsedOutput.body;
8929
+ return throwDefaultError({
8930
+ output,
8931
+ parsedBody,
8932
+ errorCode,
8933
+ });
8934
+ };
8535
8935
  const de_ListInferenceExperimentsCommand = async (output, context) => {
8536
8936
  if (output.statusCode >= 300) {
8537
8937
  return de_ListInferenceExperimentsCommandError(output, context);
@@ -10671,6 +11071,45 @@ const de_UpdateArtifactCommandError = async (output, context) => {
10671
11071
  });
10672
11072
  }
10673
11073
  };
11074
+ const de_UpdateClusterCommand = async (output, context) => {
11075
+ if (output.statusCode >= 300) {
11076
+ return de_UpdateClusterCommandError(output, context);
11077
+ }
11078
+ const data = await parseBody(output.body, context);
11079
+ let contents = {};
11080
+ contents = de_UpdateClusterResponse(data, context);
11081
+ const response = {
11082
+ $metadata: deserializeMetadata(output),
11083
+ ...contents,
11084
+ };
11085
+ return response;
11086
+ };
11087
+ exports.de_UpdateClusterCommand = de_UpdateClusterCommand;
11088
+ const de_UpdateClusterCommandError = async (output, context) => {
11089
+ const parsedOutput = {
11090
+ ...output,
11091
+ body: await parseErrorBody(output.body, context),
11092
+ };
11093
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
11094
+ switch (errorCode) {
11095
+ case "ConflictException":
11096
+ case "com.amazonaws.sagemaker#ConflictException":
11097
+ throw await de_ConflictExceptionRes(parsedOutput, context);
11098
+ case "ResourceLimitExceeded":
11099
+ case "com.amazonaws.sagemaker#ResourceLimitExceeded":
11100
+ throw await de_ResourceLimitExceededRes(parsedOutput, context);
11101
+ case "ResourceNotFound":
11102
+ case "com.amazonaws.sagemaker#ResourceNotFound":
11103
+ throw await de_ResourceNotFoundRes(parsedOutput, context);
11104
+ default:
11105
+ const parsedBody = parsedOutput.body;
11106
+ return throwDefaultError({
11107
+ output,
11108
+ parsedBody,
11109
+ errorCode,
11110
+ });
11111
+ }
11112
+ };
10674
11113
  const de_UpdateCodeRepositoryCommand = async (output, context) => {
10675
11114
  if (output.statusCode >= 300) {
10676
11115
  return de_UpdateCodeRepositoryCommandError(output, context);
@@ -11097,6 +11536,72 @@ const de_UpdateImageVersionCommandError = async (output, context) => {
11097
11536
  });
11098
11537
  }
11099
11538
  };
11539
+ const de_UpdateInferenceComponentCommand = async (output, context) => {
11540
+ if (output.statusCode >= 300) {
11541
+ return de_UpdateInferenceComponentCommandError(output, context);
11542
+ }
11543
+ const data = await parseBody(output.body, context);
11544
+ let contents = {};
11545
+ contents = de_UpdateInferenceComponentOutput(data, context);
11546
+ const response = {
11547
+ $metadata: deserializeMetadata(output),
11548
+ ...contents,
11549
+ };
11550
+ return response;
11551
+ };
11552
+ exports.de_UpdateInferenceComponentCommand = de_UpdateInferenceComponentCommand;
11553
+ const de_UpdateInferenceComponentCommandError = async (output, context) => {
11554
+ const parsedOutput = {
11555
+ ...output,
11556
+ body: await parseErrorBody(output.body, context),
11557
+ };
11558
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
11559
+ switch (errorCode) {
11560
+ case "ResourceLimitExceeded":
11561
+ case "com.amazonaws.sagemaker#ResourceLimitExceeded":
11562
+ throw await de_ResourceLimitExceededRes(parsedOutput, context);
11563
+ default:
11564
+ const parsedBody = parsedOutput.body;
11565
+ return throwDefaultError({
11566
+ output,
11567
+ parsedBody,
11568
+ errorCode,
11569
+ });
11570
+ }
11571
+ };
11572
+ const de_UpdateInferenceComponentRuntimeConfigCommand = async (output, context) => {
11573
+ if (output.statusCode >= 300) {
11574
+ return de_UpdateInferenceComponentRuntimeConfigCommandError(output, context);
11575
+ }
11576
+ const data = await parseBody(output.body, context);
11577
+ let contents = {};
11578
+ contents = de_UpdateInferenceComponentRuntimeConfigOutput(data, context);
11579
+ const response = {
11580
+ $metadata: deserializeMetadata(output),
11581
+ ...contents,
11582
+ };
11583
+ return response;
11584
+ };
11585
+ exports.de_UpdateInferenceComponentRuntimeConfigCommand = de_UpdateInferenceComponentRuntimeConfigCommand;
11586
+ const de_UpdateInferenceComponentRuntimeConfigCommandError = async (output, context) => {
11587
+ const parsedOutput = {
11588
+ ...output,
11589
+ body: await parseErrorBody(output.body, context),
11590
+ };
11591
+ const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
11592
+ switch (errorCode) {
11593
+ case "ResourceLimitExceeded":
11594
+ case "com.amazonaws.sagemaker#ResourceLimitExceeded":
11595
+ throw await de_ResourceLimitExceededRes(parsedOutput, context);
11596
+ default:
11597
+ const parsedBody = parsedOutput.body;
11598
+ return throwDefaultError({
11599
+ output,
11600
+ parsedBody,
11601
+ errorCode,
11602
+ });
11603
+ }
11604
+ };
11100
11605
  const de_UpdateInferenceExperimentCommand = async (output, context) => {
11101
11606
  if (output.statusCode >= 300) {
11102
11607
  return de_UpdateInferenceExperimentCommandError(output, context);
@@ -11791,12 +12296,15 @@ const se_CreateEndpointConfigInput = (input, context) => {
11791
12296
  return (0, smithy_client_1.take)(input, {
11792
12297
  AsyncInferenceConfig: smithy_client_1._json,
11793
12298
  DataCaptureConfig: smithy_client_1._json,
12299
+ EnableNetworkIsolation: [],
11794
12300
  EndpointConfigName: [],
12301
+ ExecutionRoleArn: [],
11795
12302
  ExplainerConfig: smithy_client_1._json,
11796
12303
  KmsKeyId: [],
11797
12304
  ProductionVariants: (_) => se_ProductionVariantList(_, context),
11798
12305
  ShadowProductionVariants: (_) => se_ProductionVariantList(_, context),
11799
12306
  Tags: smithy_client_1._json,
12307
+ VpcConfig: smithy_client_1._json,
11800
12308
  });
11801
12309
  };
11802
12310
  const se_CreateFlowDefinitionRequest = (input, context) => {
@@ -11836,6 +12344,16 @@ const se_CreateImageVersionRequest = (input, context) => {
11836
12344
  VendorGuidance: [],
11837
12345
  });
11838
12346
  };
12347
+ const se_CreateInferenceComponentInput = (input, context) => {
12348
+ return (0, smithy_client_1.take)(input, {
12349
+ EndpointName: [],
12350
+ InferenceComponentName: [],
12351
+ RuntimeConfig: smithy_client_1._json,
12352
+ Specification: (_) => se_InferenceComponentSpecification(_, context),
12353
+ Tags: smithy_client_1._json,
12354
+ VariantName: [],
12355
+ });
12356
+ };
11839
12357
  const se_CreateInferenceExperimentRequest = (input, context) => {
11840
12358
  return (0, smithy_client_1.take)(input, {
11841
12359
  DataStorageConfig: smithy_client_1._json,
@@ -12014,6 +12532,22 @@ const se_HyperParameterTuningJobConfig = (input, context) => {
12014
12532
  TuningJobCompletionCriteria: (_) => se_TuningJobCompletionCriteria(_, context),
12015
12533
  });
12016
12534
  };
12535
+ const se_InferenceComponentComputeResourceRequirements = (input, context) => {
12536
+ return (0, smithy_client_1.take)(input, {
12537
+ MaxMemoryRequiredInMb: [],
12538
+ MinMemoryRequiredInMb: [],
12539
+ NumberOfAcceleratorDevicesRequired: smithy_client_1.serializeFloat,
12540
+ NumberOfCpuCoresRequired: smithy_client_1.serializeFloat,
12541
+ });
12542
+ };
12543
+ const se_InferenceComponentSpecification = (input, context) => {
12544
+ return (0, smithy_client_1.take)(input, {
12545
+ ComputeResourceRequirements: (_) => se_InferenceComponentComputeResourceRequirements(_, context),
12546
+ Container: smithy_client_1._json,
12547
+ ModelName: [],
12548
+ StartupParameters: smithy_client_1._json,
12549
+ });
12550
+ };
12017
12551
  const se_InferenceExperimentSchedule = (input, context) => {
12018
12552
  return (0, smithy_client_1.take)(input, {
12019
12553
  EndTime: (_) => Math.round(_.getTime() / 1000),
@@ -12097,6 +12631,29 @@ const se_ListAutoMLJobsRequest = (input, context) => {
12097
12631
  StatusEquals: [],
12098
12632
  });
12099
12633
  };
12634
+ const se_ListClusterNodesRequest = (input, context) => {
12635
+ return (0, smithy_client_1.take)(input, {
12636
+ ClusterName: [],
12637
+ CreationTimeAfter: (_) => Math.round(_.getTime() / 1000),
12638
+ CreationTimeBefore: (_) => Math.round(_.getTime() / 1000),
12639
+ InstanceGroupNameContains: [],
12640
+ MaxResults: [],
12641
+ NextToken: [],
12642
+ SortBy: [],
12643
+ SortOrder: [],
12644
+ });
12645
+ };
12646
+ const se_ListClustersRequest = (input, context) => {
12647
+ return (0, smithy_client_1.take)(input, {
12648
+ CreationTimeAfter: (_) => Math.round(_.getTime() / 1000),
12649
+ CreationTimeBefore: (_) => Math.round(_.getTime() / 1000),
12650
+ MaxResults: [],
12651
+ NameContains: [],
12652
+ NextToken: [],
12653
+ SortBy: [],
12654
+ SortOrder: [],
12655
+ });
12656
+ };
12100
12657
  const se_ListCodeRepositoriesInput = (input, context) => {
12101
12658
  return (0, smithy_client_1.take)(input, {
12102
12659
  CreationTimeAfter: (_) => Math.round(_.getTime() / 1000),
@@ -12347,6 +12904,22 @@ const se_ListImageVersionsRequest = (input, context) => {
12347
12904
  SortOrder: [],
12348
12905
  });
12349
12906
  };
12907
+ const se_ListInferenceComponentsInput = (input, context) => {
12908
+ return (0, smithy_client_1.take)(input, {
12909
+ CreationTimeAfter: (_) => Math.round(_.getTime() / 1000),
12910
+ CreationTimeBefore: (_) => Math.round(_.getTime() / 1000),
12911
+ EndpointNameEquals: [],
12912
+ LastModifiedTimeAfter: (_) => Math.round(_.getTime() / 1000),
12913
+ LastModifiedTimeBefore: (_) => Math.round(_.getTime() / 1000),
12914
+ MaxResults: [],
12915
+ NameContains: [],
12916
+ NextToken: [],
12917
+ SortBy: [],
12918
+ SortOrder: [],
12919
+ StatusEquals: [],
12920
+ VariantNameEquals: [],
12921
+ });
12922
+ };
12350
12923
  const se_ListInferenceExperimentsRequest = (input, context) => {
12351
12924
  return (0, smithy_client_1.take)(input, {
12352
12925
  CreationTimeAfter: (_) => Math.round(_.getTime() / 1000),
@@ -12792,8 +13365,10 @@ const se_ProductionVariant = (input, context) => {
12792
13365
  InitialInstanceCount: [],
12793
13366
  InitialVariantWeight: smithy_client_1.serializeFloat,
12794
13367
  InstanceType: [],
13368
+ ManagedInstanceScaling: smithy_client_1._json,
12795
13369
  ModelDataDownloadTimeoutInSeconds: [],
12796
13370
  ModelName: [],
13371
+ RoutingConfig: smithy_client_1._json,
12797
13372
  ServerlessConfig: smithy_client_1._json,
12798
13373
  VariantName: [],
12799
13374
  VolumeSizeInGB: [],
@@ -12921,6 +13496,13 @@ const se_UpdateEndpointWeightsAndCapacitiesInput = (input, context) => {
12921
13496
  EndpointName: [],
12922
13497
  });
12923
13498
  };
13499
+ const se_UpdateInferenceComponentInput = (input, context) => {
13500
+ return (0, smithy_client_1.take)(input, {
13501
+ InferenceComponentName: [],
13502
+ RuntimeConfig: smithy_client_1._json,
13503
+ Specification: (_) => se_InferenceComponentSpecification(_, context),
13504
+ });
13505
+ };
12924
13506
  const se_UpdateInferenceExperimentRequest = (input, context) => {
12925
13507
  return (0, smithy_client_1.take)(input, {
12926
13508
  DataStorageConfig: smithy_client_1._json,
@@ -13892,6 +14474,81 @@ const de_ClarifyTextConfig = (output, context) => {
13892
14474
  Language: smithy_client_1.expectString,
13893
14475
  });
13894
14476
  };
14477
+ const de_ClusterInstanceGroupDetails = (output, context) => {
14478
+ return (0, smithy_client_1.take)(output, {
14479
+ CurrentCount: smithy_client_1.expectInt32,
14480
+ ExecutionRole: smithy_client_1.expectString,
14481
+ InstanceGroupName: smithy_client_1.expectString,
14482
+ InstanceType: smithy_client_1.expectString,
14483
+ LifeCycleConfig: (_) => de_ClusterLifeCycleConfig(_, context),
14484
+ TargetCount: smithy_client_1.expectInt32,
14485
+ ThreadsPerCore: smithy_client_1.expectInt32,
14486
+ });
14487
+ };
14488
+ const de_ClusterInstanceGroupDetailsList = (output, context) => {
14489
+ const retVal = (output || [])
14490
+ .filter((e) => e != null)
14491
+ .map((entry) => {
14492
+ return de_ClusterInstanceGroupDetails(entry, context);
14493
+ });
14494
+ return retVal;
14495
+ };
14496
+ const de_ClusterInstanceStatusDetails = (output, context) => {
14497
+ return (0, smithy_client_1.take)(output, {
14498
+ Message: smithy_client_1.expectString,
14499
+ Status: smithy_client_1.expectString,
14500
+ });
14501
+ };
14502
+ const de_ClusterLifeCycleConfig = (output, context) => {
14503
+ return (0, smithy_client_1.take)(output, {
14504
+ OnCreate: smithy_client_1.expectString,
14505
+ SourceS3Uri: smithy_client_1.expectString,
14506
+ });
14507
+ };
14508
+ const de_ClusterNodeDetails = (output, context) => {
14509
+ return (0, smithy_client_1.take)(output, {
14510
+ InstanceGroupName: smithy_client_1.expectString,
14511
+ InstanceId: smithy_client_1.expectString,
14512
+ InstanceStatus: (_) => de_ClusterInstanceStatusDetails(_, context),
14513
+ InstanceType: smithy_client_1.expectString,
14514
+ LaunchTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
14515
+ LifeCycleConfig: (_) => de_ClusterLifeCycleConfig(_, context),
14516
+ ThreadsPerCore: smithy_client_1.expectInt32,
14517
+ });
14518
+ };
14519
+ const de_ClusterNodeSummaries = (output, context) => {
14520
+ const retVal = (output || [])
14521
+ .filter((e) => e != null)
14522
+ .map((entry) => {
14523
+ return de_ClusterNodeSummary(entry, context);
14524
+ });
14525
+ return retVal;
14526
+ };
14527
+ const de_ClusterNodeSummary = (output, context) => {
14528
+ return (0, smithy_client_1.take)(output, {
14529
+ InstanceGroupName: smithy_client_1.expectString,
14530
+ InstanceId: smithy_client_1.expectString,
14531
+ InstanceStatus: (_) => de_ClusterInstanceStatusDetails(_, context),
14532
+ InstanceType: smithy_client_1.expectString,
14533
+ LaunchTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
14534
+ });
14535
+ };
14536
+ const de_ClusterSummaries = (output, context) => {
14537
+ const retVal = (output || [])
14538
+ .filter((e) => e != null)
14539
+ .map((entry) => {
14540
+ return de_ClusterSummary(entry, context);
14541
+ });
14542
+ return retVal;
14543
+ };
14544
+ const de_ClusterSummary = (output, context) => {
14545
+ return (0, smithy_client_1.take)(output, {
14546
+ ClusterArn: smithy_client_1.expectString,
14547
+ ClusterName: smithy_client_1.expectString,
14548
+ ClusterStatus: smithy_client_1.expectString,
14549
+ CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
14550
+ });
14551
+ };
13895
14552
  const de_CodeRepositories = (output, context) => {
13896
14553
  const retVal = (output || [])
13897
14554
  .filter((e) => e != null)
@@ -14148,6 +14805,11 @@ const de_CreateAutoMLJobV2Response = (output, context) => {
14148
14805
  AutoMLJobArn: smithy_client_1.expectString,
14149
14806
  });
14150
14807
  };
14808
+ const de_CreateClusterResponse = (output, context) => {
14809
+ return (0, smithy_client_1.take)(output, {
14810
+ ClusterArn: smithy_client_1.expectString,
14811
+ });
14812
+ };
14151
14813
  const de_CreateCodeRepositoryOutput = (output, context) => {
14152
14814
  return (0, smithy_client_1.take)(output, {
14153
14815
  CodeRepositoryArn: smithy_client_1.expectString,
@@ -14229,6 +14891,11 @@ const de_CreateImageVersionResponse = (output, context) => {
14229
14891
  ImageVersionArn: smithy_client_1.expectString,
14230
14892
  });
14231
14893
  };
14894
+ const de_CreateInferenceComponentOutput = (output, context) => {
14895
+ return (0, smithy_client_1.take)(output, {
14896
+ InferenceComponentArn: smithy_client_1.expectString,
14897
+ });
14898
+ };
14232
14899
  const de_CreateInferenceExperimentResponse = (output, context) => {
14233
14900
  return (0, smithy_client_1.take)(output, {
14234
14901
  InferenceExperimentArn: smithy_client_1.expectString,
@@ -14548,6 +15215,11 @@ const de_DeleteAssociationResponse = (output, context) => {
14548
15215
  SourceArn: smithy_client_1.expectString,
14549
15216
  });
14550
15217
  };
15218
+ const de_DeleteClusterResponse = (output, context) => {
15219
+ return (0, smithy_client_1.take)(output, {
15220
+ ClusterArn: smithy_client_1.expectString,
15221
+ });
15222
+ };
14551
15223
  const de_DeleteContextResponse = (output, context) => {
14552
15224
  return (0, smithy_client_1.take)(output, {
14553
15225
  ContextArn: smithy_client_1.expectString,
@@ -14773,6 +15445,22 @@ const de_DescribeAutoMLJobV2Response = (output, context) => {
14773
15445
  SecurityConfig: (_) => de_AutoMLSecurityConfig(_, context),
14774
15446
  });
14775
15447
  };
15448
+ const de_DescribeClusterNodeResponse = (output, context) => {
15449
+ return (0, smithy_client_1.take)(output, {
15450
+ NodeDetails: (_) => de_ClusterNodeDetails(_, context),
15451
+ });
15452
+ };
15453
+ const de_DescribeClusterResponse = (output, context) => {
15454
+ return (0, smithy_client_1.take)(output, {
15455
+ ClusterArn: smithy_client_1.expectString,
15456
+ ClusterName: smithy_client_1.expectString,
15457
+ ClusterStatus: smithy_client_1.expectString,
15458
+ CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
15459
+ FailureMessage: smithy_client_1.expectString,
15460
+ InstanceGroups: (_) => de_ClusterInstanceGroupDetailsList(_, context),
15461
+ VpcConfig: (_) => de_VpcConfig(_, context),
15462
+ });
15463
+ };
14776
15464
  const de_DescribeCodeRepositoryOutput = (output, context) => {
14777
15465
  return (0, smithy_client_1.take)(output, {
14778
15466
  CodeRepositoryArn: smithy_client_1.expectString,
@@ -14926,12 +15614,15 @@ const de_DescribeEndpointConfigOutput = (output, context) => {
14926
15614
  AsyncInferenceConfig: (_) => de_AsyncInferenceConfig(_, context),
14927
15615
  CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
14928
15616
  DataCaptureConfig: (_) => de_DataCaptureConfig(_, context),
15617
+ EnableNetworkIsolation: smithy_client_1.expectBoolean,
14929
15618
  EndpointConfigArn: smithy_client_1.expectString,
14930
15619
  EndpointConfigName: smithy_client_1.expectString,
15620
+ ExecutionRoleArn: smithy_client_1.expectString,
14931
15621
  ExplainerConfig: (_) => de_ExplainerConfig(_, context),
14932
15622
  KmsKeyId: smithy_client_1.expectString,
14933
15623
  ProductionVariants: (_) => de_ProductionVariantList(_, context),
14934
15624
  ShadowProductionVariants: (_) => de_ProductionVariantList(_, context),
15625
+ VpcConfig: (_) => de_VpcConfig(_, context),
14935
15626
  });
14936
15627
  };
14937
15628
  const de_DescribeEndpointOutput = (output, context) => {
@@ -15110,6 +15801,21 @@ const de_DescribeImageVersionResponse = (output, context) => {
15110
15801
  Version: smithy_client_1.expectInt32,
15111
15802
  });
15112
15803
  };
15804
+ const de_DescribeInferenceComponentOutput = (output, context) => {
15805
+ return (0, smithy_client_1.take)(output, {
15806
+ CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
15807
+ EndpointArn: smithy_client_1.expectString,
15808
+ EndpointName: smithy_client_1.expectString,
15809
+ FailureReason: smithy_client_1.expectString,
15810
+ InferenceComponentArn: smithy_client_1.expectString,
15811
+ InferenceComponentName: smithy_client_1.expectString,
15812
+ InferenceComponentStatus: smithy_client_1.expectString,
15813
+ LastModifiedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
15814
+ RuntimeConfig: (_) => de_InferenceComponentRuntimeConfigSummary(_, context),
15815
+ Specification: (_) => de_InferenceComponentSpecificationSummary(_, context),
15816
+ VariantName: smithy_client_1.expectString,
15817
+ });
15818
+ };
15113
15819
  const de_DescribeInferenceExperimentResponse = (output, context) => {
15114
15820
  return (0, smithy_client_1.take)(output, {
15115
15821
  Arn: smithy_client_1.expectString,
@@ -15451,6 +16157,7 @@ const de_DescribeSpaceResponse = (output, context) => {
15451
16157
  SpaceName: smithy_client_1.expectString,
15452
16158
  SpaceSettings: (_) => de_SpaceSettings(_, context),
15453
16159
  Status: smithy_client_1.expectString,
16160
+ Url: smithy_client_1.expectString,
15454
16161
  });
15455
16162
  };
15456
16163
  const de_DescribeStudioLifecycleConfigResponse = (output, context) => {
@@ -15486,6 +16193,7 @@ const de_DescribeTrainingJobResponse = (output, context) => {
15486
16193
  FailureReason: smithy_client_1.expectString,
15487
16194
  FinalMetricDataList: (_) => de_FinalMetricDataList(_, context),
15488
16195
  HyperParameters: (_) => de_HyperParameters(_, context),
16196
+ InfraCheckConfig: (_) => de_InfraCheckConfig(_, context),
15489
16197
  InputDataConfig: (_) => de_InputDataConfig(_, context),
15490
16198
  LabelingJobArn: smithy_client_1.expectString,
15491
16199
  LastModifiedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
@@ -16849,6 +17557,61 @@ const de_ImportHubContentResponse = (output, context) => {
16849
17557
  HubContentArn: smithy_client_1.expectString,
16850
17558
  });
16851
17559
  };
17560
+ const de_InferenceComponentComputeResourceRequirements = (output, context) => {
17561
+ return (0, smithy_client_1.take)(output, {
17562
+ MaxMemoryRequiredInMb: smithy_client_1.expectInt32,
17563
+ MinMemoryRequiredInMb: smithy_client_1.expectInt32,
17564
+ NumberOfAcceleratorDevicesRequired: smithy_client_1.limitedParseFloat32,
17565
+ NumberOfCpuCoresRequired: smithy_client_1.limitedParseFloat32,
17566
+ });
17567
+ };
17568
+ const de_InferenceComponentContainerSpecificationSummary = (output, context) => {
17569
+ return (0, smithy_client_1.take)(output, {
17570
+ ArtifactUrl: smithy_client_1.expectString,
17571
+ DeployedImage: (_) => de_DeployedImage(_, context),
17572
+ Environment: (_) => de_EnvironmentMap(_, context),
17573
+ });
17574
+ };
17575
+ const de_InferenceComponentRuntimeConfigSummary = (output, context) => {
17576
+ return (0, smithy_client_1.take)(output, {
17577
+ CurrentCopyCount: smithy_client_1.expectInt32,
17578
+ DesiredCopyCount: smithy_client_1.expectInt32,
17579
+ });
17580
+ };
17581
+ const de_InferenceComponentSpecificationSummary = (output, context) => {
17582
+ return (0, smithy_client_1.take)(output, {
17583
+ ComputeResourceRequirements: (_) => de_InferenceComponentComputeResourceRequirements(_, context),
17584
+ Container: (_) => de_InferenceComponentContainerSpecificationSummary(_, context),
17585
+ ModelName: smithy_client_1.expectString,
17586
+ StartupParameters: (_) => de_InferenceComponentStartupParameters(_, context),
17587
+ });
17588
+ };
17589
+ const de_InferenceComponentStartupParameters = (output, context) => {
17590
+ return (0, smithy_client_1.take)(output, {
17591
+ ContainerStartupHealthCheckTimeoutInSeconds: smithy_client_1.expectInt32,
17592
+ ModelDataDownloadTimeoutInSeconds: smithy_client_1.expectInt32,
17593
+ });
17594
+ };
17595
+ const de_InferenceComponentSummary = (output, context) => {
17596
+ return (0, smithy_client_1.take)(output, {
17597
+ CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
17598
+ EndpointArn: smithy_client_1.expectString,
17599
+ EndpointName: smithy_client_1.expectString,
17600
+ InferenceComponentArn: smithy_client_1.expectString,
17601
+ InferenceComponentName: smithy_client_1.expectString,
17602
+ InferenceComponentStatus: smithy_client_1.expectString,
17603
+ LastModifiedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
17604
+ VariantName: smithy_client_1.expectString,
17605
+ });
17606
+ };
17607
+ const de_InferenceComponentSummaryList = (output, context) => {
17608
+ const retVal = (output || [])
17609
+ .filter((e) => e != null)
17610
+ .map((entry) => {
17611
+ return de_InferenceComponentSummary(entry, context);
17612
+ });
17613
+ return retVal;
17614
+ };
16852
17615
  const de_InferenceExecutionConfig = (output, context) => {
16853
17616
  return (0, smithy_client_1.take)(output, {
16854
17617
  Mode: smithy_client_1.expectString,
@@ -16963,6 +17726,11 @@ const de_InferenceSpecification = (output, context) => {
16963
17726
  SupportedTransformInstanceTypes: (_) => de_TransformInstanceTypes(_, context),
16964
17727
  });
16965
17728
  };
17729
+ const de_InfraCheckConfig = (output, context) => {
17730
+ return (0, smithy_client_1.take)(output, {
17731
+ EnableInfraCheck: smithy_client_1.expectBoolean,
17732
+ });
17733
+ };
16966
17734
  const de_InputConfig = (output, context) => {
16967
17735
  return (0, smithy_client_1.take)(output, {
16968
17736
  DataInputConfig: smithy_client_1.expectString,
@@ -17301,6 +18069,18 @@ const de_ListCandidatesForAutoMLJobResponse = (output, context) => {
17301
18069
  NextToken: smithy_client_1.expectString,
17302
18070
  });
17303
18071
  };
18072
+ const de_ListClusterNodesResponse = (output, context) => {
18073
+ return (0, smithy_client_1.take)(output, {
18074
+ ClusterNodeSummaries: (_) => de_ClusterNodeSummaries(_, context),
18075
+ NextToken: smithy_client_1.expectString,
18076
+ });
18077
+ };
18078
+ const de_ListClustersResponse = (output, context) => {
18079
+ return (0, smithy_client_1.take)(output, {
18080
+ ClusterSummaries: (_) => de_ClusterSummaries(_, context),
18081
+ NextToken: smithy_client_1.expectString,
18082
+ });
18083
+ };
17304
18084
  const de_ListCodeRepositoriesOutput = (output, context) => {
17305
18085
  return (0, smithy_client_1.take)(output, {
17306
18086
  CodeRepositorySummaryList: (_) => de_CodeRepositorySummaryList(_, context),
@@ -17427,6 +18207,12 @@ const de_ListImageVersionsResponse = (output, context) => {
17427
18207
  NextToken: smithy_client_1.expectString,
17428
18208
  });
17429
18209
  };
18210
+ const de_ListInferenceComponentsOutput = (output, context) => {
18211
+ return (0, smithy_client_1.take)(output, {
18212
+ InferenceComponents: (_) => de_InferenceComponentSummaryList(_, context),
18213
+ NextToken: smithy_client_1.expectString,
18214
+ });
18215
+ };
17430
18216
  const de_ListInferenceExperimentsResponse = (output, context) => {
17431
18217
  return (0, smithy_client_1.take)(output, {
17432
18218
  InferenceExperiments: (_) => de_InferenceExperimentList(_, context),
@@ -18835,6 +19621,8 @@ const de_PendingProductionVariantSummary = (output, context) => {
18835
19621
  DesiredServerlessConfig: (_) => de_ProductionVariantServerlessConfig(_, context),
18836
19622
  DesiredWeight: smithy_client_1.limitedParseFloat32,
18837
19623
  InstanceType: smithy_client_1.expectString,
19624
+ ManagedInstanceScaling: (_) => de_ProductionVariantManagedInstanceScaling(_, context),
19625
+ RoutingConfig: (_) => de_ProductionVariantRoutingConfig(_, context),
18838
19626
  VariantName: smithy_client_1.expectString,
18839
19627
  VariantStatus: (_) => de_ProductionVariantStatusList(_, context),
18840
19628
  });
@@ -19134,8 +19922,10 @@ const de_ProductionVariant = (output, context) => {
19134
19922
  InitialInstanceCount: smithy_client_1.expectInt32,
19135
19923
  InitialVariantWeight: smithy_client_1.limitedParseFloat32,
19136
19924
  InstanceType: smithy_client_1.expectString,
19925
+ ManagedInstanceScaling: (_) => de_ProductionVariantManagedInstanceScaling(_, context),
19137
19926
  ModelDataDownloadTimeoutInSeconds: smithy_client_1.expectInt32,
19138
19927
  ModelName: smithy_client_1.expectString,
19928
+ RoutingConfig: (_) => de_ProductionVariantRoutingConfig(_, context),
19139
19929
  ServerlessConfig: (_) => de_ProductionVariantServerlessConfig(_, context),
19140
19930
  VariantName: smithy_client_1.expectString,
19141
19931
  VolumeSizeInGB: smithy_client_1.expectInt32,
@@ -19155,6 +19945,18 @@ const de_ProductionVariantList = (output, context) => {
19155
19945
  });
19156
19946
  return retVal;
19157
19947
  };
19948
+ const de_ProductionVariantManagedInstanceScaling = (output, context) => {
19949
+ return (0, smithy_client_1.take)(output, {
19950
+ MaxInstanceCount: smithy_client_1.expectInt32,
19951
+ MinInstanceCount: smithy_client_1.expectInt32,
19952
+ Status: smithy_client_1.expectString,
19953
+ });
19954
+ };
19955
+ const de_ProductionVariantRoutingConfig = (output, context) => {
19956
+ return (0, smithy_client_1.take)(output, {
19957
+ RoutingStrategy: smithy_client_1.expectString,
19958
+ });
19959
+ };
19158
19960
  const de_ProductionVariantServerlessConfig = (output, context) => {
19159
19961
  return (0, smithy_client_1.take)(output, {
19160
19962
  MaxConcurrency: smithy_client_1.expectInt32,
@@ -19186,6 +19988,8 @@ const de_ProductionVariantSummary = (output, context) => {
19186
19988
  DesiredInstanceCount: smithy_client_1.expectInt32,
19187
19989
  DesiredServerlessConfig: (_) => de_ProductionVariantServerlessConfig(_, context),
19188
19990
  DesiredWeight: smithy_client_1.limitedParseFloat32,
19991
+ ManagedInstanceScaling: (_) => de_ProductionVariantManagedInstanceScaling(_, context),
19992
+ RoutingConfig: (_) => de_ProductionVariantRoutingConfig(_, context),
19189
19993
  VariantName: smithy_client_1.expectString,
19190
19994
  VariantStatus: (_) => de_ProductionVariantStatusList(_, context),
19191
19995
  });
@@ -19598,6 +20402,7 @@ const de_ResourceSpec = (output, context) => {
19598
20402
  InstanceType: smithy_client_1.expectString,
19599
20403
  LifecycleConfigArn: smithy_client_1.expectString,
19600
20404
  SageMakerImageArn: smithy_client_1.expectString,
20405
+ SageMakerImageVersionAlias: smithy_client_1.expectString,
19601
20406
  SageMakerImageVersionArn: smithy_client_1.expectString,
19602
20407
  });
19603
20408
  };
@@ -20053,10 +20858,20 @@ const de_TextClassificationJobConfig = (output, context) => {
20053
20858
  TargetLabelColumn: smithy_client_1.expectString,
20054
20859
  });
20055
20860
  };
20861
+ const de_TextGenerationHyperParameters = (output, context) => {
20862
+ return Object.entries(output).reduce((acc, [key, value]) => {
20863
+ if (value === null) {
20864
+ return acc;
20865
+ }
20866
+ acc[key] = (0, smithy_client_1.expectString)(value);
20867
+ return acc;
20868
+ }, {});
20869
+ };
20056
20870
  const de_TextGenerationJobConfig = (output, context) => {
20057
20871
  return (0, smithy_client_1.take)(output, {
20058
20872
  BaseModelName: smithy_client_1.expectString,
20059
20873
  CompletionCriteria: (_) => de_AutoMLJobCompletionCriteria(_, context),
20874
+ TextGenerationHyperParameters: (_) => de_TextGenerationHyperParameters(_, context),
20060
20875
  });
20061
20876
  };
20062
20877
  const de_TextGenerationResolvedAttributes = (output, context) => {
@@ -20597,6 +21412,11 @@ const de_UpdateArtifactResponse = (output, context) => {
20597
21412
  ArtifactArn: smithy_client_1.expectString,
20598
21413
  });
20599
21414
  };
21415
+ const de_UpdateClusterResponse = (output, context) => {
21416
+ return (0, smithy_client_1.take)(output, {
21417
+ ClusterArn: smithy_client_1.expectString,
21418
+ });
21419
+ };
20600
21420
  const de_UpdateCodeRepositoryOutput = (output, context) => {
20601
21421
  return (0, smithy_client_1.take)(output, {
20602
21422
  CodeRepositoryArn: smithy_client_1.expectString,
@@ -20647,6 +21467,16 @@ const de_UpdateImageVersionResponse = (output, context) => {
20647
21467
  ImageVersionArn: smithy_client_1.expectString,
20648
21468
  });
20649
21469
  };
21470
+ const de_UpdateInferenceComponentOutput = (output, context) => {
21471
+ return (0, smithy_client_1.take)(output, {
21472
+ InferenceComponentArn: smithy_client_1.expectString,
21473
+ });
21474
+ };
21475
+ const de_UpdateInferenceComponentRuntimeConfigOutput = (output, context) => {
21476
+ return (0, smithy_client_1.take)(output, {
21477
+ InferenceComponentArn: smithy_client_1.expectString,
21478
+ });
21479
+ };
20650
21480
  const de_UpdateInferenceExperimentResponse = (output, context) => {
20651
21481
  return (0, smithy_client_1.take)(output, {
20652
21482
  InferenceExperimentArn: smithy_client_1.expectString,
@@ -20764,6 +21594,7 @@ const de_UserProfileList = (output, context) => {
20764
21594
  const de_UserSettings = (output, context) => {
20765
21595
  return (0, smithy_client_1.take)(output, {
20766
21596
  CanvasAppSettings: (_) => de_CanvasAppSettings(_, context),
21597
+ DefaultLandingUri: smithy_client_1.expectString,
20767
21598
  ExecutionRole: smithy_client_1.expectString,
20768
21599
  JupyterServerAppSettings: (_) => de_JupyterServerAppSettings(_, context),
20769
21600
  KernelGatewayAppSettings: (_) => de_KernelGatewayAppSettings(_, context),
@@ -20771,6 +21602,7 @@ const de_UserSettings = (output, context) => {
20771
21602
  RStudioServerProAppSettings: (_) => de_RStudioServerProAppSettings(_, context),
20772
21603
  SecurityGroups: (_) => de_SecurityGroupIds(_, context),
20773
21604
  SharingSettings: (_) => de_SharingSettings(_, context),
21605
+ StudioWebPortal: smithy_client_1.expectString,
20774
21606
  TensorBoardAppSettings: (_) => de_TensorBoardAppSettings(_, context),
20775
21607
  });
20776
21608
  };