@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.26 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Lists all Flows associated with the specified Pipeline.
*
* Uses Azure REST API version 2025-05-21.
*
* Other available API versions: 2025-04-11-preview, 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 listListFlowsByPipeline(args: ListListFlowsByPipelineArgs, opts?: pulumi.InvokeOptions): Promise<ListListFlowsByPipelineResult>;
export interface ListListFlowsByPipelineArgs {
/**
* The name of the pipeline on which to operate.
*/
pipelineName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* Connection ID to target
*/
value?: string[];
}
/**
* An array of flow resources.
*/
export interface ListListFlowsByPipelineResult {
/**
* List flows by pipeline result by connection
*/
readonly value?: outputs.azuredatatransfer.ListFlowsByPipelineConnectionResponse[];
}
/**
* Lists all Flows associated with the specified Pipeline.
*
* Uses Azure REST API version 2025-05-21.
*
* Other available API versions: 2025-04-11-preview, 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 listListFlowsByPipelineOutput(args: ListListFlowsByPipelineOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListListFlowsByPipelineResult>;
export interface ListListFlowsByPipelineOutputArgs {
/**
* The name of the pipeline on which to operate.
*/
pipelineName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Connection ID to target
*/
value?: pulumi.Input<pulumi.Input<string>[]>;
}