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 { GetDevEndpointRequest, GetDevEndpointResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetDevEndpointCommand}. */ export interface GetDevEndpointCommandInput extends GetDevEndpointRequest { } /** * @public * * The output of {@link GetDevEndpointCommand}. */ export interface GetDevEndpointCommandOutput extends GetDevEndpointResponse, __MetadataBearer { } declare const GetDevEndpointCommand_base: { new (input: GetDevEndpointCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetDevEndpointCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves information about a specified development endpoint.

* *

When you create a development endpoint in a virtual private cloud (VPC), Glue returns only * a private IP address, and the public IP address field is not populated. When you create a * non-VPC development endpoint, Glue returns only a public IP address.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, GetDevEndpointCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetDevEndpointCommand } = 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 = { // GetDevEndpointRequest * EndpointName: "STRING_VALUE", // required * }; * const command = new GetDevEndpointCommand(input); * const response = await client.send(command); * // { // GetDevEndpointResponse * // DevEndpoint: { // DevEndpoint * // EndpointName: "STRING_VALUE", * // RoleArn: "STRING_VALUE", * // SecurityGroupIds: [ // StringList * // "STRING_VALUE", * // ], * // SubnetId: "STRING_VALUE", * // YarnEndpointAddress: "STRING_VALUE", * // PrivateAddress: "STRING_VALUE", * // ZeppelinRemoteSparkInterpreterPort: Number("int"), * // PublicAddress: "STRING_VALUE", * // Status: "STRING_VALUE", * // WorkerType: "Standard" || "G.1X" || "G.2X" || "G.025X" || "G.4X" || "G.8X" || "Z.2X", * // GlueVersion: "STRING_VALUE", * // NumberOfWorkers: Number("int"), * // NumberOfNodes: Number("int"), * // AvailabilityZone: "STRING_VALUE", * // VpcId: "STRING_VALUE", * // ExtraPythonLibsS3Path: "STRING_VALUE", * // ExtraJarsS3Path: "STRING_VALUE", * // FailureReason: "STRING_VALUE", * // LastUpdateStatus: "STRING_VALUE", * // CreatedTimestamp: new Date("TIMESTAMP"), * // LastModifiedTimestamp: new Date("TIMESTAMP"), * // PublicKey: "STRING_VALUE", * // PublicKeys: [ // PublicKeysList * // "STRING_VALUE", * // ], * // SecurityConfiguration: "STRING_VALUE", * // Arguments: { // MapValue * // "": "STRING_VALUE", * // }, * // }, * // }; * * ``` * * @param GetDevEndpointCommandInput - {@link GetDevEndpointCommandInput} * @returns {@link GetDevEndpointCommandOutput} * @see {@link GetDevEndpointCommandInput} for command's `input` shape. * @see {@link GetDevEndpointCommandOutput} 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 GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class GetDevEndpointCommand extends GetDevEndpointCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetDevEndpointRequest; output: GetDevEndpointResponse; }; sdk: { input: GetDevEndpointCommandInput; output: GetDevEndpointCommandOutput; }; }; }