We recommend using Azure Native.
azure.datafactory.IntegrationRuntimeSelfHosted
Explore with Pulumi AI
Manages a Data Factory Self-hosted Integration Runtime.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleFactory = new azure.datafactory.Factory("example", {
name: "example",
location: example.location,
resourceGroupName: example.name,
});
const exampleIntegrationRuntimeSelfHosted = new azure.datafactory.IntegrationRuntimeSelfHosted("example", {
name: "example",
dataFactoryId: exampleFactory.id,
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_factory = azure.datafactory.Factory("example",
name="example",
location=example.location,
resource_group_name=example.name)
example_integration_runtime_self_hosted = azure.datafactory.IntegrationRuntimeSelfHosted("example",
name="example",
data_factory_id=example_factory.id)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/datafactory"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleFactory, err := datafactory.NewFactory(ctx, "example", &datafactory.FactoryArgs{
Name: pulumi.String("example"),
Location: example.Location,
ResourceGroupName: example.Name,
})
if err != nil {
return err
}
_, err = datafactory.NewIntegrationRuntimeSelfHosted(ctx, "example", &datafactory.IntegrationRuntimeSelfHostedArgs{
Name: pulumi.String("example"),
DataFactoryId: exampleFactory.ID(),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleFactory = new Azure.DataFactory.Factory("example", new()
{
Name = "example",
Location = example.Location,
ResourceGroupName = example.Name,
});
var exampleIntegrationRuntimeSelfHosted = new Azure.DataFactory.IntegrationRuntimeSelfHosted("example", new()
{
Name = "example",
DataFactoryId = exampleFactory.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.datafactory.Factory;
import com.pulumi.azure.datafactory.FactoryArgs;
import com.pulumi.azure.datafactory.IntegrationRuntimeSelfHosted;
import com.pulumi.azure.datafactory.IntegrationRuntimeSelfHostedArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleFactory = new Factory("exampleFactory", FactoryArgs.builder()
.name("example")
.location(example.location())
.resourceGroupName(example.name())
.build());
var exampleIntegrationRuntimeSelfHosted = new IntegrationRuntimeSelfHosted("exampleIntegrationRuntimeSelfHosted", IntegrationRuntimeSelfHostedArgs.builder()
.name("example")
.dataFactoryId(exampleFactory.id())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleFactory:
type: azure:datafactory:Factory
name: example
properties:
name: example
location: ${example.location}
resourceGroupName: ${example.name}
exampleIntegrationRuntimeSelfHosted:
type: azure:datafactory:IntegrationRuntimeSelfHosted
name: example
properties:
name: example
dataFactoryId: ${exampleFactory.id}
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,
data_factory_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
rbac_authorizations: Optional[Sequence[IntegrationRuntimeSelfHostedRbacAuthorizationArgs]] = None,
self_contained_interactive_authoring_enabled: Optional[bool] = 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()
{
DataFactoryId = "string",
Description = "string",
Name = "string",
RbacAuthorizations = new[]
{
new Azure.DataFactory.Inputs.IntegrationRuntimeSelfHostedRbacAuthorizationArgs
{
ResourceId = "string",
},
},
SelfContainedInteractiveAuthoringEnabled = false,
});
example, err := datafactory.NewIntegrationRuntimeSelfHosted(ctx, "integrationRuntimeSelfHostedResource", &datafactory.IntegrationRuntimeSelfHostedArgs{
DataFactoryId: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
RbacAuthorizations: datafactory.IntegrationRuntimeSelfHostedRbacAuthorizationArray{
&datafactory.IntegrationRuntimeSelfHostedRbacAuthorizationArgs{
ResourceId: pulumi.String("string"),
},
},
SelfContainedInteractiveAuthoringEnabled: pulumi.Bool(false),
})
var integrationRuntimeSelfHostedResource = new IntegrationRuntimeSelfHosted("integrationRuntimeSelfHostedResource", IntegrationRuntimeSelfHostedArgs.builder()
.dataFactoryId("string")
.description("string")
.name("string")
.rbacAuthorizations(IntegrationRuntimeSelfHostedRbacAuthorizationArgs.builder()
.resourceId("string")
.build())
.selfContainedInteractiveAuthoringEnabled(false)
.build());
integration_runtime_self_hosted_resource = azure.datafactory.IntegrationRuntimeSelfHosted("integrationRuntimeSelfHostedResource",
data_factory_id="string",
description="string",
name="string",
rbac_authorizations=[azure.datafactory.IntegrationRuntimeSelfHostedRbacAuthorizationArgs(
resource_id="string",
)],
self_contained_interactive_authoring_enabled=False)
const integrationRuntimeSelfHostedResource = new azure.datafactory.IntegrationRuntimeSelfHosted("integrationRuntimeSelfHostedResource", {
dataFactoryId: "string",
description: "string",
name: "string",
rbacAuthorizations: [{
resourceId: "string",
}],
selfContainedInteractiveAuthoringEnabled: false,
});
type: azure:datafactory:IntegrationRuntimeSelfHosted
properties:
dataFactoryId: string
description: string
name: string
rbacAuthorizations:
- resourceId: string
selfContainedInteractiveAuthoringEnabled: false
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
The IntegrationRuntimeSelfHosted resource accepts the following input properties:
- Data
Factory stringId - The Data Factory ID 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_authorization
block as defined below. Changing this forces a new resource to be created. - bool
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- Data
Factory stringId - The Data Factory ID 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_authorization
block as defined below. Changing this forces a new resource to be created. - bool
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- data
Factory StringId - The Data Factory ID 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_authorization
block as defined below. Changing this forces a new resource to be created. - Boolean
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- data
Factory stringId - The Data Factory ID 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_authorization
block as defined below. Changing this forces a new resource to be created. - boolean
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- data_
factory_ strid - The Data Factory ID 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_authorization
block as defined below. Changing this forces a new resource to be created. - bool
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- data
Factory StringId - The Data Factory ID 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_authorization
block as defined below. Changing this forces a new resource to be created. - Boolean
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationRuntimeSelfHosted resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- string
- The primary integration runtime authentication key.
- string
- The secondary integration runtime authentication key.
- Id string
- The provider-assigned unique ID for this managed resource.
- string
- The primary integration runtime authentication key.
- string
- The secondary integration runtime authentication key.
- id String
- The provider-assigned unique ID for this managed resource.
- String
- The primary integration runtime authentication key.
- String
- The secondary integration runtime authentication key.
- id string
- The provider-assigned unique ID for this managed resource.
- string
- The primary integration runtime authentication key.
- string
- The secondary integration runtime authentication key.
- id str
- The provider-assigned unique ID for this managed resource.
- str
- The primary integration runtime authentication key.
- str
- The secondary integration runtime authentication key.
- id String
- The provider-assigned unique ID for this managed resource.
- String
- The primary integration runtime authentication key.
- String
- The secondary integration runtime authentication key.
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,
data_factory_id: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
primary_authorization_key: Optional[str] = None,
rbac_authorizations: Optional[Sequence[IntegrationRuntimeSelfHostedRbacAuthorizationArgs]] = None,
secondary_authorization_key: Optional[str] = None,
self_contained_interactive_authoring_enabled: Optional[bool] = None) -> IntegrationRuntimeSelfHosted
func 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)
Resource lookup is not supported in YAML
- 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.
- Data
Factory stringId - The Data Factory ID 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.
- string
- The primary integration runtime authentication key.
- List<Integration
Runtime Self Hosted Rbac Authorization> - A
rbac_authorization
block as defined below. Changing this forces a new resource to be created. - string
- The secondary integration runtime authentication key.
- bool
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- Data
Factory stringId - The Data Factory ID 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.
- string
- The primary integration runtime authentication key.
- []Integration
Runtime Self Hosted Rbac Authorization Args - A
rbac_authorization
block as defined below. Changing this forces a new resource to be created. - string
- The secondary integration runtime authentication key.
- bool
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- data
Factory StringId - The Data Factory ID 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.
- String
- The primary integration runtime authentication key.
- List<Integration
Runtime Self Hosted Rbac Authorization> - A
rbac_authorization
block as defined below. Changing this forces a new resource to be created. - String
- The secondary integration runtime authentication key.
- Boolean
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- data
Factory stringId - The Data Factory ID 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.
- string
- The primary integration runtime authentication key.
- Integration
Runtime Self Hosted Rbac Authorization[] - A
rbac_authorization
block as defined below. Changing this forces a new resource to be created. - string
- The secondary integration runtime authentication key.
- boolean
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- data_
factory_ strid - The Data Factory ID 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.
- str
- The primary integration runtime authentication key.
- Sequence[Integration
Runtime Self Hosted Rbac Authorization Args] - A
rbac_authorization
block as defined below. Changing this forces a new resource to be created. - str
- The secondary integration runtime authentication key.
- bool
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- data
Factory StringId - The Data Factory ID 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.
- String
- The primary integration runtime authentication key.
- List<Property Map>
- A
rbac_authorization
block as defined below. Changing this forces a new resource to be created. - String
- The secondary integration runtime authentication key.
- Boolean
- Specifies whether enable interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
Supporting Types
IntegrationRuntimeSelfHostedRbacAuthorization, IntegrationRuntimeSelfHostedRbacAuthorizationArgs
- Resource
Id string The resource identifier of the integration runtime to be shared.
Please Note: RBAC Authorization creates a linked Self-hosted Integration Runtime targeting the Shared Self-hosted Integration Runtime in resource_id. The linked Self-hosted Integration Runtime needs Contributor access granted to the Shared Self-hosted Data Factory.
For more information on the configuration, please check out the Azure documentation
- Resource
Id string The resource identifier of the integration runtime to be shared.
Please Note: RBAC Authorization creates a linked Self-hosted Integration Runtime targeting the Shared Self-hosted Integration Runtime in resource_id. The linked Self-hosted Integration Runtime needs Contributor access granted to the Shared Self-hosted Data Factory.
For more information on the configuration, please check out the Azure documentation
- resource
Id String The resource identifier of the integration runtime to be shared.
Please Note: RBAC Authorization creates a linked Self-hosted Integration Runtime targeting the Shared Self-hosted Integration Runtime in resource_id. The linked Self-hosted Integration Runtime needs Contributor access granted to the Shared Self-hosted Data Factory.
For more information on the configuration, please check out the Azure documentation
- resource
Id string The resource identifier of the integration runtime to be shared.
Please Note: RBAC Authorization creates a linked Self-hosted Integration Runtime targeting the Shared Self-hosted Integration Runtime in resource_id. The linked Self-hosted Integration Runtime needs Contributor access granted to the Shared Self-hosted Data Factory.
For more information on the configuration, please check out the Azure documentation
- resource_
id str The resource identifier of the integration runtime to be shared.
Please Note: RBAC Authorization creates a linked Self-hosted Integration Runtime targeting the Shared Self-hosted Integration Runtime in resource_id. The linked Self-hosted Integration Runtime needs Contributor access granted to the Shared Self-hosted Data Factory.
For more information on the configuration, please check out the Azure documentation
- resource
Id String The resource identifier of the integration runtime to be shared.
Please Note: RBAC Authorization creates a linked Self-hosted Integration Runtime targeting the Shared Self-hosted Integration Runtime in resource_id. The linked Self-hosted Integration Runtime needs Contributor access granted to the Shared Self-hosted Data Factory.
For more information on the configuration, please check out the Azure documentation
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
azurerm
Terraform Provider.