1. Packages
  2. Azure Native
  3. API Docs
  4. integrationspaces
  5. BusinessProcess
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

azure-native.integrationspaces.BusinessProcess

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

    A business process under application. Azure REST API version: 2023-11-14-preview.

    Example Usage

    CreateOrUpdateBusinessProcess

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var businessProcess = new AzureNative.IntegrationSpaces.BusinessProcess("businessProcess", new()
        {
            ApplicationName = "Application1",
            BusinessProcessMapping = 
            {
                { "Completed", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessMappingItemArgs
                {
                    LogicAppResourceId = "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                    OperationName = "CompletedPO",
                    OperationType = "Action",
                    WorkflowName = "Fulfillment",
                } },
                { "Denied", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessMappingItemArgs
                {
                    LogicAppResourceId = "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                    OperationName = "DeniedPO",
                    OperationType = "Action",
                    WorkflowName = "Fulfillment",
                } },
                { "Processing", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessMappingItemArgs
                {
                    LogicAppResourceId = "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                    OperationName = "ApprovedPO",
                    OperationType = "Action",
                    WorkflowName = "PurchaseOrder",
                } },
                { "Received", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessMappingItemArgs
                {
                    LogicAppResourceId = "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                    OperationName = "manual",
                    OperationType = "Trigger",
                    WorkflowName = "PurchaseOrder",
                } },
                { "Shipped", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessMappingItemArgs
                {
                    LogicAppResourceId = "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                    OperationName = "ShippedPO",
                    OperationType = "Action",
                    WorkflowName = "Fulfillment",
                } },
            },
            BusinessProcessName = "BusinessProcess1",
            BusinessProcessStages = 
            {
                { "Completed", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessStageArgs
                {
                    Description = "Completed",
                    StagesBefore = new[]
                    {
                        "Shipped",
                    },
                } },
                { "Denied", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessStageArgs
                {
                    Description = "Denied",
                    StagesBefore = new[]
                    {
                        "Processing",
                    },
                } },
                { "Processing", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessStageArgs
                {
                    Description = "Processing",
                    Properties = 
                    {
                        { "ApprovalState", "String" },
                        { "ApproverName", "String" },
                        { "POAmount", "Integer" },
                    },
                    StagesBefore = new[]
                    {
                        "Received",
                    },
                } },
                { "Received", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessStageArgs
                {
                    Description = "received",
                    Properties = 
                    {
                        { "City", "String" },
                        { "Product", "String" },
                        { "Quantity", "Integer" },
                        { "State", "String" },
                    },
                } },
                { "Shipped", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessStageArgs
                {
                    Description = "Shipped",
                    Properties = 
                    {
                        { "ShipPriority", "Integer" },
                        { "TrackingID", "Integer" },
                    },
                    StagesBefore = new[]
                    {
                        "Denied",
                    },
                } },
            },
            Description = "First Business Process",
            Identifier = new AzureNative.IntegrationSpaces.Inputs.BusinessProcessIdentifierArgs
            {
                PropertyName = "businessIdentifier-1",
                PropertyType = "String",
            },
            ResourceGroupName = "testrg",
            SpaceName = "Space1",
            TableName = "table1",
            TrackingDataStoreReferenceName = "trackingDataStoreReferenceName1",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/integrationspaces/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := integrationspaces.NewBusinessProcess(ctx, "businessProcess", &integrationspaces.BusinessProcessArgs{
    			ApplicationName: pulumi.String("Application1"),
    			BusinessProcessMapping: integrationspaces.BusinessProcessMappingItemMap{
    				"Completed": &integrationspaces.BusinessProcessMappingItemArgs{
    					LogicAppResourceId: pulumi.String("subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1"),
    					OperationName:      pulumi.String("CompletedPO"),
    					OperationType:      pulumi.String("Action"),
    					WorkflowName:       pulumi.String("Fulfillment"),
    				},
    				"Denied": &integrationspaces.BusinessProcessMappingItemArgs{
    					LogicAppResourceId: pulumi.String("subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1"),
    					OperationName:      pulumi.String("DeniedPO"),
    					OperationType:      pulumi.String("Action"),
    					WorkflowName:       pulumi.String("Fulfillment"),
    				},
    				"Processing": &integrationspaces.BusinessProcessMappingItemArgs{
    					LogicAppResourceId: pulumi.String("subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1"),
    					OperationName:      pulumi.String("ApprovedPO"),
    					OperationType:      pulumi.String("Action"),
    					WorkflowName:       pulumi.String("PurchaseOrder"),
    				},
    				"Received": &integrationspaces.BusinessProcessMappingItemArgs{
    					LogicAppResourceId: pulumi.String("subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1"),
    					OperationName:      pulumi.String("manual"),
    					OperationType:      pulumi.String("Trigger"),
    					WorkflowName:       pulumi.String("PurchaseOrder"),
    				},
    				"Shipped": &integrationspaces.BusinessProcessMappingItemArgs{
    					LogicAppResourceId: pulumi.String("subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1"),
    					OperationName:      pulumi.String("ShippedPO"),
    					OperationType:      pulumi.String("Action"),
    					WorkflowName:       pulumi.String("Fulfillment"),
    				},
    			},
    			BusinessProcessName: pulumi.String("BusinessProcess1"),
    			BusinessProcessStages: integrationspaces.BusinessProcessStageMap{
    				"Completed": &integrationspaces.BusinessProcessStageArgs{
    					Description: pulumi.String("Completed"),
    					StagesBefore: pulumi.StringArray{
    						pulumi.String("Shipped"),
    					},
    				},
    				"Denied": &integrationspaces.BusinessProcessStageArgs{
    					Description: pulumi.String("Denied"),
    					StagesBefore: pulumi.StringArray{
    						pulumi.String("Processing"),
    					},
    				},
    				"Processing": &integrationspaces.BusinessProcessStageArgs{
    					Description: pulumi.String("Processing"),
    					Properties: pulumi.StringMap{
    						"ApprovalState": pulumi.String("String"),
    						"ApproverName":  pulumi.String("String"),
    						"POAmount":      pulumi.String("Integer"),
    					},
    					StagesBefore: pulumi.StringArray{
    						pulumi.String("Received"),
    					},
    				},
    				"Received": &integrationspaces.BusinessProcessStageArgs{
    					Description: pulumi.String("received"),
    					Properties: pulumi.StringMap{
    						"City":     pulumi.String("String"),
    						"Product":  pulumi.String("String"),
    						"Quantity": pulumi.String("Integer"),
    						"State":    pulumi.String("String"),
    					},
    				},
    				"Shipped": &integrationspaces.BusinessProcessStageArgs{
    					Description: pulumi.String("Shipped"),
    					Properties: pulumi.StringMap{
    						"ShipPriority": pulumi.String("Integer"),
    						"TrackingID":   pulumi.String("Integer"),
    					},
    					StagesBefore: pulumi.StringArray{
    						pulumi.String("Denied"),
    					},
    				},
    			},
    			Description: pulumi.String("First Business Process"),
    			Identifier: &integrationspaces.BusinessProcessIdentifierArgs{
    				PropertyName: pulumi.String("businessIdentifier-1"),
    				PropertyType: pulumi.String("String"),
    			},
    			ResourceGroupName:              pulumi.String("testrg"),
    			SpaceName:                      pulumi.String("Space1"),
    			TableName:                      pulumi.String("table1"),
    			TrackingDataStoreReferenceName: pulumi.String("trackingDataStoreReferenceName1"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.integrationspaces.BusinessProcess;
    import com.pulumi.azurenative.integrationspaces.BusinessProcessArgs;
    import com.pulumi.azurenative.integrationspaces.inputs.BusinessProcessIdentifierArgs;
    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 businessProcess = new BusinessProcess("businessProcess", BusinessProcessArgs.builder()        
                .applicationName("Application1")
                .businessProcessMapping(Map.ofEntries(
                    Map.entry("Completed", Map.ofEntries(
                        Map.entry("logicAppResourceId", "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1"),
                        Map.entry("operationName", "CompletedPO"),
                        Map.entry("operationType", "Action"),
                        Map.entry("workflowName", "Fulfillment")
                    )),
                    Map.entry("Denied", Map.ofEntries(
                        Map.entry("logicAppResourceId", "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1"),
                        Map.entry("operationName", "DeniedPO"),
                        Map.entry("operationType", "Action"),
                        Map.entry("workflowName", "Fulfillment")
                    )),
                    Map.entry("Processing", Map.ofEntries(
                        Map.entry("logicAppResourceId", "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1"),
                        Map.entry("operationName", "ApprovedPO"),
                        Map.entry("operationType", "Action"),
                        Map.entry("workflowName", "PurchaseOrder")
                    )),
                    Map.entry("Received", Map.ofEntries(
                        Map.entry("logicAppResourceId", "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1"),
                        Map.entry("operationName", "manual"),
                        Map.entry("operationType", "Trigger"),
                        Map.entry("workflowName", "PurchaseOrder")
                    )),
                    Map.entry("Shipped", Map.ofEntries(
                        Map.entry("logicAppResourceId", "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1"),
                        Map.entry("operationName", "ShippedPO"),
                        Map.entry("operationType", "Action"),
                        Map.entry("workflowName", "Fulfillment")
                    ))
                ))
                .businessProcessName("BusinessProcess1")
                .businessProcessStages(Map.ofEntries(
                    Map.entry("Completed", Map.ofEntries(
                        Map.entry("description", "Completed"),
                        Map.entry("stagesBefore", "Shipped")
                    )),
                    Map.entry("Denied", Map.ofEntries(
                        Map.entry("description", "Denied"),
                        Map.entry("stagesBefore", "Processing")
                    )),
                    Map.entry("Processing", Map.ofEntries(
                        Map.entry("description", "Processing"),
                        Map.entry("properties", Map.ofEntries(
                            Map.entry("ApprovalState", "String"),
                            Map.entry("ApproverName", "String"),
                            Map.entry("POAmount", "Integer")
                        )),
                        Map.entry("stagesBefore", "Received")
                    )),
                    Map.entry("Received", Map.ofEntries(
                        Map.entry("description", "received"),
                        Map.entry("properties", Map.ofEntries(
                            Map.entry("City", "String"),
                            Map.entry("Product", "String"),
                            Map.entry("Quantity", "Integer"),
                            Map.entry("State", "String")
                        ))
                    )),
                    Map.entry("Shipped", Map.ofEntries(
                        Map.entry("description", "Shipped"),
                        Map.entry("properties", Map.ofEntries(
                            Map.entry("ShipPriority", "Integer"),
                            Map.entry("TrackingID", "Integer")
                        )),
                        Map.entry("stagesBefore", "Denied")
                    ))
                ))
                .description("First Business Process")
                .identifier(BusinessProcessIdentifierArgs.builder()
                    .propertyName("businessIdentifier-1")
                    .propertyType("String")
                    .build())
                .resourceGroupName("testrg")
                .spaceName("Space1")
                .tableName("table1")
                .trackingDataStoreReferenceName("trackingDataStoreReferenceName1")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    business_process = azure_native.integrationspaces.BusinessProcess("businessProcess",
        application_name="Application1",
        business_process_mapping={
            "Completed": azure_native.integrationspaces.BusinessProcessMappingItemArgs(
                logic_app_resource_id="subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                operation_name="CompletedPO",
                operation_type="Action",
                workflow_name="Fulfillment",
            ),
            "Denied": azure_native.integrationspaces.BusinessProcessMappingItemArgs(
                logic_app_resource_id="subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                operation_name="DeniedPO",
                operation_type="Action",
                workflow_name="Fulfillment",
            ),
            "Processing": azure_native.integrationspaces.BusinessProcessMappingItemArgs(
                logic_app_resource_id="subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                operation_name="ApprovedPO",
                operation_type="Action",
                workflow_name="PurchaseOrder",
            ),
            "Received": azure_native.integrationspaces.BusinessProcessMappingItemArgs(
                logic_app_resource_id="subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                operation_name="manual",
                operation_type="Trigger",
                workflow_name="PurchaseOrder",
            ),
            "Shipped": azure_native.integrationspaces.BusinessProcessMappingItemArgs(
                logic_app_resource_id="subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                operation_name="ShippedPO",
                operation_type="Action",
                workflow_name="Fulfillment",
            ),
        },
        business_process_name="BusinessProcess1",
        business_process_stages={
            "Completed": azure_native.integrationspaces.BusinessProcessStageArgs(
                description="Completed",
                stages_before=["Shipped"],
            ),
            "Denied": azure_native.integrationspaces.BusinessProcessStageArgs(
                description="Denied",
                stages_before=["Processing"],
            ),
            "Processing": azure_native.integrationspaces.BusinessProcessStageArgs(
                description="Processing",
                properties={
                    "ApprovalState": "String",
                    "ApproverName": "String",
                    "POAmount": "Integer",
                },
                stages_before=["Received"],
            ),
            "Received": azure_native.integrationspaces.BusinessProcessStageArgs(
                description="received",
                properties={
                    "City": "String",
                    "Product": "String",
                    "Quantity": "Integer",
                    "State": "String",
                },
            ),
            "Shipped": azure_native.integrationspaces.BusinessProcessStageArgs(
                description="Shipped",
                properties={
                    "ShipPriority": "Integer",
                    "TrackingID": "Integer",
                },
                stages_before=["Denied"],
            ),
        },
        description="First Business Process",
        identifier=azure_native.integrationspaces.BusinessProcessIdentifierArgs(
            property_name="businessIdentifier-1",
            property_type="String",
        ),
        resource_group_name="testrg",
        space_name="Space1",
        table_name="table1",
        tracking_data_store_reference_name="trackingDataStoreReferenceName1")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const businessProcess = new azure_native.integrationspaces.BusinessProcess("businessProcess", {
        applicationName: "Application1",
        businessProcessMapping: {
            Completed: {
                logicAppResourceId: "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                operationName: "CompletedPO",
                operationType: "Action",
                workflowName: "Fulfillment",
            },
            Denied: {
                logicAppResourceId: "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                operationName: "DeniedPO",
                operationType: "Action",
                workflowName: "Fulfillment",
            },
            Processing: {
                logicAppResourceId: "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                operationName: "ApprovedPO",
                operationType: "Action",
                workflowName: "PurchaseOrder",
            },
            Received: {
                logicAppResourceId: "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                operationName: "manual",
                operationType: "Trigger",
                workflowName: "PurchaseOrder",
            },
            Shipped: {
                logicAppResourceId: "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
                operationName: "ShippedPO",
                operationType: "Action",
                workflowName: "Fulfillment",
            },
        },
        businessProcessName: "BusinessProcess1",
        businessProcessStages: {
            Completed: {
                description: "Completed",
                stagesBefore: ["Shipped"],
            },
            Denied: {
                description: "Denied",
                stagesBefore: ["Processing"],
            },
            Processing: {
                description: "Processing",
                properties: {
                    ApprovalState: "String",
                    ApproverName: "String",
                    POAmount: "Integer",
                },
                stagesBefore: ["Received"],
            },
            Received: {
                description: "received",
                properties: {
                    City: "String",
                    Product: "String",
                    Quantity: "Integer",
                    State: "String",
                },
            },
            Shipped: {
                description: "Shipped",
                properties: {
                    ShipPriority: "Integer",
                    TrackingID: "Integer",
                },
                stagesBefore: ["Denied"],
            },
        },
        description: "First Business Process",
        identifier: {
            propertyName: "businessIdentifier-1",
            propertyType: "String",
        },
        resourceGroupName: "testrg",
        spaceName: "Space1",
        tableName: "table1",
        trackingDataStoreReferenceName: "trackingDataStoreReferenceName1",
    });
    
    resources:
      businessProcess:
        type: azure-native:integrationspaces:BusinessProcess
        properties:
          applicationName: Application1
          businessProcessMapping:
            Completed:
              logicAppResourceId: subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1
              operationName: CompletedPO
              operationType: Action
              workflowName: Fulfillment
            Denied:
              logicAppResourceId: subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1
              operationName: DeniedPO
              operationType: Action
              workflowName: Fulfillment
            Processing:
              logicAppResourceId: subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1
              operationName: ApprovedPO
              operationType: Action
              workflowName: PurchaseOrder
            Received:
              logicAppResourceId: subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1
              operationName: manual
              operationType: Trigger
              workflowName: PurchaseOrder
            Shipped:
              logicAppResourceId: subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1
              operationName: ShippedPO
              operationType: Action
              workflowName: Fulfillment
          businessProcessName: BusinessProcess1
          businessProcessStages:
            Completed:
              description: Completed
              stagesBefore:
                - Shipped
            Denied:
              description: Denied
              stagesBefore:
                - Processing
            Processing:
              description: Processing
              properties:
                ApprovalState: String
                ApproverName: String
                POAmount: Integer
              stagesBefore:
                - Received
            Received:
              description: received
              properties:
                City: String
                Product: String
                Quantity: Integer
                State: String
            Shipped:
              description: Shipped
              properties:
                ShipPriority: Integer
                TrackingID: Integer
              stagesBefore:
                - Denied
          description: First Business Process
          identifier:
            propertyName: businessIdentifier-1
            propertyType: String
          resourceGroupName: testrg
          spaceName: Space1
          tableName: table1
          trackingDataStoreReferenceName: trackingDataStoreReferenceName1
    

    Create BusinessProcess Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BusinessProcess(name: string, args: BusinessProcessArgs, opts?: CustomResourceOptions);
    @overload
    def BusinessProcess(resource_name: str,
                        args: BusinessProcessArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def BusinessProcess(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        application_name: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        space_name: Optional[str] = None,
                        business_process_mapping: Optional[Mapping[str, BusinessProcessMappingItemArgs]] = None,
                        business_process_name: Optional[str] = None,
                        business_process_stages: Optional[Mapping[str, BusinessProcessStageArgs]] = None,
                        description: Optional[str] = None,
                        identifier: Optional[BusinessProcessIdentifierArgs] = None,
                        table_name: Optional[str] = None,
                        tracking_data_store_reference_name: Optional[str] = None)
    func NewBusinessProcess(ctx *Context, name string, args BusinessProcessArgs, opts ...ResourceOption) (*BusinessProcess, error)
    public BusinessProcess(string name, BusinessProcessArgs args, CustomResourceOptions? opts = null)
    public BusinessProcess(String name, BusinessProcessArgs args)
    public BusinessProcess(String name, BusinessProcessArgs args, CustomResourceOptions options)
    
    type: azure-native:integrationspaces:BusinessProcess
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args BusinessProcessArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args BusinessProcessArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args BusinessProcessArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BusinessProcessArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BusinessProcessArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var businessProcessResource = new AzureNative.IntegrationSpaces.BusinessProcess("businessProcessResource", new()
    {
        ApplicationName = "string",
        ResourceGroupName = "string",
        SpaceName = "string",
        BusinessProcessMapping = 
        {
            { "string", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessMappingItemArgs
            {
                LogicAppResourceId = "string",
                OperationName = "string",
                OperationType = "string",
                WorkflowName = "string",
            } },
        },
        BusinessProcessName = "string",
        BusinessProcessStages = 
        {
            { "string", new AzureNative.IntegrationSpaces.Inputs.BusinessProcessStageArgs
            {
                Description = "string",
                Properties = 
                {
                    { "string", "string" },
                },
                StagesBefore = new[]
                {
                    "string",
                },
            } },
        },
        Description = "string",
        Identifier = new AzureNative.IntegrationSpaces.Inputs.BusinessProcessIdentifierArgs
        {
            PropertyName = "string",
            PropertyType = "string",
        },
        TableName = "string",
        TrackingDataStoreReferenceName = "string",
    });
    
    example, err := integrationspaces.NewBusinessProcess(ctx, "businessProcessResource", &integrationspaces.BusinessProcessArgs{
    ApplicationName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    SpaceName: pulumi.String("string"),
    BusinessProcessMapping: integrationspaces.BusinessProcessMappingItemMap{
    "string": &integrationspaces.BusinessProcessMappingItemArgs{
    LogicAppResourceId: pulumi.String("string"),
    OperationName: pulumi.String("string"),
    OperationType: pulumi.String("string"),
    WorkflowName: pulumi.String("string"),
    },
    },
    BusinessProcessName: pulumi.String("string"),
    BusinessProcessStages: integrationspaces.BusinessProcessStageMap{
    "string": &integrationspaces.BusinessProcessStageArgs{
    Description: pulumi.String("string"),
    Properties: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    StagesBefore: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    Description: pulumi.String("string"),
    Identifier: &integrationspaces.BusinessProcessIdentifierArgs{
    PropertyName: pulumi.String("string"),
    PropertyType: pulumi.String("string"),
    },
    TableName: pulumi.String("string"),
    TrackingDataStoreReferenceName: pulumi.String("string"),
    })
    
    var businessProcessResource = new BusinessProcess("businessProcessResource", BusinessProcessArgs.builder()        
        .applicationName("string")
        .resourceGroupName("string")
        .spaceName("string")
        .businessProcessMapping(Map.of("string", Map.ofEntries(
            Map.entry("logicAppResourceId", "string"),
            Map.entry("operationName", "string"),
            Map.entry("operationType", "string"),
            Map.entry("workflowName", "string")
        )))
        .businessProcessName("string")
        .businessProcessStages(Map.of("string", Map.ofEntries(
            Map.entry("description", "string"),
            Map.entry("properties", Map.of("string", "string")),
            Map.entry("stagesBefore", "string")
        )))
        .description("string")
        .identifier(BusinessProcessIdentifierArgs.builder()
            .propertyName("string")
            .propertyType("string")
            .build())
        .tableName("string")
        .trackingDataStoreReferenceName("string")
        .build());
    
    business_process_resource = azure_native.integrationspaces.BusinessProcess("businessProcessResource",
        application_name="string",
        resource_group_name="string",
        space_name="string",
        business_process_mapping={
            "string": azure_native.integrationspaces.BusinessProcessMappingItemArgs(
                logic_app_resource_id="string",
                operation_name="string",
                operation_type="string",
                workflow_name="string",
            ),
        },
        business_process_name="string",
        business_process_stages={
            "string": azure_native.integrationspaces.BusinessProcessStageArgs(
                description="string",
                properties={
                    "string": "string",
                },
                stages_before=["string"],
            ),
        },
        description="string",
        identifier=azure_native.integrationspaces.BusinessProcessIdentifierArgs(
            property_name="string",
            property_type="string",
        ),
        table_name="string",
        tracking_data_store_reference_name="string")
    
    const businessProcessResource = new azure_native.integrationspaces.BusinessProcess("businessProcessResource", {
        applicationName: "string",
        resourceGroupName: "string",
        spaceName: "string",
        businessProcessMapping: {
            string: {
                logicAppResourceId: "string",
                operationName: "string",
                operationType: "string",
                workflowName: "string",
            },
        },
        businessProcessName: "string",
        businessProcessStages: {
            string: {
                description: "string",
                properties: {
                    string: "string",
                },
                stagesBefore: ["string"],
            },
        },
        description: "string",
        identifier: {
            propertyName: "string",
            propertyType: "string",
        },
        tableName: "string",
        trackingDataStoreReferenceName: "string",
    });
    
    type: azure-native:integrationspaces:BusinessProcess
    properties:
        applicationName: string
        businessProcessMapping:
            string:
                logicAppResourceId: string
                operationName: string
                operationType: string
                workflowName: string
        businessProcessName: string
        businessProcessStages:
            string:
                description: string
                properties:
                    string: string
                stagesBefore:
                    - string
        description: string
        identifier:
            propertyName: string
            propertyType: string
        resourceGroupName: string
        spaceName: string
        tableName: string
        trackingDataStoreReferenceName: string
    

    BusinessProcess Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The BusinessProcess resource accepts the following input properties:

    ApplicationName string
    The name of the Application
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    SpaceName string
    The name of the space
    BusinessProcessMapping Dictionary<string, Pulumi.AzureNative.IntegrationSpaces.Inputs.BusinessProcessMappingItemArgs>
    The business process mapping.
    BusinessProcessName string
    The name of the business process
    BusinessProcessStages Dictionary<string, Pulumi.AzureNative.IntegrationSpaces.Inputs.BusinessProcessStageArgs>
    The business process stages.
    Description string
    The description of the business process.
    Identifier Pulumi.AzureNative.IntegrationSpaces.Inputs.BusinessProcessIdentifier
    The business process identifier.
    TableName string
    The table name of the business process.
    TrackingDataStoreReferenceName string
    The tracking data store reference name.
    ApplicationName string
    The name of the Application
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    SpaceName string
    The name of the space
    BusinessProcessMapping map[string]BusinessProcessMappingItemArgs
    The business process mapping.
    BusinessProcessName string
    The name of the business process
    BusinessProcessStages map[string]BusinessProcessStageArgs
    The business process stages.
    Description string
    The description of the business process.
    Identifier BusinessProcessIdentifierArgs
    The business process identifier.
    TableName string
    The table name of the business process.
    TrackingDataStoreReferenceName string
    The tracking data store reference name.
    applicationName String
    The name of the Application
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    spaceName String
    The name of the space
    businessProcessMapping Map<String,BusinessProcessMappingItemArgs>
    The business process mapping.
    businessProcessName String
    The name of the business process
    businessProcessStages Map<String,BusinessProcessStageArgs>
    The business process stages.
    description String
    The description of the business process.
    identifier BusinessProcessIdentifier
    The business process identifier.
    tableName String
    The table name of the business process.
    trackingDataStoreReferenceName String
    The tracking data store reference name.
    applicationName string
    The name of the Application
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    spaceName string
    The name of the space
    businessProcessMapping {[key: string]: BusinessProcessMappingItemArgs}
    The business process mapping.
    businessProcessName string
    The name of the business process
    businessProcessStages {[key: string]: BusinessProcessStageArgs}
    The business process stages.
    description string
    The description of the business process.
    identifier BusinessProcessIdentifier
    The business process identifier.
    tableName string
    The table name of the business process.
    trackingDataStoreReferenceName string
    The tracking data store reference name.
    application_name str
    The name of the Application
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    space_name str
    The name of the space
    business_process_mapping Mapping[str, BusinessProcessMappingItemArgs]
    The business process mapping.
    business_process_name str
    The name of the business process
    business_process_stages Mapping[str, BusinessProcessStageArgs]
    The business process stages.
    description str
    The description of the business process.
    identifier BusinessProcessIdentifierArgs
    The business process identifier.
    table_name str
    The table name of the business process.
    tracking_data_store_reference_name str
    The tracking data store reference name.
    applicationName String
    The name of the Application
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    spaceName String
    The name of the space
    businessProcessMapping Map<Property Map>
    The business process mapping.
    businessProcessName String
    The name of the business process
    businessProcessStages Map<Property Map>
    The business process stages.
    description String
    The description of the business process.
    identifier Property Map
    The business process identifier.
    tableName String
    The table name of the business process.
    trackingDataStoreReferenceName String
    The tracking data store reference name.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BusinessProcess resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData Pulumi.AzureNative.IntegrationSpaces.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Version string
    The version of the business process.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    The status of the last operation.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Version string
    The version of the business process.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    version String
    The version of the business process.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    The status of the last operation.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    version string
    The version of the business process.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    The status of the last operation.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    version str
    The version of the business process.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    The status of the last operation.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    version String
    The version of the business process.

    Supporting Types

    BusinessProcessIdentifier, BusinessProcessIdentifierArgs

    PropertyName string
    The property name of the business process identifier.
    PropertyType string
    The property type of the business process identifier.
    PropertyName string
    The property name of the business process identifier.
    PropertyType string
    The property type of the business process identifier.
    propertyName String
    The property name of the business process identifier.
    propertyType String
    The property type of the business process identifier.
    propertyName string
    The property name of the business process identifier.
    propertyType string
    The property type of the business process identifier.
    property_name str
    The property name of the business process identifier.
    property_type str
    The property type of the business process identifier.
    propertyName String
    The property name of the business process identifier.
    propertyType String
    The property type of the business process identifier.

    BusinessProcessIdentifierResponse, BusinessProcessIdentifierResponseArgs

    PropertyName string
    The property name of the business process identifier.
    PropertyType string
    The property type of the business process identifier.
    PropertyName string
    The property name of the business process identifier.
    PropertyType string
    The property type of the business process identifier.
    propertyName String
    The property name of the business process identifier.
    propertyType String
    The property type of the business process identifier.
    propertyName string
    The property name of the business process identifier.
    propertyType string
    The property type of the business process identifier.
    property_name str
    The property name of the business process identifier.
    property_type str
    The property type of the business process identifier.
    propertyName String
    The property name of the business process identifier.
    propertyType String
    The property type of the business process identifier.

    BusinessProcessMappingItem, BusinessProcessMappingItemArgs

    LogicAppResourceId string
    The logic app resource id.
    OperationName string
    The operation name.
    OperationType string
    The mapping item operation type of the business process.
    WorkflowName string
    The workflow name within the logic app.
    LogicAppResourceId string
    The logic app resource id.
    OperationName string
    The operation name.
    OperationType string
    The mapping item operation type of the business process.
    WorkflowName string
    The workflow name within the logic app.
    logicAppResourceId String
    The logic app resource id.
    operationName String
    The operation name.
    operationType String
    The mapping item operation type of the business process.
    workflowName String
    The workflow name within the logic app.
    logicAppResourceId string
    The logic app resource id.
    operationName string
    The operation name.
    operationType string
    The mapping item operation type of the business process.
    workflowName string
    The workflow name within the logic app.
    logic_app_resource_id str
    The logic app resource id.
    operation_name str
    The operation name.
    operation_type str
    The mapping item operation type of the business process.
    workflow_name str
    The workflow name within the logic app.
    logicAppResourceId String
    The logic app resource id.
    operationName String
    The operation name.
    operationType String
    The mapping item operation type of the business process.
    workflowName String
    The workflow name within the logic app.

    BusinessProcessMappingItemResponse, BusinessProcessMappingItemResponseArgs

    LogicAppResourceId string
    The logic app resource id.
    OperationName string
    The operation name.
    OperationType string
    The mapping item operation type of the business process.
    WorkflowName string
    The workflow name within the logic app.
    LogicAppResourceId string
    The logic app resource id.
    OperationName string
    The operation name.
    OperationType string
    The mapping item operation type of the business process.
    WorkflowName string
    The workflow name within the logic app.
    logicAppResourceId String
    The logic app resource id.
    operationName String
    The operation name.
    operationType String
    The mapping item operation type of the business process.
    workflowName String
    The workflow name within the logic app.
    logicAppResourceId string
    The logic app resource id.
    operationName string
    The operation name.
    operationType string
    The mapping item operation type of the business process.
    workflowName string
    The workflow name within the logic app.
    logic_app_resource_id str
    The logic app resource id.
    operation_name str
    The operation name.
    operation_type str
    The mapping item operation type of the business process.
    workflow_name str
    The workflow name within the logic app.
    logicAppResourceId String
    The logic app resource id.
    operationName String
    The operation name.
    operationType String
    The mapping item operation type of the business process.
    workflowName String
    The workflow name within the logic app.

    BusinessProcessStage, BusinessProcessStageArgs

    Description string
    The description of the business stage.
    Properties Dictionary<string, string>
    The properties within the properties of the business process stage.
    StagesBefore List<string>
    The property to keep track of stages before current in the business process stage.
    Description string
    The description of the business stage.
    Properties map[string]string
    The properties within the properties of the business process stage.
    StagesBefore []string
    The property to keep track of stages before current in the business process stage.
    description String
    The description of the business stage.
    properties Map<String,String>
    The properties within the properties of the business process stage.
    stagesBefore List<String>
    The property to keep track of stages before current in the business process stage.
    description string
    The description of the business stage.
    properties {[key: string]: string}
    The properties within the properties of the business process stage.
    stagesBefore string[]
    The property to keep track of stages before current in the business process stage.
    description str
    The description of the business stage.
    properties Mapping[str, str]
    The properties within the properties of the business process stage.
    stages_before Sequence[str]
    The property to keep track of stages before current in the business process stage.
    description String
    The description of the business stage.
    properties Map<String>
    The properties within the properties of the business process stage.
    stagesBefore List<String>
    The property to keep track of stages before current in the business process stage.

    BusinessProcessStageResponse, BusinessProcessStageResponseArgs

    Description string
    The description of the business stage.
    Properties Dictionary<string, string>
    The properties within the properties of the business process stage.
    StagesBefore List<string>
    The property to keep track of stages before current in the business process stage.
    Description string
    The description of the business stage.
    Properties map[string]string
    The properties within the properties of the business process stage.
    StagesBefore []string
    The property to keep track of stages before current in the business process stage.
    description String
    The description of the business stage.
    properties Map<String,String>
    The properties within the properties of the business process stage.
    stagesBefore List<String>
    The property to keep track of stages before current in the business process stage.
    description string
    The description of the business stage.
    properties {[key: string]: string}
    The properties within the properties of the business process stage.
    stagesBefore string[]
    The property to keep track of stages before current in the business process stage.
    description str
    The description of the business stage.
    properties Mapping[str, str]
    The properties within the properties of the business process stage.
    stages_before Sequence[str]
    The property to keep track of stages before current in the business process stage.
    description String
    The description of the business stage.
    properties Map<String>
    The properties within the properties of the business process stage.
    stagesBefore List<String>
    The property to keep track of stages before current in the business process stage.

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:integrationspaces:BusinessProcess BusinessProcess1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.IntegrationSpaces/spaces/{spaceName}/applications/{applicationName}/businessProcesses/{businessProcessName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi