1. Packages
  2. Azure Native v2
  3. API Docs
  4. logic
  5. Workflow
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.logic.Workflow

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

The workflow type. Azure REST API version: 2019-05-01. Prior API version in Azure Native 1.x: 2019-05-01.

Other available API versions: 2015-02-01-preview, 2016-06-01, 2018-07-01-preview.

Example Usage

Create or update a workflow

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var workflow = new AzureNative.Logic.Workflow("workflow", new()
    {
        Definition = new Dictionary<string, object?>
        {
            ["$schema"] = "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
            ["actions"] = new Dictionary<string, object?>
            {
                ["Find_pet_by_ID"] = new Dictionary<string, object?>
                {
                    ["inputs"] = new Dictionary<string, object?>
                    {
                        ["host"] = new Dictionary<string, object?>
                        {
                            ["connection"] = new Dictionary<string, object?>
                            {
                                ["name"] = "@parameters('$connections')['test-custom-connector']['connectionId']",
                            },
                        },
                        ["method"] = "get",
                        ["path"] = "/pet/@{encodeURIComponent('1')}",
                    },
                    ["runAfter"] = new Dictionary<string, object?>
                    {
                    },
                    ["type"] = "ApiConnection",
                },
            },
            ["contentVersion"] = "1.0.0.0",
            ["outputs"] = new Dictionary<string, object?>
            {
            },
            ["parameters"] = new Dictionary<string, object?>
            {
                ["$connections"] = new Dictionary<string, object?>
                {
                    ["defaultValue"] = new Dictionary<string, object?>
                    {
                    },
                    ["type"] = "Object",
                },
            },
            ["triggers"] = new Dictionary<string, object?>
            {
                ["manual"] = new Dictionary<string, object?>
                {
                    ["inputs"] = new Dictionary<string, object?>
                    {
                        ["schema"] = new Dictionary<string, object?>
                        {
                        },
                    },
                    ["kind"] = "Http",
                    ["type"] = "Request",
                },
            },
        },
        IntegrationAccount = new AzureNative.Logic.Inputs.ResourceReferenceArgs
        {
            Id = "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/integrationAccounts/test-integration-account",
        },
        Location = "brazilsouth",
        Parameters = 
        {
            { "$connections", new AzureNative.Logic.Inputs.WorkflowParameterArgs
            {
                Value = new Dictionary<string, object?>
                {
                    ["test-custom-connector"] = new Dictionary<string, object?>
                    {
                        ["connectionId"] = "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/connections/test-custom-connector",
                        ["connectionName"] = "test-custom-connector",
                        ["id"] = "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/brazilsouth/managedApis/test-custom-connector",
                    },
                },
            } },
        },
        ResourceGroupName = "test-resource-group",
        Tags = null,
        WorkflowName = "test-workflow",
    });

});
Copy
package main

import (
	logic "github.com/pulumi/pulumi-azure-native-sdk/logic/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := logic.NewWorkflow(ctx, "workflow", &logic.WorkflowArgs{
			Definition: pulumi.Any(map[string]interface{}{
				"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
				"actions": map[string]interface{}{
					"Find_pet_by_ID": map[string]interface{}{
						"inputs": map[string]interface{}{
							"host": map[string]interface{}{
								"connection": map[string]interface{}{
									"name": "@parameters('$connections')['test-custom-connector']['connectionId']",
								},
							},
							"method": "get",
							"path":   "/pet/@{encodeURIComponent('1')}",
						},
						"runAfter": map[string]interface{}{},
						"type":     "ApiConnection",
					},
				},
				"contentVersion": "1.0.0.0",
				"outputs":        map[string]interface{}{},
				"parameters": map[string]interface{}{
					"$connections": map[string]interface{}{
						"defaultValue": map[string]interface{}{},
						"type":         "Object",
					},
				},
				"triggers": map[string]interface{}{
					"manual": map[string]interface{}{
						"inputs": map[string]interface{}{
							"schema": map[string]interface{}{},
						},
						"kind": "Http",
						"type": "Request",
					},
				},
			}),
			IntegrationAccount: &logic.ResourceReferenceArgs{
				Id: pulumi.String("/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/integrationAccounts/test-integration-account"),
			},
			Location: pulumi.String("brazilsouth"),
			Parameters: logic.WorkflowParameterMap{
				"$connections": &logic.WorkflowParameterArgs{
					Value: pulumi.Any(map[string]interface{}{
						"test-custom-connector": map[string]interface{}{
							"connectionId":   "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/connections/test-custom-connector",
							"connectionName": "test-custom-connector",
							"id":             "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/brazilsouth/managedApis/test-custom-connector",
						},
					}),
				},
			},
			ResourceGroupName: pulumi.String("test-resource-group"),
			Tags:              pulumi.StringMap{},
			WorkflowName:      pulumi.String("test-workflow"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.logic.Workflow;
import com.pulumi.azurenative.logic.WorkflowArgs;
import com.pulumi.azurenative.logic.inputs.ResourceReferenceArgs;
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 workflow = new Workflow("workflow", WorkflowArgs.builder()
            .definition(Map.ofEntries(
                Map.entry("$schema", "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#"),
                Map.entry("actions", Map.of("Find_pet_by_ID", Map.ofEntries(
                    Map.entry("inputs", Map.ofEntries(
                        Map.entry("host", Map.of("connection", Map.of("name", "@parameters('$connections')['test-custom-connector']['connectionId']"))),
                        Map.entry("method", "get"),
                        Map.entry("path", "/pet/@{encodeURIComponent('1')}")
                    )),
                    Map.entry("runAfter", ),
                    Map.entry("type", "ApiConnection")
                ))),
                Map.entry("contentVersion", "1.0.0.0"),
                Map.entry("outputs", ),
                Map.entry("parameters", Map.of("$connections", Map.ofEntries(
                    Map.entry("defaultValue", ),
                    Map.entry("type", "Object")
                ))),
                Map.entry("triggers", Map.of("manual", Map.ofEntries(
                    Map.entry("inputs", Map.of("schema", )),
                    Map.entry("kind", "Http"),
                    Map.entry("type", "Request")
                )))
            ))
            .integrationAccount(ResourceReferenceArgs.builder()
                .id("/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/integrationAccounts/test-integration-account")
                .build())
            .location("brazilsouth")
            .parameters(Map.of("$connections", Map.of("value", Map.of("test-custom-connector", Map.ofEntries(
                Map.entry("connectionId", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/connections/test-custom-connector"),
                Map.entry("connectionName", "test-custom-connector"),
                Map.entry("id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/brazilsouth/managedApis/test-custom-connector")
            )))))
            .resourceGroupName("test-resource-group")
            .tags()
            .workflowName("test-workflow")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const workflow = new azure_native.logic.Workflow("workflow", {
    definition: {
        $schema: "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
        actions: {
            Find_pet_by_ID: {
                inputs: {
                    host: {
                        connection: {
                            name: "@parameters('$connections')['test-custom-connector']['connectionId']",
                        },
                    },
                    method: "get",
                    path: "/pet/@{encodeURIComponent('1')}",
                },
                runAfter: {},
                type: "ApiConnection",
            },
        },
        contentVersion: "1.0.0.0",
        outputs: {},
        parameters: {
            $connections: {
                defaultValue: {},
                type: "Object",
            },
        },
        triggers: {
            manual: {
                inputs: {
                    schema: {},
                },
                kind: "Http",
                type: "Request",
            },
        },
    },
    integrationAccount: {
        id: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/integrationAccounts/test-integration-account",
    },
    location: "brazilsouth",
    parameters: {
        $connections: {
            value: {
                "test-custom-connector": {
                    connectionId: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/connections/test-custom-connector",
                    connectionName: "test-custom-connector",
                    id: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/brazilsouth/managedApis/test-custom-connector",
                },
            },
        },
    },
    resourceGroupName: "test-resource-group",
    tags: {},
    workflowName: "test-workflow",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

workflow = azure_native.logic.Workflow("workflow",
    definition={
        "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
        "actions": {
            "Find_pet_by_ID": {
                "inputs": {
                    "host": {
                        "connection": {
                            "name": "@parameters('$connections')['test-custom-connector']['connectionId']",
                        },
                    },
                    "method": "get",
                    "path": "/pet/@{encodeURIComponent('1')}",
                },
                "runAfter": {},
                "type": "ApiConnection",
            },
        },
        "contentVersion": "1.0.0.0",
        "outputs": {},
        "parameters": {
            "$connections": {
                "defaultValue": {},
                "type": "Object",
            },
        },
        "triggers": {
            "manual": {
                "inputs": {
                    "schema": {},
                },
                "kind": "Http",
                "type": "Request",
            },
        },
    },
    integration_account={
        "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/integrationAccounts/test-integration-account",
    },
    location="brazilsouth",
    parameters={
        "$connections": {
            "value": {
                "test-custom-connector": {
                    "connectionId": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/connections/test-custom-connector",
                    "connectionName": "test-custom-connector",
                    "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/brazilsouth/managedApis/test-custom-connector",
                },
            },
        },
    },
    resource_group_name="test-resource-group",
    tags={},
    workflow_name="test-workflow")
Copy
resources:
  workflow:
    type: azure-native:logic:Workflow
    properties:
      definition:
        $schema: https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#
        actions:
          Find_pet_by_ID:
            inputs:
              host:
                connection:
                  name: '@parameters(''$connections'')[''test-custom-connector''][''connectionId'']'
              method: get
              path: /pet/@{encodeURIComponent('1')}
            runAfter: {}
            type: ApiConnection
        contentVersion: 1.0.0.0
        outputs: {}
        parameters:
          $connections:
            defaultValue: {}
            type: Object
        triggers:
          manual:
            inputs:
              schema: {}
            kind: Http
            type: Request
      integrationAccount:
        id: /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/integrationAccounts/test-integration-account
      location: brazilsouth
      parameters:
        $connections:
          value:
            test-custom-connector:
              connectionId: /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Web/connections/test-custom-connector
              connectionName: test-custom-connector
              id: /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.Web/locations/brazilsouth/managedApis/test-custom-connector
      resourceGroupName: test-resource-group
      tags: {}
      workflowName: test-workflow
Copy

Create Workflow Resource

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

Constructor syntax

new Workflow(name: string, args: WorkflowArgs, opts?: CustomResourceOptions);
@overload
def Workflow(resource_name: str,
             args: WorkflowArgs,
             opts: Optional[ResourceOptions] = None)

@overload
def Workflow(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             resource_group_name: Optional[str] = None,
             access_control: Optional[FlowAccessControlConfigurationArgs] = None,
             definition: Optional[Any] = None,
             endpoints_configuration: Optional[FlowEndpointsConfigurationArgs] = None,
             identity: Optional[ManagedServiceIdentityArgs] = None,
             integration_account: Optional[ResourceReferenceArgs] = None,
             integration_service_environment: Optional[ResourceReferenceArgs] = None,
             location: Optional[str] = None,
             parameters: Optional[Mapping[str, WorkflowParameterArgs]] = None,
             state: Optional[Union[str, WorkflowState]] = None,
             tags: Optional[Mapping[str, str]] = None,
             workflow_name: Optional[str] = None)
func NewWorkflow(ctx *Context, name string, args WorkflowArgs, opts ...ResourceOption) (*Workflow, error)
public Workflow(string name, WorkflowArgs args, CustomResourceOptions? opts = null)
public Workflow(String name, WorkflowArgs args)
public Workflow(String name, WorkflowArgs args, CustomResourceOptions options)
type: azure-native:logic:Workflow
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WorkflowArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. WorkflowArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. WorkflowArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WorkflowArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WorkflowArgs
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 azure_nativeWorkflowResource = new AzureNative.Logic.Workflow("azure-nativeWorkflowResource", new()
{
    ResourceGroupName = "string",
    AccessControl = 
    {
        { "actions", 
        {
            { "allowedCallerIpAddresses", new[]
            {
                
                {
                    { "addressRange", "string" },
                },
            } },
            { "openAuthenticationPolicies", 
            {
                { "policies", 
                {
                    { "string", 
                    {
                        { "claims", new[]
                        {
                            
                            {
                                { "name", "string" },
                                { "value", "string" },
                            },
                        } },
                        { "type", "string" },
                    } },
                } },
            } },
        } },
        { "contents", 
        {
            { "allowedCallerIpAddresses", new[]
            {
                
                {
                    { "addressRange", "string" },
                },
            } },
            { "openAuthenticationPolicies", 
            {
                { "policies", 
                {
                    { "string", 
                    {
                        { "claims", new[]
                        {
                            
                            {
                                { "name", "string" },
                                { "value", "string" },
                            },
                        } },
                        { "type", "string" },
                    } },
                } },
            } },
        } },
        { "triggers", 
        {
            { "allowedCallerIpAddresses", new[]
            {
                
                {
                    { "addressRange", "string" },
                },
            } },
            { "openAuthenticationPolicies", 
            {
                { "policies", 
                {
                    { "string", 
                    {
                        { "claims", new[]
                        {
                            
                            {
                                { "name", "string" },
                                { "value", "string" },
                            },
                        } },
                        { "type", "string" },
                    } },
                } },
            } },
        } },
        { "workflowManagement", 
        {
            { "allowedCallerIpAddresses", new[]
            {
                
                {
                    { "addressRange", "string" },
                },
            } },
            { "openAuthenticationPolicies", 
            {
                { "policies", 
                {
                    { "string", 
                    {
                        { "claims", new[]
                        {
                            
                            {
                                { "name", "string" },
                                { "value", "string" },
                            },
                        } },
                        { "type", "string" },
                    } },
                } },
            } },
        } },
    },
    Definition = "any",
    EndpointsConfiguration = 
    {
        { "connector", 
        {
            { "accessEndpointIpAddresses", new[]
            {
                
                {
                    { "address", "string" },
                },
            } },
            { "outgoingIpAddresses", new[]
            {
                
                {
                    { "address", "string" },
                },
            } },
        } },
        { "workflow", 
        {
            { "accessEndpointIpAddresses", new[]
            {
                
                {
                    { "address", "string" },
                },
            } },
            { "outgoingIpAddresses", new[]
            {
                
                {
                    { "address", "string" },
                },
            } },
        } },
    },
    Identity = 
    {
        { "type", "string" },
        { "userAssignedIdentities", new[]
        {
            "string",
        } },
    },
    IntegrationAccount = 
    {
        { "id", "string" },
    },
    IntegrationServiceEnvironment = 
    {
        { "id", "string" },
    },
    Location = "string",
    Parameters = 
    {
        { "string", 
        {
            { "description", "string" },
            { "metadata", "any" },
            { "type", "string" },
            { "value", "any" },
        } },
    },
    State = "string",
    Tags = 
    {
        { "string", "string" },
    },
    WorkflowName = "string",
});
Copy
example, err := logic.NewWorkflow(ctx, "azure-nativeWorkflowResource", &logic.WorkflowArgs{
	ResourceGroupName: "string",
	AccessControl: map[string]interface{}{
		"actions": map[string]interface{}{
			"allowedCallerIpAddresses": []map[string]interface{}{
				map[string]interface{}{
					"addressRange": "string",
				},
			},
			"openAuthenticationPolicies": map[string]interface{}{
				"policies": map[string]interface{}{
					"string": map[string]interface{}{
						"claims": []map[string]interface{}{
							map[string]interface{}{
								"name":  "string",
								"value": "string",
							},
						},
						"type": "string",
					},
				},
			},
		},
		"contents": map[string]interface{}{
			"allowedCallerIpAddresses": []map[string]interface{}{
				map[string]interface{}{
					"addressRange": "string",
				},
			},
			"openAuthenticationPolicies": map[string]interface{}{
				"policies": map[string]interface{}{
					"string": map[string]interface{}{
						"claims": []map[string]interface{}{
							map[string]interface{}{
								"name":  "string",
								"value": "string",
							},
						},
						"type": "string",
					},
				},
			},
		},
		"triggers": map[string]interface{}{
			"allowedCallerIpAddresses": []map[string]interface{}{
				map[string]interface{}{
					"addressRange": "string",
				},
			},
			"openAuthenticationPolicies": map[string]interface{}{
				"policies": map[string]interface{}{
					"string": map[string]interface{}{
						"claims": []map[string]interface{}{
							map[string]interface{}{
								"name":  "string",
								"value": "string",
							},
						},
						"type": "string",
					},
				},
			},
		},
		"workflowManagement": map[string]interface{}{
			"allowedCallerIpAddresses": []map[string]interface{}{
				map[string]interface{}{
					"addressRange": "string",
				},
			},
			"openAuthenticationPolicies": map[string]interface{}{
				"policies": map[string]interface{}{
					"string": map[string]interface{}{
						"claims": []map[string]interface{}{
							map[string]interface{}{
								"name":  "string",
								"value": "string",
							},
						},
						"type": "string",
					},
				},
			},
		},
	},
	Definition: "any",
	EndpointsConfiguration: map[string]interface{}{
		"connector": map[string]interface{}{
			"accessEndpointIpAddresses": []map[string]interface{}{
				map[string]interface{}{
					"address": "string",
				},
			},
			"outgoingIpAddresses": []map[string]interface{}{
				map[string]interface{}{
					"address": "string",
				},
			},
		},
		"workflow": map[string]interface{}{
			"accessEndpointIpAddresses": []map[string]interface{}{
				map[string]interface{}{
					"address": "string",
				},
			},
			"outgoingIpAddresses": []map[string]interface{}{
				map[string]interface{}{
					"address": "string",
				},
			},
		},
	},
	Identity: map[string]interface{}{
		"type": "string",
		"userAssignedIdentities": []string{
			"string",
		},
	},
	IntegrationAccount: map[string]interface{}{
		"id": "string",
	},
	IntegrationServiceEnvironment: map[string]interface{}{
		"id": "string",
	},
	Location: "string",
	Parameters: map[string]interface{}{
		"string": map[string]interface{}{
			"description": "string",
			"metadata":    "any",
			"type":        "string",
			"value":       "any",
		},
	},
	State: "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
	WorkflowName: "string",
})
Copy
var azure_nativeWorkflowResource = new Workflow("azure-nativeWorkflowResource", WorkflowArgs.builder()
    .resourceGroupName("string")
    .accessControl(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .definition("any")
    .endpointsConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .integrationAccount(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .integrationServiceEnvironment(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .location("string")
    .parameters(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .state("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .workflowName("string")
    .build());
Copy
azure_native_workflow_resource = azure_native.logic.Workflow("azure-nativeWorkflowResource",
    resource_group_name=string,
    access_control={
        actions: {
            allowedCallerIpAddresses: [{
                addressRange: string,
            }],
            openAuthenticationPolicies: {
                policies: {
                    string: {
                        claims: [{
                            name: string,
                            value: string,
                        }],
                        type: string,
                    },
                },
            },
        },
        contents: {
            allowedCallerIpAddresses: [{
                addressRange: string,
            }],
            openAuthenticationPolicies: {
                policies: {
                    string: {
                        claims: [{
                            name: string,
                            value: string,
                        }],
                        type: string,
                    },
                },
            },
        },
        triggers: {
            allowedCallerIpAddresses: [{
                addressRange: string,
            }],
            openAuthenticationPolicies: {
                policies: {
                    string: {
                        claims: [{
                            name: string,
                            value: string,
                        }],
                        type: string,
                    },
                },
            },
        },
        workflowManagement: {
            allowedCallerIpAddresses: [{
                addressRange: string,
            }],
            openAuthenticationPolicies: {
                policies: {
                    string: {
                        claims: [{
                            name: string,
                            value: string,
                        }],
                        type: string,
                    },
                },
            },
        },
    },
    definition=any,
    endpoints_configuration={
        connector: {
            accessEndpointIpAddresses: [{
                address: string,
            }],
            outgoingIpAddresses: [{
                address: string,
            }],
        },
        workflow: {
            accessEndpointIpAddresses: [{
                address: string,
            }],
            outgoingIpAddresses: [{
                address: string,
            }],
        },
    },
    identity={
        type: string,
        userAssignedIdentities: [string],
    },
    integration_account={
        id: string,
    },
    integration_service_environment={
        id: string,
    },
    location=string,
    parameters={
        string: {
            description: string,
            metadata: any,
            type: string,
            value: any,
        },
    },
    state=string,
    tags={
        string: string,
    },
    workflow_name=string)
Copy
const azure_nativeWorkflowResource = new azure_native.logic.Workflow("azure-nativeWorkflowResource", {
    resourceGroupName: "string",
    accessControl: {
        actions: {
            allowedCallerIpAddresses: [{
                addressRange: "string",
            }],
            openAuthenticationPolicies: {
                policies: {
                    string: {
                        claims: [{
                            name: "string",
                            value: "string",
                        }],
                        type: "string",
                    },
                },
            },
        },
        contents: {
            allowedCallerIpAddresses: [{
                addressRange: "string",
            }],
            openAuthenticationPolicies: {
                policies: {
                    string: {
                        claims: [{
                            name: "string",
                            value: "string",
                        }],
                        type: "string",
                    },
                },
            },
        },
        triggers: {
            allowedCallerIpAddresses: [{
                addressRange: "string",
            }],
            openAuthenticationPolicies: {
                policies: {
                    string: {
                        claims: [{
                            name: "string",
                            value: "string",
                        }],
                        type: "string",
                    },
                },
            },
        },
        workflowManagement: {
            allowedCallerIpAddresses: [{
                addressRange: "string",
            }],
            openAuthenticationPolicies: {
                policies: {
                    string: {
                        claims: [{
                            name: "string",
                            value: "string",
                        }],
                        type: "string",
                    },
                },
            },
        },
    },
    definition: "any",
    endpointsConfiguration: {
        connector: {
            accessEndpointIpAddresses: [{
                address: "string",
            }],
            outgoingIpAddresses: [{
                address: "string",
            }],
        },
        workflow: {
            accessEndpointIpAddresses: [{
                address: "string",
            }],
            outgoingIpAddresses: [{
                address: "string",
            }],
        },
    },
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    integrationAccount: {
        id: "string",
    },
    integrationServiceEnvironment: {
        id: "string",
    },
    location: "string",
    parameters: {
        string: {
            description: "string",
            metadata: "any",
            type: "string",
            value: "any",
        },
    },
    state: "string",
    tags: {
        string: "string",
    },
    workflowName: "string",
});
Copy
type: azure-native:logic:Workflow
properties:
    accessControl:
        actions:
            allowedCallerIpAddresses:
                - addressRange: string
            openAuthenticationPolicies:
                policies:
                    string:
                        claims:
                            - name: string
                              value: string
                        type: string
        contents:
            allowedCallerIpAddresses:
                - addressRange: string
            openAuthenticationPolicies:
                policies:
                    string:
                        claims:
                            - name: string
                              value: string
                        type: string
        triggers:
            allowedCallerIpAddresses:
                - addressRange: string
            openAuthenticationPolicies:
                policies:
                    string:
                        claims:
                            - name: string
                              value: string
                        type: string
        workflowManagement:
            allowedCallerIpAddresses:
                - addressRange: string
            openAuthenticationPolicies:
                policies:
                    string:
                        claims:
                            - name: string
                              value: string
                        type: string
    definition: any
    endpointsConfiguration:
        connector:
            accessEndpointIpAddresses:
                - address: string
            outgoingIpAddresses:
                - address: string
        workflow:
            accessEndpointIpAddresses:
                - address: string
            outgoingIpAddresses:
                - address: string
    identity:
        type: string
        userAssignedIdentities:
            - string
    integrationAccount:
        id: string
    integrationServiceEnvironment:
        id: string
    location: string
    parameters:
        string:
            description: string
            metadata: any
            type: string
            value: any
    resourceGroupName: string
    state: string
    tags:
        string: string
    workflowName: string
Copy

Workflow 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 Workflow resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
AccessControl Pulumi.AzureNative.Logic.Inputs.FlowAccessControlConfiguration
The access control configuration.
Definition object
The definition.
EndpointsConfiguration Pulumi.AzureNative.Logic.Inputs.FlowEndpointsConfiguration
The endpoints configuration.
Identity Pulumi.AzureNative.Logic.Inputs.ManagedServiceIdentity
Managed service identity properties.
IntegrationAccount Pulumi.AzureNative.Logic.Inputs.ResourceReference
The integration account.
IntegrationServiceEnvironment Pulumi.AzureNative.Logic.Inputs.ResourceReference
The integration service environment.
Location string
The resource location.
Parameters Dictionary<string, Pulumi.AzureNative.Logic.Inputs.WorkflowParameterArgs>
The parameters.
State string | Pulumi.AzureNative.Logic.WorkflowState
The state.
Tags Dictionary<string, string>
The resource tags.
WorkflowName Changes to this property will trigger replacement. string
The workflow name.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
AccessControl FlowAccessControlConfigurationArgs
The access control configuration.
Definition interface{}
The definition.
EndpointsConfiguration FlowEndpointsConfigurationArgs
The endpoints configuration.
Identity ManagedServiceIdentityArgs
Managed service identity properties.
IntegrationAccount ResourceReferenceArgs
The integration account.
IntegrationServiceEnvironment ResourceReferenceArgs
The integration service environment.
Location string
The resource location.
Parameters map[string]WorkflowParameterArgs
The parameters.
State string | WorkflowStateEnum
The state.
Tags map[string]string
The resource tags.
WorkflowName Changes to this property will trigger replacement. string
The workflow name.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
accessControl FlowAccessControlConfiguration
The access control configuration.
definition Object
The definition.
endpointsConfiguration FlowEndpointsConfiguration
The endpoints configuration.
identity ManagedServiceIdentity
Managed service identity properties.
integrationAccount ResourceReference
The integration account.
integrationServiceEnvironment ResourceReference
The integration service environment.
location String
The resource location.
parameters Map<String,WorkflowParameterArgs>
The parameters.
state String | WorkflowState
The state.
tags Map<String,String>
The resource tags.
workflowName Changes to this property will trigger replacement. String
The workflow name.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
accessControl FlowAccessControlConfiguration
The access control configuration.
definition any
The definition.
endpointsConfiguration FlowEndpointsConfiguration
The endpoints configuration.
identity ManagedServiceIdentity
Managed service identity properties.
integrationAccount ResourceReference
The integration account.
integrationServiceEnvironment ResourceReference
The integration service environment.
location string
The resource location.
parameters {[key: string]: WorkflowParameterArgs}
The parameters.
state string | WorkflowState
The state.
tags {[key: string]: string}
The resource tags.
workflowName Changes to this property will trigger replacement. string
The workflow name.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name.
access_control FlowAccessControlConfigurationArgs
The access control configuration.
definition Any
The definition.
endpoints_configuration FlowEndpointsConfigurationArgs
The endpoints configuration.
identity ManagedServiceIdentityArgs
Managed service identity properties.
integration_account ResourceReferenceArgs
The integration account.
integration_service_environment ResourceReferenceArgs
The integration service environment.
location str
The resource location.
parameters Mapping[str, WorkflowParameterArgs]
The parameters.
state str | WorkflowState
The state.
tags Mapping[str, str]
The resource tags.
workflow_name Changes to this property will trigger replacement. str
The workflow name.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
accessControl Property Map
The access control configuration.
definition Any
The definition.
endpointsConfiguration Property Map
The endpoints configuration.
identity Property Map
Managed service identity properties.
integrationAccount Property Map
The integration account.
integrationServiceEnvironment Property Map
The integration service environment.
location String
The resource location.
parameters Map<Property Map>
The parameters.
state String | "NotSpecified" | "Completed" | "Enabled" | "Disabled" | "Deleted" | "Suspended"
The state.
tags Map<String>
The resource tags.
workflowName Changes to this property will trigger replacement. String
The workflow name.

Outputs

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

AccessEndpoint string
Gets the access endpoint.
ChangedTime string
Gets the changed time.
CreatedTime string
Gets the created time.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Gets the resource name.
ProvisioningState string
Gets the provisioning state.
Sku Pulumi.AzureNative.Logic.Outputs.SkuResponse
The sku.
Type string
Gets the resource type.
Version string
Gets the version.
AccessEndpoint string
Gets the access endpoint.
ChangedTime string
Gets the changed time.
CreatedTime string
Gets the created time.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Gets the resource name.
ProvisioningState string
Gets the provisioning state.
Sku SkuResponse
The sku.
Type string
Gets the resource type.
Version string
Gets the version.
accessEndpoint String
Gets the access endpoint.
changedTime String
Gets the changed time.
createdTime String
Gets the created time.
id String
The provider-assigned unique ID for this managed resource.
name String
Gets the resource name.
provisioningState String
Gets the provisioning state.
sku SkuResponse
The sku.
type String
Gets the resource type.
version String
Gets the version.
accessEndpoint string
Gets the access endpoint.
changedTime string
Gets the changed time.
createdTime string
Gets the created time.
id string
The provider-assigned unique ID for this managed resource.
name string
Gets the resource name.
provisioningState string
Gets the provisioning state.
sku SkuResponse
The sku.
type string
Gets the resource type.
version string
Gets the version.
access_endpoint str
Gets the access endpoint.
changed_time str
Gets the changed time.
created_time str
Gets the created time.
id str
The provider-assigned unique ID for this managed resource.
name str
Gets the resource name.
provisioning_state str
Gets the provisioning state.
sku SkuResponse
The sku.
type str
Gets the resource type.
version str
Gets the version.
accessEndpoint String
Gets the access endpoint.
changedTime String
Gets the changed time.
createdTime String
Gets the created time.
id String
The provider-assigned unique ID for this managed resource.
name String
Gets the resource name.
provisioningState String
Gets the provisioning state.
sku Property Map
The sku.
type String
Gets the resource type.
version String
Gets the version.

Supporting Types

FlowAccessControlConfiguration
, FlowAccessControlConfigurationArgs

Actions Pulumi.AzureNative.Logic.Inputs.FlowAccessControlConfigurationPolicy
The access control configuration for workflow actions.
Contents Pulumi.AzureNative.Logic.Inputs.FlowAccessControlConfigurationPolicy
The access control configuration for accessing workflow run contents.
Triggers Pulumi.AzureNative.Logic.Inputs.FlowAccessControlConfigurationPolicy
The access control configuration for invoking workflow triggers.
WorkflowManagement Pulumi.AzureNative.Logic.Inputs.FlowAccessControlConfigurationPolicy
The access control configuration for workflow management.
Actions FlowAccessControlConfigurationPolicy
The access control configuration for workflow actions.
Contents FlowAccessControlConfigurationPolicy
The access control configuration for accessing workflow run contents.
Triggers FlowAccessControlConfigurationPolicy
The access control configuration for invoking workflow triggers.
WorkflowManagement FlowAccessControlConfigurationPolicy
The access control configuration for workflow management.
actions FlowAccessControlConfigurationPolicy
The access control configuration for workflow actions.
contents FlowAccessControlConfigurationPolicy
The access control configuration for accessing workflow run contents.
triggers FlowAccessControlConfigurationPolicy
The access control configuration for invoking workflow triggers.
workflowManagement FlowAccessControlConfigurationPolicy
The access control configuration for workflow management.
actions FlowAccessControlConfigurationPolicy
The access control configuration for workflow actions.
contents FlowAccessControlConfigurationPolicy
The access control configuration for accessing workflow run contents.
triggers FlowAccessControlConfigurationPolicy
The access control configuration for invoking workflow triggers.
workflowManagement FlowAccessControlConfigurationPolicy
The access control configuration for workflow management.
actions FlowAccessControlConfigurationPolicy
The access control configuration for workflow actions.
contents FlowAccessControlConfigurationPolicy
The access control configuration for accessing workflow run contents.
triggers FlowAccessControlConfigurationPolicy
The access control configuration for invoking workflow triggers.
workflow_management FlowAccessControlConfigurationPolicy
The access control configuration for workflow management.
actions Property Map
The access control configuration for workflow actions.
contents Property Map
The access control configuration for accessing workflow run contents.
triggers Property Map
The access control configuration for invoking workflow triggers.
workflowManagement Property Map
The access control configuration for workflow management.

FlowAccessControlConfigurationPolicy
, FlowAccessControlConfigurationPolicyArgs

AllowedCallerIpAddresses []IpAddressRange
The allowed caller IP address ranges.
OpenAuthenticationPolicies OpenAuthenticationAccessPolicies
The authentication policies for workflow.
allowedCallerIpAddresses List<IpAddressRange>
The allowed caller IP address ranges.
openAuthenticationPolicies OpenAuthenticationAccessPolicies
The authentication policies for workflow.
allowedCallerIpAddresses IpAddressRange[]
The allowed caller IP address ranges.
openAuthenticationPolicies OpenAuthenticationAccessPolicies
The authentication policies for workflow.
allowed_caller_ip_addresses Sequence[IpAddressRange]
The allowed caller IP address ranges.
open_authentication_policies OpenAuthenticationAccessPolicies
The authentication policies for workflow.
allowedCallerIpAddresses List<Property Map>
The allowed caller IP address ranges.
openAuthenticationPolicies Property Map
The authentication policies for workflow.

FlowAccessControlConfigurationPolicyResponse
, FlowAccessControlConfigurationPolicyResponseArgs

AllowedCallerIpAddresses []IpAddressRangeResponse
The allowed caller IP address ranges.
OpenAuthenticationPolicies OpenAuthenticationAccessPoliciesResponse
The authentication policies for workflow.
allowedCallerIpAddresses List<IpAddressRangeResponse>
The allowed caller IP address ranges.
openAuthenticationPolicies OpenAuthenticationAccessPoliciesResponse
The authentication policies for workflow.
allowedCallerIpAddresses IpAddressRangeResponse[]
The allowed caller IP address ranges.
openAuthenticationPolicies OpenAuthenticationAccessPoliciesResponse
The authentication policies for workflow.
allowedCallerIpAddresses List<Property Map>
The allowed caller IP address ranges.
openAuthenticationPolicies Property Map
The authentication policies for workflow.

FlowAccessControlConfigurationResponse
, FlowAccessControlConfigurationResponseArgs

Actions Pulumi.AzureNative.Logic.Inputs.FlowAccessControlConfigurationPolicyResponse
The access control configuration for workflow actions.
Contents Pulumi.AzureNative.Logic.Inputs.FlowAccessControlConfigurationPolicyResponse
The access control configuration for accessing workflow run contents.
Triggers Pulumi.AzureNative.Logic.Inputs.FlowAccessControlConfigurationPolicyResponse
The access control configuration for invoking workflow triggers.
WorkflowManagement Pulumi.AzureNative.Logic.Inputs.FlowAccessControlConfigurationPolicyResponse
The access control configuration for workflow management.
Actions FlowAccessControlConfigurationPolicyResponse
The access control configuration for workflow actions.
Contents FlowAccessControlConfigurationPolicyResponse
The access control configuration for accessing workflow run contents.
Triggers FlowAccessControlConfigurationPolicyResponse
The access control configuration for invoking workflow triggers.
WorkflowManagement FlowAccessControlConfigurationPolicyResponse
The access control configuration for workflow management.
actions FlowAccessControlConfigurationPolicyResponse
The access control configuration for workflow actions.
contents FlowAccessControlConfigurationPolicyResponse
The access control configuration for accessing workflow run contents.
triggers FlowAccessControlConfigurationPolicyResponse
The access control configuration for invoking workflow triggers.
workflowManagement FlowAccessControlConfigurationPolicyResponse
The access control configuration for workflow management.
actions FlowAccessControlConfigurationPolicyResponse
The access control configuration for workflow actions.
contents FlowAccessControlConfigurationPolicyResponse
The access control configuration for accessing workflow run contents.
triggers FlowAccessControlConfigurationPolicyResponse
The access control configuration for invoking workflow triggers.
workflowManagement FlowAccessControlConfigurationPolicyResponse
The access control configuration for workflow management.
actions FlowAccessControlConfigurationPolicyResponse
The access control configuration for workflow actions.
contents FlowAccessControlConfigurationPolicyResponse
The access control configuration for accessing workflow run contents.
triggers FlowAccessControlConfigurationPolicyResponse
The access control configuration for invoking workflow triggers.
workflow_management FlowAccessControlConfigurationPolicyResponse
The access control configuration for workflow management.
actions Property Map
The access control configuration for workflow actions.
contents Property Map
The access control configuration for accessing workflow run contents.
triggers Property Map
The access control configuration for invoking workflow triggers.
workflowManagement Property Map
The access control configuration for workflow management.

FlowEndpoints
, FlowEndpointsArgs

AccessEndpointIpAddresses []IpAddress
The access endpoint ip address.
OutgoingIpAddresses []IpAddress
The outgoing ip address.
accessEndpointIpAddresses List<IpAddress>
The access endpoint ip address.
outgoingIpAddresses List<IpAddress>
The outgoing ip address.
accessEndpointIpAddresses IpAddress[]
The access endpoint ip address.
outgoingIpAddresses IpAddress[]
The outgoing ip address.
accessEndpointIpAddresses List<Property Map>
The access endpoint ip address.
outgoingIpAddresses List<Property Map>
The outgoing ip address.

FlowEndpointsConfiguration
, FlowEndpointsConfigurationArgs

Connector FlowEndpoints
The connector endpoints.
Workflow FlowEndpoints
The workflow endpoints.
connector FlowEndpoints
The connector endpoints.
workflow FlowEndpoints
The workflow endpoints.
connector FlowEndpoints
The connector endpoints.
workflow FlowEndpoints
The workflow endpoints.
connector FlowEndpoints
The connector endpoints.
workflow FlowEndpoints
The workflow endpoints.
connector Property Map
The connector endpoints.
workflow Property Map
The workflow endpoints.

FlowEndpointsConfigurationResponse
, FlowEndpointsConfigurationResponseArgs

Connector FlowEndpointsResponse
The connector endpoints.
Workflow FlowEndpointsResponse
The workflow endpoints.
connector FlowEndpointsResponse
The connector endpoints.
workflow FlowEndpointsResponse
The workflow endpoints.
connector FlowEndpointsResponse
The connector endpoints.
workflow FlowEndpointsResponse
The workflow endpoints.
connector FlowEndpointsResponse
The connector endpoints.
workflow FlowEndpointsResponse
The workflow endpoints.
connector Property Map
The connector endpoints.
workflow Property Map
The workflow endpoints.

FlowEndpointsResponse
, FlowEndpointsResponseArgs

AccessEndpointIpAddresses []IpAddressResponse
The access endpoint ip address.
OutgoingIpAddresses []IpAddressResponse
The outgoing ip address.
accessEndpointIpAddresses IpAddressResponse[]
The access endpoint ip address.
outgoingIpAddresses IpAddressResponse[]
The outgoing ip address.
accessEndpointIpAddresses List<Property Map>
The access endpoint ip address.
outgoingIpAddresses List<Property Map>
The outgoing ip address.

IpAddress
, IpAddressArgs

Address string
The address.
Address string
The address.
address String
The address.
address string
The address.
address str
The address.
address String
The address.

IpAddressRange
, IpAddressRangeArgs

AddressRange string
The IP address range.
AddressRange string
The IP address range.
addressRange String
The IP address range.
addressRange string
The IP address range.
address_range str
The IP address range.
addressRange String
The IP address range.

IpAddressRangeResponse
, IpAddressRangeResponseArgs

AddressRange string
The IP address range.
AddressRange string
The IP address range.
addressRange String
The IP address range.
addressRange string
The IP address range.
address_range str
The IP address range.
addressRange String
The IP address range.

IpAddressResponse
, IpAddressResponseArgs

Address string
The address.
Address string
The address.
address String
The address.
address string
The address.
address str
The address.
address String
The address.

ManagedServiceIdentity
, ManagedServiceIdentityArgs

Type This property is required. string | Pulumi.AzureNative.Logic.ManagedServiceIdentityType
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
UserAssignedIdentities List<string>
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
Type This property is required. string | ManagedServiceIdentityType
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
UserAssignedIdentities []string
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
type This property is required. String | ManagedServiceIdentityType
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
userAssignedIdentities List<String>
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
type This property is required. string | ManagedServiceIdentityType
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
userAssignedIdentities string[]
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
type This property is required. str | ManagedServiceIdentityType
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
user_assigned_identities Sequence[str]
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
type This property is required. String | "SystemAssigned" | "UserAssigned" | "None"
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
userAssignedIdentities List<String>
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}

ManagedServiceIdentityResponse
, ManagedServiceIdentityResponseArgs

PrincipalId This property is required. string
Principal Id of managed service identity.
TenantId This property is required. string
Tenant of managed service identity.
Type This property is required. string
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Logic.Inputs.UserAssignedIdentityResponse>
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
PrincipalId This property is required. string
Principal Id of managed service identity.
TenantId This property is required. string
Tenant of managed service identity.
Type This property is required. string
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
UserAssignedIdentities map[string]UserAssignedIdentityResponse
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
principalId This property is required. String
Principal Id of managed service identity.
tenantId This property is required. String
Tenant of managed service identity.
type This property is required. String
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
userAssignedIdentities Map<String,UserAssignedIdentityResponse>
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
principalId This property is required. string
Principal Id of managed service identity.
tenantId This property is required. string
Tenant of managed service identity.
type This property is required. string
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
principal_id This property is required. str
Principal Id of managed service identity.
tenant_id This property is required. str
Tenant of managed service identity.
type This property is required. str
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
principalId This property is required. String
Principal Id of managed service identity.
tenantId This property is required. String
Tenant of managed service identity.
type This property is required. String
Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
userAssignedIdentities Map<Property Map>
The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}

ManagedServiceIdentityType
, ManagedServiceIdentityTypeArgs

SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
None
None
ManagedServiceIdentityTypeSystemAssigned
SystemAssigned
ManagedServiceIdentityTypeUserAssigned
UserAssigned
ManagedServiceIdentityTypeNone
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
None
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
NONE
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"None"
None

OpenAuthenticationAccessPolicies
, OpenAuthenticationAccessPoliciesArgs

Policies Dictionary<string, Pulumi.AzureNative.Logic.Inputs.OpenAuthenticationAccessPolicy>
Open authentication policies.
Policies map[string]OpenAuthenticationAccessPolicy
Open authentication policies.
policies Map<String,OpenAuthenticationAccessPolicy>
Open authentication policies.
policies {[key: string]: OpenAuthenticationAccessPolicy}
Open authentication policies.
policies Mapping[str, OpenAuthenticationAccessPolicy]
Open authentication policies.
policies Map<Property Map>
Open authentication policies.

OpenAuthenticationAccessPoliciesResponse
, OpenAuthenticationAccessPoliciesResponseArgs

Policies Dictionary<string, Pulumi.AzureNative.Logic.Inputs.OpenAuthenticationAccessPolicyResponse>
Open authentication policies.
Policies map[string]OpenAuthenticationAccessPolicyResponse
Open authentication policies.
policies Map<String,OpenAuthenticationAccessPolicyResponse>
Open authentication policies.
policies {[key: string]: OpenAuthenticationAccessPolicyResponse}
Open authentication policies.
policies Mapping[str, OpenAuthenticationAccessPolicyResponse]
Open authentication policies.
policies Map<Property Map>
Open authentication policies.

OpenAuthenticationAccessPolicy
, OpenAuthenticationAccessPolicyArgs

Claims []OpenAuthenticationPolicyClaim
The access policy claims.
Type string | OpenAuthenticationProviderType
Type of provider for OAuth.
claims List<OpenAuthenticationPolicyClaim>
The access policy claims.
type String | OpenAuthenticationProviderType
Type of provider for OAuth.
claims OpenAuthenticationPolicyClaim[]
The access policy claims.
type string | OpenAuthenticationProviderType
Type of provider for OAuth.
claims Sequence[OpenAuthenticationPolicyClaim]
The access policy claims.
type str | OpenAuthenticationProviderType
Type of provider for OAuth.
claims List<Property Map>
The access policy claims.
type String | "AAD"
Type of provider for OAuth.

OpenAuthenticationAccessPolicyResponse
, OpenAuthenticationAccessPolicyResponseArgs

Claims List<Pulumi.AzureNative.Logic.Inputs.OpenAuthenticationPolicyClaimResponse>
The access policy claims.
Type string
Type of provider for OAuth.
Claims []OpenAuthenticationPolicyClaimResponse
The access policy claims.
Type string
Type of provider for OAuth.
claims List<OpenAuthenticationPolicyClaimResponse>
The access policy claims.
type String
Type of provider for OAuth.
claims OpenAuthenticationPolicyClaimResponse[]
The access policy claims.
type string
Type of provider for OAuth.
claims Sequence[OpenAuthenticationPolicyClaimResponse]
The access policy claims.
type str
Type of provider for OAuth.
claims List<Property Map>
The access policy claims.
type String
Type of provider for OAuth.

OpenAuthenticationPolicyClaim
, OpenAuthenticationPolicyClaimArgs

Name string
The name of the claim.
Value string
The value of the claim.
Name string
The name of the claim.
Value string
The value of the claim.
name String
The name of the claim.
value String
The value of the claim.
name string
The name of the claim.
value string
The value of the claim.
name str
The name of the claim.
value str
The value of the claim.
name String
The name of the claim.
value String
The value of the claim.

OpenAuthenticationPolicyClaimResponse
, OpenAuthenticationPolicyClaimResponseArgs

Name string
The name of the claim.
Value string
The value of the claim.
Name string
The name of the claim.
Value string
The value of the claim.
name String
The name of the claim.
value String
The value of the claim.
name string
The name of the claim.
value string
The value of the claim.
name str
The name of the claim.
value str
The value of the claim.
name String
The name of the claim.
value String
The value of the claim.

OpenAuthenticationProviderType
, OpenAuthenticationProviderTypeArgs

AAD
AAD
OpenAuthenticationProviderTypeAAD
AAD
AAD
AAD
AAD
AAD
AAD
AAD
"AAD"
AAD

ParameterType
, ParameterTypeArgs

NotSpecified
NotSpecified
String
String
SecureString
SecureString
Int
Int
Float
Float
Bool
Bool
Array
Array
Object
Object
SecureObject
SecureObject
ParameterTypeNotSpecified
NotSpecified
ParameterTypeString
String
ParameterTypeSecureString
SecureString
ParameterTypeInt
Int
ParameterTypeFloat
Float
ParameterTypeBool
Bool
ParameterTypeArray
Array
ParameterTypeObject
Object
ParameterTypeSecureObject
SecureObject
NotSpecified
NotSpecified
String
String
SecureString
SecureString
Int
Int
Float
Float
Bool
Bool
Array
Array
Object
Object
SecureObject
SecureObject
NotSpecified
NotSpecified
String
String
SecureString
SecureString
Int
Int
Float
Float
Bool
Bool
Array
Array
Object
Object
SecureObject
SecureObject
NOT_SPECIFIED
NotSpecified
STRING
String
SECURE_STRING
SecureString
INT
Int
FLOAT
Float
BOOL
Bool
ARRAY
Array
OBJECT
Object
SECURE_OBJECT
SecureObject
"NotSpecified"
NotSpecified
"String"
String
"SecureString"
SecureString
"Int"
Int
"Float"
Float
"Bool"
Bool
"Array"
Array
"Object"
Object
"SecureObject"
SecureObject

ResourceReference
, ResourceReferenceArgs

Id string
The resource id.
Id string
The resource id.
id String
The resource id.
id string
The resource id.
id str
The resource id.
id String
The resource id.

ResourceReferenceResponse
, ResourceReferenceResponseArgs

Name This property is required. string
Gets the resource name.
Type This property is required. string
Gets the resource type.
Id string
The resource id.
Name This property is required. string
Gets the resource name.
Type This property is required. string
Gets the resource type.
Id string
The resource id.
name This property is required. String
Gets the resource name.
type This property is required. String
Gets the resource type.
id String
The resource id.
name This property is required. string
Gets the resource name.
type This property is required. string
Gets the resource type.
id string
The resource id.
name This property is required. str
Gets the resource name.
type This property is required. str
Gets the resource type.
id str
The resource id.
name This property is required. String
Gets the resource name.
type This property is required. String
Gets the resource type.
id String
The resource id.

SkuResponse
, SkuResponseArgs

Name This property is required. string
The name.
Plan Pulumi.AzureNative.Logic.Inputs.ResourceReferenceResponse
The reference to plan.
Name This property is required. string
The name.
Plan ResourceReferenceResponse
The reference to plan.
name This property is required. String
The name.
plan ResourceReferenceResponse
The reference to plan.
name This property is required. string
The name.
plan ResourceReferenceResponse
The reference to plan.
name This property is required. str
The name.
plan ResourceReferenceResponse
The reference to plan.
name This property is required. String
The name.
plan Property Map
The reference to plan.

UserAssignedIdentityResponse
, UserAssignedIdentityResponseArgs

ClientId This property is required. string
Client Id of user assigned identity
PrincipalId This property is required. string
Principal Id of user assigned identity
ClientId This property is required. string
Client Id of user assigned identity
PrincipalId This property is required. string
Principal Id of user assigned identity
clientId This property is required. String
Client Id of user assigned identity
principalId This property is required. String
Principal Id of user assigned identity
clientId This property is required. string
Client Id of user assigned identity
principalId This property is required. string
Principal Id of user assigned identity
client_id This property is required. str
Client Id of user assigned identity
principal_id This property is required. str
Principal Id of user assigned identity
clientId This property is required. String
Client Id of user assigned identity
principalId This property is required. String
Principal Id of user assigned identity

WorkflowParameter
, WorkflowParameterArgs

Description string
The description.
Metadata object
The metadata.
Type string | Pulumi.AzureNative.Logic.ParameterType
The type.
Value object
The value.
Description string
The description.
Metadata interface{}
The metadata.
Type string | ParameterType
The type.
Value interface{}
The value.
description String
The description.
metadata Object
The metadata.
type String | ParameterType
The type.
value Object
The value.
description string
The description.
metadata any
The metadata.
type string | ParameterType
The type.
value any
The value.
description str
The description.
metadata Any
The metadata.
type str | ParameterType
The type.
value Any
The value.

WorkflowParameterResponse
, WorkflowParameterResponseArgs

Description string
The description.
Metadata object
The metadata.
Type string
The type.
Value object
The value.
Description string
The description.
Metadata interface{}
The metadata.
Type string
The type.
Value interface{}
The value.
description String
The description.
metadata Object
The metadata.
type String
The type.
value Object
The value.
description string
The description.
metadata any
The metadata.
type string
The type.
value any
The value.
description str
The description.
metadata Any
The metadata.
type str
The type.
value Any
The value.
description String
The description.
metadata Any
The metadata.
type String
The type.
value Any
The value.

WorkflowState
, WorkflowStateArgs

NotSpecified
NotSpecified
Completed
Completed
Enabled
Enabled
Disabled
Disabled
Deleted
Deleted
Suspended
Suspended
WorkflowStateNotSpecified
NotSpecified
WorkflowStateCompleted
Completed
WorkflowStateEnabled
Enabled
WorkflowStateDisabled
Disabled
WorkflowStateDeleted
Deleted
WorkflowStateSuspended
Suspended
NotSpecified
NotSpecified
Completed
Completed
Enabled
Enabled
Disabled
Disabled
Deleted
Deleted
Suspended
Suspended
NotSpecified
NotSpecified
Completed
Completed
Enabled
Enabled
Disabled
Disabled
Deleted
Deleted
Suspended
Suspended
NOT_SPECIFIED
NotSpecified
COMPLETED
Completed
ENABLED
Enabled
DISABLED
Disabled
DELETED
Deleted
SUSPENDED
Suspended
"NotSpecified"
NotSpecified
"Completed"
Completed
"Enabled"
Enabled
"Disabled"
Disabled
"Deleted"
Deleted
"Suspended"
Suspended

Import

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

$ pulumi import azure-native:logic:Workflow myresource1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/workflows/{workflowName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi