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

Updates a specified development endpoint.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, UpdateDevEndpointCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, UpdateDevEndpointCommand } = 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 = { // UpdateDevEndpointRequest * EndpointName: "STRING_VALUE", // required * PublicKey: "STRING_VALUE", * AddPublicKeys: [ // PublicKeysList * "STRING_VALUE", * ], * DeletePublicKeys: [ * "STRING_VALUE", * ], * CustomLibraries: { // DevEndpointCustomLibraries * ExtraPythonLibsS3Path: "STRING_VALUE", * ExtraJarsS3Path: "STRING_VALUE", * }, * UpdateEtlLibraries: true || false, * DeleteArguments: [ // StringList * "STRING_VALUE", * ], * AddArguments: { // MapValue * "": "STRING_VALUE", * }, * }; * const command = new UpdateDevEndpointCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateDevEndpointCommandInput - {@link UpdateDevEndpointCommandInput} * @returns {@link UpdateDevEndpointCommandOutput} * @see {@link UpdateDevEndpointCommandInput} for command's `input` shape. * @see {@link UpdateDevEndpointCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @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 OperationTimeoutException} (client fault) *

The operation timed out.

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

A value could not be validated.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class UpdateDevEndpointCommand extends UpdateDevEndpointCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateDevEndpointRequest; output: {}; }; sdk: { input: UpdateDevEndpointCommandInput; output: UpdateDevEndpointCommandOutput; }; }; }