import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DeleteImageVersionRequest, DeleteImageVersionResponse } from "../models/models_2"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteImageVersionCommand}. */ export interface DeleteImageVersionCommandInput extends DeleteImageVersionRequest { } /** * @public * * The output of {@link DeleteImageVersionCommand}. */ export interface DeleteImageVersionCommandOutput extends DeleteImageVersionResponse, __MetadataBearer { } declare const DeleteImageVersionCommand_base: { new (input: DeleteImageVersionCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteImageVersionCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes a version of a SageMaker AI image. The container image the version represents isn't deleted.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, DeleteImageVersionCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, DeleteImageVersionCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // DeleteImageVersionRequest * ImageName: "STRING_VALUE", // required * Version: Number("int"), * Alias: "STRING_VALUE", * }; * const command = new DeleteImageVersionCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteImageVersionCommandInput - {@link DeleteImageVersionCommandInput} * @returns {@link DeleteImageVersionCommandOutput} * @see {@link DeleteImageVersionCommandInput} for command's `input` shape. * @see {@link DeleteImageVersionCommandOutput} 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 DeleteImageVersionCommand extends DeleteImageVersionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteImageVersionRequest; output: {}; }; sdk: { input: DeleteImageVersionCommandInput; output: DeleteImageVersionCommandOutput; }; }; }