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 { UpdateRegistryInput, UpdateRegistryResponse } from "../models/models_3"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateRegistryCommand}. */ export interface UpdateRegistryCommandInput extends UpdateRegistryInput { } /** * @public * * The output of {@link UpdateRegistryCommand}. */ export interface UpdateRegistryCommandOutput extends UpdateRegistryResponse, __MetadataBearer { } declare const UpdateRegistryCommand_base: { new (input: UpdateRegistryCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateRegistryCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Updates an existing registry which is used to hold a collection of schemas. The updated properties relate to the registry, and do not modify any of the schemas within the registry.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, UpdateRegistryCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, UpdateRegistryCommand } = 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 = { // UpdateRegistryInput * RegistryId: { // RegistryId * RegistryName: "STRING_VALUE", * RegistryArn: "STRING_VALUE", * }, * Description: "STRING_VALUE", // required * }; * const command = new UpdateRegistryCommand(input); * const response = await client.send(command); * // { // UpdateRegistryResponse * // RegistryName: "STRING_VALUE", * // RegistryArn: "STRING_VALUE", * // }; * * ``` * * @param UpdateRegistryCommandInput - {@link UpdateRegistryCommandInput} * @returns {@link UpdateRegistryCommandOutput} * @see {@link UpdateRegistryCommandInput} for command's `input` shape. * @see {@link UpdateRegistryCommandOutput} 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 InternalServiceException} (server fault) *

An internal service error occurred.

* * @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 UpdateRegistryCommand extends UpdateRegistryCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateRegistryInput; output: UpdateRegistryResponse; }; sdk: { input: UpdateRegistryCommandInput; output: UpdateRegistryCommandOutput; }; }; }