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

56 lines (55 loc) 2.19 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists the flows in a pipeline. * * Uses Azure REST API version 2025-05-21. * * Other available API versions: 2025-04-11-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 for the pipeline to perform the operation on. */ 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 the flows in a pipeline. * * Uses Azure REST API version 2025-05-21. * * Other available API versions: 2025-04-11-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 for the pipeline to perform the operation on. */ 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>[]>; }