Class GetWorkflow
Inheritance
System.Object
GetWorkflow
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.LogicApps
Assembly: Pulumi.Azure.dll
Syntax
public static class GetWorkflow
Methods
View SourceInvokeAsync(GetWorkflowArgs, InvokeOptions)
Use this data source to access information about an existing Logic App Workflow.
{{% examples %}}
Example Usage
{{% example %}}
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Azure.LogicApps.GetWorkflow.InvokeAsync(new Azure.LogicApps.GetWorkflowArgs
{
Name = "workflow1",
ResourceGroupName = "my-resource-group",
}));
this.AccessEndpoint = example.Apply(example => example.AccessEndpoint);
}
[Output("accessEndpoint")]
public Output<string> AccessEndpoint { get; set; }
}
{{% /example %}} {{% /examples %}}
Declaration
public static Task<GetWorkflowResult> InvokeAsync(GetWorkflowArgs args, InvokeOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| GetWorkflowArgs | args | |
| InvokeOptions | options |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<GetWorkflowResult> |