@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.58 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get a DataflowGraphResource
*
* Uses Azure REST API version 2025-07-01-preview.
*/
export declare function getDataflowGraph(args: GetDataflowGraphArgs, opts?: pulumi.InvokeOptions): Promise<GetDataflowGraphResult>;
export interface GetDataflowGraphArgs {
/**
* Name of Instance dataflowEndpoint resource.
*/
dataflowGraphName: string;
/**
* Name of Instance dataflowProfile resource
*/
dataflowProfileName: string;
/**
* Name of instance.
*/
instanceName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Instance dataflowEndpoint resource.
*/
export interface GetDataflowGraphResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Edge location of the resource.
*/
readonly extendedLocation?: outputs.iotoperations.ExtendedLocationResponse;
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The resource-specific properties for this resource.
*/
readonly properties: outputs.iotoperations.DataflowGraphPropertiesResponse;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.iotoperations.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get a DataflowGraphResource
*
* Uses Azure REST API version 2025-07-01-preview.
*/
export declare function getDataflowGraphOutput(args: GetDataflowGraphOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDataflowGraphResult>;
export interface GetDataflowGraphOutputArgs {
/**
* Name of Instance dataflowEndpoint resource.
*/
dataflowGraphName: pulumi.Input<string>;
/**
* Name of Instance dataflowProfile resource
*/
dataflowProfileName: pulumi.Input<string>;
/**
* Name of instance.
*/
instanceName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}