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
new IntegrationRuntimeSelfHosted(name: string, args: IntegrationRuntimeSelfHostedArgs, opts?: CustomResourceOptions);def IntegrationRuntimeSelfHosted(resource_name, opts=None, data_factory_name=None, description=None, name=None, rbac_authorizations=None, resource_group_name=None, __props__=None);func NewIntegrationRuntimeSelfHosted(ctx *Context, name string, args IntegrationRuntimeSelfHostedArgs, opts ...ResourceOption) (*IntegrationRuntimeSelfHosted, error)public IntegrationRuntimeSelfHosted(string name, IntegrationRuntimeSelfHostedArgs args, CustomResourceOptions? opts = null)- 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:
- Data
Factory stringName Changing this forces a new Data Factory to be created.
- Resource
Group stringName 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.
-
List<Integration
Runtime Self Hosted Rbac Authorization Args> A
rbac_authorizationblock as defined below.
- Data
Factory stringName Changing this forces a new Data Factory to be created.
- Resource
Group stringName 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.
-
[]Integration
Runtime Self Hosted Rbac Authorization A
rbac_authorizationblock as defined below.
- data
Factory stringName Changing this forces a new Data Factory to be created.
- resource
Group stringName 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.
-
Integration
Runtime Self Hosted Rbac Authorization[] A
rbac_authorizationblock as defined below.
- data_
factory_ strname Changing this forces a new Data Factory to be created.
- resource_
group_ strname 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.
-
List[Integration
Runtime Self Hosted Rbac Authorization] 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 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.
public static get(name: string, id: Input<ID>, state?: IntegrationRuntimeSelfHostedState, opts?: CustomResourceOptions): IntegrationRuntimeSelfHostedstatic 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)public static IntegrationRuntimeSelfHosted Get(string name, Input<string> id, IntegrationRuntimeSelfHostedState? state, CustomResourceOptions? opts = null)- 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:
- Auth
Key1 string The primary integration runtime authentication key.
- Auth
Key2 string The secondary integration runtime authentication key.
- Data
Factory stringName 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.
-
List<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 to be created.
- Auth
Key1 string The primary integration runtime authentication key.
- Auth
Key2 string The secondary integration runtime authentication key.
- Data
Factory stringName 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.
-
[]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 to be created.
- auth
Key1 string The primary integration runtime authentication key.
- auth
Key2 string The secondary integration runtime authentication key.
- data
Factory stringName 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.
-
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 to be created.
- auth_
key1 str The primary integration runtime authentication key.
- auth_
key2 str The secondary integration runtime authentication key.
- data_
factory_ strname 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.
-
List[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 to be created.
Supporting Types
IntegrationRuntimeSelfHostedRbacAuthorization
- 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.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.