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 { BatchGetDevEndpointsRequest, BatchGetDevEndpointsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link BatchGetDevEndpointsCommand}. */ export interface BatchGetDevEndpointsCommandInput extends BatchGetDevEndpointsRequest { } /** * @public * * The output of {@link BatchGetDevEndpointsCommand}. */ export interface BatchGetDevEndpointsCommandOutput extends BatchGetDevEndpointsResponse, __MetadataBearer { } declare const BatchGetDevEndpointsCommand_base: { new (input: BatchGetDevEndpointsCommandInput): import("@smithy/core/client").CommandImpl; new (input: BatchGetDevEndpointsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Returns a list of resource metadata for a given list of development endpoint names. After * calling the ListDevEndpoints operation, you can call this operation to access the * data to which you have been granted permissions. This operation supports all IAM permissions, * including permission conditions that uses tags.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, BatchGetDevEndpointsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, BatchGetDevEndpointsCommand } = 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 = { // BatchGetDevEndpointsRequest * DevEndpointNames: [ // DevEndpointNames // required * "STRING_VALUE", * ], * }; * const command = new BatchGetDevEndpointsCommand(input); * const response = await client.send(command); * // { // BatchGetDevEndpointsResponse * // 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", * // }, * // }, * // ], * // DevEndpointsNotFound: [ // DevEndpointNames * // "STRING_VALUE", * // ], * // }; * * ``` * * @param BatchGetDevEndpointsCommandInput - {@link BatchGetDevEndpointsCommandInput} * @returns {@link BatchGetDevEndpointsCommandOutput} * @see {@link BatchGetDevEndpointsCommandInput} for command's `input` shape. * @see {@link BatchGetDevEndpointsCommandOutput} 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 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 BatchGetDevEndpointsCommand extends BatchGetDevEndpointsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: BatchGetDevEndpointsRequest; output: BatchGetDevEndpointsResponse; }; sdk: { input: BatchGetDevEndpointsCommandInput; output: BatchGetDevEndpointsCommandOutput; }; }; }