UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

55 lines (54 loc) 2.36 kB
import * as pulumi from "@pulumi/pulumi"; /** * Get the destination endpoints for the specified flow and stream ID. * * Uses Azure REST API version 2024-09-27. * * Other available API versions: 2025-03-01-preview, 2025-04-11-preview, 2025-05-21, 2025-05-30-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native azuredatatransfer [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getFlowDestinationEndpoints(args: GetFlowDestinationEndpointsArgs, opts?: pulumi.InvokeOptions): Promise<GetFlowDestinationEndpointsResult>; export interface GetFlowDestinationEndpointsArgs { /** * The name for the connection that is to be requested. */ connectionName: string; /** * The name for the flow that is to be onboarded. */ flowName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * List of destination endpoints for the flow stream */ export interface GetFlowDestinationEndpointsResult { /** * The destination endpoints for the flow stream */ readonly endpoints?: string[]; } /** * Get the destination endpoints for the specified flow and stream ID. * * Uses Azure REST API version 2024-09-27. * * Other available API versions: 2025-03-01-preview, 2025-04-11-preview, 2025-05-21, 2025-05-30-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native azuredatatransfer [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getFlowDestinationEndpointsOutput(args: GetFlowDestinationEndpointsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFlowDestinationEndpointsResult>; export interface GetFlowDestinationEndpointsOutputArgs { /** * The name for the connection that is to be requested. */ connectionName: pulumi.Input<string>; /** * The name for the flow that is to be onboarded. */ flowName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }