@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.32 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Get the connection string for the specified flow.
*
* Uses Azure REST API version 2024-09-27.
*
* Other available API versions: 2025-03-01-preview, 2025-04-11-preview, 2025-05-21. 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 getFlowStreamConnectionString(args: GetFlowStreamConnectionStringArgs, opts?: pulumi.InvokeOptions): Promise<GetFlowStreamConnectionStringResult>;
export interface GetFlowStreamConnectionStringArgs {
/**
* 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;
}
/**
* The connection string for the specified streaming flow
*/
export interface GetFlowStreamConnectionStringResult {
/**
* The connection string for the specified streaming flow
*/
readonly connectionString?: string;
}
/**
* Get the connection string for the specified flow.
*
* Uses Azure REST API version 2024-09-27.
*
* Other available API versions: 2025-03-01-preview, 2025-04-11-preview, 2025-05-21. 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 getFlowStreamConnectionStringOutput(args: GetFlowStreamConnectionStringOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFlowStreamConnectionStringResult>;
export interface GetFlowStreamConnectionStringOutputArgs {
/**
* 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>;
}