import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { UpdateImageVersionRequest, UpdateImageVersionResponse } from "../models/models_5"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateImageVersionCommand}. */ export interface UpdateImageVersionCommandInput extends UpdateImageVersionRequest { } /** * @public * * The output of {@link UpdateImageVersionCommand}. */ export interface UpdateImageVersionCommandOutput extends UpdateImageVersionResponse, __MetadataBearer { } declare const UpdateImageVersionCommand_base: { new (input: UpdateImageVersionCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdateImageVersionCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Updates the properties of a SageMaker AI image version.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, UpdateImageVersionCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, UpdateImageVersionCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // UpdateImageVersionRequest * ImageName: "STRING_VALUE", // required * Alias: "STRING_VALUE", * Version: Number("int"), * AliasesToAdd: [ // SageMakerImageVersionAliases * "STRING_VALUE", * ], * AliasesToDelete: [ * "STRING_VALUE", * ], * VendorGuidance: "NOT_PROVIDED" || "STABLE" || "TO_BE_ARCHIVED" || "ARCHIVED", * JobType: "TRAINING" || "INFERENCE" || "NOTEBOOK_KERNEL", * MLFramework: "STRING_VALUE", * ProgrammingLang: "STRING_VALUE", * Processor: "CPU" || "GPU", * Horovod: true || false, * ReleaseNotes: "STRING_VALUE", * }; * const command = new UpdateImageVersionCommand(input); * const response = await client.send(command); * // { // UpdateImageVersionResponse * // ImageVersionArn: "STRING_VALUE", * // }; * * ``` * * @param UpdateImageVersionCommandInput - {@link UpdateImageVersionCommandInput} * @returns {@link UpdateImageVersionCommandOutput} * @see {@link UpdateImageVersionCommandInput} for command's `input` shape. * @see {@link UpdateImageVersionCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ResourceInUse} (client fault) *

Resource being accessed is in use.

* * @throws {@link ResourceNotFound} (client fault) *

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class UpdateImageVersionCommand extends UpdateImageVersionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateImageVersionRequest; output: UpdateImageVersionResponse; }; sdk: { input: UpdateImageVersionCommandInput; output: UpdateImageVersionCommandOutput; }; }; }