import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteAutomaticTapeCreationPolicyInput, DeleteAutomaticTapeCreationPolicyOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteAutomaticTapeCreationPolicyCommand}. */ export interface DeleteAutomaticTapeCreationPolicyCommandInput extends DeleteAutomaticTapeCreationPolicyInput { } /** * @public * * The output of {@link DeleteAutomaticTapeCreationPolicyCommand}. */ export interface DeleteAutomaticTapeCreationPolicyCommandOutput extends DeleteAutomaticTapeCreationPolicyOutput, __MetadataBearer { } declare const DeleteAutomaticTapeCreationPolicyCommand_base: { new (input: DeleteAutomaticTapeCreationPolicyCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteAutomaticTapeCreationPolicyCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the automatic tape creation policy of a gateway. If you delete this policy, new * virtual tapes must be created manually. Use the Amazon Resource Name (ARN) of the gateway * in your request to remove the policy.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { StorageGatewayClient, DeleteAutomaticTapeCreationPolicyCommand } from "@aws-sdk/client-storage-gateway"; // ES Modules import * // const { StorageGatewayClient, DeleteAutomaticTapeCreationPolicyCommand } = require("@aws-sdk/client-storage-gateway"); // CommonJS import * // import type { StorageGatewayClientConfig } from "@aws-sdk/client-storage-gateway"; * const config = {}; // type is StorageGatewayClientConfig * const client = new StorageGatewayClient(config); * const input = { // DeleteAutomaticTapeCreationPolicyInput * GatewayARN: "STRING_VALUE", // required * }; * const command = new DeleteAutomaticTapeCreationPolicyCommand(input); * const response = await client.send(command); * // { // DeleteAutomaticTapeCreationPolicyOutput * // GatewayARN: "STRING_VALUE", * // }; * * ``` * * @param DeleteAutomaticTapeCreationPolicyCommandInput - {@link DeleteAutomaticTapeCreationPolicyCommandInput} * @returns {@link DeleteAutomaticTapeCreationPolicyCommandOutput} * @see {@link DeleteAutomaticTapeCreationPolicyCommandInput} for command's `input` shape. * @see {@link DeleteAutomaticTapeCreationPolicyCommandOutput} for command's `response` shape. * @see {@link StorageGatewayClientResolvedConfig | config} for StorageGatewayClient's `config` shape. * * @throws {@link InternalServerError} (server fault) *

An internal server error has occurred during the request. For more information, see the * error and message fields.

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

An exception occurred because an invalid gateway request was issued to the service. For * more information, see the error and message fields.

* * @throws {@link StorageGatewayServiceException} *

Base exception class for all service exceptions from StorageGateway service.

* * * @public */ export declare class DeleteAutomaticTapeCreationPolicyCommand extends DeleteAutomaticTapeCreationPolicyCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteAutomaticTapeCreationPolicyInput; output: DeleteAutomaticTapeCreationPolicyOutput; }; sdk: { input: DeleteAutomaticTapeCreationPolicyCommandInput; output: DeleteAutomaticTapeCreationPolicyCommandOutput; }; }; }