1. Packages
  2. Azure Native
  3. API Docs
  4. logic
  5. Workflow
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

azure-native.logic.Workflow

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

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

    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 = 
            {
                { "$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", null },
                        { "type", "ApiConnection" },
                    } },
                } },
                { "contentVersion", "1.0.0.0" },
                { "outputs", null },
                { "parameters", 
                {
                    { "$connections", 
                    {
                        { "defaultValue", null },
                        { "type", "Object" },
                    } },
                } },
                { "triggers", 
                {
                    { "manual", 
                    {
                        { "inputs", 
                        {
                            { "schema", null },
                        } },
                        { "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 = 
                    {
                        { "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 = null,
            WorkflowName = "test-workflow",
        });
    
    });
    
    package main
    
    import (
    	"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{
    				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": nil,
    						"type":     "ApiConnection",
    					},
    				},
    				ContentVersion: "1.0.0.0",
    				Outputs:        nil,
    				Parameters: map[string]interface{}{
    					"$connections": map[string]interface{}{
    						"defaultValue": nil,
    						"type":         "Object",
    					},
    				},
    				Triggers: map[string]interface{}{
    					"manual": map[string]interface{}{
    						"inputs": map[string]interface{}{
    							"schema": nil,
    						},
    						"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{
    						TestCustomConnector: 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:              nil,
    			WorkflowName:      pulumi.String("test-workflow"),
    		})
    		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.logic.Workflow;
    import com.pulumi.azurenative.logic.WorkflowArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var 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(Map.of("id", "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/integrationAccounts/test-integration-account"))
                .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());
    
        }
    }
    
    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=azure_native.logic.ResourceReferenceArgs(
            id="/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/test-resource-group/providers/Microsoft.Logic/integrationAccounts/test-integration-account",
        ),
        location="brazilsouth",
        parameters={
            "$connections": azure_native.logic.WorkflowParameterArgs(
                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")
    
    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",
    });
    
    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
    

    Create Workflow Resource

    new Workflow(name: string, args: WorkflowArgs, opts?: CustomResourceOptions);
    @overload
    def Workflow(resource_name: str,
                 opts: Optional[ResourceOptions] = 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,
                 resource_group_name: Optional[str] = None,
                 state: Optional[Union[str, WorkflowState]] = None,
                 tags: Optional[Mapping[str, str]] = None,
                 workflow_name: Optional[str] = None)
    @overload
    def Workflow(resource_name: str,
                 args: WorkflowArgs,
                 opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args WorkflowArgs
    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 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 string
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The Workflow resource accepts the following input properties:

    ResourceGroupName 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 string

    The workflow name.

    ResourceGroupName 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 string

    The workflow name.

    resourceGroupName 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 String

    The workflow name.

    resourceGroupName 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 string

    The workflow name.

    resource_group_name 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 str

    The workflow name.

    resourceGroupName 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 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 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 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 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 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 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 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 string

    Principal Id of managed service identity.

    TenantId string

    Tenant of managed service identity.

    Type 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 string

    Principal Id of managed service identity.

    TenantId string

    Tenant of managed service identity.

    Type 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 String

    Principal Id of managed service identity.

    tenantId String

    Tenant of managed service identity.

    type 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 string

    Principal Id of managed service identity.

    tenantId string

    Tenant of managed service identity.

    type 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 str

    Principal Id of managed service identity.

    tenant_id str

    Tenant of managed service identity.

    type 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 String

    Principal Id of managed service identity.

    tenantId String

    Tenant of managed service identity.

    type 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 string

    Gets the resource name.

    Type string

    Gets the resource type.

    Id string

    The resource id.

    Name string

    Gets the resource name.

    Type string

    Gets the resource type.

    Id string

    The resource id.

    name String

    Gets the resource name.

    type String

    Gets the resource type.

    id String

    The resource id.

    name string

    Gets the resource name.

    type string

    Gets the resource type.

    id string

    The resource id.

    name str

    Gets the resource name.

    type str

    Gets the resource type.

    id str

    The resource id.

    name String

    Gets the resource name.

    type String

    Gets the resource type.

    id String

    The resource id.

    SkuResponse, SkuResponseArgs

    Name string

    The name.

    Plan ResourceReferenceResponse

    The reference to plan.

    name String

    The name.

    plan ResourceReferenceResponse

    The reference to plan.

    name string

    The name.

    plan ResourceReferenceResponse

    The reference to plan.

    name str

    The name.

    plan ResourceReferenceResponse

    The reference to plan.

    name String

    The name.

    plan Property Map

    The reference to plan.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string

    Client Id of user assigned identity

    PrincipalId string

    Principal Id of user assigned identity

    ClientId string

    Client Id of user assigned identity

    PrincipalId string

    Principal Id of user assigned identity

    clientId String

    Client Id of user assigned identity

    principalId String

    Principal Id of user assigned identity

    clientId string

    Client Id of user assigned identity

    principalId string

    Principal Id of user assigned identity

    client_id str

    Client Id of user assigned identity

    principal_id str

    Principal Id of user assigned identity

    clientId String

    Client Id of user assigned identity

    principalId 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} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi