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

Retrieves all the development endpoints in this Amazon Web Services account.

* *

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, GetDevEndpointsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetDevEndpointsCommand } = 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 = { // GetDevEndpointsRequest * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new GetDevEndpointsCommand(input); * const response = await client.send(command); * // { // GetDevEndpointsResponse * // DevEndpoints: [ // DevEndpointList * // { // 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", * // }, * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param GetDevEndpointsCommandInput - {@link GetDevEndpointsCommandInput} * @returns {@link GetDevEndpointsCommandOutput} * @see {@link GetDevEndpointsCommandInput} for command's `input` shape. * @see {@link GetDevEndpointsCommandOutput} 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 GetDevEndpointsCommand extends GetDevEndpointsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetDevEndpointsRequest; output: GetDevEndpointsResponse; }; sdk: { input: GetDevEndpointsCommandInput; output: GetDevEndpointsCommandOutput; }; }; }