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 { RemoveSchemaVersionMetadataInput, RemoveSchemaVersionMetadataResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link RemoveSchemaVersionMetadataCommand}. */ export interface RemoveSchemaVersionMetadataCommandInput extends RemoveSchemaVersionMetadataInput { } /** * @public * * The output of {@link RemoveSchemaVersionMetadataCommand}. */ export interface RemoveSchemaVersionMetadataCommandOutput extends RemoveSchemaVersionMetadataResponse, __MetadataBearer { } declare const RemoveSchemaVersionMetadataCommand_base: { new (input: RemoveSchemaVersionMetadataCommandInput): import("@smithy/core/client").CommandImpl; new (input: RemoveSchemaVersionMetadataCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Removes a key value pair from the schema version metadata for the specified schema version ID.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, RemoveSchemaVersionMetadataCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, RemoveSchemaVersionMetadataCommand } = 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 = { // RemoveSchemaVersionMetadataInput * SchemaId: { // SchemaId * SchemaArn: "STRING_VALUE", * SchemaName: "STRING_VALUE", * RegistryName: "STRING_VALUE", * }, * SchemaVersionNumber: { // SchemaVersionNumber * LatestVersion: true || false, * VersionNumber: Number("long"), * }, * SchemaVersionId: "STRING_VALUE", * MetadataKeyValue: { // MetadataKeyValuePair * MetadataKey: "STRING_VALUE", * MetadataValue: "STRING_VALUE", * }, * }; * const command = new RemoveSchemaVersionMetadataCommand(input); * const response = await client.send(command); * // { // RemoveSchemaVersionMetadataResponse * // SchemaArn: "STRING_VALUE", * // SchemaName: "STRING_VALUE", * // RegistryName: "STRING_VALUE", * // LatestVersion: true || false, * // VersionNumber: Number("long"), * // SchemaVersionId: "STRING_VALUE", * // MetadataKey: "STRING_VALUE", * // MetadataValue: "STRING_VALUE", * // }; * * ``` * * @param RemoveSchemaVersionMetadataCommandInput - {@link RemoveSchemaVersionMetadataCommandInput} * @returns {@link RemoveSchemaVersionMetadataCommandOutput} * @see {@link RemoveSchemaVersionMetadataCommandInput} for command's `input` shape. * @see {@link RemoveSchemaVersionMetadataCommandOutput} 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 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 RemoveSchemaVersionMetadataCommand extends RemoveSchemaVersionMetadataCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: RemoveSchemaVersionMetadataInput; output: RemoveSchemaVersionMetadataResponse; }; sdk: { input: RemoveSchemaVersionMetadataCommandInput; output: RemoveSchemaVersionMetadataCommandOutput; }; }; }