IntegrationRuntimeSelfHosted

Manages a Data Factory Self-host 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 = "eastus",
        });
        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 = "example",
            DataFactoryName = "example",
        });
    }

}
package main

import (
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/datafactory"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
            Location: pulumi.String("eastus"),
        })
        if err != nil {
            return err
        }
        _, 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: pulumi.String("example"),
            DataFactoryName:   pulumi.String("example"),
        })
        if err != nil {
            return err
        }
        return nil
    })
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="eastus")
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",
    data_factory_name="example")
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "eastus"});
const exampleFactory = new azure.datafactory.Factory("exampleFactory", {
    location: exampleResourceGroup.location,
    resourceGroupName: exampleResourceGroup.name,
});
const exampleIntegrationRuntimeSelfHosted = new azure.datafactory.IntegrationRuntimeSelfHosted("exampleIntegrationRuntimeSelfHosted", {
    resourceGroupName: "example",
    dataFactoryName: "example",
});

Create a IntegrationRuntimeSelfHosted Resource

def IntegrationRuntimeSelfHosted(resource_name, opts=None, data_factory_name=None, description=None, name=None, rbac_authorizations=None, resource_group_name=None, __props__=None);
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.
opts ResourceOptions
A bag of options that control this 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.

IntegrationRuntimeSelfHosted Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The IntegrationRuntimeSelfHosted resource accepts the following input properties:

DataFactoryName string

Changing this forces a new Data Factory to be created.

ResourceGroupName string

The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory to be created.

Description string

Integration runtime description.

Name string

The name which should be used for this Data Factory. Changing this forces a new Data Factory to be created.

RbacAuthorizations List<IntegrationRuntimeSelfHostedRbacAuthorizationArgs>

A rbac_authorization block as defined below.

DataFactoryName string

Changing this forces a new Data Factory to be created.

ResourceGroupName string

The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory to be created.

Description string

Integration runtime description.

Name string

The name which should be used for this Data Factory. Changing this forces a new Data Factory to be created.

RbacAuthorizations []IntegrationRuntimeSelfHostedRbacAuthorization

A rbac_authorization block as defined below.

dataFactoryName string

Changing this forces a new Data Factory to be created.

resourceGroupName string

The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory to be created.

description string

Integration runtime description.

name string

The name which should be used for this Data Factory. Changing this forces a new Data Factory to be created.

rbacAuthorizations IntegrationRuntimeSelfHostedRbacAuthorization[]

A rbac_authorization block as defined below.

data_factory_name str

Changing this forces a new Data Factory to be created.

resource_group_name str

The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory to be created.

description str

Integration runtime description.

name str

The name which should be used for this Data Factory. Changing this forces a new Data Factory to be created.

rbac_authorizations List[IntegrationRuntimeSelfHostedRbacAuthorization]

A rbac_authorization block as defined below.

Outputs

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

AuthKey1 string

The primary integration runtime authentication key.

AuthKey2 string

The secondary integration runtime authentication key.

Id string
The provider-assigned unique ID for this managed resource.
AuthKey1 string

The primary integration runtime authentication key.

AuthKey2 string

The secondary integration runtime authentication key.

Id string
The provider-assigned unique ID for this managed resource.
authKey1 string

The primary integration runtime authentication key.

authKey2 string

The secondary integration runtime authentication key.

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

The primary integration runtime authentication key.

auth_key2 str

The secondary integration runtime authentication key.

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

Look up an Existing IntegrationRuntimeSelfHosted Resource

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

static get(resource_name, id, opts=None, auth_key1=None, auth_key2=None, data_factory_name=None, description=None, name=None, rbac_authorizations=None, resource_group_name=None, __props__=None);
func GetIntegrationRuntimeSelfHosted(ctx *Context, name string, id IDInput, state *IntegrationRuntimeSelfHostedState, opts ...ResourceOption) (*IntegrationRuntimeSelfHosted, error)
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.

The following state arguments are supported:

AuthKey1 string

The primary integration runtime authentication key.

AuthKey2 string

The secondary integration runtime authentication key.

DataFactoryName string

Changing this forces a new Data Factory to be created.

Description string

Integration runtime description.

Name string

The name which should be used for this Data Factory. Changing this forces a new Data Factory to be created.

RbacAuthorizations List<IntegrationRuntimeSelfHostedRbacAuthorizationArgs>

A rbac_authorization block as defined below.

ResourceGroupName string

The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory to be created.

AuthKey1 string

The primary integration runtime authentication key.

AuthKey2 string

The secondary integration runtime authentication key.

DataFactoryName string

Changing this forces a new Data Factory to be created.

Description string

Integration runtime description.

Name string

The name which should be used for this Data Factory. Changing this forces a new Data Factory to be created.

RbacAuthorizations []IntegrationRuntimeSelfHostedRbacAuthorization

A rbac_authorization block as defined below.

ResourceGroupName string

The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory to be created.

authKey1 string

The primary integration runtime authentication key.

authKey2 string

The secondary integration runtime authentication key.

dataFactoryName string

Changing this forces a new Data Factory to be created.

description string

Integration runtime description.

name string

The name which should be used for this Data Factory. Changing this forces a new Data Factory to be created.

rbacAuthorizations IntegrationRuntimeSelfHostedRbacAuthorization[]

A rbac_authorization block as defined below.

resourceGroupName string

The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory to be created.

auth_key1 str

The primary integration runtime authentication key.

auth_key2 str

The secondary integration runtime authentication key.

data_factory_name str

Changing this forces a new Data Factory to be created.

description str

Integration runtime description.

name str

The name which should be used for this Data Factory. Changing this forces a new Data Factory to be created.

rbac_authorizations List[IntegrationRuntimeSelfHostedRbacAuthorization]

A rbac_authorization block as defined below.

resource_group_name str

The name of the Resource Group where the Data Factory should exist. Changing this forces a new Data Factory to be created.

Supporting Types

IntegrationRuntimeSelfHostedRbacAuthorization

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

ResourceId string

The resource identifier of the integration runtime to be shared. Changing this forces a new Data Factory to be created.

ResourceId string

The resource identifier of the integration runtime to be shared. Changing this forces a new Data Factory to be created.

resourceId 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.

Package Details

Repository
https://github.com/pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.