Workflow Args
data class WorkflowArgs(val accessControl: Output<WorkflowAccessControlArgs>? = null, val enabled: Output<Boolean>? = null, val identity: Output<WorkflowIdentityArgs>? = null, val integrationServiceEnvironmentId: Output<String>? = null, val location: Output<String>? = null, val logicAppIntegrationAccountId: Output<String>? = null, val name: Output<String>? = null, val parameters: Output<Map<String, String>>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val workflowParameters: Output<Map<String, String>>? = null, val workflowSchema: Output<String>? = null, val workflowVersion: Output<String>? = null) : ConvertibleToJava<WorkflowArgs>
Manages a Logic App Workflow.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.logicapps.Workflow;
import com.pulumi.azure.logicapps.WorkflowArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("workflow-resources")
.location("West Europe")
.build());
var exampleWorkflow = new Workflow("exampleWorkflow", WorkflowArgs.builder()
.name("workflow1")
.location(example.location())
.resourceGroupName(example.name())
.build());
}
}
Content copied to clipboard
Import
Logic App Workflows can be imported using the resource id
, e.g.
$ pulumi import azure:logicapps/workflow:Workflow workflow1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Logic/workflows/workflow1
Content copied to clipboard
Constructors
Link copied to clipboard
fun WorkflowArgs(accessControl: Output<WorkflowAccessControlArgs>? = null, enabled: Output<Boolean>? = null, identity: Output<WorkflowIdentityArgs>? = null, integrationServiceEnvironmentId: Output<String>? = null, location: Output<String>? = null, logicAppIntegrationAccountId: Output<String>? = null, name: Output<String>? = null, parameters: Output<Map<String, String>>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null, workflowParameters: Output<Map<String, String>>? = null, workflowSchema: Output<String>? = null, workflowVersion: Output<String>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Specifies a map of Key-Value pairs of the Parameter Definitions to use for this Logic App Workflow. The key is the parameter name, and the value is a JSON encoded string of the parameter definition (see: https://docs.microsoft.com/azure/logic-apps/logic-apps-workflow-definition-language#parameters).