import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; import type { DeleteRegistryInput, DeleteRegistryResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteRegistryCommand}. */ export interface DeleteRegistryCommandInput extends DeleteRegistryInput { } /** * @public * * The output of {@link DeleteRegistryCommand}. */ export interface DeleteRegistryCommandOutput extends DeleteRegistryResponse, __MetadataBearer { } declare const DeleteRegistryCommand_base: { new (input: DeleteRegistryCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteRegistryCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Delete the entire registry including schema and all of its versions. To get the status of the delete operation, you can call the GetRegistry API after the asynchronous call. Deleting a registry will deactivate all online operations for the registry such as the UpdateRegistry, CreateSchema, UpdateSchema, and RegisterSchemaVersion APIs.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, DeleteRegistryCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, DeleteRegistryCommand } = require("@aws-sdk/client-glue"); // CommonJS import * // import type { GlueClientConfig } from "@aws-sdk/client-glue"; * const config = {}; // type is GlueClientConfig * const client = new GlueClient(config); * const input = { // DeleteRegistryInput * RegistryId: { // RegistryId * RegistryName: "STRING_VALUE", * RegistryArn: "STRING_VALUE", * }, * }; * const command = new DeleteRegistryCommand(input); * const response = await client.send(command); * // { // DeleteRegistryResponse * // RegistryName: "STRING_VALUE", * // RegistryArn: "STRING_VALUE", * // Status: "AVAILABLE" || "DELETING", * // }; * * ``` * * @param DeleteRegistryCommandInput - {@link DeleteRegistryCommandInput} * @returns {@link DeleteRegistryCommandOutput} * @see {@link DeleteRegistryCommandInput} for command's `input` shape. * @see {@link DeleteRegistryCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access to a resource was denied.

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

Two processes are trying to modify a resource simultaneously.

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

A specified entity does not exist

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

The input provided was not valid.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class DeleteRegistryCommand extends DeleteRegistryCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteRegistryInput; output: DeleteRegistryResponse; }; sdk: { input: DeleteRegistryCommandInput; output: DeleteRegistryCommandOutput; }; }; }