1. Packages
  2. Azure Classic
  3. API Docs
  4. datafactory
  5. IntegrationRuntimeRule

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Data Factory Azure Integration Runtime.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleFactory = new Azure.DataFactory.Factory("exampleFactory", new Azure.DataFactory.FactoryArgs
            {
                Location = exampleResourceGroup.Location,
                ResourceGroupName = exampleResourceGroup.Name,
            });
            var exampleIntegrationRuntimeRule = new Azure.DataFactory.IntegrationRuntimeRule("exampleIntegrationRuntimeRule", new Azure.DataFactory.IntegrationRuntimeRuleArgs
            {
                DataFactoryId = exampleFactory.Id,
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/datafactory"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleFactory, err := datafactory.NewFactory(ctx, "exampleFactory", &datafactory.FactoryArgs{
    			Location:          exampleResourceGroup.Location,
    			ResourceGroupName: exampleResourceGroup.Name,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = datafactory.NewIntegrationRuntimeRule(ctx, "exampleIntegrationRuntimeRule", &datafactory.IntegrationRuntimeRuleArgs{
    			DataFactoryId:     exampleFactory.ID(),
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleFactory = new azure.datafactory.Factory("exampleFactory", {
        location: exampleResourceGroup.location,
        resourceGroupName: exampleResourceGroup.name,
    });
    const exampleIntegrationRuntimeRule = new azure.datafactory.IntegrationRuntimeRule("exampleIntegrationRuntimeRule", {
        dataFactoryId: exampleFactory.id,
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_factory = azure.datafactory.Factory("exampleFactory",
        location=example_resource_group.location,
        resource_group_name=example_resource_group.name)
    example_integration_runtime_rule = azure.datafactory.IntegrationRuntimeRule("exampleIntegrationRuntimeRule",
        data_factory_id=example_factory.id,
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location)
    

    Example coming soon!

    Create IntegrationRuntimeRule Resource

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

    Constructor syntax

    new IntegrationRuntimeRule(name: string, args: IntegrationRuntimeRuleArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationRuntimeRule(resource_name: str,
                               args: IntegrationRuntimeRuleArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationRuntimeRule(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               resource_group_name: Optional[str] = None,
                               cleanup_enabled: Optional[bool] = None,
                               compute_type: Optional[str] = None,
                               core_count: Optional[int] = None,
                               data_factory_id: Optional[str] = None,
                               data_factory_name: Optional[str] = None,
                               description: Optional[str] = None,
                               location: Optional[str] = None,
                               name: Optional[str] = None,
                               time_to_live_min: Optional[int] = None,
                               virtual_network_enabled: Optional[bool] = None)
    func NewIntegrationRuntimeRule(ctx *Context, name string, args IntegrationRuntimeRuleArgs, opts ...ResourceOption) (*IntegrationRuntimeRule, error)
    public IntegrationRuntimeRule(string name, IntegrationRuntimeRuleArgs args, CustomResourceOptions? opts = null)
    public IntegrationRuntimeRule(String name, IntegrationRuntimeRuleArgs args)
    public IntegrationRuntimeRule(String name, IntegrationRuntimeRuleArgs args, CustomResourceOptions options)
    
    type: azure:datafactory:IntegrationRuntimeRule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args IntegrationRuntimeRuleArgs
    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 IntegrationRuntimeRuleArgs
    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 IntegrationRuntimeRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationRuntimeRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationRuntimeRuleArgs
    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 integrationRuntimeRuleResource = new Azure.DataFactory.IntegrationRuntimeRule("integrationRuntimeRuleResource", new()
    {
        ResourceGroupName = "string",
        CleanupEnabled = false,
        ComputeType = "string",
        CoreCount = 0,
        DataFactoryId = "string",
        Description = "string",
        Location = "string",
        Name = "string",
        TimeToLiveMin = 0,
        VirtualNetworkEnabled = false,
    });
    
    example, err := datafactory.NewIntegrationRuntimeRule(ctx, "integrationRuntimeRuleResource", &datafactory.IntegrationRuntimeRuleArgs{
    	ResourceGroupName:     pulumi.String("string"),
    	CleanupEnabled:        pulumi.Bool(false),
    	ComputeType:           pulumi.String("string"),
    	CoreCount:             pulumi.Int(0),
    	DataFactoryId:         pulumi.String("string"),
    	Description:           pulumi.String("string"),
    	Location:              pulumi.String("string"),
    	Name:                  pulumi.String("string"),
    	TimeToLiveMin:         pulumi.Int(0),
    	VirtualNetworkEnabled: pulumi.Bool(false),
    })
    
    var integrationRuntimeRuleResource = new IntegrationRuntimeRule("integrationRuntimeRuleResource", IntegrationRuntimeRuleArgs.builder()
        .resourceGroupName("string")
        .cleanupEnabled(false)
        .computeType("string")
        .coreCount(0)
        .dataFactoryId("string")
        .description("string")
        .location("string")
        .name("string")
        .timeToLiveMin(0)
        .virtualNetworkEnabled(false)
        .build());
    
    integration_runtime_rule_resource = azure.datafactory.IntegrationRuntimeRule("integrationRuntimeRuleResource",
        resource_group_name="string",
        cleanup_enabled=False,
        compute_type="string",
        core_count=0,
        data_factory_id="string",
        description="string",
        location="string",
        name="string",
        time_to_live_min=0,
        virtual_network_enabled=False)
    
    const integrationRuntimeRuleResource = new azure.datafactory.IntegrationRuntimeRule("integrationRuntimeRuleResource", {
        resourceGroupName: "string",
        cleanupEnabled: false,
        computeType: "string",
        coreCount: 0,
        dataFactoryId: "string",
        description: "string",
        location: "string",
        name: "string",
        timeToLiveMin: 0,
        virtualNetworkEnabled: false,
    });
    
    type: azure:datafactory:IntegrationRuntimeRule
    properties:
        cleanupEnabled: false
        computeType: string
        coreCount: 0
        dataFactoryId: string
        description: string
        location: string
        name: string
        resourceGroupName: string
        timeToLiveMin: 0
        virtualNetworkEnabled: false
    

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

    ResourceGroupName string
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    CleanupEnabled bool
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    ComputeType string
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    CoreCount int
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    Integration runtime description.
    Location string
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    TimeToLiveMin int
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    VirtualNetworkEnabled bool
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    CleanupEnabled bool
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    ComputeType string
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    CoreCount int
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    Integration runtime description.
    Location string
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    TimeToLiveMin int
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    VirtualNetworkEnabled bool
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    cleanupEnabled Boolean
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    computeType String
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    coreCount Integer
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    Integration runtime description.
    location String
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    timeToLiveMin Integer
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    virtualNetworkEnabled Boolean
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    cleanupEnabled boolean
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    computeType string
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    coreCount number
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    dataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description string
    Integration runtime description.
    location string
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    timeToLiveMin number
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    virtualNetworkEnabled boolean
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.
    resource_group_name str
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    cleanup_enabled bool
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    compute_type str
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    core_count int
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    data_factory_id str
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    data_factory_name str
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description str
    Integration runtime description.
    location str
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    time_to_live_min int
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    virtual_network_enabled bool
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    cleanupEnabled Boolean
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    computeType String
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    coreCount Number
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    Integration runtime description.
    location String
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    timeToLiveMin Number
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    virtualNetworkEnabled Boolean
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing IntegrationRuntimeRule Resource

    Get an existing IntegrationRuntimeRule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: IntegrationRuntimeRuleState, opts?: CustomResourceOptions): IntegrationRuntimeRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cleanup_enabled: Optional[bool] = None,
            compute_type: Optional[str] = None,
            core_count: Optional[int] = None,
            data_factory_id: Optional[str] = None,
            data_factory_name: Optional[str] = None,
            description: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            time_to_live_min: Optional[int] = None,
            virtual_network_enabled: Optional[bool] = None) -> IntegrationRuntimeRule
    func GetIntegrationRuntimeRule(ctx *Context, name string, id IDInput, state *IntegrationRuntimeRuleState, opts ...ResourceOption) (*IntegrationRuntimeRule, error)
    public static IntegrationRuntimeRule Get(string name, Input<string> id, IntegrationRuntimeRuleState? state, CustomResourceOptions? opts = null)
    public static IntegrationRuntimeRule get(String name, Output<String> id, IntegrationRuntimeRuleState state, CustomResourceOptions options)
    resources:  _:    type: azure:datafactory:IntegrationRuntimeRule    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CleanupEnabled bool
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    ComputeType string
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    CoreCount int
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    Integration runtime description.
    Location string
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    ResourceGroupName string
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    TimeToLiveMin int
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    VirtualNetworkEnabled bool
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.
    CleanupEnabled bool
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    ComputeType string
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    CoreCount int
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    DataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    DataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    Description string
    Integration runtime description.
    Location string
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    ResourceGroupName string
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    TimeToLiveMin int
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    VirtualNetworkEnabled bool
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.
    cleanupEnabled Boolean
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    computeType String
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    coreCount Integer
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    Integration runtime description.
    location String
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    resourceGroupName String
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    timeToLiveMin Integer
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    virtualNetworkEnabled Boolean
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.
    cleanupEnabled boolean
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    computeType string
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    coreCount number
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    dataFactoryId string
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName string
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description string
    Integration runtime description.
    location string
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    resourceGroupName string
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    timeToLiveMin number
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    virtualNetworkEnabled boolean
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.
    cleanup_enabled bool
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    compute_type str
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    core_count int
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    data_factory_id str
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    data_factory_name str
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description str
    Integration runtime description.
    location str
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    resource_group_name str
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    time_to_live_min int
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    virtual_network_enabled bool
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.
    cleanupEnabled Boolean
    Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
    computeType String
    Compute type of the cluster which will execute data flow job. Valid values are General, ComputeOptimized and MemoryOptimized. Defaults to General.
    coreCount Number
    Core count of the cluster which will execute data flow job. Valid values are 8, 16, 32, 48, 80, 144 and 272. Defaults to 8.
    dataFactoryId String
    The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
    dataFactoryName String
    The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.

    Deprecated: data_factory_name is deprecated in favour of data_factory_id and will be removed in version 3.0 of the AzureRM provider

    description String
    Integration runtime description.
    location String
    Specifies the supported Azure location where the resource exists. Use AutoResolve to create an auto-resolve integration runtime. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    resourceGroupName String
    The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.
    timeToLiveMin Number
    Time to live (in minutes) setting of the cluster which will execute data flow job. Defaults to 0.
    virtualNetworkEnabled Boolean
    Is Integration Runtime compute provisioned within Managed Virtual Network? Changing this forces a new resource to be created.

    Import

    Data Factory Azure Integration Runtimes can be imported using the resource id, e.g.

     $ pulumi import azure:datafactory/integrationRuntimeRule:IntegrationRuntimeRule example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/integrationruntimes/example
    

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

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.