We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a Data Factory Self-hosted 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 exampleIntegrationRuntimeSelfHosted = new Azure.DataFactory.IntegrationRuntimeSelfHosted("exampleIntegrationRuntimeSelfHosted", new Azure.DataFactory.IntegrationRuntimeSelfHostedArgs
{
ResourceGroupName = exampleResourceGroup.Name,
DataFactoryId = exampleFactory.Id,
});
}
}
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.NewIntegrationRuntimeSelfHosted(ctx, "exampleIntegrationRuntimeSelfHosted", &datafactory.IntegrationRuntimeSelfHostedArgs{
ResourceGroupName: exampleResourceGroup.Name,
DataFactoryId: exampleFactory.ID(),
})
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 exampleIntegrationRuntimeSelfHosted = new azure.datafactory.IntegrationRuntimeSelfHosted("exampleIntegrationRuntimeSelfHosted", {
resourceGroupName: exampleResourceGroup.name,
dataFactoryId: exampleFactory.id,
});
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_self_hosted = azure.datafactory.IntegrationRuntimeSelfHosted("exampleIntegrationRuntimeSelfHosted",
resource_group_name=example_resource_group.name,
data_factory_id=example_factory.id)
Example coming soon!
Create IntegrationRuntimeSelfHosted Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationRuntimeSelfHosted(name: string, args: IntegrationRuntimeSelfHostedArgs, opts?: CustomResourceOptions);@overload
def IntegrationRuntimeSelfHosted(resource_name: str,
args: IntegrationRuntimeSelfHostedArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationRuntimeSelfHosted(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
data_factory_id: Optional[str] = None,
data_factory_name: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
rbac_authorizations: Optional[Sequence[IntegrationRuntimeSelfHostedRbacAuthorizationArgs]] = None)func NewIntegrationRuntimeSelfHosted(ctx *Context, name string, args IntegrationRuntimeSelfHostedArgs, opts ...ResourceOption) (*IntegrationRuntimeSelfHosted, error)public IntegrationRuntimeSelfHosted(string name, IntegrationRuntimeSelfHostedArgs args, CustomResourceOptions? opts = null)
public IntegrationRuntimeSelfHosted(String name, IntegrationRuntimeSelfHostedArgs args)
public IntegrationRuntimeSelfHosted(String name, IntegrationRuntimeSelfHostedArgs args, CustomResourceOptions options)
type: azure:datafactory:IntegrationRuntimeSelfHosted
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 IntegrationRuntimeSelfHostedArgs
- 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 IntegrationRuntimeSelfHostedArgs
- 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 IntegrationRuntimeSelfHostedArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationRuntimeSelfHostedArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationRuntimeSelfHostedArgs
- 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 integrationRuntimeSelfHostedResource = new Azure.DataFactory.IntegrationRuntimeSelfHosted("integrationRuntimeSelfHostedResource", new()
{
ResourceGroupName = "string",
DataFactoryId = "string",
Description = "string",
Name = "string",
RbacAuthorizations = new[]
{
new Azure.DataFactory.Inputs.IntegrationRuntimeSelfHostedRbacAuthorizationArgs
{
ResourceId = "string",
},
},
});
example, err := datafactory.NewIntegrationRuntimeSelfHosted(ctx, "integrationRuntimeSelfHostedResource", &datafactory.IntegrationRuntimeSelfHostedArgs{
ResourceGroupName: pulumi.String("string"),
DataFactoryId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
RbacAuthorizations: datafactory.IntegrationRuntimeSelfHostedRbacAuthorizationArray{
&datafactory.IntegrationRuntimeSelfHostedRbacAuthorizationArgs{
ResourceId: pulumi.String("string"),
},
},
})
var integrationRuntimeSelfHostedResource = new com.pulumi.azure.datafactory.IntegrationRuntimeSelfHosted("integrationRuntimeSelfHostedResource", com.pulumi.azure.datafactory.IntegrationRuntimeSelfHostedArgs.builder()
.resourceGroupName("string")
.dataFactoryId("string")
.description("string")
.name("string")
.rbacAuthorizations(IntegrationRuntimeSelfHostedRbacAuthorizationArgs.builder()
.resourceId("string")
.build())
.build());
integration_runtime_self_hosted_resource = azure.datafactory.IntegrationRuntimeSelfHosted("integrationRuntimeSelfHostedResource",
resource_group_name="string",
data_factory_id="string",
description="string",
name="string",
rbac_authorizations=[{
"resource_id": "string",
}])
const integrationRuntimeSelfHostedResource = new azure.datafactory.IntegrationRuntimeSelfHosted("integrationRuntimeSelfHostedResource", {
resourceGroupName: "string",
dataFactoryId: "string",
description: "string",
name: "string",
rbacAuthorizations: [{
resourceId: "string",
}],
});
type: azure:datafactory:IntegrationRuntimeSelfHosted
properties:
dataFactoryId: string
description: string
name: string
rbacAuthorizations:
- resourceId: string
resourceGroupName: string
IntegrationRuntimeSelfHosted 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 IntegrationRuntimeSelfHosted resource accepts the following input properties:
- Resource
Group stringName - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- Data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- Data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- Description string
- Integration runtime description.
- Name string
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
-
List<Integration
Runtime Self Hosted Rbac Authorization> - A
rbac_authorizationblock as defined below.
- Resource
Group stringName - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- Data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- Data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- Description string
- Integration runtime description.
- Name string
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
-
[]Integration
Runtime Self Hosted Rbac Authorization Args - A
rbac_authorizationblock as defined below.
- resource
Group StringName - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- data
Factory StringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory StringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description String
- Integration runtime description.
- name String
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
-
List<Integration
Runtime Self Hosted Rbac Authorization> - A
rbac_authorizationblock as defined below.
- resource
Group stringName - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description string
- Integration runtime description.
- name string
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
-
Integration
Runtime Self Hosted Rbac Authorization[] - A
rbac_authorizationblock as defined below.
- resource_
group_ strname - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- data_
factory_ strid - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data_
factory_ strname - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description str
- Integration runtime description.
- name str
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
-
Sequence[Integration
Runtime Self Hosted Rbac Authorization Args] - A
rbac_authorizationblock as defined below.
- resource
Group StringName - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- data
Factory StringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory StringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description String
- Integration runtime description.
- name String
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- List<Property Map>
- A
rbac_authorizationblock as defined below.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationRuntimeSelfHosted resource produces the following output properties:
Look up Existing IntegrationRuntimeSelfHosted Resource
Get an existing IntegrationRuntimeSelfHosted 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?: IntegrationRuntimeSelfHostedState, opts?: CustomResourceOptions): IntegrationRuntimeSelfHosted@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auth_key1: Optional[str] = None,
auth_key2: Optional[str] = None,
data_factory_id: Optional[str] = None,
data_factory_name: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
rbac_authorizations: Optional[Sequence[IntegrationRuntimeSelfHostedRbacAuthorizationArgs]] = None,
resource_group_name: Optional[str] = None) -> IntegrationRuntimeSelfHostedfunc GetIntegrationRuntimeSelfHosted(ctx *Context, name string, id IDInput, state *IntegrationRuntimeSelfHostedState, opts ...ResourceOption) (*IntegrationRuntimeSelfHosted, error)public static IntegrationRuntimeSelfHosted Get(string name, Input<string> id, IntegrationRuntimeSelfHostedState? state, CustomResourceOptions? opts = null)public static IntegrationRuntimeSelfHosted get(String name, Output<String> id, IntegrationRuntimeSelfHostedState state, CustomResourceOptions options)resources: _: type: azure:datafactory:IntegrationRuntimeSelfHosted 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.
- Auth
Key1 string - The primary integration runtime authentication key.
- Auth
Key2 string - The secondary integration runtime authentication key.
- Data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- Data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- Description string
- Integration runtime description.
- Name string
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
-
List<Integration
Runtime Self Hosted Rbac Authorization> - A
rbac_authorizationblock as defined below. - Resource
Group stringName - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- Auth
Key1 string - The primary integration runtime authentication key.
- Auth
Key2 string - The secondary integration runtime authentication key.
- Data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- Data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- Description string
- Integration runtime description.
- Name string
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
-
[]Integration
Runtime Self Hosted Rbac Authorization Args - A
rbac_authorizationblock as defined below. - Resource
Group stringName - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- auth
Key1 String - The primary integration runtime authentication key.
- auth
Key2 String - The secondary integration runtime authentication key.
- data
Factory StringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory StringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description String
- Integration runtime description.
- name String
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
-
List<Integration
Runtime Self Hosted Rbac Authorization> - A
rbac_authorizationblock as defined below. - resource
Group StringName - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- auth
Key1 string - The primary integration runtime authentication key.
- auth
Key2 string - The secondary integration runtime authentication key.
- data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description string
- Integration runtime description.
- name string
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
-
Integration
Runtime Self Hosted Rbac Authorization[] - A
rbac_authorizationblock as defined below. - resource
Group stringName - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- auth_
key1 str - The primary integration runtime authentication key.
- auth_
key2 str - The secondary integration runtime authentication key.
- data_
factory_ strid - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data_
factory_ strname - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description str
- Integration runtime description.
- name str
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
-
Sequence[Integration
Runtime Self Hosted Rbac Authorization Args] - A
rbac_authorizationblock as defined below. - resource_
group_ strname - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- auth
Key1 String - The primary integration runtime authentication key.
- auth
Key2 String - The secondary integration runtime authentication key.
- data
Factory StringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory StringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description String
- Integration runtime description.
- name String
- The name which should be used for this Data Factory. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
- List<Property Map>
- A
rbac_authorizationblock as defined below. - resource
Group StringName - The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory Self-hosted Integration Runtime to be created.
Supporting Types
IntegrationRuntimeSelfHostedRbacAuthorization, IntegrationRuntimeSelfHostedRbacAuthorizationArgs
- Resource
Id string - The resource identifier of the integration runtime to be shared. Changing this forces a new Data Factory to be created.
- Resource
Id string - The resource identifier of the integration runtime to be shared. Changing this forces a new Data Factory to be created.
- resource
Id String - The resource identifier of the integration runtime to be shared. Changing this forces a new Data Factory to be created.
- resource
Id string - The resource identifier of the integration runtime to be shared. Changing this forces a new Data Factory to be created.
- resource_
id str - The resource identifier of the integration runtime to be shared. Changing this forces a new Data Factory to be created.
- resource
Id String - The resource identifier of the integration runtime to be shared. Changing this forces a new Data Factory to be created.
Import
Data Factories can be imported using the resource id, e.g.
$ pulumi import azure:datafactory/integrationRuntimeSelfHosted:IntegrationRuntimeSelfHosted 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
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
