@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.72 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets a data flow.
*
* Uses Azure REST API version 2018-06-01.
*/
export declare function getDataFlow(args: GetDataFlowArgs, opts?: pulumi.InvokeOptions): Promise<GetDataFlowResult>;
export interface GetDataFlowArgs {
/**
* The data flow name.
*/
dataFlowName: string;
/**
* The factory name.
*/
factoryName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
}
/**
* Data flow resource type.
*/
export interface GetDataFlowResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Etag identifies change in the resource.
*/
readonly etag: string;
/**
* The resource identifier.
*/
readonly id: string;
/**
* The resource name.
*/
readonly name: string;
/**
* Data flow properties.
*/
readonly properties: outputs.datafactory.FlowletResponse | outputs.datafactory.MappingDataFlowResponse | outputs.datafactory.WranglingDataFlowResponse;
/**
* The resource type.
*/
readonly type: string;
}
/**
* Gets a data flow.
*
* Uses Azure REST API version 2018-06-01.
*/
export declare function getDataFlowOutput(args: GetDataFlowOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDataFlowResult>;
export interface GetDataFlowOutputArgs {
/**
* The data flow name.
*/
dataFlowName: pulumi.Input<string>;
/**
* The factory name.
*/
factoryName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
}