import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListPipelineEndpointsRequest, ListPipelineEndpointsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListPipelineEndpointsCommand}. */ export interface ListPipelineEndpointsCommandInput extends ListPipelineEndpointsRequest { } /** * @public * * The output of {@link ListPipelineEndpointsCommand}. */ export interface ListPipelineEndpointsCommandOutput extends ListPipelineEndpointsResponse, __MetadataBearer { } declare const ListPipelineEndpointsCommand_base: { new (input: ListPipelineEndpointsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListPipelineEndpointsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists all pipeline endpoints in your account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { OSISClient, ListPipelineEndpointsCommand } from "@aws-sdk/client-osis"; // ES Modules import * // const { OSISClient, ListPipelineEndpointsCommand } = require("@aws-sdk/client-osis"); // CommonJS import * // import type { OSISClientConfig } from "@aws-sdk/client-osis"; * const config = {}; // type is OSISClientConfig * const client = new OSISClient(config); * const input = { // ListPipelineEndpointsRequest * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListPipelineEndpointsCommand(input); * const response = await client.send(command); * // { // ListPipelineEndpointsResponse * // NextToken: "STRING_VALUE", * // PipelineEndpoints: [ // PipelineEndpointsSummaryList * // { // PipelineEndpoint * // PipelineArn: "STRING_VALUE", * // EndpointId: "STRING_VALUE", * // Status: "CREATING" || "ACTIVE" || "CREATE_FAILED" || "DELETING" || "REVOKING" || "REVOKED", * // VpcId: "STRING_VALUE", * // VpcOptions: { // PipelineEndpointVpcOptions * // SubnetIds: [ // SubnetIds * // "STRING_VALUE", * // ], * // SecurityGroupIds: [ // SecurityGroupIds * // "STRING_VALUE", * // ], * // }, * // IngestEndpointUrl: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param ListPipelineEndpointsCommandInput - {@link ListPipelineEndpointsCommandInput} * @returns {@link ListPipelineEndpointsCommandOutput} * @see {@link ListPipelineEndpointsCommandInput} for command's `input` shape. * @see {@link ListPipelineEndpointsCommandOutput} for command's `response` shape. * @see {@link OSISClientResolvedConfig | config} for OSISClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have permissions to access the resource.

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

Exception is thrown when an operation has been disabled.

* * @throws {@link InternalException} (server fault) *

The request failed because of an unknown error, exception, or failure (the failure is * internal to the service).

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

You attempted to create more than the allowed number of tags.

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

An exception for missing or invalid input fields.

* * @throws {@link OSISServiceException} *

Base exception class for all service exceptions from OSIS service.

* * * @public */ export declare class ListPipelineEndpointsCommand extends ListPipelineEndpointsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListPipelineEndpointsRequest; output: ListPipelineEndpointsResponse; }; sdk: { input: ListPipelineEndpointsCommandInput; output: ListPipelineEndpointsCommandOutput; }; }; }