azure-native.integrationspaces.BusinessProcess
Explore with Pulumi AI
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 (
integrationspaces "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": {
"logic_app_resource_id": "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
"operation_name": "CompletedPO",
"operation_type": "Action",
"workflow_name": "Fulfillment",
},
"Denied": {
"logic_app_resource_id": "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
"operation_name": "DeniedPO",
"operation_type": "Action",
"workflow_name": "Fulfillment",
},
"Processing": {
"logic_app_resource_id": "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
"operation_name": "ApprovedPO",
"operation_type": "Action",
"workflow_name": "PurchaseOrder",
},
"Received": {
"logic_app_resource_id": "subscriptions/sub1/resourcegroups/group1/providers/Microsoft.Web/sites/logicApp1",
"operation_name": "manual",
"operation_type": "Trigger",
"workflow_name": "PurchaseOrder",
},
"Shipped": {
"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": {
"description": "Completed",
"stages_before": ["Shipped"],
},
"Denied": {
"description": "Denied",
"stages_before": ["Processing"],
},
"Processing": {
"description": "Processing",
"properties": {
"ApprovalState": "String",
"ApproverName": "String",
"POAmount": "Integer",
},
"stages_before": ["Received"],
},
"Received": {
"description": "received",
"properties": {
"City": "String",
"Product": "String",
"Quantity": "Integer",
"State": "String",
},
},
"Shipped": {
"description": "Shipped",
"properties": {
"ShipPriority": "Integer",
"TrackingID": "Integer",
},
"stages_before": ["Denied"],
},
},
description="First Business Process",
identifier={
"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.
Constructor 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": {
"logic_app_resource_id": "string",
"operation_name": "string",
"operation_type": "string",
"workflow_name": "string",
},
},
business_process_name="string",
business_process_stages={
"string": {
"description": "string",
"properties": {
"string": "string",
},
"stages_before": ["string"],
},
},
description="string",
identifier={
"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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The BusinessProcess resource accepts the following input properties:
- Application
Name string - The name of the Application
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Space
Name string - The name of the space
- Business
Process Dictionary<string, Pulumi.Mapping Azure Native. Integration Spaces. Inputs. Business Process Mapping Item Args> - The business process mapping.
- Business
Process stringName - The name of the business process
- Business
Process Dictionary<string, Pulumi.Stages Azure Native. Integration Spaces. Inputs. Business Process Stage Args> - The business process stages.
- Description string
- The description of the business process.
- Identifier
Pulumi.
Azure Native. Integration Spaces. Inputs. Business Process Identifier - The business process identifier.
- Table
Name string - The table name of the business process.
- Tracking
Data stringStore Reference Name - The tracking data store reference name.
- Application
Name string - The name of the Application
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Space
Name string - The name of the space
- Business
Process map[string]BusinessMapping Process Mapping Item Args - The business process mapping.
- Business
Process stringName - The name of the business process
- Business
Process map[string]BusinessStages Process Stage Args - The business process stages.
- Description string
- The description of the business process.
- Identifier
Business
Process Identifier Args - The business process identifier.
- Table
Name string - The table name of the business process.
- Tracking
Data stringStore Reference Name - The tracking data store reference name.
- application
Name String - The name of the Application
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- space
Name String - The name of the space
- business
Process Map<String,BusinessMapping Process Mapping Item Args> - The business process mapping.
- business
Process StringName - The name of the business process
- business
Process Map<String,BusinessStages Process Stage Args> - The business process stages.
- description String
- The description of the business process.
- identifier
Business
Process Identifier - The business process identifier.
- table
Name String - The table name of the business process.
- tracking
Data StringStore Reference Name - The tracking data store reference name.
- application
Name string - The name of the Application
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- space
Name string - The name of the space
- business
Process {[key: string]: BusinessMapping Process Mapping Item Args} - The business process mapping.
- business
Process stringName - The name of the business process
- business
Process {[key: string]: BusinessStages Process Stage Args} - The business process stages.
- description string
- The description of the business process.
- identifier
Business
Process Identifier - The business process identifier.
- table
Name string - The table name of the business process.
- tracking
Data stringStore Reference Name - The tracking data store reference name.
- application_
name str - The name of the Application
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- space_
name str - The name of the space
- business_
process_ Mapping[str, Businessmapping Process Mapping Item Args] - The business process mapping.
- business_
process_ strname - The name of the business process
- business_
process_ Mapping[str, Businessstages Process Stage Args] - The business process stages.
- description str
- The description of the business process.
- identifier
Business
Process Identifier Args - The business process identifier.
- table_
name str - The table name of the business process.
- tracking_
data_ strstore_ reference_ name - The tracking data store reference name.
- application
Name String - The name of the Application
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- space
Name String - The name of the space
- business
Process Map<Property Map>Mapping - The business process mapping.
- business
Process StringName - The name of the business process
- business
Process Map<Property Map>Stages - The business process stages.
- description String
- The description of the business process.
- identifier Property Map
- The business process identifier.
- table
Name String - The table name of the business process.
- tracking
Data StringStore Reference Name - 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
- Provisioning
State string - The status of the last operation.
- System
Data Pulumi.Azure Native. Integration Spaces. Outputs. System Data Response - 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
- Provisioning
State string - The status of the last operation.
- System
Data SystemData Response - 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
- provisioning
State String - The status of the last operation.
- system
Data SystemData Response - 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
- provisioning
State string - The status of the last operation.
- system
Data SystemData Response - 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 SystemData Response - 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
- provisioning
State String - The status of the last operation.
- system
Data 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
- Property
Name string - The property name of the business process identifier.
- Property
Type string - The property type of the business process identifier.
- Property
Name string - The property name of the business process identifier.
- Property
Type string - The property type of the business process identifier.
- property
Name String - The property name of the business process identifier.
- property
Type String - The property type of the business process identifier.
- property
Name string - The property name of the business process identifier.
- property
Type 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.
- property
Name String - The property name of the business process identifier.
- property
Type String - The property type of the business process identifier.
BusinessProcessIdentifierResponse, BusinessProcessIdentifierResponseArgs
- Property
Name string - The property name of the business process identifier.
- Property
Type string - The property type of the business process identifier.
- Property
Name string - The property name of the business process identifier.
- Property
Type string - The property type of the business process identifier.
- property
Name String - The property name of the business process identifier.
- property
Type String - The property type of the business process identifier.
- property
Name string - The property name of the business process identifier.
- property
Type 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.
- property
Name String - The property name of the business process identifier.
- property
Type String - The property type of the business process identifier.
BusinessProcessMappingItem, BusinessProcessMappingItemArgs
- Logic
App stringResource Id - The logic app resource id.
- Operation
Name string - The operation name.
- Operation
Type string - The mapping item operation type of the business process.
- Workflow
Name string - The workflow name within the logic app.
- Logic
App stringResource Id - The logic app resource id.
- Operation
Name string - The operation name.
- Operation
Type string - The mapping item operation type of the business process.
- Workflow
Name string - The workflow name within the logic app.
- logic
App StringResource Id - The logic app resource id.
- operation
Name String - The operation name.
- operation
Type String - The mapping item operation type of the business process.
- workflow
Name String - The workflow name within the logic app.
- logic
App stringResource Id - The logic app resource id.
- operation
Name string - The operation name.
- operation
Type string - The mapping item operation type of the business process.
- workflow
Name string - The workflow name within the logic app.
- logic_
app_ strresource_ id - 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.
- logic
App StringResource Id - The logic app resource id.
- operation
Name String - The operation name.
- operation
Type String - The mapping item operation type of the business process.
- workflow
Name String - The workflow name within the logic app.
BusinessProcessMappingItemResponse, BusinessProcessMappingItemResponseArgs
- Logic
App stringResource Id - The logic app resource id.
- Operation
Name string - The operation name.
- Operation
Type string - The mapping item operation type of the business process.
- Workflow
Name string - The workflow name within the logic app.
- Logic
App stringResource Id - The logic app resource id.
- Operation
Name string - The operation name.
- Operation
Type string - The mapping item operation type of the business process.
- Workflow
Name string - The workflow name within the logic app.
- logic
App StringResource Id - The logic app resource id.
- operation
Name String - The operation name.
- operation
Type String - The mapping item operation type of the business process.
- workflow
Name String - The workflow name within the logic app.
- logic
App stringResource Id - The logic app resource id.
- operation
Name string - The operation name.
- operation
Type string - The mapping item operation type of the business process.
- workflow
Name string - The workflow name within the logic app.
- logic_
app_ strresource_ id - 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.
- logic
App StringResource Id - The logic app resource id.
- operation
Name String - The operation name.
- operation
Type String - The mapping item operation type of the business process.
- workflow
Name 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.
- Stages
Before 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.
- Stages
Before []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.
- stages
Before 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.
- stages
Before 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.
- stages
Before 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.
- Stages
Before 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.
- Stages
Before []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.
- stages
Before 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.
- stages
Before 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.
- stages
Before List<String> - The property to keep track of stages before current in the business process stage.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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