@aws-sdk/client-sagemaker 3.461.0 → 3.464.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.
- package/README.md +104 -0
- package/dist-cjs/SageMaker.js +26 -0
- package/dist-cjs/commands/CreateClusterCommand.js +51 -0
- package/dist-cjs/commands/CreateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/CreateWorkforceCommand.js +2 -2
- package/dist-cjs/commands/DeleteClusterCommand.js +51 -0
- package/dist-cjs/commands/DeleteInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterCommand.js +51 -0
- package/dist-cjs/commands/DescribeClusterNodeCommand.js +51 -0
- package/dist-cjs/commands/DescribeInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/ListClusterNodesCommand.js +51 -0
- package/dist-cjs/commands/ListClustersCommand.js +51 -0
- package/dist-cjs/commands/ListInferenceComponentsCommand.js +51 -0
- package/dist-cjs/commands/UpdateClusterCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentCommand.js +51 -0
- package/dist-cjs/commands/UpdateInferenceComponentRuntimeConfigCommand.js +51 -0
- package/dist-cjs/commands/index.js +13 -0
- package/dist-cjs/models/models_0.js +77 -64
- package/dist-cjs/models/models_1.js +85 -51
- package/dist-cjs/models/models_2.js +58 -83
- package/dist-cjs/models/models_3.js +89 -64
- package/dist-cjs/models/models_4.js +65 -3
- package/dist-cjs/pagination/ListInferenceComponentsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +1046 -36
- package/dist-es/SageMaker.js +26 -0
- package/dist-es/commands/CreateClusterCommand.js +47 -0
- package/dist-es/commands/CreateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/CreateWorkforceCommand.js +1 -1
- package/dist-es/commands/DeleteClusterCommand.js +47 -0
- package/dist-es/commands/DeleteInferenceComponentCommand.js +47 -0
- package/dist-es/commands/DescribeClusterCommand.js +47 -0
- package/dist-es/commands/DescribeClusterNodeCommand.js +47 -0
- package/dist-es/commands/DescribeInferenceComponentCommand.js +47 -0
- package/dist-es/commands/ListClusterNodesCommand.js +47 -0
- package/dist-es/commands/ListClustersCommand.js +47 -0
- package/dist-es/commands/ListInferenceComponentsCommand.js +47 -0
- package/dist-es/commands/UpdateClusterCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentCommand.js +47 -0
- package/dist-es/commands/UpdateInferenceComponentRuntimeConfigCommand.js +47 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/models_0.js +74 -62
- package/dist-es/models/models_1.js +84 -48
- package/dist-es/models/models_2.js +55 -82
- package/dist-es/models/models_3.js +87 -62
- package/dist-es/models/models_4.js +63 -1
- package/dist-es/pagination/ListInferenceComponentsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +1006 -22
- package/dist-types/SageMaker.d.ts +91 -0
- package/dist-types/SageMakerClient.d.ts +15 -2
- package/dist-types/commands/AddTagsCommand.d.ts +1 -1
- package/dist-types/commands/CreateAppCommand.d.ts +3 -2
- package/dist-types/commands/CreateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +109 -0
- package/dist-types/commands/CreateCompilationJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +64 -17
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/CreateInferenceComponentCommand.d.ts +115 -0
- package/dist-types/commands/CreateModelCommand.d.ts +1 -1
- package/dist-types/commands/CreatePresignedDomainUrlCommand.d.ts +3 -2
- package/dist-types/commands/CreateSpaceCommand.d.ts +45 -0
- package/dist-types/commands/CreateStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/CreateTrainingJobCommand.d.ts +4 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/CreateUserProfileCommand.d.ts +56 -2
- package/dist-types/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAppCommand.d.ts +2 -2
- package/dist-types/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteClusterCommand.d.ts +80 -0
- package/dist-types/commands/DeleteInferenceComponentCommand.d.ts +71 -0
- package/dist-types/commands/DeleteStudioLifecycleConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeAppCommand.d.ts +3 -2
- package/dist-types/commands/DescribeAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/DescribeAutoMLJobV2Command.d.ts +3 -0
- package/dist-types/commands/DescribeClusterCommand.d.ts +102 -0
- package/dist-types/commands/DescribeClusterNodeCommand.d.ts +92 -0
- package/dist-types/commands/DescribeDomainCommand.d.ts +56 -9
- package/dist-types/commands/DescribeEndpointCommand.d.ts +32 -0
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +28 -2
- package/dist-types/commands/DescribeInferenceComponentCommand.d.ts +109 -0
- package/dist-types/commands/DescribeModelCommand.d.ts +1 -1
- package/dist-types/commands/DescribeSpaceCommand.d.ts +46 -0
- package/dist-types/commands/DescribeStudioLifecycleConfigCommand.d.ts +2 -2
- package/dist-types/commands/DescribeTrainingJobCommand.d.ts +5 -1
- package/dist-types/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeUserProfileCommand.d.ts +55 -1
- package/dist-types/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/commands/ListAppImageConfigsCommand.d.ts +13 -0
- package/dist-types/commands/ListAppsCommand.d.ts +8 -1
- package/dist-types/commands/ListClusterNodesCommand.d.ts +96 -0
- package/dist-types/commands/ListClustersCommand.d.ts +87 -0
- package/dist-types/commands/ListInferenceComponentsCommand.d.ts +96 -0
- package/dist-types/commands/ListPipelineExecutionStepsCommand.d.ts +2 -1
- package/dist-types/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/commands/ListSpacesCommand.d.ts +16 -1
- package/dist-types/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/commands/ListStudioLifecycleConfigsCommand.d.ts +4 -4
- package/dist-types/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/commands/SearchCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +13 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +97 -0
- package/dist-types/commands/UpdateDomainCommand.d.ts +58 -7
- package/dist-types/commands/UpdateInferenceComponentCommand.d.ts +100 -0
- package/dist-types/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +80 -0
- package/dist-types/commands/UpdateSpaceCommand.d.ts +39 -0
- package/dist-types/commands/UpdateUserProfileCommand.d.ts +54 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +616 -544
- package/dist-types/models/models_1.d.ts +7904 -8160
- package/dist-types/models/models_2.d.ts +4780 -5344
- package/dist-types/models/models_3.d.ts +5386 -4662
- package/dist-types/models/models_4.d.ts +2031 -4
- package/dist-types/pagination/ListInferenceComponentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +117 -0
- package/dist-types/ts3.4/SageMaker.d.ts +227 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateCompilationJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateContextCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateTrainingJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAlgorithmCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAppImageConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteArtifactCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAssociationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteInferenceComponentCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DescribeClusterNodeCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeTrainingJobCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeTransformJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkforceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeWorkteamCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DisassociateTrialComponentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/EnableSagemakerServicecatalogPortfolioCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListClusterNodesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListInferenceComponentsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListPipelineExecutionStepsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListPipelineParametersForExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProcessingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListResourceCatalogsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSpacesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStageDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListStudioLifecycleConfigsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListSubscribedWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrainingJobsForHyperParameterTuningJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTransformJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialComponentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTrialsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListUserProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkforcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkteamsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateInferenceComponentRuntimeConfigCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/models_0.d.ts +191 -175
- package/dist-types/ts3.4/models/models_1.d.ts +302 -309
- package/dist-types/ts3.4/models/models_2.d.ts +388 -490
- package/dist-types/ts3.4/models/models_3.d.ts +574 -472
- package/dist-types/ts3.4/models/models_4.d.ts +534 -29
- package/dist-types/ts3.4/pagination/ListInferenceComponentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +156 -0
- package/package.json +2 -2
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
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");
|
|
19
19
|
const uuid_1 = require("uuid");
|
|
20
20
|
const models_0_1 = require("../models/models_0");
|
|
21
|
-
const
|
|
21
|
+
const models_2_1 = require("../models/models_2");
|
|
22
22
|
const SageMakerServiceException_1 = require("../models/SageMakerServiceException");
|
|
23
23
|
const se_AddAssociationCommand = async (input, context) => {
|
|
24
24
|
const headers = sharedHeaders("AddAssociation");
|
|
@@ -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,42 +8254,102 @@ const de_ListCandidatesForAutoMLJobCommandError = async (output, context) => {
|
|
|
7941
8254
|
});
|
|
7942
8255
|
}
|
|
7943
8256
|
};
|
|
7944
|
-
const
|
|
8257
|
+
const de_ListClusterNodesCommand = async (output, context) => {
|
|
7945
8258
|
if (output.statusCode >= 300) {
|
|
7946
|
-
return
|
|
8259
|
+
return de_ListClusterNodesCommandError(output, context);
|
|
7947
8260
|
}
|
|
7948
8261
|
const data = await parseBody(output.body, context);
|
|
7949
8262
|
let contents = {};
|
|
7950
|
-
contents =
|
|
8263
|
+
contents = de_ListClusterNodesResponse(data, context);
|
|
7951
8264
|
const response = {
|
|
7952
8265
|
$metadata: deserializeMetadata(output),
|
|
7953
8266
|
...contents,
|
|
7954
8267
|
};
|
|
7955
8268
|
return response;
|
|
7956
8269
|
};
|
|
7957
|
-
exports.
|
|
7958
|
-
const
|
|
8270
|
+
exports.de_ListClusterNodesCommand = de_ListClusterNodesCommand;
|
|
8271
|
+
const de_ListClusterNodesCommandError = async (output, context) => {
|
|
7959
8272
|
const parsedOutput = {
|
|
7960
8273
|
...output,
|
|
7961
8274
|
body: await parseErrorBody(output.body, context),
|
|
7962
8275
|
};
|
|
7963
8276
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
7964
|
-
|
|
7965
|
-
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
|
|
7969
|
-
|
|
7970
|
-
|
|
7971
|
-
|
|
7972
|
-
|
|
7973
|
-
|
|
7974
|
-
|
|
7975
|
-
|
|
7976
|
-
|
|
7977
|
-
|
|
7978
|
-
|
|
7979
|
-
|
|
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
|
+
};
|
|
8317
|
+
const de_ListCodeRepositoriesCommand = async (output, context) => {
|
|
8318
|
+
if (output.statusCode >= 300) {
|
|
8319
|
+
return de_ListCodeRepositoriesCommandError(output, context);
|
|
8320
|
+
}
|
|
8321
|
+
const data = await parseBody(output.body, context);
|
|
8322
|
+
let contents = {};
|
|
8323
|
+
contents = de_ListCodeRepositoriesOutput(data, context);
|
|
8324
|
+
const response = {
|
|
8325
|
+
$metadata: deserializeMetadata(output),
|
|
8326
|
+
...contents,
|
|
8327
|
+
};
|
|
8328
|
+
return response;
|
|
8329
|
+
};
|
|
8330
|
+
exports.de_ListCodeRepositoriesCommand = de_ListCodeRepositoriesCommand;
|
|
8331
|
+
const de_ListCodeRepositoriesCommandError = async (output, context) => {
|
|
8332
|
+
const parsedOutput = {
|
|
8333
|
+
...output,
|
|
8334
|
+
body: await parseErrorBody(output.body, context),
|
|
8335
|
+
};
|
|
8336
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
8337
|
+
const parsedBody = parsedOutput.body;
|
|
8338
|
+
return throwDefaultError({
|
|
8339
|
+
output,
|
|
8340
|
+
parsedBody,
|
|
8341
|
+
errorCode,
|
|
8342
|
+
});
|
|
8343
|
+
};
|
|
8344
|
+
const de_ListCompilationJobsCommand = async (output, context) => {
|
|
8345
|
+
if (output.statusCode >= 300) {
|
|
8346
|
+
return de_ListCompilationJobsCommandError(output, context);
|
|
8347
|
+
}
|
|
8348
|
+
const data = await parseBody(output.body, context);
|
|
8349
|
+
let contents = {};
|
|
8350
|
+
contents = de_ListCompilationJobsResponse(data, context);
|
|
8351
|
+
const response = {
|
|
8352
|
+
$metadata: deserializeMetadata(output),
|
|
7980
8353
|
...contents,
|
|
7981
8354
|
};
|
|
7982
8355
|
return response;
|
|
@@ -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: [],
|
|
@@ -12902,7 +13477,7 @@ const se_TrialComponentParameters = (input, context) => {
|
|
|
12902
13477
|
}, {});
|
|
12903
13478
|
};
|
|
12904
13479
|
const se_TrialComponentParameterValue = (input, context) => {
|
|
12905
|
-
return
|
|
13480
|
+
return models_2_1.TrialComponentParameterValue.visit(input, {
|
|
12906
13481
|
NumberValue: (value) => ({ NumberValue: (0, smithy_client_1.serializeFloat)(value) }),
|
|
12907
13482
|
StringValue: (value) => ({ StringValue: value }),
|
|
12908
13483
|
_: (name, value) => ({ name: value }),
|
|
@@ -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,
|
|
@@ -13141,6 +13723,7 @@ const de_AppDetails = (output, context) => {
|
|
|
13141
13723
|
AppType: smithy_client_1.expectString,
|
|
13142
13724
|
CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
13143
13725
|
DomainId: smithy_client_1.expectString,
|
|
13726
|
+
ResourceSpec: (_) => de_ResourceSpec(_, context),
|
|
13144
13727
|
SpaceName: smithy_client_1.expectString,
|
|
13145
13728
|
Status: smithy_client_1.expectString,
|
|
13146
13729
|
UserProfileName: smithy_client_1.expectString,
|
|
@@ -13151,6 +13734,7 @@ const de_AppImageConfigDetails = (output, context) => {
|
|
|
13151
13734
|
AppImageConfigArn: smithy_client_1.expectString,
|
|
13152
13735
|
AppImageConfigName: smithy_client_1.expectString,
|
|
13153
13736
|
CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
13737
|
+
JupyterLabAppImageConfig: (_) => de_JupyterLabAppImageConfig(_, context),
|
|
13154
13738
|
KernelGatewayImageConfig: (_) => de_KernelGatewayImageConfig(_, context),
|
|
13155
13739
|
LastModifiedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
13156
13740
|
});
|
|
@@ -13892,6 +14476,87 @@ const de_ClarifyTextConfig = (output, context) => {
|
|
|
13892
14476
|
Language: smithy_client_1.expectString,
|
|
13893
14477
|
});
|
|
13894
14478
|
};
|
|
14479
|
+
const de_ClusterInstanceGroupDetails = (output, context) => {
|
|
14480
|
+
return (0, smithy_client_1.take)(output, {
|
|
14481
|
+
CurrentCount: smithy_client_1.expectInt32,
|
|
14482
|
+
ExecutionRole: smithy_client_1.expectString,
|
|
14483
|
+
InstanceGroupName: smithy_client_1.expectString,
|
|
14484
|
+
InstanceType: smithy_client_1.expectString,
|
|
14485
|
+
LifeCycleConfig: (_) => de_ClusterLifeCycleConfig(_, context),
|
|
14486
|
+
TargetCount: smithy_client_1.expectInt32,
|
|
14487
|
+
ThreadsPerCore: smithy_client_1.expectInt32,
|
|
14488
|
+
});
|
|
14489
|
+
};
|
|
14490
|
+
const de_ClusterInstanceGroupDetailsList = (output, context) => {
|
|
14491
|
+
const retVal = (output || [])
|
|
14492
|
+
.filter((e) => e != null)
|
|
14493
|
+
.map((entry) => {
|
|
14494
|
+
return de_ClusterInstanceGroupDetails(entry, context);
|
|
14495
|
+
});
|
|
14496
|
+
return retVal;
|
|
14497
|
+
};
|
|
14498
|
+
const de_ClusterInstanceStatusDetails = (output, context) => {
|
|
14499
|
+
return (0, smithy_client_1.take)(output, {
|
|
14500
|
+
Message: smithy_client_1.expectString,
|
|
14501
|
+
Status: smithy_client_1.expectString,
|
|
14502
|
+
});
|
|
14503
|
+
};
|
|
14504
|
+
const de_ClusterLifeCycleConfig = (output, context) => {
|
|
14505
|
+
return (0, smithy_client_1.take)(output, {
|
|
14506
|
+
OnCreate: smithy_client_1.expectString,
|
|
14507
|
+
SourceS3Uri: smithy_client_1.expectString,
|
|
14508
|
+
});
|
|
14509
|
+
};
|
|
14510
|
+
const de_ClusterNodeDetails = (output, context) => {
|
|
14511
|
+
return (0, smithy_client_1.take)(output, {
|
|
14512
|
+
InstanceGroupName: smithy_client_1.expectString,
|
|
14513
|
+
InstanceId: smithy_client_1.expectString,
|
|
14514
|
+
InstanceStatus: (_) => de_ClusterInstanceStatusDetails(_, context),
|
|
14515
|
+
InstanceType: smithy_client_1.expectString,
|
|
14516
|
+
LaunchTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
14517
|
+
LifeCycleConfig: (_) => de_ClusterLifeCycleConfig(_, context),
|
|
14518
|
+
ThreadsPerCore: smithy_client_1.expectInt32,
|
|
14519
|
+
});
|
|
14520
|
+
};
|
|
14521
|
+
const de_ClusterNodeSummaries = (output, context) => {
|
|
14522
|
+
const retVal = (output || [])
|
|
14523
|
+
.filter((e) => e != null)
|
|
14524
|
+
.map((entry) => {
|
|
14525
|
+
return de_ClusterNodeSummary(entry, context);
|
|
14526
|
+
});
|
|
14527
|
+
return retVal;
|
|
14528
|
+
};
|
|
14529
|
+
const de_ClusterNodeSummary = (output, context) => {
|
|
14530
|
+
return (0, smithy_client_1.take)(output, {
|
|
14531
|
+
InstanceGroupName: smithy_client_1.expectString,
|
|
14532
|
+
InstanceId: smithy_client_1.expectString,
|
|
14533
|
+
InstanceStatus: (_) => de_ClusterInstanceStatusDetails(_, context),
|
|
14534
|
+
InstanceType: smithy_client_1.expectString,
|
|
14535
|
+
LaunchTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
14536
|
+
});
|
|
14537
|
+
};
|
|
14538
|
+
const de_ClusterSummaries = (output, context) => {
|
|
14539
|
+
const retVal = (output || [])
|
|
14540
|
+
.filter((e) => e != null)
|
|
14541
|
+
.map((entry) => {
|
|
14542
|
+
return de_ClusterSummary(entry, context);
|
|
14543
|
+
});
|
|
14544
|
+
return retVal;
|
|
14545
|
+
};
|
|
14546
|
+
const de_ClusterSummary = (output, context) => {
|
|
14547
|
+
return (0, smithy_client_1.take)(output, {
|
|
14548
|
+
ClusterArn: smithy_client_1.expectString,
|
|
14549
|
+
ClusterName: smithy_client_1.expectString,
|
|
14550
|
+
ClusterStatus: smithy_client_1.expectString,
|
|
14551
|
+
CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
14552
|
+
});
|
|
14553
|
+
};
|
|
14554
|
+
const de_CodeEditorAppSettings = (output, context) => {
|
|
14555
|
+
return (0, smithy_client_1.take)(output, {
|
|
14556
|
+
DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
|
|
14557
|
+
LifecycleConfigArns: (_) => de_LifecycleConfigArns(_, context),
|
|
14558
|
+
});
|
|
14559
|
+
};
|
|
13895
14560
|
const de_CodeRepositories = (output, context) => {
|
|
13896
14561
|
const retVal = (output || [])
|
|
13897
14562
|
.filter((e) => e != null)
|
|
@@ -14015,6 +14680,13 @@ const de_ContainerArguments = (output, context) => {
|
|
|
14015
14680
|
});
|
|
14016
14681
|
return retVal;
|
|
14017
14682
|
};
|
|
14683
|
+
const de_ContainerConfig = (output, context) => {
|
|
14684
|
+
return (0, smithy_client_1.take)(output, {
|
|
14685
|
+
ContainerArguments: (_) => de_CustomImageContainerArguments(_, context),
|
|
14686
|
+
ContainerEntrypoint: (_) => de_CustomImageContainerEntrypoint(_, context),
|
|
14687
|
+
ContainerEnvironmentVariables: (_) => de_CustomImageContainerEnvironmentVariables(_, context),
|
|
14688
|
+
});
|
|
14689
|
+
};
|
|
14018
14690
|
const de_ContainerDefinition = (output, context) => {
|
|
14019
14691
|
return (0, smithy_client_1.take)(output, {
|
|
14020
14692
|
ContainerHostname: smithy_client_1.expectString,
|
|
@@ -14148,6 +14820,11 @@ const de_CreateAutoMLJobV2Response = (output, context) => {
|
|
|
14148
14820
|
AutoMLJobArn: smithy_client_1.expectString,
|
|
14149
14821
|
});
|
|
14150
14822
|
};
|
|
14823
|
+
const de_CreateClusterResponse = (output, context) => {
|
|
14824
|
+
return (0, smithy_client_1.take)(output, {
|
|
14825
|
+
ClusterArn: smithy_client_1.expectString,
|
|
14826
|
+
});
|
|
14827
|
+
};
|
|
14151
14828
|
const de_CreateCodeRepositoryOutput = (output, context) => {
|
|
14152
14829
|
return (0, smithy_client_1.take)(output, {
|
|
14153
14830
|
CodeRepositoryArn: smithy_client_1.expectString,
|
|
@@ -14229,6 +14906,11 @@ const de_CreateImageVersionResponse = (output, context) => {
|
|
|
14229
14906
|
ImageVersionArn: smithy_client_1.expectString,
|
|
14230
14907
|
});
|
|
14231
14908
|
};
|
|
14909
|
+
const de_CreateInferenceComponentOutput = (output, context) => {
|
|
14910
|
+
return (0, smithy_client_1.take)(output, {
|
|
14911
|
+
InferenceComponentArn: smithy_client_1.expectString,
|
|
14912
|
+
});
|
|
14913
|
+
};
|
|
14232
14914
|
const de_CreateInferenceExperimentResponse = (output, context) => {
|
|
14233
14915
|
return (0, smithy_client_1.take)(output, {
|
|
14234
14916
|
InferenceExperimentArn: smithy_client_1.expectString,
|
|
@@ -14387,6 +15069,38 @@ const de_CustomerMetadataMap = (output, context) => {
|
|
|
14387
15069
|
return acc;
|
|
14388
15070
|
}, {});
|
|
14389
15071
|
};
|
|
15072
|
+
const de_CustomFileSystem = (output, context) => {
|
|
15073
|
+
if (output.EFSFileSystem != null) {
|
|
15074
|
+
return {
|
|
15075
|
+
EFSFileSystem: de_EFSFileSystem(output.EFSFileSystem, context),
|
|
15076
|
+
};
|
|
15077
|
+
}
|
|
15078
|
+
return { $unknown: Object.entries(output)[0] };
|
|
15079
|
+
};
|
|
15080
|
+
const de_CustomFileSystemConfig = (output, context) => {
|
|
15081
|
+
if (output.EFSFileSystemConfig != null) {
|
|
15082
|
+
return {
|
|
15083
|
+
EFSFileSystemConfig: de_EFSFileSystemConfig(output.EFSFileSystemConfig, context),
|
|
15084
|
+
};
|
|
15085
|
+
}
|
|
15086
|
+
return { $unknown: Object.entries(output)[0] };
|
|
15087
|
+
};
|
|
15088
|
+
const de_CustomFileSystemConfigs = (output, context) => {
|
|
15089
|
+
const retVal = (output || [])
|
|
15090
|
+
.filter((e) => e != null)
|
|
15091
|
+
.map((entry) => {
|
|
15092
|
+
return de_CustomFileSystemConfig((0, core_1.awsExpectUnion)(entry), context);
|
|
15093
|
+
});
|
|
15094
|
+
return retVal;
|
|
15095
|
+
};
|
|
15096
|
+
const de_CustomFileSystems = (output, context) => {
|
|
15097
|
+
const retVal = (output || [])
|
|
15098
|
+
.filter((e) => e != null)
|
|
15099
|
+
.map((entry) => {
|
|
15100
|
+
return de_CustomFileSystem((0, core_1.awsExpectUnion)(entry), context);
|
|
15101
|
+
});
|
|
15102
|
+
return retVal;
|
|
15103
|
+
};
|
|
14390
15104
|
const de_CustomImage = (output, context) => {
|
|
14391
15105
|
return (0, smithy_client_1.take)(output, {
|
|
14392
15106
|
AppImageConfigName: smithy_client_1.expectString,
|
|
@@ -14394,6 +15108,31 @@ const de_CustomImage = (output, context) => {
|
|
|
14394
15108
|
ImageVersionNumber: smithy_client_1.expectInt32,
|
|
14395
15109
|
});
|
|
14396
15110
|
};
|
|
15111
|
+
const de_CustomImageContainerArguments = (output, context) => {
|
|
15112
|
+
const retVal = (output || [])
|
|
15113
|
+
.filter((e) => e != null)
|
|
15114
|
+
.map((entry) => {
|
|
15115
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
15116
|
+
});
|
|
15117
|
+
return retVal;
|
|
15118
|
+
};
|
|
15119
|
+
const de_CustomImageContainerEntrypoint = (output, context) => {
|
|
15120
|
+
const retVal = (output || [])
|
|
15121
|
+
.filter((e) => e != null)
|
|
15122
|
+
.map((entry) => {
|
|
15123
|
+
return (0, smithy_client_1.expectString)(entry);
|
|
15124
|
+
});
|
|
15125
|
+
return retVal;
|
|
15126
|
+
};
|
|
15127
|
+
const de_CustomImageContainerEnvironmentVariables = (output, context) => {
|
|
15128
|
+
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
15129
|
+
if (value === null) {
|
|
15130
|
+
return acc;
|
|
15131
|
+
}
|
|
15132
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
15133
|
+
return acc;
|
|
15134
|
+
}, {});
|
|
15135
|
+
};
|
|
14397
15136
|
const de_CustomImages = (output, context) => {
|
|
14398
15137
|
const retVal = (output || [])
|
|
14399
15138
|
.filter((e) => e != null)
|
|
@@ -14409,6 +15148,12 @@ const de_CustomizedMetricSpecification = (output, context) => {
|
|
|
14409
15148
|
Statistic: smithy_client_1.expectString,
|
|
14410
15149
|
});
|
|
14411
15150
|
};
|
|
15151
|
+
const de_CustomPosixUserConfig = (output, context) => {
|
|
15152
|
+
return (0, smithy_client_1.take)(output, {
|
|
15153
|
+
Gid: smithy_client_1.expectLong,
|
|
15154
|
+
Uid: smithy_client_1.expectLong,
|
|
15155
|
+
});
|
|
15156
|
+
};
|
|
14412
15157
|
const de_DataCaptureConfig = (output, context) => {
|
|
14413
15158
|
return (0, smithy_client_1.take)(output, {
|
|
14414
15159
|
CaptureContentTypeHeader: (_) => de_CaptureContentTypeHeader(_, context),
|
|
@@ -14524,6 +15269,12 @@ const de_DebugRuleEvaluationStatuses = (output, context) => {
|
|
|
14524
15269
|
});
|
|
14525
15270
|
return retVal;
|
|
14526
15271
|
};
|
|
15272
|
+
const de_DefaultEbsStorageSettings = (output, context) => {
|
|
15273
|
+
return (0, smithy_client_1.take)(output, {
|
|
15274
|
+
DefaultEbsVolumeSizeInGb: smithy_client_1.expectInt32,
|
|
15275
|
+
MaximumEbsVolumeSizeInGb: smithy_client_1.expectInt32,
|
|
15276
|
+
});
|
|
15277
|
+
};
|
|
14527
15278
|
const de_DefaultSpaceSettings = (output, context) => {
|
|
14528
15279
|
return (0, smithy_client_1.take)(output, {
|
|
14529
15280
|
ExecutionRole: smithy_client_1.expectString,
|
|
@@ -14532,6 +15283,11 @@ const de_DefaultSpaceSettings = (output, context) => {
|
|
|
14532
15283
|
SecurityGroups: (_) => de_SecurityGroupIds(_, context),
|
|
14533
15284
|
});
|
|
14534
15285
|
};
|
|
15286
|
+
const de_DefaultSpaceStorageSettings = (output, context) => {
|
|
15287
|
+
return (0, smithy_client_1.take)(output, {
|
|
15288
|
+
DefaultEbsStorageSettings: (_) => de_DefaultEbsStorageSettings(_, context),
|
|
15289
|
+
});
|
|
15290
|
+
};
|
|
14535
15291
|
const de_DeleteActionResponse = (output, context) => {
|
|
14536
15292
|
return (0, smithy_client_1.take)(output, {
|
|
14537
15293
|
ActionArn: smithy_client_1.expectString,
|
|
@@ -14548,6 +15304,11 @@ const de_DeleteAssociationResponse = (output, context) => {
|
|
|
14548
15304
|
SourceArn: smithy_client_1.expectString,
|
|
14549
15305
|
});
|
|
14550
15306
|
};
|
|
15307
|
+
const de_DeleteClusterResponse = (output, context) => {
|
|
15308
|
+
return (0, smithy_client_1.take)(output, {
|
|
15309
|
+
ClusterArn: smithy_client_1.expectString,
|
|
15310
|
+
});
|
|
15311
|
+
};
|
|
14551
15312
|
const de_DeleteContextResponse = (output, context) => {
|
|
14552
15313
|
return (0, smithy_client_1.take)(output, {
|
|
14553
15314
|
ContextArn: smithy_client_1.expectString,
|
|
@@ -14687,6 +15448,7 @@ const de_DescribeAppImageConfigResponse = (output, context) => {
|
|
|
14687
15448
|
AppImageConfigArn: smithy_client_1.expectString,
|
|
14688
15449
|
AppImageConfigName: smithy_client_1.expectString,
|
|
14689
15450
|
CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
15451
|
+
JupyterLabAppImageConfig: (_) => de_JupyterLabAppImageConfig(_, context),
|
|
14690
15452
|
KernelGatewayImageConfig: (_) => de_KernelGatewayImageConfig(_, context),
|
|
14691
15453
|
LastModifiedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
14692
15454
|
});
|
|
@@ -14773,6 +15535,22 @@ const de_DescribeAutoMLJobV2Response = (output, context) => {
|
|
|
14773
15535
|
SecurityConfig: (_) => de_AutoMLSecurityConfig(_, context),
|
|
14774
15536
|
});
|
|
14775
15537
|
};
|
|
15538
|
+
const de_DescribeClusterNodeResponse = (output, context) => {
|
|
15539
|
+
return (0, smithy_client_1.take)(output, {
|
|
15540
|
+
NodeDetails: (_) => de_ClusterNodeDetails(_, context),
|
|
15541
|
+
});
|
|
15542
|
+
};
|
|
15543
|
+
const de_DescribeClusterResponse = (output, context) => {
|
|
15544
|
+
return (0, smithy_client_1.take)(output, {
|
|
15545
|
+
ClusterArn: smithy_client_1.expectString,
|
|
15546
|
+
ClusterName: smithy_client_1.expectString,
|
|
15547
|
+
ClusterStatus: smithy_client_1.expectString,
|
|
15548
|
+
CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
15549
|
+
FailureMessage: smithy_client_1.expectString,
|
|
15550
|
+
InstanceGroups: (_) => de_ClusterInstanceGroupDetailsList(_, context),
|
|
15551
|
+
VpcConfig: (_) => de_VpcConfig(_, context),
|
|
15552
|
+
});
|
|
15553
|
+
};
|
|
14776
15554
|
const de_DescribeCodeRepositoryOutput = (output, context) => {
|
|
14777
15555
|
return (0, smithy_client_1.take)(output, {
|
|
14778
15556
|
CodeRepositoryArn: smithy_client_1.expectString,
|
|
@@ -14926,12 +15704,15 @@ const de_DescribeEndpointConfigOutput = (output, context) => {
|
|
|
14926
15704
|
AsyncInferenceConfig: (_) => de_AsyncInferenceConfig(_, context),
|
|
14927
15705
|
CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
14928
15706
|
DataCaptureConfig: (_) => de_DataCaptureConfig(_, context),
|
|
15707
|
+
EnableNetworkIsolation: smithy_client_1.expectBoolean,
|
|
14929
15708
|
EndpointConfigArn: smithy_client_1.expectString,
|
|
14930
15709
|
EndpointConfigName: smithy_client_1.expectString,
|
|
15710
|
+
ExecutionRoleArn: smithy_client_1.expectString,
|
|
14931
15711
|
ExplainerConfig: (_) => de_ExplainerConfig(_, context),
|
|
14932
15712
|
KmsKeyId: smithy_client_1.expectString,
|
|
14933
15713
|
ProductionVariants: (_) => de_ProductionVariantList(_, context),
|
|
14934
15714
|
ShadowProductionVariants: (_) => de_ProductionVariantList(_, context),
|
|
15715
|
+
VpcConfig: (_) => de_VpcConfig(_, context),
|
|
14935
15716
|
});
|
|
14936
15717
|
};
|
|
14937
15718
|
const de_DescribeEndpointOutput = (output, context) => {
|
|
@@ -15110,6 +15891,21 @@ const de_DescribeImageVersionResponse = (output, context) => {
|
|
|
15110
15891
|
Version: smithy_client_1.expectInt32,
|
|
15111
15892
|
});
|
|
15112
15893
|
};
|
|
15894
|
+
const de_DescribeInferenceComponentOutput = (output, context) => {
|
|
15895
|
+
return (0, smithy_client_1.take)(output, {
|
|
15896
|
+
CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
15897
|
+
EndpointArn: smithy_client_1.expectString,
|
|
15898
|
+
EndpointName: smithy_client_1.expectString,
|
|
15899
|
+
FailureReason: smithy_client_1.expectString,
|
|
15900
|
+
InferenceComponentArn: smithy_client_1.expectString,
|
|
15901
|
+
InferenceComponentName: smithy_client_1.expectString,
|
|
15902
|
+
InferenceComponentStatus: smithy_client_1.expectString,
|
|
15903
|
+
LastModifiedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
15904
|
+
RuntimeConfig: (_) => de_InferenceComponentRuntimeConfigSummary(_, context),
|
|
15905
|
+
Specification: (_) => de_InferenceComponentSpecificationSummary(_, context),
|
|
15906
|
+
VariantName: smithy_client_1.expectString,
|
|
15907
|
+
});
|
|
15908
|
+
};
|
|
15113
15909
|
const de_DescribeInferenceExperimentResponse = (output, context) => {
|
|
15114
15910
|
return (0, smithy_client_1.take)(output, {
|
|
15115
15911
|
Arn: smithy_client_1.expectString,
|
|
@@ -15447,10 +16243,14 @@ const de_DescribeSpaceResponse = (output, context) => {
|
|
|
15447
16243
|
FailureReason: smithy_client_1.expectString,
|
|
15448
16244
|
HomeEfsFileSystemUid: smithy_client_1.expectString,
|
|
15449
16245
|
LastModifiedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
16246
|
+
OwnershipSettings: (_) => de_OwnershipSettings(_, context),
|
|
15450
16247
|
SpaceArn: smithy_client_1.expectString,
|
|
16248
|
+
SpaceDisplayName: smithy_client_1.expectString,
|
|
15451
16249
|
SpaceName: smithy_client_1.expectString,
|
|
15452
16250
|
SpaceSettings: (_) => de_SpaceSettings(_, context),
|
|
16251
|
+
SpaceSharingSettings: (_) => de_SpaceSharingSettings(_, context),
|
|
15453
16252
|
Status: smithy_client_1.expectString,
|
|
16253
|
+
Url: smithy_client_1.expectString,
|
|
15454
16254
|
});
|
|
15455
16255
|
};
|
|
15456
16256
|
const de_DescribeStudioLifecycleConfigResponse = (output, context) => {
|
|
@@ -15486,6 +16286,7 @@ const de_DescribeTrainingJobResponse = (output, context) => {
|
|
|
15486
16286
|
FailureReason: smithy_client_1.expectString,
|
|
15487
16287
|
FinalMetricDataList: (_) => de_FinalMetricDataList(_, context),
|
|
15488
16288
|
HyperParameters: (_) => de_HyperParameters(_, context),
|
|
16289
|
+
InfraCheckConfig: (_) => de_InfraCheckConfig(_, context),
|
|
15489
16290
|
InputDataConfig: (_) => de_InputDataConfig(_, context),
|
|
15490
16291
|
LabelingJobArn: smithy_client_1.expectString,
|
|
15491
16292
|
LastModifiedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
@@ -15771,6 +16572,11 @@ const de_DynamicScalingConfiguration = (output, context) => {
|
|
|
15771
16572
|
ScalingPolicies: (_) => de_ScalingPolicies(_, context),
|
|
15772
16573
|
});
|
|
15773
16574
|
};
|
|
16575
|
+
const de_EbsStorageSettings = (output, context) => {
|
|
16576
|
+
return (0, smithy_client_1.take)(output, {
|
|
16577
|
+
EbsVolumeSizeInGb: smithy_client_1.expectInt32,
|
|
16578
|
+
});
|
|
16579
|
+
};
|
|
15774
16580
|
const de_Edge = (output, context) => {
|
|
15775
16581
|
return (0, smithy_client_1.take)(output, {
|
|
15776
16582
|
AssociationType: smithy_client_1.expectString,
|
|
@@ -15919,6 +16725,17 @@ const de_Edges = (output, context) => {
|
|
|
15919
16725
|
});
|
|
15920
16726
|
return retVal;
|
|
15921
16727
|
};
|
|
16728
|
+
const de_EFSFileSystem = (output, context) => {
|
|
16729
|
+
return (0, smithy_client_1.take)(output, {
|
|
16730
|
+
FileSystemId: smithy_client_1.expectString,
|
|
16731
|
+
});
|
|
16732
|
+
};
|
|
16733
|
+
const de_EFSFileSystemConfig = (output, context) => {
|
|
16734
|
+
return (0, smithy_client_1.take)(output, {
|
|
16735
|
+
FileSystemId: smithy_client_1.expectString,
|
|
16736
|
+
FileSystemPath: smithy_client_1.expectString,
|
|
16737
|
+
});
|
|
16738
|
+
};
|
|
15922
16739
|
const de_EMRStepMetadata = (output, context) => {
|
|
15923
16740
|
return (0, smithy_client_1.take)(output, {
|
|
15924
16741
|
ClusterId: smithy_client_1.expectString,
|
|
@@ -16849,6 +17666,61 @@ const de_ImportHubContentResponse = (output, context) => {
|
|
|
16849
17666
|
HubContentArn: smithy_client_1.expectString,
|
|
16850
17667
|
});
|
|
16851
17668
|
};
|
|
17669
|
+
const de_InferenceComponentComputeResourceRequirements = (output, context) => {
|
|
17670
|
+
return (0, smithy_client_1.take)(output, {
|
|
17671
|
+
MaxMemoryRequiredInMb: smithy_client_1.expectInt32,
|
|
17672
|
+
MinMemoryRequiredInMb: smithy_client_1.expectInt32,
|
|
17673
|
+
NumberOfAcceleratorDevicesRequired: smithy_client_1.limitedParseFloat32,
|
|
17674
|
+
NumberOfCpuCoresRequired: smithy_client_1.limitedParseFloat32,
|
|
17675
|
+
});
|
|
17676
|
+
};
|
|
17677
|
+
const de_InferenceComponentContainerSpecificationSummary = (output, context) => {
|
|
17678
|
+
return (0, smithy_client_1.take)(output, {
|
|
17679
|
+
ArtifactUrl: smithy_client_1.expectString,
|
|
17680
|
+
DeployedImage: (_) => de_DeployedImage(_, context),
|
|
17681
|
+
Environment: (_) => de_EnvironmentMap(_, context),
|
|
17682
|
+
});
|
|
17683
|
+
};
|
|
17684
|
+
const de_InferenceComponentRuntimeConfigSummary = (output, context) => {
|
|
17685
|
+
return (0, smithy_client_1.take)(output, {
|
|
17686
|
+
CurrentCopyCount: smithy_client_1.expectInt32,
|
|
17687
|
+
DesiredCopyCount: smithy_client_1.expectInt32,
|
|
17688
|
+
});
|
|
17689
|
+
};
|
|
17690
|
+
const de_InferenceComponentSpecificationSummary = (output, context) => {
|
|
17691
|
+
return (0, smithy_client_1.take)(output, {
|
|
17692
|
+
ComputeResourceRequirements: (_) => de_InferenceComponentComputeResourceRequirements(_, context),
|
|
17693
|
+
Container: (_) => de_InferenceComponentContainerSpecificationSummary(_, context),
|
|
17694
|
+
ModelName: smithy_client_1.expectString,
|
|
17695
|
+
StartupParameters: (_) => de_InferenceComponentStartupParameters(_, context),
|
|
17696
|
+
});
|
|
17697
|
+
};
|
|
17698
|
+
const de_InferenceComponentStartupParameters = (output, context) => {
|
|
17699
|
+
return (0, smithy_client_1.take)(output, {
|
|
17700
|
+
ContainerStartupHealthCheckTimeoutInSeconds: smithy_client_1.expectInt32,
|
|
17701
|
+
ModelDataDownloadTimeoutInSeconds: smithy_client_1.expectInt32,
|
|
17702
|
+
});
|
|
17703
|
+
};
|
|
17704
|
+
const de_InferenceComponentSummary = (output, context) => {
|
|
17705
|
+
return (0, smithy_client_1.take)(output, {
|
|
17706
|
+
CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
17707
|
+
EndpointArn: smithy_client_1.expectString,
|
|
17708
|
+
EndpointName: smithy_client_1.expectString,
|
|
17709
|
+
InferenceComponentArn: smithy_client_1.expectString,
|
|
17710
|
+
InferenceComponentName: smithy_client_1.expectString,
|
|
17711
|
+
InferenceComponentStatus: smithy_client_1.expectString,
|
|
17712
|
+
LastModifiedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
17713
|
+
VariantName: smithy_client_1.expectString,
|
|
17714
|
+
});
|
|
17715
|
+
};
|
|
17716
|
+
const de_InferenceComponentSummaryList = (output, context) => {
|
|
17717
|
+
const retVal = (output || [])
|
|
17718
|
+
.filter((e) => e != null)
|
|
17719
|
+
.map((entry) => {
|
|
17720
|
+
return de_InferenceComponentSummary(entry, context);
|
|
17721
|
+
});
|
|
17722
|
+
return retVal;
|
|
17723
|
+
};
|
|
16852
17724
|
const de_InferenceExecutionConfig = (output, context) => {
|
|
16853
17725
|
return (0, smithy_client_1.take)(output, {
|
|
16854
17726
|
Mode: smithy_client_1.expectString,
|
|
@@ -16963,6 +17835,11 @@ const de_InferenceSpecification = (output, context) => {
|
|
|
16963
17835
|
SupportedTransformInstanceTypes: (_) => de_TransformInstanceTypes(_, context),
|
|
16964
17836
|
});
|
|
16965
17837
|
};
|
|
17838
|
+
const de_InfraCheckConfig = (output, context) => {
|
|
17839
|
+
return (0, smithy_client_1.take)(output, {
|
|
17840
|
+
EnableInfraCheck: smithy_client_1.expectBoolean,
|
|
17841
|
+
});
|
|
17842
|
+
};
|
|
16966
17843
|
const de_InputConfig = (output, context) => {
|
|
16967
17844
|
return (0, smithy_client_1.take)(output, {
|
|
16968
17845
|
DataInputConfig: smithy_client_1.expectString,
|
|
@@ -17045,6 +17922,19 @@ const de_JsonContentTypes = (output, context) => {
|
|
|
17045
17922
|
});
|
|
17046
17923
|
return retVal;
|
|
17047
17924
|
};
|
|
17925
|
+
const de_JupyterLabAppImageConfig = (output, context) => {
|
|
17926
|
+
return (0, smithy_client_1.take)(output, {
|
|
17927
|
+
ContainerConfig: (_) => de_ContainerConfig(_, context),
|
|
17928
|
+
});
|
|
17929
|
+
};
|
|
17930
|
+
const de_JupyterLabAppSettings = (output, context) => {
|
|
17931
|
+
return (0, smithy_client_1.take)(output, {
|
|
17932
|
+
CodeRepositories: (_) => de_CodeRepositories(_, context),
|
|
17933
|
+
CustomImages: (_) => de_CustomImages(_, context),
|
|
17934
|
+
DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
|
|
17935
|
+
LifecycleConfigArns: (_) => de_LifecycleConfigArns(_, context),
|
|
17936
|
+
});
|
|
17937
|
+
};
|
|
17048
17938
|
const de_JupyterServerAppSettings = (output, context) => {
|
|
17049
17939
|
return (0, smithy_client_1.take)(output, {
|
|
17050
17940
|
CodeRepositories: (_) => de_CodeRepositories(_, context),
|
|
@@ -17301,6 +18191,18 @@ const de_ListCandidatesForAutoMLJobResponse = (output, context) => {
|
|
|
17301
18191
|
NextToken: smithy_client_1.expectString,
|
|
17302
18192
|
});
|
|
17303
18193
|
};
|
|
18194
|
+
const de_ListClusterNodesResponse = (output, context) => {
|
|
18195
|
+
return (0, smithy_client_1.take)(output, {
|
|
18196
|
+
ClusterNodeSummaries: (_) => de_ClusterNodeSummaries(_, context),
|
|
18197
|
+
NextToken: smithy_client_1.expectString,
|
|
18198
|
+
});
|
|
18199
|
+
};
|
|
18200
|
+
const de_ListClustersResponse = (output, context) => {
|
|
18201
|
+
return (0, smithy_client_1.take)(output, {
|
|
18202
|
+
ClusterSummaries: (_) => de_ClusterSummaries(_, context),
|
|
18203
|
+
NextToken: smithy_client_1.expectString,
|
|
18204
|
+
});
|
|
18205
|
+
};
|
|
17304
18206
|
const de_ListCodeRepositoriesOutput = (output, context) => {
|
|
17305
18207
|
return (0, smithy_client_1.take)(output, {
|
|
17306
18208
|
CodeRepositorySummaryList: (_) => de_CodeRepositorySummaryList(_, context),
|
|
@@ -17427,6 +18329,12 @@ const de_ListImageVersionsResponse = (output, context) => {
|
|
|
17427
18329
|
NextToken: smithy_client_1.expectString,
|
|
17428
18330
|
});
|
|
17429
18331
|
};
|
|
18332
|
+
const de_ListInferenceComponentsOutput = (output, context) => {
|
|
18333
|
+
return (0, smithy_client_1.take)(output, {
|
|
18334
|
+
InferenceComponents: (_) => de_InferenceComponentSummaryList(_, context),
|
|
18335
|
+
NextToken: smithy_client_1.expectString,
|
|
18336
|
+
});
|
|
18337
|
+
};
|
|
17430
18338
|
const de_ListInferenceExperimentsResponse = (output, context) => {
|
|
17431
18339
|
return (0, smithy_client_1.take)(output, {
|
|
17432
18340
|
InferenceExperiments: (_) => de_InferenceExperimentList(_, context),
|
|
@@ -18747,6 +19655,16 @@ const de_OutputParameterList = (output, context) => {
|
|
|
18747
19655
|
});
|
|
18748
19656
|
return retVal;
|
|
18749
19657
|
};
|
|
19658
|
+
const de_OwnershipSettings = (output, context) => {
|
|
19659
|
+
return (0, smithy_client_1.take)(output, {
|
|
19660
|
+
OwnerUserProfileName: smithy_client_1.expectString,
|
|
19661
|
+
});
|
|
19662
|
+
};
|
|
19663
|
+
const de_OwnershipSettingsSummary = (output, context) => {
|
|
19664
|
+
return (0, smithy_client_1.take)(output, {
|
|
19665
|
+
OwnerUserProfileName: smithy_client_1.expectString,
|
|
19666
|
+
});
|
|
19667
|
+
};
|
|
18750
19668
|
const de_ParallelismConfiguration = (output, context) => {
|
|
18751
19669
|
return (0, smithy_client_1.take)(output, {
|
|
18752
19670
|
MaxParallelExecutionSteps: smithy_client_1.expectInt32,
|
|
@@ -18835,6 +19753,8 @@ const de_PendingProductionVariantSummary = (output, context) => {
|
|
|
18835
19753
|
DesiredServerlessConfig: (_) => de_ProductionVariantServerlessConfig(_, context),
|
|
18836
19754
|
DesiredWeight: smithy_client_1.limitedParseFloat32,
|
|
18837
19755
|
InstanceType: smithy_client_1.expectString,
|
|
19756
|
+
ManagedInstanceScaling: (_) => de_ProductionVariantManagedInstanceScaling(_, context),
|
|
19757
|
+
RoutingConfig: (_) => de_ProductionVariantRoutingConfig(_, context),
|
|
18838
19758
|
VariantName: smithy_client_1.expectString,
|
|
18839
19759
|
VariantStatus: (_) => de_ProductionVariantStatusList(_, context),
|
|
18840
19760
|
});
|
|
@@ -19134,8 +20054,10 @@ const de_ProductionVariant = (output, context) => {
|
|
|
19134
20054
|
InitialInstanceCount: smithy_client_1.expectInt32,
|
|
19135
20055
|
InitialVariantWeight: smithy_client_1.limitedParseFloat32,
|
|
19136
20056
|
InstanceType: smithy_client_1.expectString,
|
|
20057
|
+
ManagedInstanceScaling: (_) => de_ProductionVariantManagedInstanceScaling(_, context),
|
|
19137
20058
|
ModelDataDownloadTimeoutInSeconds: smithy_client_1.expectInt32,
|
|
19138
20059
|
ModelName: smithy_client_1.expectString,
|
|
20060
|
+
RoutingConfig: (_) => de_ProductionVariantRoutingConfig(_, context),
|
|
19139
20061
|
ServerlessConfig: (_) => de_ProductionVariantServerlessConfig(_, context),
|
|
19140
20062
|
VariantName: smithy_client_1.expectString,
|
|
19141
20063
|
VolumeSizeInGB: smithy_client_1.expectInt32,
|
|
@@ -19155,6 +20077,18 @@ const de_ProductionVariantList = (output, context) => {
|
|
|
19155
20077
|
});
|
|
19156
20078
|
return retVal;
|
|
19157
20079
|
};
|
|
20080
|
+
const de_ProductionVariantManagedInstanceScaling = (output, context) => {
|
|
20081
|
+
return (0, smithy_client_1.take)(output, {
|
|
20082
|
+
MaxInstanceCount: smithy_client_1.expectInt32,
|
|
20083
|
+
MinInstanceCount: smithy_client_1.expectInt32,
|
|
20084
|
+
Status: smithy_client_1.expectString,
|
|
20085
|
+
});
|
|
20086
|
+
};
|
|
20087
|
+
const de_ProductionVariantRoutingConfig = (output, context) => {
|
|
20088
|
+
return (0, smithy_client_1.take)(output, {
|
|
20089
|
+
RoutingStrategy: smithy_client_1.expectString,
|
|
20090
|
+
});
|
|
20091
|
+
};
|
|
19158
20092
|
const de_ProductionVariantServerlessConfig = (output, context) => {
|
|
19159
20093
|
return (0, smithy_client_1.take)(output, {
|
|
19160
20094
|
MaxConcurrency: smithy_client_1.expectInt32,
|
|
@@ -19186,6 +20120,8 @@ const de_ProductionVariantSummary = (output, context) => {
|
|
|
19186
20120
|
DesiredInstanceCount: smithy_client_1.expectInt32,
|
|
19187
20121
|
DesiredServerlessConfig: (_) => de_ProductionVariantServerlessConfig(_, context),
|
|
19188
20122
|
DesiredWeight: smithy_client_1.limitedParseFloat32,
|
|
20123
|
+
ManagedInstanceScaling: (_) => de_ProductionVariantManagedInstanceScaling(_, context),
|
|
20124
|
+
RoutingConfig: (_) => de_ProductionVariantRoutingConfig(_, context),
|
|
19189
20125
|
VariantName: smithy_client_1.expectString,
|
|
19190
20126
|
VariantStatus: (_) => de_ProductionVariantStatusList(_, context),
|
|
19191
20127
|
});
|
|
@@ -19598,6 +20534,7 @@ const de_ResourceSpec = (output, context) => {
|
|
|
19598
20534
|
InstanceType: smithy_client_1.expectString,
|
|
19599
20535
|
LifecycleConfigArn: smithy_client_1.expectString,
|
|
19600
20536
|
SageMakerImageArn: smithy_client_1.expectString,
|
|
20537
|
+
SageMakerImageVersionAlias: smithy_client_1.expectString,
|
|
19601
20538
|
SageMakerImageVersionArn: smithy_client_1.expectString,
|
|
19602
20539
|
});
|
|
19603
20540
|
};
|
|
@@ -19884,15 +20821,30 @@ const de_SourceIpConfig = (output, context) => {
|
|
|
19884
20821
|
Cidrs: (_) => de_Cidrs(_, context),
|
|
19885
20822
|
});
|
|
19886
20823
|
};
|
|
20824
|
+
const de_SpaceCodeEditorAppSettings = (output, context) => {
|
|
20825
|
+
return (0, smithy_client_1.take)(output, {
|
|
20826
|
+
DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
|
|
20827
|
+
});
|
|
20828
|
+
};
|
|
19887
20829
|
const de_SpaceDetails = (output, context) => {
|
|
19888
20830
|
return (0, smithy_client_1.take)(output, {
|
|
19889
20831
|
CreationTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
19890
20832
|
DomainId: smithy_client_1.expectString,
|
|
19891
20833
|
LastModifiedTime: (_) => (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(_))),
|
|
20834
|
+
OwnershipSettingsSummary: (_) => de_OwnershipSettingsSummary(_, context),
|
|
20835
|
+
SpaceDisplayName: smithy_client_1.expectString,
|
|
19892
20836
|
SpaceName: smithy_client_1.expectString,
|
|
20837
|
+
SpaceSettingsSummary: (_) => de_SpaceSettingsSummary(_, context),
|
|
20838
|
+
SpaceSharingSettingsSummary: (_) => de_SpaceSharingSettingsSummary(_, context),
|
|
19893
20839
|
Status: smithy_client_1.expectString,
|
|
19894
20840
|
});
|
|
19895
20841
|
};
|
|
20842
|
+
const de_SpaceJupyterLabAppSettings = (output, context) => {
|
|
20843
|
+
return (0, smithy_client_1.take)(output, {
|
|
20844
|
+
CodeRepositories: (_) => de_CodeRepositories(_, context),
|
|
20845
|
+
DefaultResourceSpec: (_) => de_ResourceSpec(_, context),
|
|
20846
|
+
});
|
|
20847
|
+
};
|
|
19896
20848
|
const de_SpaceList = (output, context) => {
|
|
19897
20849
|
const retVal = (output || [])
|
|
19898
20850
|
.filter((e) => e != null)
|
|
@@ -19903,8 +20855,34 @@ const de_SpaceList = (output, context) => {
|
|
|
19903
20855
|
};
|
|
19904
20856
|
const de_SpaceSettings = (output, context) => {
|
|
19905
20857
|
return (0, smithy_client_1.take)(output, {
|
|
20858
|
+
AppType: smithy_client_1.expectString,
|
|
20859
|
+
CodeEditorAppSettings: (_) => de_SpaceCodeEditorAppSettings(_, context),
|
|
20860
|
+
CustomFileSystems: (_) => de_CustomFileSystems(_, context),
|
|
20861
|
+
JupyterLabAppSettings: (_) => de_SpaceJupyterLabAppSettings(_, context),
|
|
19906
20862
|
JupyterServerAppSettings: (_) => de_JupyterServerAppSettings(_, context),
|
|
19907
20863
|
KernelGatewayAppSettings: (_) => de_KernelGatewayAppSettings(_, context),
|
|
20864
|
+
SpaceStorageSettings: (_) => de_SpaceStorageSettings(_, context),
|
|
20865
|
+
});
|
|
20866
|
+
};
|
|
20867
|
+
const de_SpaceSettingsSummary = (output, context) => {
|
|
20868
|
+
return (0, smithy_client_1.take)(output, {
|
|
20869
|
+
AppType: smithy_client_1.expectString,
|
|
20870
|
+
SpaceStorageSettings: (_) => de_SpaceStorageSettings(_, context),
|
|
20871
|
+
});
|
|
20872
|
+
};
|
|
20873
|
+
const de_SpaceSharingSettings = (output, context) => {
|
|
20874
|
+
return (0, smithy_client_1.take)(output, {
|
|
20875
|
+
SharingType: smithy_client_1.expectString,
|
|
20876
|
+
});
|
|
20877
|
+
};
|
|
20878
|
+
const de_SpaceSharingSettingsSummary = (output, context) => {
|
|
20879
|
+
return (0, smithy_client_1.take)(output, {
|
|
20880
|
+
SharingType: smithy_client_1.expectString,
|
|
20881
|
+
});
|
|
20882
|
+
};
|
|
20883
|
+
const de_SpaceStorageSettings = (output, context) => {
|
|
20884
|
+
return (0, smithy_client_1.take)(output, {
|
|
20885
|
+
EbsStorageSettings: (_) => de_EbsStorageSettings(_, context),
|
|
19908
20886
|
});
|
|
19909
20887
|
};
|
|
19910
20888
|
const de_Stairs = (output, context) => {
|
|
@@ -20053,10 +21031,20 @@ const de_TextClassificationJobConfig = (output, context) => {
|
|
|
20053
21031
|
TargetLabelColumn: smithy_client_1.expectString,
|
|
20054
21032
|
});
|
|
20055
21033
|
};
|
|
21034
|
+
const de_TextGenerationHyperParameters = (output, context) => {
|
|
21035
|
+
return Object.entries(output).reduce((acc, [key, value]) => {
|
|
21036
|
+
if (value === null) {
|
|
21037
|
+
return acc;
|
|
21038
|
+
}
|
|
21039
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
21040
|
+
return acc;
|
|
21041
|
+
}, {});
|
|
21042
|
+
};
|
|
20056
21043
|
const de_TextGenerationJobConfig = (output, context) => {
|
|
20057
21044
|
return (0, smithy_client_1.take)(output, {
|
|
20058
21045
|
BaseModelName: smithy_client_1.expectString,
|
|
20059
21046
|
CompletionCriteria: (_) => de_AutoMLJobCompletionCriteria(_, context),
|
|
21047
|
+
TextGenerationHyperParameters: (_) => de_TextGenerationHyperParameters(_, context),
|
|
20060
21048
|
});
|
|
20061
21049
|
};
|
|
20062
21050
|
const de_TextGenerationResolvedAttributes = (output, context) => {
|
|
@@ -20597,6 +21585,11 @@ const de_UpdateArtifactResponse = (output, context) => {
|
|
|
20597
21585
|
ArtifactArn: smithy_client_1.expectString,
|
|
20598
21586
|
});
|
|
20599
21587
|
};
|
|
21588
|
+
const de_UpdateClusterResponse = (output, context) => {
|
|
21589
|
+
return (0, smithy_client_1.take)(output, {
|
|
21590
|
+
ClusterArn: smithy_client_1.expectString,
|
|
21591
|
+
});
|
|
21592
|
+
};
|
|
20600
21593
|
const de_UpdateCodeRepositoryOutput = (output, context) => {
|
|
20601
21594
|
return (0, smithy_client_1.take)(output, {
|
|
20602
21595
|
CodeRepositoryArn: smithy_client_1.expectString,
|
|
@@ -20647,6 +21640,16 @@ const de_UpdateImageVersionResponse = (output, context) => {
|
|
|
20647
21640
|
ImageVersionArn: smithy_client_1.expectString,
|
|
20648
21641
|
});
|
|
20649
21642
|
};
|
|
21643
|
+
const de_UpdateInferenceComponentOutput = (output, context) => {
|
|
21644
|
+
return (0, smithy_client_1.take)(output, {
|
|
21645
|
+
InferenceComponentArn: smithy_client_1.expectString,
|
|
21646
|
+
});
|
|
21647
|
+
};
|
|
21648
|
+
const de_UpdateInferenceComponentRuntimeConfigOutput = (output, context) => {
|
|
21649
|
+
return (0, smithy_client_1.take)(output, {
|
|
21650
|
+
InferenceComponentArn: smithy_client_1.expectString,
|
|
21651
|
+
});
|
|
21652
|
+
};
|
|
20650
21653
|
const de_UpdateInferenceExperimentResponse = (output, context) => {
|
|
20651
21654
|
return (0, smithy_client_1.take)(output, {
|
|
20652
21655
|
InferenceExperimentArn: smithy_client_1.expectString,
|
|
@@ -20764,13 +21767,20 @@ const de_UserProfileList = (output, context) => {
|
|
|
20764
21767
|
const de_UserSettings = (output, context) => {
|
|
20765
21768
|
return (0, smithy_client_1.take)(output, {
|
|
20766
21769
|
CanvasAppSettings: (_) => de_CanvasAppSettings(_, context),
|
|
21770
|
+
CodeEditorAppSettings: (_) => de_CodeEditorAppSettings(_, context),
|
|
21771
|
+
CustomFileSystemConfigs: (_) => de_CustomFileSystemConfigs(_, context),
|
|
21772
|
+
CustomPosixUserConfig: (_) => de_CustomPosixUserConfig(_, context),
|
|
21773
|
+
DefaultLandingUri: smithy_client_1.expectString,
|
|
20767
21774
|
ExecutionRole: smithy_client_1.expectString,
|
|
21775
|
+
JupyterLabAppSettings: (_) => de_JupyterLabAppSettings(_, context),
|
|
20768
21776
|
JupyterServerAppSettings: (_) => de_JupyterServerAppSettings(_, context),
|
|
20769
21777
|
KernelGatewayAppSettings: (_) => de_KernelGatewayAppSettings(_, context),
|
|
20770
21778
|
RSessionAppSettings: (_) => de_RSessionAppSettings(_, context),
|
|
20771
21779
|
RStudioServerProAppSettings: (_) => de_RStudioServerProAppSettings(_, context),
|
|
20772
21780
|
SecurityGroups: (_) => de_SecurityGroupIds(_, context),
|
|
20773
21781
|
SharingSettings: (_) => de_SharingSettings(_, context),
|
|
21782
|
+
SpaceStorageSettings: (_) => de_DefaultSpaceStorageSettings(_, context),
|
|
21783
|
+
StudioWebPortal: smithy_client_1.expectString,
|
|
20774
21784
|
TensorBoardAppSettings: (_) => de_TensorBoardAppSettings(_, context),
|
|
20775
21785
|
});
|
|
20776
21786
|
};
|