@aws-sdk/client-sagemaker 3.600.0 → 3.602.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 +16 -0
- package/dist-cjs/index.js +121 -23
- package/dist-es/SageMaker.js +4 -0
- package/dist-es/commands/CreateHubContentReferenceCommand.js +24 -0
- package/dist-es/commands/DeleteHubContentReferenceCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_2.js +5 -15
- package/dist-es/models/models_3.js +15 -4
- package/dist-es/models/models_4.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +53 -0
- package/dist-types/SageMaker.d.ts +14 -0
- package/dist-types/SageMakerClient.d.ts +4 -2
- package/dist-types/commands/BatchDescribeModelPackageCommand.d.ts +3 -0
- package/dist-types/commands/CreateAlgorithmCommand.d.ts +3 -0
- package/dist-types/commands/CreateCodeRepositoryCommand.d.ts +2 -1
- package/dist-types/commands/CreateHubCommand.d.ts +0 -3
- package/dist-types/commands/CreateHubContentReferenceCommand.d.ts +80 -0
- package/dist-types/commands/CreateModelCommand.d.ts +6 -0
- package/dist-types/commands/CreateModelPackageCommand.d.ts +9 -0
- package/dist-types/commands/DeleteHubCommand.d.ts +0 -3
- package/dist-types/commands/DeleteHubContentCommand.d.ts +1 -4
- package/dist-types/commands/DeleteHubContentReferenceCommand.d.ts +63 -0
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +3 -0
- package/dist-types/commands/DescribeHubCommand.d.ts +1 -4
- package/dist-types/commands/DescribeHubContentCommand.d.ts +5 -5
- package/dist-types/commands/DescribeInferenceRecommendationsJobCommand.d.ts +4 -4
- package/dist-types/commands/DescribeModelCommand.d.ts +6 -0
- package/dist-types/commands/DescribeModelPackageCommand.d.ts +9 -0
- package/dist-types/commands/DescribeMonitoringScheduleCommand.d.ts +2 -1
- package/dist-types/commands/DescribeNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/commands/ImportHubContentCommand.d.ts +1 -4
- package/dist-types/commands/ListHubContentVersionsCommand.d.ts +5 -5
- package/dist-types/commands/ListHubContentsCommand.d.ts +5 -5
- package/dist-types/commands/ListHubsCommand.d.ts +0 -3
- package/dist-types/commands/ListInferenceRecommendationsJobStepsCommand.d.ts +4 -4
- package/dist-types/commands/ListMonitoringAlertHistoryCommand.d.ts +1 -1
- package/dist-types/commands/ListMonitoringAlertsCommand.d.ts +1 -2
- package/dist-types/commands/SearchCommand.d.ts +9 -0
- package/dist-types/commands/UpdateHubCommand.d.ts +0 -3
- package/dist-types/commands/UpdateModelPackageCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +16 -10
- package/dist-types/models/models_1.d.ts +55 -36
- package/dist-types/models/models_2.d.ts +90 -272
- package/dist-types/models/models_3.d.ts +283 -133
- package/dist-types/models/models_4.d.ts +133 -2
- package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
- package/dist-types/ts3.4/SageMaker.d.ts +34 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/CreateCodeRepositoryCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/CreateHubContentReferenceCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteHubContentReferenceCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/DescribeMonitoringScheduleCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeNotebookInstanceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMonitoringAlertHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMonitoringAlertsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -3
- package/dist-types/ts3.4/models/models_1.d.ts +14 -9
- package/dist-types/ts3.4/models/models_2.d.ts +29 -72
- package/dist-types/ts3.4/models/models_3.d.ts +68 -34
- package/dist-types/ts3.4/models/models_4.d.ts +35 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ import { CreateExperimentCommandInput, CreateExperimentCommandOutput } from "./c
|
|
|
26
26
|
import { CreateFeatureGroupCommandInput, CreateFeatureGroupCommandOutput } from "./commands/CreateFeatureGroupCommand";
|
|
27
27
|
import { CreateFlowDefinitionCommandInput, CreateFlowDefinitionCommandOutput } from "./commands/CreateFlowDefinitionCommand";
|
|
28
28
|
import { CreateHubCommandInput, CreateHubCommandOutput } from "./commands/CreateHubCommand";
|
|
29
|
+
import { CreateHubContentReferenceCommandInput, CreateHubContentReferenceCommandOutput } from "./commands/CreateHubContentReferenceCommand";
|
|
29
30
|
import { CreateHumanTaskUiCommandInput, CreateHumanTaskUiCommandOutput } from "./commands/CreateHumanTaskUiCommand";
|
|
30
31
|
import { CreateHyperParameterTuningJobCommandInput, CreateHyperParameterTuningJobCommandOutput } from "./commands/CreateHyperParameterTuningJobCommand";
|
|
31
32
|
import { CreateImageCommandInput, CreateImageCommandOutput } from "./commands/CreateImageCommand";
|
|
@@ -83,6 +84,7 @@ import { DeleteFeatureGroupCommandInput, DeleteFeatureGroupCommandOutput } from
|
|
|
83
84
|
import { DeleteFlowDefinitionCommandInput, DeleteFlowDefinitionCommandOutput } from "./commands/DeleteFlowDefinitionCommand";
|
|
84
85
|
import { DeleteHubCommandInput, DeleteHubCommandOutput } from "./commands/DeleteHubCommand";
|
|
85
86
|
import { DeleteHubContentCommandInput, DeleteHubContentCommandOutput } from "./commands/DeleteHubContentCommand";
|
|
87
|
+
import { DeleteHubContentReferenceCommandInput, DeleteHubContentReferenceCommandOutput } from "./commands/DeleteHubContentReferenceCommand";
|
|
86
88
|
import { DeleteHumanTaskUiCommandInput, DeleteHumanTaskUiCommandOutput } from "./commands/DeleteHumanTaskUiCommand";
|
|
87
89
|
import { DeleteHyperParameterTuningJobCommandInput, DeleteHyperParameterTuningJobCommandOutput } from "./commands/DeleteHyperParameterTuningJobCommand";
|
|
88
90
|
import { DeleteImageCommandInput, DeleteImageCommandOutput } from "./commands/DeleteImageCommand";
|
|
@@ -491,6 +493,12 @@ export interface SageMaker {
|
|
|
491
493
|
createHub(args: CreateHubCommandInput, options?: __HttpHandlerOptions): Promise<CreateHubCommandOutput>;
|
|
492
494
|
createHub(args: CreateHubCommandInput, cb: (err: any, data?: CreateHubCommandOutput) => void): void;
|
|
493
495
|
createHub(args: CreateHubCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHubCommandOutput) => void): void;
|
|
496
|
+
/**
|
|
497
|
+
* @see {@link CreateHubContentReferenceCommand}
|
|
498
|
+
*/
|
|
499
|
+
createHubContentReference(args: CreateHubContentReferenceCommandInput, options?: __HttpHandlerOptions): Promise<CreateHubContentReferenceCommandOutput>;
|
|
500
|
+
createHubContentReference(args: CreateHubContentReferenceCommandInput, cb: (err: any, data?: CreateHubContentReferenceCommandOutput) => void): void;
|
|
501
|
+
createHubContentReference(args: CreateHubContentReferenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateHubContentReferenceCommandOutput) => void): void;
|
|
494
502
|
/**
|
|
495
503
|
* @see {@link CreateHumanTaskUiCommand}
|
|
496
504
|
*/
|
|
@@ -835,6 +843,12 @@ export interface SageMaker {
|
|
|
835
843
|
deleteHubContent(args: DeleteHubContentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHubContentCommandOutput>;
|
|
836
844
|
deleteHubContent(args: DeleteHubContentCommandInput, cb: (err: any, data?: DeleteHubContentCommandOutput) => void): void;
|
|
837
845
|
deleteHubContent(args: DeleteHubContentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHubContentCommandOutput) => void): void;
|
|
846
|
+
/**
|
|
847
|
+
* @see {@link DeleteHubContentReferenceCommand}
|
|
848
|
+
*/
|
|
849
|
+
deleteHubContentReference(args: DeleteHubContentReferenceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteHubContentReferenceCommandOutput>;
|
|
850
|
+
deleteHubContentReference(args: DeleteHubContentReferenceCommandInput, cb: (err: any, data?: DeleteHubContentReferenceCommandOutput) => void): void;
|
|
851
|
+
deleteHubContentReference(args: DeleteHubContentReferenceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteHubContentReferenceCommandOutput) => void): void;
|
|
838
852
|
/**
|
|
839
853
|
* @see {@link DeleteHumanTaskUiCommand}
|
|
840
854
|
*/
|
|
@@ -34,6 +34,7 @@ import { CreateExperimentCommandInput, CreateExperimentCommandOutput } from "./c
|
|
|
34
34
|
import { CreateFeatureGroupCommandInput, CreateFeatureGroupCommandOutput } from "./commands/CreateFeatureGroupCommand";
|
|
35
35
|
import { CreateFlowDefinitionCommandInput, CreateFlowDefinitionCommandOutput } from "./commands/CreateFlowDefinitionCommand";
|
|
36
36
|
import { CreateHubCommandInput, CreateHubCommandOutput } from "./commands/CreateHubCommand";
|
|
37
|
+
import { CreateHubContentReferenceCommandInput, CreateHubContentReferenceCommandOutput } from "./commands/CreateHubContentReferenceCommand";
|
|
37
38
|
import { CreateHumanTaskUiCommandInput, CreateHumanTaskUiCommandOutput } from "./commands/CreateHumanTaskUiCommand";
|
|
38
39
|
import { CreateHyperParameterTuningJobCommandInput, CreateHyperParameterTuningJobCommandOutput } from "./commands/CreateHyperParameterTuningJobCommand";
|
|
39
40
|
import { CreateImageCommandInput, CreateImageCommandOutput } from "./commands/CreateImageCommand";
|
|
@@ -91,6 +92,7 @@ import { DeleteFeatureGroupCommandInput, DeleteFeatureGroupCommandOutput } from
|
|
|
91
92
|
import { DeleteFlowDefinitionCommandInput, DeleteFlowDefinitionCommandOutput } from "./commands/DeleteFlowDefinitionCommand";
|
|
92
93
|
import { DeleteHubCommandInput, DeleteHubCommandOutput } from "./commands/DeleteHubCommand";
|
|
93
94
|
import { DeleteHubContentCommandInput, DeleteHubContentCommandOutput } from "./commands/DeleteHubContentCommand";
|
|
95
|
+
import { DeleteHubContentReferenceCommandInput, DeleteHubContentReferenceCommandOutput } from "./commands/DeleteHubContentReferenceCommand";
|
|
94
96
|
import { DeleteHumanTaskUiCommandInput, DeleteHumanTaskUiCommandOutput } from "./commands/DeleteHumanTaskUiCommand";
|
|
95
97
|
import { DeleteHyperParameterTuningJobCommandInput, DeleteHyperParameterTuningJobCommandOutput } from "./commands/DeleteHyperParameterTuningJobCommand";
|
|
96
98
|
import { DeleteImageCommandInput, DeleteImageCommandOutput } from "./commands/DeleteImageCommand";
|
|
@@ -341,11 +343,11 @@ export { __Client };
|
|
|
341
343
|
/**
|
|
342
344
|
* @public
|
|
343
345
|
*/
|
|
344
|
-
export type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | BatchDescribeModelPackageCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateAutoMLJobV2CommandInput | CreateClusterCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHubCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceComponentCommandInput | CreateInferenceExperimentCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateMlflowTrackingServerCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCardCommandInput | CreateModelCardExportJobCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedMlflowTrackingServerUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateSpaceCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteClusterCommandInput | DeleteCodeRepositoryCommandInput | DeleteCompilationJobCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHubCommandInput | DeleteHubContentCommandInput | DeleteHumanTaskUiCommandInput | DeleteHyperParameterTuningJobCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteInferenceComponentCommandInput | DeleteInferenceExperimentCommandInput | DeleteMlflowTrackingServerCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCardCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeletePipelineCommandInput | DeleteProjectCommandInput | DeleteSpaceCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeAutoMLJobV2CommandInput | DescribeClusterCommandInput | DescribeClusterNodeCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHubCommandInput | DescribeHubContentCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceComponentCommandInput | DescribeInferenceExperimentCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeMlflowTrackingServerCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCardCommandInput | DescribeModelCardExportJobCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeSpaceCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetScalingConfigurationRecommendationCommandInput | GetSearchSuggestionsCommandInput | ImportHubContentCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAliasesCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListClusterNodesCommandInput | ListClustersCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | ListContextsCommandInput | ListDataQualityJobDefinitionsCommandInput | ListDeviceFleetsCommandInput | ListDevicesCommandInput | ListDomainsCommandInput | ListEdgeDeploymentPlansCommandInput | ListEdgePackagingJobsCommandInput | ListEndpointConfigsCommandInput | ListEndpointsCommandInput | ListExperimentsCommandInput | ListFeatureGroupsCommandInput | ListFlowDefinitionsCommandInput | ListHubContentVersionsCommandInput | ListHubContentsCommandInput | ListHubsCommandInput | ListHumanTaskUisCommandInput | ListHyperParameterTuningJobsCommandInput | ListImageVersionsCommandInput | ListImagesCommandInput | ListInferenceComponentsCommandInput | ListInferenceExperimentsCommandInput | ListInferenceRecommendationsJobStepsCommandInput | ListInferenceRecommendationsJobsCommandInput | ListLabelingJobsCommandInput | ListLabelingJobsForWorkteamCommandInput | ListLineageGroupsCommandInput | ListMlflowTrackingServersCommandInput | ListModelBiasJobDefinitionsCommandInput | ListModelCardExportJobsCommandInput | ListModelCardVersionsCommandInput | ListModelCardsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringAlertHistoryCommandInput | ListMonitoringAlertsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListResourceCatalogsCommandInput | ListSpacesCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartInferenceExperimentCommandInput | StartMlflowTrackingServerCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceExperimentCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMlflowTrackingServerCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateClusterCommandInput | UpdateClusterSoftwareCommandInput | UpdateCodeRepositoryCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateHubCommandInput | UpdateImageCommandInput | UpdateImageVersionCommandInput | UpdateInferenceComponentCommandInput | UpdateInferenceComponentRuntimeConfigCommandInput | UpdateInferenceExperimentCommandInput | UpdateMlflowTrackingServerCommandInput | UpdateModelCardCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringAlertCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdateProjectCommandInput | UpdateSpaceCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
|
|
346
|
+
export type ServiceInputTypes = AddAssociationCommandInput | AddTagsCommandInput | AssociateTrialComponentCommandInput | BatchDescribeModelPackageCommandInput | CreateActionCommandInput | CreateAlgorithmCommandInput | CreateAppCommandInput | CreateAppImageConfigCommandInput | CreateArtifactCommandInput | CreateAutoMLJobCommandInput | CreateAutoMLJobV2CommandInput | CreateClusterCommandInput | CreateCodeRepositoryCommandInput | CreateCompilationJobCommandInput | CreateContextCommandInput | CreateDataQualityJobDefinitionCommandInput | CreateDeviceFleetCommandInput | CreateDomainCommandInput | CreateEdgeDeploymentPlanCommandInput | CreateEdgeDeploymentStageCommandInput | CreateEdgePackagingJobCommandInput | CreateEndpointCommandInput | CreateEndpointConfigCommandInput | CreateExperimentCommandInput | CreateFeatureGroupCommandInput | CreateFlowDefinitionCommandInput | CreateHubCommandInput | CreateHubContentReferenceCommandInput | CreateHumanTaskUiCommandInput | CreateHyperParameterTuningJobCommandInput | CreateImageCommandInput | CreateImageVersionCommandInput | CreateInferenceComponentCommandInput | CreateInferenceExperimentCommandInput | CreateInferenceRecommendationsJobCommandInput | CreateLabelingJobCommandInput | CreateMlflowTrackingServerCommandInput | CreateModelBiasJobDefinitionCommandInput | CreateModelCardCommandInput | CreateModelCardExportJobCommandInput | CreateModelCommandInput | CreateModelExplainabilityJobDefinitionCommandInput | CreateModelPackageCommandInput | CreateModelPackageGroupCommandInput | CreateModelQualityJobDefinitionCommandInput | CreateMonitoringScheduleCommandInput | CreateNotebookInstanceCommandInput | CreateNotebookInstanceLifecycleConfigCommandInput | CreatePipelineCommandInput | CreatePresignedDomainUrlCommandInput | CreatePresignedMlflowTrackingServerUrlCommandInput | CreatePresignedNotebookInstanceUrlCommandInput | CreateProcessingJobCommandInput | CreateProjectCommandInput | CreateSpaceCommandInput | CreateStudioLifecycleConfigCommandInput | CreateTrainingJobCommandInput | CreateTransformJobCommandInput | CreateTrialCommandInput | CreateTrialComponentCommandInput | CreateUserProfileCommandInput | CreateWorkforceCommandInput | CreateWorkteamCommandInput | DeleteActionCommandInput | DeleteAlgorithmCommandInput | DeleteAppCommandInput | DeleteAppImageConfigCommandInput | DeleteArtifactCommandInput | DeleteAssociationCommandInput | DeleteClusterCommandInput | DeleteCodeRepositoryCommandInput | DeleteCompilationJobCommandInput | DeleteContextCommandInput | DeleteDataQualityJobDefinitionCommandInput | DeleteDeviceFleetCommandInput | DeleteDomainCommandInput | DeleteEdgeDeploymentPlanCommandInput | DeleteEdgeDeploymentStageCommandInput | DeleteEndpointCommandInput | DeleteEndpointConfigCommandInput | DeleteExperimentCommandInput | DeleteFeatureGroupCommandInput | DeleteFlowDefinitionCommandInput | DeleteHubCommandInput | DeleteHubContentCommandInput | DeleteHubContentReferenceCommandInput | DeleteHumanTaskUiCommandInput | DeleteHyperParameterTuningJobCommandInput | DeleteImageCommandInput | DeleteImageVersionCommandInput | DeleteInferenceComponentCommandInput | DeleteInferenceExperimentCommandInput | DeleteMlflowTrackingServerCommandInput | DeleteModelBiasJobDefinitionCommandInput | DeleteModelCardCommandInput | DeleteModelCommandInput | DeleteModelExplainabilityJobDefinitionCommandInput | DeleteModelPackageCommandInput | DeleteModelPackageGroupCommandInput | DeleteModelPackageGroupPolicyCommandInput | DeleteModelQualityJobDefinitionCommandInput | DeleteMonitoringScheduleCommandInput | DeleteNotebookInstanceCommandInput | DeleteNotebookInstanceLifecycleConfigCommandInput | DeletePipelineCommandInput | DeleteProjectCommandInput | DeleteSpaceCommandInput | DeleteStudioLifecycleConfigCommandInput | DeleteTagsCommandInput | DeleteTrialCommandInput | DeleteTrialComponentCommandInput | DeleteUserProfileCommandInput | DeleteWorkforceCommandInput | DeleteWorkteamCommandInput | DeregisterDevicesCommandInput | DescribeActionCommandInput | DescribeAlgorithmCommandInput | DescribeAppCommandInput | DescribeAppImageConfigCommandInput | DescribeArtifactCommandInput | DescribeAutoMLJobCommandInput | DescribeAutoMLJobV2CommandInput | DescribeClusterCommandInput | DescribeClusterNodeCommandInput | DescribeCodeRepositoryCommandInput | DescribeCompilationJobCommandInput | DescribeContextCommandInput | DescribeDataQualityJobDefinitionCommandInput | DescribeDeviceCommandInput | DescribeDeviceFleetCommandInput | DescribeDomainCommandInput | DescribeEdgeDeploymentPlanCommandInput | DescribeEdgePackagingJobCommandInput | DescribeEndpointCommandInput | DescribeEndpointConfigCommandInput | DescribeExperimentCommandInput | DescribeFeatureGroupCommandInput | DescribeFeatureMetadataCommandInput | DescribeFlowDefinitionCommandInput | DescribeHubCommandInput | DescribeHubContentCommandInput | DescribeHumanTaskUiCommandInput | DescribeHyperParameterTuningJobCommandInput | DescribeImageCommandInput | DescribeImageVersionCommandInput | DescribeInferenceComponentCommandInput | DescribeInferenceExperimentCommandInput | DescribeInferenceRecommendationsJobCommandInput | DescribeLabelingJobCommandInput | DescribeLineageGroupCommandInput | DescribeMlflowTrackingServerCommandInput | DescribeModelBiasJobDefinitionCommandInput | DescribeModelCardCommandInput | DescribeModelCardExportJobCommandInput | DescribeModelCommandInput | DescribeModelExplainabilityJobDefinitionCommandInput | DescribeModelPackageCommandInput | DescribeModelPackageGroupCommandInput | DescribeModelQualityJobDefinitionCommandInput | DescribeMonitoringScheduleCommandInput | DescribeNotebookInstanceCommandInput | DescribeNotebookInstanceLifecycleConfigCommandInput | DescribePipelineCommandInput | DescribePipelineDefinitionForExecutionCommandInput | DescribePipelineExecutionCommandInput | DescribeProcessingJobCommandInput | DescribeProjectCommandInput | DescribeSpaceCommandInput | DescribeStudioLifecycleConfigCommandInput | DescribeSubscribedWorkteamCommandInput | DescribeTrainingJobCommandInput | DescribeTransformJobCommandInput | DescribeTrialCommandInput | DescribeTrialComponentCommandInput | DescribeUserProfileCommandInput | DescribeWorkforceCommandInput | DescribeWorkteamCommandInput | DisableSagemakerServicecatalogPortfolioCommandInput | DisassociateTrialComponentCommandInput | EnableSagemakerServicecatalogPortfolioCommandInput | GetDeviceFleetReportCommandInput | GetLineageGroupPolicyCommandInput | GetModelPackageGroupPolicyCommandInput | GetSagemakerServicecatalogPortfolioStatusCommandInput | GetScalingConfigurationRecommendationCommandInput | GetSearchSuggestionsCommandInput | ImportHubContentCommandInput | ListActionsCommandInput | ListAlgorithmsCommandInput | ListAliasesCommandInput | ListAppImageConfigsCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListAssociationsCommandInput | ListAutoMLJobsCommandInput | ListCandidatesForAutoMLJobCommandInput | ListClusterNodesCommandInput | ListClustersCommandInput | ListCodeRepositoriesCommandInput | ListCompilationJobsCommandInput | ListContextsCommandInput | ListDataQualityJobDefinitionsCommandInput | ListDeviceFleetsCommandInput | ListDevicesCommandInput | ListDomainsCommandInput | ListEdgeDeploymentPlansCommandInput | ListEdgePackagingJobsCommandInput | ListEndpointConfigsCommandInput | ListEndpointsCommandInput | ListExperimentsCommandInput | ListFeatureGroupsCommandInput | ListFlowDefinitionsCommandInput | ListHubContentVersionsCommandInput | ListHubContentsCommandInput | ListHubsCommandInput | ListHumanTaskUisCommandInput | ListHyperParameterTuningJobsCommandInput | ListImageVersionsCommandInput | ListImagesCommandInput | ListInferenceComponentsCommandInput | ListInferenceExperimentsCommandInput | ListInferenceRecommendationsJobStepsCommandInput | ListInferenceRecommendationsJobsCommandInput | ListLabelingJobsCommandInput | ListLabelingJobsForWorkteamCommandInput | ListLineageGroupsCommandInput | ListMlflowTrackingServersCommandInput | ListModelBiasJobDefinitionsCommandInput | ListModelCardExportJobsCommandInput | ListModelCardVersionsCommandInput | ListModelCardsCommandInput | ListModelExplainabilityJobDefinitionsCommandInput | ListModelMetadataCommandInput | ListModelPackageGroupsCommandInput | ListModelPackagesCommandInput | ListModelQualityJobDefinitionsCommandInput | ListModelsCommandInput | ListMonitoringAlertHistoryCommandInput | ListMonitoringAlertsCommandInput | ListMonitoringExecutionsCommandInput | ListMonitoringSchedulesCommandInput | ListNotebookInstanceLifecycleConfigsCommandInput | ListNotebookInstancesCommandInput | ListPipelineExecutionStepsCommandInput | ListPipelineExecutionsCommandInput | ListPipelineParametersForExecutionCommandInput | ListPipelinesCommandInput | ListProcessingJobsCommandInput | ListProjectsCommandInput | ListResourceCatalogsCommandInput | ListSpacesCommandInput | ListStageDevicesCommandInput | ListStudioLifecycleConfigsCommandInput | ListSubscribedWorkteamsCommandInput | ListTagsCommandInput | ListTrainingJobsCommandInput | ListTrainingJobsForHyperParameterTuningJobCommandInput | ListTransformJobsCommandInput | ListTrialComponentsCommandInput | ListTrialsCommandInput | ListUserProfilesCommandInput | ListWorkforcesCommandInput | ListWorkteamsCommandInput | PutModelPackageGroupPolicyCommandInput | QueryLineageCommandInput | RegisterDevicesCommandInput | RenderUiTemplateCommandInput | RetryPipelineExecutionCommandInput | SearchCommandInput | SendPipelineExecutionStepFailureCommandInput | SendPipelineExecutionStepSuccessCommandInput | StartEdgeDeploymentStageCommandInput | StartInferenceExperimentCommandInput | StartMlflowTrackingServerCommandInput | StartMonitoringScheduleCommandInput | StartNotebookInstanceCommandInput | StartPipelineExecutionCommandInput | StopAutoMLJobCommandInput | StopCompilationJobCommandInput | StopEdgeDeploymentStageCommandInput | StopEdgePackagingJobCommandInput | StopHyperParameterTuningJobCommandInput | StopInferenceExperimentCommandInput | StopInferenceRecommendationsJobCommandInput | StopLabelingJobCommandInput | StopMlflowTrackingServerCommandInput | StopMonitoringScheduleCommandInput | StopNotebookInstanceCommandInput | StopPipelineExecutionCommandInput | StopProcessingJobCommandInput | StopTrainingJobCommandInput | StopTransformJobCommandInput | UpdateActionCommandInput | UpdateAppImageConfigCommandInput | UpdateArtifactCommandInput | UpdateClusterCommandInput | UpdateClusterSoftwareCommandInput | UpdateCodeRepositoryCommandInput | UpdateContextCommandInput | UpdateDeviceFleetCommandInput | UpdateDevicesCommandInput | UpdateDomainCommandInput | UpdateEndpointCommandInput | UpdateEndpointWeightsAndCapacitiesCommandInput | UpdateExperimentCommandInput | UpdateFeatureGroupCommandInput | UpdateFeatureMetadataCommandInput | UpdateHubCommandInput | UpdateImageCommandInput | UpdateImageVersionCommandInput | UpdateInferenceComponentCommandInput | UpdateInferenceComponentRuntimeConfigCommandInput | UpdateInferenceExperimentCommandInput | UpdateMlflowTrackingServerCommandInput | UpdateModelCardCommandInput | UpdateModelPackageCommandInput | UpdateMonitoringAlertCommandInput | UpdateMonitoringScheduleCommandInput | UpdateNotebookInstanceCommandInput | UpdateNotebookInstanceLifecycleConfigCommandInput | UpdatePipelineCommandInput | UpdatePipelineExecutionCommandInput | UpdateProjectCommandInput | UpdateSpaceCommandInput | UpdateTrainingJobCommandInput | UpdateTrialCommandInput | UpdateTrialComponentCommandInput | UpdateUserProfileCommandInput | UpdateWorkforceCommandInput | UpdateWorkteamCommandInput;
|
|
345
347
|
/**
|
|
346
348
|
* @public
|
|
347
349
|
*/
|
|
348
|
-
export type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | BatchDescribeModelPackageCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateAutoMLJobV2CommandOutput | CreateClusterCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHubCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceComponentCommandOutput | CreateInferenceExperimentCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateMlflowTrackingServerCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCardCommandOutput | CreateModelCardExportJobCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedMlflowTrackingServerUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateSpaceCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteClusterCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteCompilationJobCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHubCommandOutput | DeleteHubContentCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteHyperParameterTuningJobCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteInferenceComponentCommandOutput | DeleteInferenceExperimentCommandOutput | DeleteMlflowTrackingServerCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCardCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeletePipelineCommandOutput | DeleteProjectCommandOutput | DeleteSpaceCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeAutoMLJobV2CommandOutput | DescribeClusterCommandOutput | DescribeClusterNodeCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHubCommandOutput | DescribeHubContentCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceComponentCommandOutput | DescribeInferenceExperimentCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeMlflowTrackingServerCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCardCommandOutput | DescribeModelCardExportJobCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeSpaceCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetScalingConfigurationRecommendationCommandOutput | GetSearchSuggestionsCommandOutput | ImportHubContentCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAliasesCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListClusterNodesCommandOutput | ListClustersCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | ListContextsCommandOutput | ListDataQualityJobDefinitionsCommandOutput | ListDeviceFleetsCommandOutput | ListDevicesCommandOutput | ListDomainsCommandOutput | ListEdgeDeploymentPlansCommandOutput | ListEdgePackagingJobsCommandOutput | ListEndpointConfigsCommandOutput | ListEndpointsCommandOutput | ListExperimentsCommandOutput | ListFeatureGroupsCommandOutput | ListFlowDefinitionsCommandOutput | ListHubContentVersionsCommandOutput | ListHubContentsCommandOutput | ListHubsCommandOutput | ListHumanTaskUisCommandOutput | ListHyperParameterTuningJobsCommandOutput | ListImageVersionsCommandOutput | ListImagesCommandOutput | ListInferenceComponentsCommandOutput | ListInferenceExperimentsCommandOutput | ListInferenceRecommendationsJobStepsCommandOutput | ListInferenceRecommendationsJobsCommandOutput | ListLabelingJobsCommandOutput | ListLabelingJobsForWorkteamCommandOutput | ListLineageGroupsCommandOutput | ListMlflowTrackingServersCommandOutput | ListModelBiasJobDefinitionsCommandOutput | ListModelCardExportJobsCommandOutput | ListModelCardVersionsCommandOutput | ListModelCardsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringAlertHistoryCommandOutput | ListMonitoringAlertsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListResourceCatalogsCommandOutput | ListSpacesCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartInferenceExperimentCommandOutput | StartMlflowTrackingServerCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceExperimentCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMlflowTrackingServerCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateClusterCommandOutput | UpdateClusterSoftwareCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateHubCommandOutput | UpdateImageCommandOutput | UpdateImageVersionCommandOutput | UpdateInferenceComponentCommandOutput | UpdateInferenceComponentRuntimeConfigCommandOutput | UpdateInferenceExperimentCommandOutput | UpdateMlflowTrackingServerCommandOutput | UpdateModelCardCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringAlertCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdateProjectCommandOutput | UpdateSpaceCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
|
|
350
|
+
export type ServiceOutputTypes = AddAssociationCommandOutput | AddTagsCommandOutput | AssociateTrialComponentCommandOutput | BatchDescribeModelPackageCommandOutput | CreateActionCommandOutput | CreateAlgorithmCommandOutput | CreateAppCommandOutput | CreateAppImageConfigCommandOutput | CreateArtifactCommandOutput | CreateAutoMLJobCommandOutput | CreateAutoMLJobV2CommandOutput | CreateClusterCommandOutput | CreateCodeRepositoryCommandOutput | CreateCompilationJobCommandOutput | CreateContextCommandOutput | CreateDataQualityJobDefinitionCommandOutput | CreateDeviceFleetCommandOutput | CreateDomainCommandOutput | CreateEdgeDeploymentPlanCommandOutput | CreateEdgeDeploymentStageCommandOutput | CreateEdgePackagingJobCommandOutput | CreateEndpointCommandOutput | CreateEndpointConfigCommandOutput | CreateExperimentCommandOutput | CreateFeatureGroupCommandOutput | CreateFlowDefinitionCommandOutput | CreateHubCommandOutput | CreateHubContentReferenceCommandOutput | CreateHumanTaskUiCommandOutput | CreateHyperParameterTuningJobCommandOutput | CreateImageCommandOutput | CreateImageVersionCommandOutput | CreateInferenceComponentCommandOutput | CreateInferenceExperimentCommandOutput | CreateInferenceRecommendationsJobCommandOutput | CreateLabelingJobCommandOutput | CreateMlflowTrackingServerCommandOutput | CreateModelBiasJobDefinitionCommandOutput | CreateModelCardCommandOutput | CreateModelCardExportJobCommandOutput | CreateModelCommandOutput | CreateModelExplainabilityJobDefinitionCommandOutput | CreateModelPackageCommandOutput | CreateModelPackageGroupCommandOutput | CreateModelQualityJobDefinitionCommandOutput | CreateMonitoringScheduleCommandOutput | CreateNotebookInstanceCommandOutput | CreateNotebookInstanceLifecycleConfigCommandOutput | CreatePipelineCommandOutput | CreatePresignedDomainUrlCommandOutput | CreatePresignedMlflowTrackingServerUrlCommandOutput | CreatePresignedNotebookInstanceUrlCommandOutput | CreateProcessingJobCommandOutput | CreateProjectCommandOutput | CreateSpaceCommandOutput | CreateStudioLifecycleConfigCommandOutput | CreateTrainingJobCommandOutput | CreateTransformJobCommandOutput | CreateTrialCommandOutput | CreateTrialComponentCommandOutput | CreateUserProfileCommandOutput | CreateWorkforceCommandOutput | CreateWorkteamCommandOutput | DeleteActionCommandOutput | DeleteAlgorithmCommandOutput | DeleteAppCommandOutput | DeleteAppImageConfigCommandOutput | DeleteArtifactCommandOutput | DeleteAssociationCommandOutput | DeleteClusterCommandOutput | DeleteCodeRepositoryCommandOutput | DeleteCompilationJobCommandOutput | DeleteContextCommandOutput | DeleteDataQualityJobDefinitionCommandOutput | DeleteDeviceFleetCommandOutput | DeleteDomainCommandOutput | DeleteEdgeDeploymentPlanCommandOutput | DeleteEdgeDeploymentStageCommandOutput | DeleteEndpointCommandOutput | DeleteEndpointConfigCommandOutput | DeleteExperimentCommandOutput | DeleteFeatureGroupCommandOutput | DeleteFlowDefinitionCommandOutput | DeleteHubCommandOutput | DeleteHubContentCommandOutput | DeleteHubContentReferenceCommandOutput | DeleteHumanTaskUiCommandOutput | DeleteHyperParameterTuningJobCommandOutput | DeleteImageCommandOutput | DeleteImageVersionCommandOutput | DeleteInferenceComponentCommandOutput | DeleteInferenceExperimentCommandOutput | DeleteMlflowTrackingServerCommandOutput | DeleteModelBiasJobDefinitionCommandOutput | DeleteModelCardCommandOutput | DeleteModelCommandOutput | DeleteModelExplainabilityJobDefinitionCommandOutput | DeleteModelPackageCommandOutput | DeleteModelPackageGroupCommandOutput | DeleteModelPackageGroupPolicyCommandOutput | DeleteModelQualityJobDefinitionCommandOutput | DeleteMonitoringScheduleCommandOutput | DeleteNotebookInstanceCommandOutput | DeleteNotebookInstanceLifecycleConfigCommandOutput | DeletePipelineCommandOutput | DeleteProjectCommandOutput | DeleteSpaceCommandOutput | DeleteStudioLifecycleConfigCommandOutput | DeleteTagsCommandOutput | DeleteTrialCommandOutput | DeleteTrialComponentCommandOutput | DeleteUserProfileCommandOutput | DeleteWorkforceCommandOutput | DeleteWorkteamCommandOutput | DeregisterDevicesCommandOutput | DescribeActionCommandOutput | DescribeAlgorithmCommandOutput | DescribeAppCommandOutput | DescribeAppImageConfigCommandOutput | DescribeArtifactCommandOutput | DescribeAutoMLJobCommandOutput | DescribeAutoMLJobV2CommandOutput | DescribeClusterCommandOutput | DescribeClusterNodeCommandOutput | DescribeCodeRepositoryCommandOutput | DescribeCompilationJobCommandOutput | DescribeContextCommandOutput | DescribeDataQualityJobDefinitionCommandOutput | DescribeDeviceCommandOutput | DescribeDeviceFleetCommandOutput | DescribeDomainCommandOutput | DescribeEdgeDeploymentPlanCommandOutput | DescribeEdgePackagingJobCommandOutput | DescribeEndpointCommandOutput | DescribeEndpointConfigCommandOutput | DescribeExperimentCommandOutput | DescribeFeatureGroupCommandOutput | DescribeFeatureMetadataCommandOutput | DescribeFlowDefinitionCommandOutput | DescribeHubCommandOutput | DescribeHubContentCommandOutput | DescribeHumanTaskUiCommandOutput | DescribeHyperParameterTuningJobCommandOutput | DescribeImageCommandOutput | DescribeImageVersionCommandOutput | DescribeInferenceComponentCommandOutput | DescribeInferenceExperimentCommandOutput | DescribeInferenceRecommendationsJobCommandOutput | DescribeLabelingJobCommandOutput | DescribeLineageGroupCommandOutput | DescribeMlflowTrackingServerCommandOutput | DescribeModelBiasJobDefinitionCommandOutput | DescribeModelCardCommandOutput | DescribeModelCardExportJobCommandOutput | DescribeModelCommandOutput | DescribeModelExplainabilityJobDefinitionCommandOutput | DescribeModelPackageCommandOutput | DescribeModelPackageGroupCommandOutput | DescribeModelQualityJobDefinitionCommandOutput | DescribeMonitoringScheduleCommandOutput | DescribeNotebookInstanceCommandOutput | DescribeNotebookInstanceLifecycleConfigCommandOutput | DescribePipelineCommandOutput | DescribePipelineDefinitionForExecutionCommandOutput | DescribePipelineExecutionCommandOutput | DescribeProcessingJobCommandOutput | DescribeProjectCommandOutput | DescribeSpaceCommandOutput | DescribeStudioLifecycleConfigCommandOutput | DescribeSubscribedWorkteamCommandOutput | DescribeTrainingJobCommandOutput | DescribeTransformJobCommandOutput | DescribeTrialCommandOutput | DescribeTrialComponentCommandOutput | DescribeUserProfileCommandOutput | DescribeWorkforceCommandOutput | DescribeWorkteamCommandOutput | DisableSagemakerServicecatalogPortfolioCommandOutput | DisassociateTrialComponentCommandOutput | EnableSagemakerServicecatalogPortfolioCommandOutput | GetDeviceFleetReportCommandOutput | GetLineageGroupPolicyCommandOutput | GetModelPackageGroupPolicyCommandOutput | GetSagemakerServicecatalogPortfolioStatusCommandOutput | GetScalingConfigurationRecommendationCommandOutput | GetSearchSuggestionsCommandOutput | ImportHubContentCommandOutput | ListActionsCommandOutput | ListAlgorithmsCommandOutput | ListAliasesCommandOutput | ListAppImageConfigsCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListAssociationsCommandOutput | ListAutoMLJobsCommandOutput | ListCandidatesForAutoMLJobCommandOutput | ListClusterNodesCommandOutput | ListClustersCommandOutput | ListCodeRepositoriesCommandOutput | ListCompilationJobsCommandOutput | ListContextsCommandOutput | ListDataQualityJobDefinitionsCommandOutput | ListDeviceFleetsCommandOutput | ListDevicesCommandOutput | ListDomainsCommandOutput | ListEdgeDeploymentPlansCommandOutput | ListEdgePackagingJobsCommandOutput | ListEndpointConfigsCommandOutput | ListEndpointsCommandOutput | ListExperimentsCommandOutput | ListFeatureGroupsCommandOutput | ListFlowDefinitionsCommandOutput | ListHubContentVersionsCommandOutput | ListHubContentsCommandOutput | ListHubsCommandOutput | ListHumanTaskUisCommandOutput | ListHyperParameterTuningJobsCommandOutput | ListImageVersionsCommandOutput | ListImagesCommandOutput | ListInferenceComponentsCommandOutput | ListInferenceExperimentsCommandOutput | ListInferenceRecommendationsJobStepsCommandOutput | ListInferenceRecommendationsJobsCommandOutput | ListLabelingJobsCommandOutput | ListLabelingJobsForWorkteamCommandOutput | ListLineageGroupsCommandOutput | ListMlflowTrackingServersCommandOutput | ListModelBiasJobDefinitionsCommandOutput | ListModelCardExportJobsCommandOutput | ListModelCardVersionsCommandOutput | ListModelCardsCommandOutput | ListModelExplainabilityJobDefinitionsCommandOutput | ListModelMetadataCommandOutput | ListModelPackageGroupsCommandOutput | ListModelPackagesCommandOutput | ListModelQualityJobDefinitionsCommandOutput | ListModelsCommandOutput | ListMonitoringAlertHistoryCommandOutput | ListMonitoringAlertsCommandOutput | ListMonitoringExecutionsCommandOutput | ListMonitoringSchedulesCommandOutput | ListNotebookInstanceLifecycleConfigsCommandOutput | ListNotebookInstancesCommandOutput | ListPipelineExecutionStepsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelineParametersForExecutionCommandOutput | ListPipelinesCommandOutput | ListProcessingJobsCommandOutput | ListProjectsCommandOutput | ListResourceCatalogsCommandOutput | ListSpacesCommandOutput | ListStageDevicesCommandOutput | ListStudioLifecycleConfigsCommandOutput | ListSubscribedWorkteamsCommandOutput | ListTagsCommandOutput | ListTrainingJobsCommandOutput | ListTrainingJobsForHyperParameterTuningJobCommandOutput | ListTransformJobsCommandOutput | ListTrialComponentsCommandOutput | ListTrialsCommandOutput | ListUserProfilesCommandOutput | ListWorkforcesCommandOutput | ListWorkteamsCommandOutput | PutModelPackageGroupPolicyCommandOutput | QueryLineageCommandOutput | RegisterDevicesCommandOutput | RenderUiTemplateCommandOutput | RetryPipelineExecutionCommandOutput | SearchCommandOutput | SendPipelineExecutionStepFailureCommandOutput | SendPipelineExecutionStepSuccessCommandOutput | StartEdgeDeploymentStageCommandOutput | StartInferenceExperimentCommandOutput | StartMlflowTrackingServerCommandOutput | StartMonitoringScheduleCommandOutput | StartNotebookInstanceCommandOutput | StartPipelineExecutionCommandOutput | StopAutoMLJobCommandOutput | StopCompilationJobCommandOutput | StopEdgeDeploymentStageCommandOutput | StopEdgePackagingJobCommandOutput | StopHyperParameterTuningJobCommandOutput | StopInferenceExperimentCommandOutput | StopInferenceRecommendationsJobCommandOutput | StopLabelingJobCommandOutput | StopMlflowTrackingServerCommandOutput | StopMonitoringScheduleCommandOutput | StopNotebookInstanceCommandOutput | StopPipelineExecutionCommandOutput | StopProcessingJobCommandOutput | StopTrainingJobCommandOutput | StopTransformJobCommandOutput | UpdateActionCommandOutput | UpdateAppImageConfigCommandOutput | UpdateArtifactCommandOutput | UpdateClusterCommandOutput | UpdateClusterSoftwareCommandOutput | UpdateCodeRepositoryCommandOutput | UpdateContextCommandOutput | UpdateDeviceFleetCommandOutput | UpdateDevicesCommandOutput | UpdateDomainCommandOutput | UpdateEndpointCommandOutput | UpdateEndpointWeightsAndCapacitiesCommandOutput | UpdateExperimentCommandOutput | UpdateFeatureGroupCommandOutput | UpdateFeatureMetadataCommandOutput | UpdateHubCommandOutput | UpdateImageCommandOutput | UpdateImageVersionCommandOutput | UpdateInferenceComponentCommandOutput | UpdateInferenceComponentRuntimeConfigCommandOutput | UpdateInferenceExperimentCommandOutput | UpdateMlflowTrackingServerCommandOutput | UpdateModelCardCommandOutput | UpdateModelPackageCommandOutput | UpdateMonitoringAlertCommandOutput | UpdateMonitoringScheduleCommandOutput | UpdateNotebookInstanceCommandOutput | UpdateNotebookInstanceLifecycleConfigCommandOutput | UpdatePipelineCommandOutput | UpdatePipelineExecutionCommandOutput | UpdateProjectCommandOutput | UpdateSpaceCommandOutput | UpdateTrainingJobCommandOutput | UpdateTrialCommandOutput | UpdateTrialComponentCommandOutput | UpdateUserProfileCommandOutput | UpdateWorkforceCommandOutput | UpdateWorkteamCommandOutput;
|
|
349
351
|
/**
|
|
350
352
|
* @public
|
|
351
353
|
*/
|
|
@@ -64,6 +64,9 @@ declare const BatchDescribeModelPackageCommand_base: {
|
|
|
64
64
|
* // ModelAccessConfig: { // ModelAccessConfig
|
|
65
65
|
* // AcceptEula: true || false, // required
|
|
66
66
|
* // },
|
|
67
|
+
* // HubAccessConfig: { // InferenceHubAccessConfig
|
|
68
|
+
* // HubContentArn: "STRING_VALUE", // required
|
|
69
|
+
* // },
|
|
67
70
|
* // },
|
|
68
71
|
* // },
|
|
69
72
|
* // ProductId: "STRING_VALUE",
|
|
@@ -118,6 +118,9 @@ declare const CreateAlgorithmCommand_base: {
|
|
|
118
118
|
* ModelAccessConfig: { // ModelAccessConfig
|
|
119
119
|
* AcceptEula: true || false, // required
|
|
120
120
|
* },
|
|
121
|
+
* HubAccessConfig: { // InferenceHubAccessConfig
|
|
122
|
+
* HubContentArn: "STRING_VALUE", // required
|
|
123
|
+
* },
|
|
121
124
|
* },
|
|
122
125
|
* },
|
|
123
126
|
* ProductId: "STRING_VALUE",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { CreateCodeRepositoryInput
|
|
3
|
+
import { CreateCodeRepositoryInput } from "../models/models_0";
|
|
4
|
+
import { CreateCodeRepositoryOutput } from "../models/models_1";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
@@ -28,9 +28,6 @@ declare const CreateHubCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Create a hub.</p>
|
|
31
|
-
* <note>
|
|
32
|
-
* <p>Hub APIs are only callable through SageMaker Studio.</p>
|
|
33
|
-
* </note>
|
|
34
31
|
* @example
|
|
35
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
33
|
* ```javascript
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CreateHubContentReferenceRequest, CreateHubContentReferenceResponse } from "../models/models_1";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateHubContentReferenceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateHubContentReferenceCommandInput extends CreateHubContentReferenceRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateHubContentReferenceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateHubContentReferenceCommandOutput extends CreateHubContentReferenceResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateHubContentReferenceCommand_base: {
|
|
25
|
+
new (input: CreateHubContentReferenceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHubContentReferenceCommandInput, CreateHubContentReferenceCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: CreateHubContentReferenceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateHubContentReferenceCommandInput, CreateHubContentReferenceCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Create a hub content reference in order to add a model in the JumpStart public hub to a private hub.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SageMakerClient, CreateHubContentReferenceCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
35
|
+
* // const { SageMakerClient, CreateHubContentReferenceCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
36
|
+
* const client = new SageMakerClient(config);
|
|
37
|
+
* const input = { // CreateHubContentReferenceRequest
|
|
38
|
+
* HubName: "STRING_VALUE", // required
|
|
39
|
+
* SageMakerPublicHubContentArn: "STRING_VALUE", // required
|
|
40
|
+
* HubContentName: "STRING_VALUE",
|
|
41
|
+
* MinVersion: "STRING_VALUE",
|
|
42
|
+
* Tags: [ // TagList
|
|
43
|
+
* { // Tag
|
|
44
|
+
* Key: "STRING_VALUE", // required
|
|
45
|
+
* Value: "STRING_VALUE", // required
|
|
46
|
+
* },
|
|
47
|
+
* ],
|
|
48
|
+
* };
|
|
49
|
+
* const command = new CreateHubContentReferenceCommand(input);
|
|
50
|
+
* const response = await client.send(command);
|
|
51
|
+
* // { // CreateHubContentReferenceResponse
|
|
52
|
+
* // HubArn: "STRING_VALUE", // required
|
|
53
|
+
* // HubContentArn: "STRING_VALUE", // required
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
56
|
+
* ```
|
|
57
|
+
*
|
|
58
|
+
* @param CreateHubContentReferenceCommandInput - {@link CreateHubContentReferenceCommandInput}
|
|
59
|
+
* @returns {@link CreateHubContentReferenceCommandOutput}
|
|
60
|
+
* @see {@link CreateHubContentReferenceCommandInput} for command's `input` shape.
|
|
61
|
+
* @see {@link CreateHubContentReferenceCommandOutput} for command's `response` shape.
|
|
62
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ResourceInUse} (client fault)
|
|
65
|
+
* <p>Resource being accessed is in use.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ResourceLimitExceeded} (client fault)
|
|
68
|
+
* <p> You have exceeded an SageMaker resource limit. For example, you might have too many
|
|
69
|
+
* training jobs created. </p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ResourceNotFound} (client fault)
|
|
72
|
+
* <p>Resource being access is not found.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link SageMakerServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from SageMaker service.</p>
|
|
76
|
+
*
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
export declare class CreateHubContentReferenceCommand extends CreateHubContentReferenceCommand_base {
|
|
80
|
+
}
|
|
@@ -71,6 +71,9 @@ declare const CreateModelCommand_base: {
|
|
|
71
71
|
* ModelAccessConfig: { // ModelAccessConfig
|
|
72
72
|
* AcceptEula: true || false, // required
|
|
73
73
|
* },
|
|
74
|
+
* HubAccessConfig: { // InferenceHubAccessConfig
|
|
75
|
+
* HubContentArn: "STRING_VALUE", // required
|
|
76
|
+
* },
|
|
74
77
|
* },
|
|
75
78
|
* },
|
|
76
79
|
* Environment: { // EnvironmentMap
|
|
@@ -102,6 +105,9 @@ declare const CreateModelCommand_base: {
|
|
|
102
105
|
* ModelAccessConfig: {
|
|
103
106
|
* AcceptEula: true || false, // required
|
|
104
107
|
* },
|
|
108
|
+
* HubAccessConfig: {
|
|
109
|
+
* HubContentArn: "STRING_VALUE", // required
|
|
110
|
+
* },
|
|
105
111
|
* },
|
|
106
112
|
* },
|
|
107
113
|
* Environment: {
|
|
@@ -72,6 +72,9 @@ declare const CreateModelPackageCommand_base: {
|
|
|
72
72
|
* ModelAccessConfig: { // ModelAccessConfig
|
|
73
73
|
* AcceptEula: true || false, // required
|
|
74
74
|
* },
|
|
75
|
+
* HubAccessConfig: { // InferenceHubAccessConfig
|
|
76
|
+
* HubContentArn: "STRING_VALUE", // required
|
|
77
|
+
* },
|
|
75
78
|
* },
|
|
76
79
|
* },
|
|
77
80
|
* ProductId: "STRING_VALUE",
|
|
@@ -154,6 +157,9 @@ declare const CreateModelPackageCommand_base: {
|
|
|
154
157
|
* ModelAccessConfig: {
|
|
155
158
|
* AcceptEula: true || false, // required
|
|
156
159
|
* },
|
|
160
|
+
* HubAccessConfig: {
|
|
161
|
+
* HubContentArn: "STRING_VALUE", // required
|
|
162
|
+
* },
|
|
157
163
|
* },
|
|
158
164
|
* },
|
|
159
165
|
* AlgorithmName: "STRING_VALUE", // required
|
|
@@ -264,6 +270,9 @@ declare const CreateModelPackageCommand_base: {
|
|
|
264
270
|
* ModelAccessConfig: {
|
|
265
271
|
* AcceptEula: true || false, // required
|
|
266
272
|
* },
|
|
273
|
+
* HubAccessConfig: {
|
|
274
|
+
* HubContentArn: "STRING_VALUE", // required
|
|
275
|
+
* },
|
|
267
276
|
* },
|
|
268
277
|
* },
|
|
269
278
|
* ProductId: "STRING_VALUE",
|
|
@@ -28,9 +28,6 @@ declare const DeleteHubCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Delete a hub.</p>
|
|
31
|
-
* <note>
|
|
32
|
-
* <p>Hub APIs are only callable through SageMaker Studio.</p>
|
|
33
|
-
* </note>
|
|
34
31
|
* @example
|
|
35
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
33
|
* ```javascript
|
|
@@ -28,9 +28,6 @@ declare const DeleteHubContentCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Delete the contents of a hub.</p>
|
|
31
|
-
* <note>
|
|
32
|
-
* <p>Hub APIs are only callable through SageMaker Studio.</p>
|
|
33
|
-
* </note>
|
|
34
31
|
* @example
|
|
35
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
33
|
* ```javascript
|
|
@@ -39,7 +36,7 @@ declare const DeleteHubContentCommand_base: {
|
|
|
39
36
|
* const client = new SageMakerClient(config);
|
|
40
37
|
* const input = { // DeleteHubContentRequest
|
|
41
38
|
* HubName: "STRING_VALUE", // required
|
|
42
|
-
* HubContentType: "Model" || "Notebook", // required
|
|
39
|
+
* HubContentType: "Model" || "Notebook" || "ModelReference", // required
|
|
43
40
|
* HubContentName: "STRING_VALUE", // required
|
|
44
41
|
* HubContentVersion: "STRING_VALUE", // required
|
|
45
42
|
* };
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteHubContentReferenceRequest } from "../models/models_2";
|
|
4
|
+
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteHubContentReferenceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteHubContentReferenceCommandInput extends DeleteHubContentReferenceRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteHubContentReferenceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteHubContentReferenceCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteHubContentReferenceCommand_base: {
|
|
25
|
+
new (input: DeleteHubContentReferenceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteHubContentReferenceCommandInput, DeleteHubContentReferenceCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteHubContentReferenceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteHubContentReferenceCommandInput, DeleteHubContentReferenceCommandOutput, SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Delete a hub content reference in order to remove a model from a private hub.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { SageMakerClient, DeleteHubContentReferenceCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import
|
|
35
|
+
* // const { SageMakerClient, DeleteHubContentReferenceCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import
|
|
36
|
+
* const client = new SageMakerClient(config);
|
|
37
|
+
* const input = { // DeleteHubContentReferenceRequest
|
|
38
|
+
* HubName: "STRING_VALUE", // required
|
|
39
|
+
* HubContentType: "Model" || "Notebook" || "ModelReference", // required
|
|
40
|
+
* HubContentName: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new DeleteHubContentReferenceCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param DeleteHubContentReferenceCommandInput - {@link DeleteHubContentReferenceCommandInput}
|
|
49
|
+
* @returns {@link DeleteHubContentReferenceCommandOutput}
|
|
50
|
+
* @see {@link DeleteHubContentReferenceCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link DeleteHubContentReferenceCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ResourceNotFound} (client fault)
|
|
55
|
+
* <p>Resource being access is not found.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link SageMakerServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from SageMaker service.</p>
|
|
59
|
+
*
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
export declare class DeleteHubContentReferenceCommand extends DeleteHubContentReferenceCommand_base {
|
|
63
|
+
}
|
|
@@ -125,6 +125,9 @@ declare const DescribeAlgorithmCommand_base: {
|
|
|
125
125
|
* // ModelAccessConfig: { // ModelAccessConfig
|
|
126
126
|
* // AcceptEula: true || false, // required
|
|
127
127
|
* // },
|
|
128
|
+
* // HubAccessConfig: { // InferenceHubAccessConfig
|
|
129
|
+
* // HubContentArn: "STRING_VALUE", // required
|
|
130
|
+
* // },
|
|
128
131
|
* // },
|
|
129
132
|
* // },
|
|
130
133
|
* // ProductId: "STRING_VALUE",
|
|
@@ -27,10 +27,7 @@ declare const DescribeHubCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
31
|
-
* <note>
|
|
32
|
-
* <p>Hub APIs are only callable through SageMaker Studio.</p>
|
|
33
|
-
* </note>
|
|
30
|
+
* <p>Describes a hub.</p>
|
|
34
31
|
* @example
|
|
35
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
33
|
* ```javascript
|
|
@@ -28,9 +28,6 @@ declare const DescribeHubContentCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Describe the content of a hub.</p>
|
|
31
|
-
* <note>
|
|
32
|
-
* <p>Hub APIs are only callable through SageMaker Studio.</p>
|
|
33
|
-
* </note>
|
|
34
31
|
* @example
|
|
35
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
33
|
* ```javascript
|
|
@@ -39,7 +36,7 @@ declare const DescribeHubContentCommand_base: {
|
|
|
39
36
|
* const client = new SageMakerClient(config);
|
|
40
37
|
* const input = { // DescribeHubContentRequest
|
|
41
38
|
* HubName: "STRING_VALUE", // required
|
|
42
|
-
* HubContentType: "Model" || "Notebook", // required
|
|
39
|
+
* HubContentType: "Model" || "Notebook" || "ModelReference", // required
|
|
43
40
|
* HubContentName: "STRING_VALUE", // required
|
|
44
41
|
* HubContentVersion: "STRING_VALUE",
|
|
45
42
|
* };
|
|
@@ -49,7 +46,7 @@ declare const DescribeHubContentCommand_base: {
|
|
|
49
46
|
* // HubContentName: "STRING_VALUE", // required
|
|
50
47
|
* // HubContentArn: "STRING_VALUE", // required
|
|
51
48
|
* // HubContentVersion: "STRING_VALUE", // required
|
|
52
|
-
* // HubContentType: "Model" || "Notebook", // required
|
|
49
|
+
* // HubContentType: "Model" || "Notebook" || "ModelReference", // required
|
|
53
50
|
* // DocumentSchemaVersion: "STRING_VALUE", // required
|
|
54
51
|
* // HubName: "STRING_VALUE", // required
|
|
55
52
|
* // HubArn: "STRING_VALUE", // required
|
|
@@ -57,6 +54,9 @@ declare const DescribeHubContentCommand_base: {
|
|
|
57
54
|
* // HubContentDescription: "STRING_VALUE",
|
|
58
55
|
* // HubContentMarkdown: "STRING_VALUE",
|
|
59
56
|
* // HubContentDocument: "STRING_VALUE", // required
|
|
57
|
+
* // SageMakerPublicHubContentArn: "STRING_VALUE",
|
|
58
|
+
* // ReferenceMinVersion: "STRING_VALUE",
|
|
59
|
+
* // SupportStatus: "Supported" || "Deprecated",
|
|
60
60
|
* // HubContentSearchKeywords: [ // HubContentSearchKeywordList
|
|
61
61
|
* // "STRING_VALUE",
|
|
62
62
|
* // ],
|
|
@@ -145,10 +145,10 @@ declare const DescribeInferenceRecommendationsJobCommand_base: {
|
|
|
145
145
|
* // { // InferenceRecommendation
|
|
146
146
|
* // RecommendationId: "STRING_VALUE",
|
|
147
147
|
* // Metrics: { // RecommendationMetrics
|
|
148
|
-
* // CostPerHour: Number("float"),
|
|
149
|
-
* // CostPerInference: Number("float"),
|
|
150
|
-
* // MaxInvocations: Number("int"),
|
|
151
|
-
* // ModelLatency: Number("int"),
|
|
148
|
+
* // CostPerHour: Number("float"),
|
|
149
|
+
* // CostPerInference: Number("float"),
|
|
150
|
+
* // MaxInvocations: Number("int"),
|
|
151
|
+
* // ModelLatency: Number("int"),
|
|
152
152
|
* // CpuUtilization: Number("float"),
|
|
153
153
|
* // MemoryUtilization: Number("float"),
|
|
154
154
|
* // ModelSetupTime: Number("int"),
|
|
@@ -61,6 +61,9 @@ declare const DescribeModelCommand_base: {
|
|
|
61
61
|
* // ModelAccessConfig: { // ModelAccessConfig
|
|
62
62
|
* // AcceptEula: true || false, // required
|
|
63
63
|
* // },
|
|
64
|
+
* // HubAccessConfig: { // InferenceHubAccessConfig
|
|
65
|
+
* // HubContentArn: "STRING_VALUE", // required
|
|
66
|
+
* // },
|
|
64
67
|
* // },
|
|
65
68
|
* // },
|
|
66
69
|
* // Environment: { // EnvironmentMap
|
|
@@ -92,6 +95,9 @@ declare const DescribeModelCommand_base: {
|
|
|
92
95
|
* // ModelAccessConfig: {
|
|
93
96
|
* // AcceptEula: true || false, // required
|
|
94
97
|
* // },
|
|
98
|
+
* // HubAccessConfig: {
|
|
99
|
+
* // HubContentArn: "STRING_VALUE", // required
|
|
100
|
+
* // },
|
|
95
101
|
* // },
|
|
96
102
|
* // },
|
|
97
103
|
* // Environment: {
|
|
@@ -69,6 +69,9 @@ declare const DescribeModelPackageCommand_base: {
|
|
|
69
69
|
* // ModelAccessConfig: { // ModelAccessConfig
|
|
70
70
|
* // AcceptEula: true || false, // required
|
|
71
71
|
* // },
|
|
72
|
+
* // HubAccessConfig: { // InferenceHubAccessConfig
|
|
73
|
+
* // HubContentArn: "STRING_VALUE", // required
|
|
74
|
+
* // },
|
|
72
75
|
* // },
|
|
73
76
|
* // },
|
|
74
77
|
* // ProductId: "STRING_VALUE",
|
|
@@ -113,6 +116,9 @@ declare const DescribeModelPackageCommand_base: {
|
|
|
113
116
|
* // ModelAccessConfig: {
|
|
114
117
|
* // AcceptEula: true || false, // required
|
|
115
118
|
* // },
|
|
119
|
+
* // HubAccessConfig: {
|
|
120
|
+
* // HubContentArn: "STRING_VALUE", // required
|
|
121
|
+
* // },
|
|
116
122
|
* // },
|
|
117
123
|
* // },
|
|
118
124
|
* // AlgorithmName: "STRING_VALUE", // required
|
|
@@ -293,6 +299,9 @@ declare const DescribeModelPackageCommand_base: {
|
|
|
293
299
|
* // ModelAccessConfig: {
|
|
294
300
|
* // AcceptEula: true || false, // required
|
|
295
301
|
* // },
|
|
302
|
+
* // HubAccessConfig: {
|
|
303
|
+
* // HubContentArn: "STRING_VALUE", // required
|
|
304
|
+
* // },
|
|
296
305
|
* // },
|
|
297
306
|
* // },
|
|
298
307
|
* // ProductId: "STRING_VALUE",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { DescribeMonitoringScheduleRequest
|
|
3
|
+
import { DescribeMonitoringScheduleRequest } from "../models/models_2";
|
|
4
|
+
import { DescribeMonitoringScheduleResponse } from "../models/models_3";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { DescribeNotebookInstanceInput, DescribeNotebookInstanceOutput } from "../models/
|
|
3
|
+
import { DescribeNotebookInstanceInput, DescribeNotebookInstanceOutput } from "../models/models_3";
|
|
4
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -28,9 +28,6 @@ declare const ImportHubContentCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Import hub content.</p>
|
|
31
|
-
* <note>
|
|
32
|
-
* <p>Hub APIs are only callable through SageMaker Studio.</p>
|
|
33
|
-
* </note>
|
|
34
31
|
* @example
|
|
35
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
33
|
* ```javascript
|
|
@@ -40,7 +37,7 @@ declare const ImportHubContentCommand_base: {
|
|
|
40
37
|
* const input = { // ImportHubContentRequest
|
|
41
38
|
* HubContentName: "STRING_VALUE", // required
|
|
42
39
|
* HubContentVersion: "STRING_VALUE",
|
|
43
|
-
* HubContentType: "Model" || "Notebook", // required
|
|
40
|
+
* HubContentType: "Model" || "Notebook" || "ModelReference", // required
|
|
44
41
|
* DocumentSchemaVersion: "STRING_VALUE", // required
|
|
45
42
|
* HubName: "STRING_VALUE", // required
|
|
46
43
|
* HubContentDisplayName: "STRING_VALUE",
|