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

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-SSIS 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 exampleIntegrationRuntimeSsis = new Azure.DataFactory.IntegrationRuntimeSsis("exampleIntegrationRuntimeSsis", new Azure.DataFactory.IntegrationRuntimeSsisArgs
            {
                DataFactoryId = exampleFactory.Id,
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
                NodeSize = "Standard_D8_v3",
            });
        }
    
    }
    
    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.NewIntegrationRuntimeSsis(ctx, "exampleIntegrationRuntimeSsis", &datafactory.IntegrationRuntimeSsisArgs{
    			DataFactoryId:     exampleFactory.ID(),
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    			NodeSize:          pulumi.String("Standard_D8_v3"),
    		})
    		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 exampleIntegrationRuntimeSsis = new azure.datafactory.IntegrationRuntimeSsis("exampleIntegrationRuntimeSsis", {
        dataFactoryId: exampleFactory.id,
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        nodeSize: "Standard_D8_v3",
    });
    
    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_ssis = azure.datafactory.IntegrationRuntimeSsis("exampleIntegrationRuntimeSsis",
        data_factory_id=example_factory.id,
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        node_size="Standard_D8_v3")
    

    Example coming soon!

    Create IntegrationRuntimeSsis Resource

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

    Constructor syntax

    new IntegrationRuntimeSsis(name: string, args: IntegrationRuntimeSsisArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationRuntimeSsis(resource_name: str,
                               args: IntegrationRuntimeSsisArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationRuntimeSsis(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               node_size: Optional[str] = None,
                               resource_group_name: Optional[str] = None,
                               location: Optional[str] = None,
                               max_parallel_executions_per_node: Optional[int] = None,
                               description: Optional[str] = None,
                               edition: Optional[str] = None,
                               express_custom_setup: Optional[IntegrationRuntimeSsisExpressCustomSetupArgs] = None,
                               license_type: Optional[str] = None,
                               catalog_info: Optional[IntegrationRuntimeSsisCatalogInfoArgs] = None,
                               data_factory_name: Optional[str] = None,
                               name: Optional[str] = None,
                               data_factory_id: Optional[str] = None,
                               number_of_nodes: Optional[int] = None,
                               package_stores: Optional[Sequence[IntegrationRuntimeSsisPackageStoreArgs]] = None,
                               proxy: Optional[IntegrationRuntimeSsisProxyArgs] = None,
                               custom_setup_script: Optional[IntegrationRuntimeSsisCustomSetupScriptArgs] = None,
                               vnet_integration: Optional[IntegrationRuntimeSsisVnetIntegrationArgs] = None)
    func NewIntegrationRuntimeSsis(ctx *Context, name string, args IntegrationRuntimeSsisArgs, opts ...ResourceOption) (*IntegrationRuntimeSsis, error)
    public IntegrationRuntimeSsis(string name, IntegrationRuntimeSsisArgs args, CustomResourceOptions? opts = null)
    public IntegrationRuntimeSsis(String name, IntegrationRuntimeSsisArgs args)
    public IntegrationRuntimeSsis(String name, IntegrationRuntimeSsisArgs args, CustomResourceOptions options)
    
    type: azure:datafactory:IntegrationRuntimeSsis
    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 IntegrationRuntimeSsisArgs
    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 IntegrationRuntimeSsisArgs
    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 IntegrationRuntimeSsisArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationRuntimeSsisArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationRuntimeSsisArgs
    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 integrationRuntimeSsisResource = new Azure.DataFactory.IntegrationRuntimeSsis("integrationRuntimeSsisResource", new()
    {
        NodeSize = "string",
        ResourceGroupName = "string",
        Location = "string",
        MaxParallelExecutionsPerNode = 0,
        Description = "string",
        Edition = "string",
        ExpressCustomSetup = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisExpressCustomSetupArgs
        {
            CommandKeys = new[]
            {
                new Azure.DataFactory.Inputs.IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs
                {
                    TargetName = "string",
                    UserName = "string",
                    KeyVaultPassword = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgs
                    {
                        LinkedServiceName = "string",
                        SecretName = "string",
                        Parameters = 
                        {
                            { "string", "string" },
                        },
                        SecretVersion = "string",
                    },
                    Password = "string",
                },
            },
            Components = new[]
            {
                new Azure.DataFactory.Inputs.IntegrationRuntimeSsisExpressCustomSetupComponentArgs
                {
                    Name = "string",
                    KeyVaultLicense = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs
                    {
                        LinkedServiceName = "string",
                        SecretName = "string",
                        Parameters = 
                        {
                            { "string", "string" },
                        },
                        SecretVersion = "string",
                    },
                    License = "string",
                },
            },
            Environment = 
            {
                { "string", "string" },
            },
            PowershellVersion = "string",
        },
        LicenseType = "string",
        CatalogInfo = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisCatalogInfoArgs
        {
            ServerEndpoint = "string",
            AdministratorLogin = "string",
            AdministratorPassword = "string",
            DualStandbyPairName = "string",
            PricingTier = "string",
        },
        Name = "string",
        DataFactoryId = "string",
        NumberOfNodes = 0,
        PackageStores = new[]
        {
            new Azure.DataFactory.Inputs.IntegrationRuntimeSsisPackageStoreArgs
            {
                LinkedServiceName = "string",
                Name = "string",
            },
        },
        Proxy = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisProxyArgs
        {
            SelfHostedIntegrationRuntimeName = "string",
            StagingStorageLinkedServiceName = "string",
            Path = "string",
        },
        CustomSetupScript = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisCustomSetupScriptArgs
        {
            BlobContainerUri = "string",
            SasToken = "string",
        },
        VnetIntegration = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisVnetIntegrationArgs
        {
            PublicIps = new[]
            {
                "string",
            },
            SubnetId = "string",
            SubnetName = "string",
            VnetId = "string",
        },
    });
    
    example, err := datafactory.NewIntegrationRuntimeSsis(ctx, "integrationRuntimeSsisResource", &datafactory.IntegrationRuntimeSsisArgs{
    	NodeSize:                     pulumi.String("string"),
    	ResourceGroupName:            pulumi.String("string"),
    	Location:                     pulumi.String("string"),
    	MaxParallelExecutionsPerNode: pulumi.Int(0),
    	Description:                  pulumi.String("string"),
    	Edition:                      pulumi.String("string"),
    	ExpressCustomSetup: &datafactory.IntegrationRuntimeSsisExpressCustomSetupArgs{
    		CommandKeys: datafactory.IntegrationRuntimeSsisExpressCustomSetupCommandKeyArray{
    			&datafactory.IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs{
    				TargetName: pulumi.String("string"),
    				UserName:   pulumi.String("string"),
    				KeyVaultPassword: &datafactory.IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgs{
    					LinkedServiceName: pulumi.String("string"),
    					SecretName:        pulumi.String("string"),
    					Parameters: pulumi.StringMap{
    						"string": pulumi.String("string"),
    					},
    					SecretVersion: pulumi.String("string"),
    				},
    				Password: pulumi.String("string"),
    			},
    		},
    		Components: datafactory.IntegrationRuntimeSsisExpressCustomSetupComponentArray{
    			&datafactory.IntegrationRuntimeSsisExpressCustomSetupComponentArgs{
    				Name: pulumi.String("string"),
    				KeyVaultLicense: &datafactory.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs{
    					LinkedServiceName: pulumi.String("string"),
    					SecretName:        pulumi.String("string"),
    					Parameters: pulumi.StringMap{
    						"string": pulumi.String("string"),
    					},
    					SecretVersion: pulumi.String("string"),
    				},
    				License: pulumi.String("string"),
    			},
    		},
    		Environment: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		PowershellVersion: pulumi.String("string"),
    	},
    	LicenseType: pulumi.String("string"),
    	CatalogInfo: &datafactory.IntegrationRuntimeSsisCatalogInfoArgs{
    		ServerEndpoint:        pulumi.String("string"),
    		AdministratorLogin:    pulumi.String("string"),
    		AdministratorPassword: pulumi.String("string"),
    		DualStandbyPairName:   pulumi.String("string"),
    		PricingTier:           pulumi.String("string"),
    	},
    	Name:          pulumi.String("string"),
    	DataFactoryId: pulumi.String("string"),
    	NumberOfNodes: pulumi.Int(0),
    	PackageStores: datafactory.IntegrationRuntimeSsisPackageStoreArray{
    		&datafactory.IntegrationRuntimeSsisPackageStoreArgs{
    			LinkedServiceName: pulumi.String("string"),
    			Name:              pulumi.String("string"),
    		},
    	},
    	Proxy: &datafactory.IntegrationRuntimeSsisProxyArgs{
    		SelfHostedIntegrationRuntimeName: pulumi.String("string"),
    		StagingStorageLinkedServiceName:  pulumi.String("string"),
    		Path:                             pulumi.String("string"),
    	},
    	CustomSetupScript: &datafactory.IntegrationRuntimeSsisCustomSetupScriptArgs{
    		BlobContainerUri: pulumi.String("string"),
    		SasToken:         pulumi.String("string"),
    	},
    	VnetIntegration: &datafactory.IntegrationRuntimeSsisVnetIntegrationArgs{
    		PublicIps: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		SubnetId:   pulumi.String("string"),
    		SubnetName: pulumi.String("string"),
    		VnetId:     pulumi.String("string"),
    	},
    })
    
    var integrationRuntimeSsisResource = new IntegrationRuntimeSsis("integrationRuntimeSsisResource", IntegrationRuntimeSsisArgs.builder()
        .nodeSize("string")
        .resourceGroupName("string")
        .location("string")
        .maxParallelExecutionsPerNode(0)
        .description("string")
        .edition("string")
        .expressCustomSetup(IntegrationRuntimeSsisExpressCustomSetupArgs.builder()
            .commandKeys(IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs.builder()
                .targetName("string")
                .userName("string")
                .keyVaultPassword(IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgs.builder()
                    .linkedServiceName("string")
                    .secretName("string")
                    .parameters(Map.of("string", "string"))
                    .secretVersion("string")
                    .build())
                .password("string")
                .build())
            .components(IntegrationRuntimeSsisExpressCustomSetupComponentArgs.builder()
                .name("string")
                .keyVaultLicense(IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs.builder()
                    .linkedServiceName("string")
                    .secretName("string")
                    .parameters(Map.of("string", "string"))
                    .secretVersion("string")
                    .build())
                .license("string")
                .build())
            .environment(Map.of("string", "string"))
            .powershellVersion("string")
            .build())
        .licenseType("string")
        .catalogInfo(IntegrationRuntimeSsisCatalogInfoArgs.builder()
            .serverEndpoint("string")
            .administratorLogin("string")
            .administratorPassword("string")
            .dualStandbyPairName("string")
            .pricingTier("string")
            .build())
        .name("string")
        .dataFactoryId("string")
        .numberOfNodes(0)
        .packageStores(IntegrationRuntimeSsisPackageStoreArgs.builder()
            .linkedServiceName("string")
            .name("string")
            .build())
        .proxy(IntegrationRuntimeSsisProxyArgs.builder()
            .selfHostedIntegrationRuntimeName("string")
            .stagingStorageLinkedServiceName("string")
            .path("string")
            .build())
        .customSetupScript(IntegrationRuntimeSsisCustomSetupScriptArgs.builder()
            .blobContainerUri("string")
            .sasToken("string")
            .build())
        .vnetIntegration(IntegrationRuntimeSsisVnetIntegrationArgs.builder()
            .publicIps("string")
            .subnetId("string")
            .subnetName("string")
            .vnetId("string")
            .build())
        .build());
    
    integration_runtime_ssis_resource = azure.datafactory.IntegrationRuntimeSsis("integrationRuntimeSsisResource",
        node_size="string",
        resource_group_name="string",
        location="string",
        max_parallel_executions_per_node=0,
        description="string",
        edition="string",
        express_custom_setup={
            "command_keys": [{
                "target_name": "string",
                "user_name": "string",
                "key_vault_password": {
                    "linked_service_name": "string",
                    "secret_name": "string",
                    "parameters": {
                        "string": "string",
                    },
                    "secret_version": "string",
                },
                "password": "string",
            }],
            "components": [{
                "name": "string",
                "key_vault_license": {
                    "linked_service_name": "string",
                    "secret_name": "string",
                    "parameters": {
                        "string": "string",
                    },
                    "secret_version": "string",
                },
                "license": "string",
            }],
            "environment": {
                "string": "string",
            },
            "powershell_version": "string",
        },
        license_type="string",
        catalog_info={
            "server_endpoint": "string",
            "administrator_login": "string",
            "administrator_password": "string",
            "dual_standby_pair_name": "string",
            "pricing_tier": "string",
        },
        name="string",
        data_factory_id="string",
        number_of_nodes=0,
        package_stores=[{
            "linked_service_name": "string",
            "name": "string",
        }],
        proxy={
            "self_hosted_integration_runtime_name": "string",
            "staging_storage_linked_service_name": "string",
            "path": "string",
        },
        custom_setup_script={
            "blob_container_uri": "string",
            "sas_token": "string",
        },
        vnet_integration={
            "public_ips": ["string"],
            "subnet_id": "string",
            "subnet_name": "string",
            "vnet_id": "string",
        })
    
    const integrationRuntimeSsisResource = new azure.datafactory.IntegrationRuntimeSsis("integrationRuntimeSsisResource", {
        nodeSize: "string",
        resourceGroupName: "string",
        location: "string",
        maxParallelExecutionsPerNode: 0,
        description: "string",
        edition: "string",
        expressCustomSetup: {
            commandKeys: [{
                targetName: "string",
                userName: "string",
                keyVaultPassword: {
                    linkedServiceName: "string",
                    secretName: "string",
                    parameters: {
                        string: "string",
                    },
                    secretVersion: "string",
                },
                password: "string",
            }],
            components: [{
                name: "string",
                keyVaultLicense: {
                    linkedServiceName: "string",
                    secretName: "string",
                    parameters: {
                        string: "string",
                    },
                    secretVersion: "string",
                },
                license: "string",
            }],
            environment: {
                string: "string",
            },
            powershellVersion: "string",
        },
        licenseType: "string",
        catalogInfo: {
            serverEndpoint: "string",
            administratorLogin: "string",
            administratorPassword: "string",
            dualStandbyPairName: "string",
            pricingTier: "string",
        },
        name: "string",
        dataFactoryId: "string",
        numberOfNodes: 0,
        packageStores: [{
            linkedServiceName: "string",
            name: "string",
        }],
        proxy: {
            selfHostedIntegrationRuntimeName: "string",
            stagingStorageLinkedServiceName: "string",
            path: "string",
        },
        customSetupScript: {
            blobContainerUri: "string",
            sasToken: "string",
        },
        vnetIntegration: {
            publicIps: ["string"],
            subnetId: "string",
            subnetName: "string",
            vnetId: "string",
        },
    });
    
    type: azure:datafactory:IntegrationRuntimeSsis
    properties:
        catalogInfo:
            administratorLogin: string
            administratorPassword: string
            dualStandbyPairName: string
            pricingTier: string
            serverEndpoint: string
        customSetupScript:
            blobContainerUri: string
            sasToken: string
        dataFactoryId: string
        description: string
        edition: string
        expressCustomSetup:
            commandKeys:
                - keyVaultPassword:
                    linkedServiceName: string
                    parameters:
                        string: string
                    secretName: string
                    secretVersion: string
                  password: string
                  targetName: string
                  userName: string
            components:
                - keyVaultLicense:
                    linkedServiceName: string
                    parameters:
                        string: string
                    secretName: string
                    secretVersion: string
                  license: string
                  name: string
            environment:
                string: string
            powershellVersion: string
        licenseType: string
        location: string
        maxParallelExecutionsPerNode: 0
        name: string
        nodeSize: string
        numberOfNodes: 0
        packageStores:
            - linkedServiceName: string
              name: string
        proxy:
            path: string
            selfHostedIntegrationRuntimeName: string
            stagingStorageLinkedServiceName: string
        resourceGroupName: string
        vnetIntegration:
            publicIps:
                - string
            subnetId: string
            subnetName: string
            vnetId: string
    

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

    NodeSize string
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    ResourceGroupName string
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    CatalogInfo IntegrationRuntimeSsisCatalogInfo
    A catalog_info block as defined below.
    CustomSetupScript IntegrationRuntimeSsisCustomSetupScript
    A custom_setup_script block as defined below.
    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.
    Edition string
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    ExpressCustomSetup IntegrationRuntimeSsisExpressCustomSetup
    An express_custom_setup block as defined below.
    LicenseType string
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MaxParallelExecutionsPerNode int
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    Name string
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    NumberOfNodes int
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    PackageStores List<IntegrationRuntimeSsisPackageStore>
    One or more package_store block as defined below.
    Proxy IntegrationRuntimeSsisProxy
    A proxy block as defined below.
    VnetIntegration IntegrationRuntimeSsisVnetIntegration
    A vnet_integration block as defined below.
    NodeSize string
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    ResourceGroupName string
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    CatalogInfo IntegrationRuntimeSsisCatalogInfoArgs
    A catalog_info block as defined below.
    CustomSetupScript IntegrationRuntimeSsisCustomSetupScriptArgs
    A custom_setup_script block as defined below.
    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.
    Edition string
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    ExpressCustomSetup IntegrationRuntimeSsisExpressCustomSetupArgs
    An express_custom_setup block as defined below.
    LicenseType string
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MaxParallelExecutionsPerNode int
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    Name string
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    NumberOfNodes int
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    PackageStores []IntegrationRuntimeSsisPackageStoreArgs
    One or more package_store block as defined below.
    Proxy IntegrationRuntimeSsisProxyArgs
    A proxy block as defined below.
    VnetIntegration IntegrationRuntimeSsisVnetIntegrationArgs
    A vnet_integration block as defined below.
    nodeSize String
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    resourceGroupName String
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    catalogInfo IntegrationRuntimeSsisCatalogInfo
    A catalog_info block as defined below.
    customSetupScript IntegrationRuntimeSsisCustomSetupScript
    A custom_setup_script block as defined below.
    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.
    edition String
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    expressCustomSetup IntegrationRuntimeSsisExpressCustomSetup
    An express_custom_setup block as defined below.
    licenseType String
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    maxParallelExecutionsPerNode Integer
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    name String
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    numberOfNodes Integer
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    packageStores List<IntegrationRuntimeSsisPackageStore>
    One or more package_store block as defined below.
    proxy IntegrationRuntimeSsisProxy
    A proxy block as defined below.
    vnetIntegration IntegrationRuntimeSsisVnetIntegration
    A vnet_integration block as defined below.
    nodeSize string
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    resourceGroupName string
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    catalogInfo IntegrationRuntimeSsisCatalogInfo
    A catalog_info block as defined below.
    customSetupScript IntegrationRuntimeSsisCustomSetupScript
    A custom_setup_script block as defined below.
    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.
    edition string
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    expressCustomSetup IntegrationRuntimeSsisExpressCustomSetup
    An express_custom_setup block as defined below.
    licenseType string
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    maxParallelExecutionsPerNode number
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    name string
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    numberOfNodes number
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    packageStores IntegrationRuntimeSsisPackageStore[]
    One or more package_store block as defined below.
    proxy IntegrationRuntimeSsisProxy
    A proxy block as defined below.
    vnetIntegration IntegrationRuntimeSsisVnetIntegration
    A vnet_integration block as defined below.
    node_size str
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    resource_group_name str
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    catalog_info IntegrationRuntimeSsisCatalogInfoArgs
    A catalog_info block as defined below.
    custom_setup_script IntegrationRuntimeSsisCustomSetupScriptArgs
    A custom_setup_script block as defined below.
    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.
    edition str
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    express_custom_setup IntegrationRuntimeSsisExpressCustomSetupArgs
    An express_custom_setup block as defined below.
    license_type str
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    max_parallel_executions_per_node int
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    name str
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    number_of_nodes int
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    package_stores Sequence[IntegrationRuntimeSsisPackageStoreArgs]
    One or more package_store block as defined below.
    proxy IntegrationRuntimeSsisProxyArgs
    A proxy block as defined below.
    vnet_integration IntegrationRuntimeSsisVnetIntegrationArgs
    A vnet_integration block as defined below.
    nodeSize String
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    resourceGroupName String
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    catalogInfo Property Map
    A catalog_info block as defined below.
    customSetupScript Property Map
    A custom_setup_script block as defined below.
    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.
    edition String
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    expressCustomSetup Property Map
    An express_custom_setup block as defined below.
    licenseType String
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    maxParallelExecutionsPerNode Number
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    name String
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    numberOfNodes Number
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    packageStores List<Property Map>
    One or more package_store block as defined below.
    proxy Property Map
    A proxy block as defined below.
    vnetIntegration Property Map
    A vnet_integration block as defined below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IntegrationRuntimeSsis 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 IntegrationRuntimeSsis Resource

    Get an existing IntegrationRuntimeSsis 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?: IntegrationRuntimeSsisState, opts?: CustomResourceOptions): IntegrationRuntimeSsis
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            catalog_info: Optional[IntegrationRuntimeSsisCatalogInfoArgs] = None,
            custom_setup_script: Optional[IntegrationRuntimeSsisCustomSetupScriptArgs] = None,
            data_factory_id: Optional[str] = None,
            data_factory_name: Optional[str] = None,
            description: Optional[str] = None,
            edition: Optional[str] = None,
            express_custom_setup: Optional[IntegrationRuntimeSsisExpressCustomSetupArgs] = None,
            license_type: Optional[str] = None,
            location: Optional[str] = None,
            max_parallel_executions_per_node: Optional[int] = None,
            name: Optional[str] = None,
            node_size: Optional[str] = None,
            number_of_nodes: Optional[int] = None,
            package_stores: Optional[Sequence[IntegrationRuntimeSsisPackageStoreArgs]] = None,
            proxy: Optional[IntegrationRuntimeSsisProxyArgs] = None,
            resource_group_name: Optional[str] = None,
            vnet_integration: Optional[IntegrationRuntimeSsisVnetIntegrationArgs] = None) -> IntegrationRuntimeSsis
    func GetIntegrationRuntimeSsis(ctx *Context, name string, id IDInput, state *IntegrationRuntimeSsisState, opts ...ResourceOption) (*IntegrationRuntimeSsis, error)
    public static IntegrationRuntimeSsis Get(string name, Input<string> id, IntegrationRuntimeSsisState? state, CustomResourceOptions? opts = null)
    public static IntegrationRuntimeSsis get(String name, Output<String> id, IntegrationRuntimeSsisState state, CustomResourceOptions options)
    resources:  _:    type: azure:datafactory:IntegrationRuntimeSsis    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:
    CatalogInfo IntegrationRuntimeSsisCatalogInfo
    A catalog_info block as defined below.
    CustomSetupScript IntegrationRuntimeSsisCustomSetupScript
    A custom_setup_script block as defined below.
    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.
    Edition string
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    ExpressCustomSetup IntegrationRuntimeSsisExpressCustomSetup
    An express_custom_setup block as defined below.
    LicenseType string
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MaxParallelExecutionsPerNode int
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    Name string
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    NodeSize string
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    NumberOfNodes int
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    PackageStores List<IntegrationRuntimeSsisPackageStore>
    One or more package_store block as defined below.
    Proxy IntegrationRuntimeSsisProxy
    A proxy block as defined below.
    ResourceGroupName string
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    VnetIntegration IntegrationRuntimeSsisVnetIntegration
    A vnet_integration block as defined below.
    CatalogInfo IntegrationRuntimeSsisCatalogInfoArgs
    A catalog_info block as defined below.
    CustomSetupScript IntegrationRuntimeSsisCustomSetupScriptArgs
    A custom_setup_script block as defined below.
    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.
    Edition string
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    ExpressCustomSetup IntegrationRuntimeSsisExpressCustomSetupArgs
    An express_custom_setup block as defined below.
    LicenseType string
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MaxParallelExecutionsPerNode int
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    Name string
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    NodeSize string
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    NumberOfNodes int
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    PackageStores []IntegrationRuntimeSsisPackageStoreArgs
    One or more package_store block as defined below.
    Proxy IntegrationRuntimeSsisProxyArgs
    A proxy block as defined below.
    ResourceGroupName string
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    VnetIntegration IntegrationRuntimeSsisVnetIntegrationArgs
    A vnet_integration block as defined below.
    catalogInfo IntegrationRuntimeSsisCatalogInfo
    A catalog_info block as defined below.
    customSetupScript IntegrationRuntimeSsisCustomSetupScript
    A custom_setup_script block as defined below.
    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.
    edition String
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    expressCustomSetup IntegrationRuntimeSsisExpressCustomSetup
    An express_custom_setup block as defined below.
    licenseType String
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    maxParallelExecutionsPerNode Integer
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    name String
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    nodeSize String
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    numberOfNodes Integer
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    packageStores List<IntegrationRuntimeSsisPackageStore>
    One or more package_store block as defined below.
    proxy IntegrationRuntimeSsisProxy
    A proxy block as defined below.
    resourceGroupName String
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    vnetIntegration IntegrationRuntimeSsisVnetIntegration
    A vnet_integration block as defined below.
    catalogInfo IntegrationRuntimeSsisCatalogInfo
    A catalog_info block as defined below.
    customSetupScript IntegrationRuntimeSsisCustomSetupScript
    A custom_setup_script block as defined below.
    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.
    edition string
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    expressCustomSetup IntegrationRuntimeSsisExpressCustomSetup
    An express_custom_setup block as defined below.
    licenseType string
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    maxParallelExecutionsPerNode number
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    name string
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    nodeSize string
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    numberOfNodes number
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    packageStores IntegrationRuntimeSsisPackageStore[]
    One or more package_store block as defined below.
    proxy IntegrationRuntimeSsisProxy
    A proxy block as defined below.
    resourceGroupName string
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    vnetIntegration IntegrationRuntimeSsisVnetIntegration
    A vnet_integration block as defined below.
    catalog_info IntegrationRuntimeSsisCatalogInfoArgs
    A catalog_info block as defined below.
    custom_setup_script IntegrationRuntimeSsisCustomSetupScriptArgs
    A custom_setup_script block as defined below.
    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.
    edition str
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    express_custom_setup IntegrationRuntimeSsisExpressCustomSetupArgs
    An express_custom_setup block as defined below.
    license_type str
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    max_parallel_executions_per_node int
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    name str
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    node_size str
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    number_of_nodes int
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    package_stores Sequence[IntegrationRuntimeSsisPackageStoreArgs]
    One or more package_store block as defined below.
    proxy IntegrationRuntimeSsisProxyArgs
    A proxy block as defined below.
    resource_group_name str
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    vnet_integration IntegrationRuntimeSsisVnetIntegrationArgs
    A vnet_integration block as defined below.
    catalogInfo Property Map
    A catalog_info block as defined below.
    customSetupScript Property Map
    A custom_setup_script block as defined below.
    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.
    edition String
    The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.
    expressCustomSetup Property Map
    An express_custom_setup block as defined below.
    licenseType String
    The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    maxParallelExecutionsPerNode Number
    Defines the maximum parallel executions per node. Defaults to 1. Max is 16.
    name String
    Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
    nodeSize String
    The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2
    numberOfNodes Number
    Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.
    packageStores List<Property Map>
    One or more package_store block as defined below.
    proxy Property Map
    A proxy block as defined below.
    resourceGroupName String
    The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
    vnetIntegration Property Map
    A vnet_integration block as defined below.

    Supporting Types

    IntegrationRuntimeSsisCatalogInfo, IntegrationRuntimeSsisCatalogInfoArgs

    ServerEndpoint string
    The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
    AdministratorLogin string
    Administrator login name for the SQL Server.
    AdministratorPassword string
    Administrator login password for the SQL Server.
    DualStandbyPairName string
    The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
    PricingTier string
    Pricing tier for the database that will be created for the SSIS catalog. Valid values are: Basic, S0, S1, S2, S3, S4, S6, S7, S9, S12, P1, P2, P4, P6, P11, P15, GP_S_Gen5_1, GP_S_Gen5_2, GP_S_Gen5_4, GP_S_Gen5_6, GP_S_Gen5_8, GP_S_Gen5_10, GP_S_Gen5_12, GP_S_Gen5_14, GP_S_Gen5_16, GP_S_Gen5_18, GP_S_Gen5_20, GP_S_Gen5_24, GP_S_Gen5_32, GP_S_Gen5_40, GP_Gen5_2, GP_Gen5_4, GP_Gen5_6, GP_Gen5_8, GP_Gen5_10, GP_Gen5_12, GP_Gen5_14, GP_Gen5_16, GP_Gen5_18, GP_Gen5_20, GP_Gen5_24, GP_Gen5_32, GP_Gen5_40, GP_Gen5_80, BC_Gen5_2, BC_Gen5_4, BC_Gen5_6, BC_Gen5_8, BC_Gen5_10, BC_Gen5_12, BC_Gen5_14, BC_Gen5_16, BC_Gen5_18, BC_Gen5_20, BC_Gen5_24, BC_Gen5_32, BC_Gen5_40, BC_Gen5_80, HS_Gen5_2, HS_Gen5_4, HS_Gen5_6, HS_Gen5_8, HS_Gen5_10, HS_Gen5_12, HS_Gen5_14, HS_Gen5_16, HS_Gen5_18, HS_Gen5_20, HS_Gen5_24, HS_Gen5_32, HS_Gen5_40 and HS_Gen5_80.
    ServerEndpoint string
    The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
    AdministratorLogin string
    Administrator login name for the SQL Server.
    AdministratorPassword string
    Administrator login password for the SQL Server.
    DualStandbyPairName string
    The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
    PricingTier string
    Pricing tier for the database that will be created for the SSIS catalog. Valid values are: Basic, S0, S1, S2, S3, S4, S6, S7, S9, S12, P1, P2, P4, P6, P11, P15, GP_S_Gen5_1, GP_S_Gen5_2, GP_S_Gen5_4, GP_S_Gen5_6, GP_S_Gen5_8, GP_S_Gen5_10, GP_S_Gen5_12, GP_S_Gen5_14, GP_S_Gen5_16, GP_S_Gen5_18, GP_S_Gen5_20, GP_S_Gen5_24, GP_S_Gen5_32, GP_S_Gen5_40, GP_Gen5_2, GP_Gen5_4, GP_Gen5_6, GP_Gen5_8, GP_Gen5_10, GP_Gen5_12, GP_Gen5_14, GP_Gen5_16, GP_Gen5_18, GP_Gen5_20, GP_Gen5_24, GP_Gen5_32, GP_Gen5_40, GP_Gen5_80, BC_Gen5_2, BC_Gen5_4, BC_Gen5_6, BC_Gen5_8, BC_Gen5_10, BC_Gen5_12, BC_Gen5_14, BC_Gen5_16, BC_Gen5_18, BC_Gen5_20, BC_Gen5_24, BC_Gen5_32, BC_Gen5_40, BC_Gen5_80, HS_Gen5_2, HS_Gen5_4, HS_Gen5_6, HS_Gen5_8, HS_Gen5_10, HS_Gen5_12, HS_Gen5_14, HS_Gen5_16, HS_Gen5_18, HS_Gen5_20, HS_Gen5_24, HS_Gen5_32, HS_Gen5_40 and HS_Gen5_80.
    serverEndpoint String
    The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
    administratorLogin String
    Administrator login name for the SQL Server.
    administratorPassword String
    Administrator login password for the SQL Server.
    dualStandbyPairName String
    The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
    pricingTier String
    Pricing tier for the database that will be created for the SSIS catalog. Valid values are: Basic, S0, S1, S2, S3, S4, S6, S7, S9, S12, P1, P2, P4, P6, P11, P15, GP_S_Gen5_1, GP_S_Gen5_2, GP_S_Gen5_4, GP_S_Gen5_6, GP_S_Gen5_8, GP_S_Gen5_10, GP_S_Gen5_12, GP_S_Gen5_14, GP_S_Gen5_16, GP_S_Gen5_18, GP_S_Gen5_20, GP_S_Gen5_24, GP_S_Gen5_32, GP_S_Gen5_40, GP_Gen5_2, GP_Gen5_4, GP_Gen5_6, GP_Gen5_8, GP_Gen5_10, GP_Gen5_12, GP_Gen5_14, GP_Gen5_16, GP_Gen5_18, GP_Gen5_20, GP_Gen5_24, GP_Gen5_32, GP_Gen5_40, GP_Gen5_80, BC_Gen5_2, BC_Gen5_4, BC_Gen5_6, BC_Gen5_8, BC_Gen5_10, BC_Gen5_12, BC_Gen5_14, BC_Gen5_16, BC_Gen5_18, BC_Gen5_20, BC_Gen5_24, BC_Gen5_32, BC_Gen5_40, BC_Gen5_80, HS_Gen5_2, HS_Gen5_4, HS_Gen5_6, HS_Gen5_8, HS_Gen5_10, HS_Gen5_12, HS_Gen5_14, HS_Gen5_16, HS_Gen5_18, HS_Gen5_20, HS_Gen5_24, HS_Gen5_32, HS_Gen5_40 and HS_Gen5_80.
    serverEndpoint string
    The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
    administratorLogin string
    Administrator login name for the SQL Server.
    administratorPassword string
    Administrator login password for the SQL Server.
    dualStandbyPairName string
    The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
    pricingTier string
    Pricing tier for the database that will be created for the SSIS catalog. Valid values are: Basic, S0, S1, S2, S3, S4, S6, S7, S9, S12, P1, P2, P4, P6, P11, P15, GP_S_Gen5_1, GP_S_Gen5_2, GP_S_Gen5_4, GP_S_Gen5_6, GP_S_Gen5_8, GP_S_Gen5_10, GP_S_Gen5_12, GP_S_Gen5_14, GP_S_Gen5_16, GP_S_Gen5_18, GP_S_Gen5_20, GP_S_Gen5_24, GP_S_Gen5_32, GP_S_Gen5_40, GP_Gen5_2, GP_Gen5_4, GP_Gen5_6, GP_Gen5_8, GP_Gen5_10, GP_Gen5_12, GP_Gen5_14, GP_Gen5_16, GP_Gen5_18, GP_Gen5_20, GP_Gen5_24, GP_Gen5_32, GP_Gen5_40, GP_Gen5_80, BC_Gen5_2, BC_Gen5_4, BC_Gen5_6, BC_Gen5_8, BC_Gen5_10, BC_Gen5_12, BC_Gen5_14, BC_Gen5_16, BC_Gen5_18, BC_Gen5_20, BC_Gen5_24, BC_Gen5_32, BC_Gen5_40, BC_Gen5_80, HS_Gen5_2, HS_Gen5_4, HS_Gen5_6, HS_Gen5_8, HS_Gen5_10, HS_Gen5_12, HS_Gen5_14, HS_Gen5_16, HS_Gen5_18, HS_Gen5_20, HS_Gen5_24, HS_Gen5_32, HS_Gen5_40 and HS_Gen5_80.
    server_endpoint str
    The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
    administrator_login str
    Administrator login name for the SQL Server.
    administrator_password str
    Administrator login password for the SQL Server.
    dual_standby_pair_name str
    The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
    pricing_tier str
    Pricing tier for the database that will be created for the SSIS catalog. Valid values are: Basic, S0, S1, S2, S3, S4, S6, S7, S9, S12, P1, P2, P4, P6, P11, P15, GP_S_Gen5_1, GP_S_Gen5_2, GP_S_Gen5_4, GP_S_Gen5_6, GP_S_Gen5_8, GP_S_Gen5_10, GP_S_Gen5_12, GP_S_Gen5_14, GP_S_Gen5_16, GP_S_Gen5_18, GP_S_Gen5_20, GP_S_Gen5_24, GP_S_Gen5_32, GP_S_Gen5_40, GP_Gen5_2, GP_Gen5_4, GP_Gen5_6, GP_Gen5_8, GP_Gen5_10, GP_Gen5_12, GP_Gen5_14, GP_Gen5_16, GP_Gen5_18, GP_Gen5_20, GP_Gen5_24, GP_Gen5_32, GP_Gen5_40, GP_Gen5_80, BC_Gen5_2, BC_Gen5_4, BC_Gen5_6, BC_Gen5_8, BC_Gen5_10, BC_Gen5_12, BC_Gen5_14, BC_Gen5_16, BC_Gen5_18, BC_Gen5_20, BC_Gen5_24, BC_Gen5_32, BC_Gen5_40, BC_Gen5_80, HS_Gen5_2, HS_Gen5_4, HS_Gen5_6, HS_Gen5_8, HS_Gen5_10, HS_Gen5_12, HS_Gen5_14, HS_Gen5_16, HS_Gen5_18, HS_Gen5_20, HS_Gen5_24, HS_Gen5_32, HS_Gen5_40 and HS_Gen5_80.
    serverEndpoint String
    The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
    administratorLogin String
    Administrator login name for the SQL Server.
    administratorPassword String
    Administrator login password for the SQL Server.
    dualStandbyPairName String
    The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
    pricingTier String
    Pricing tier for the database that will be created for the SSIS catalog. Valid values are: Basic, S0, S1, S2, S3, S4, S6, S7, S9, S12, P1, P2, P4, P6, P11, P15, GP_S_Gen5_1, GP_S_Gen5_2, GP_S_Gen5_4, GP_S_Gen5_6, GP_S_Gen5_8, GP_S_Gen5_10, GP_S_Gen5_12, GP_S_Gen5_14, GP_S_Gen5_16, GP_S_Gen5_18, GP_S_Gen5_20, GP_S_Gen5_24, GP_S_Gen5_32, GP_S_Gen5_40, GP_Gen5_2, GP_Gen5_4, GP_Gen5_6, GP_Gen5_8, GP_Gen5_10, GP_Gen5_12, GP_Gen5_14, GP_Gen5_16, GP_Gen5_18, GP_Gen5_20, GP_Gen5_24, GP_Gen5_32, GP_Gen5_40, GP_Gen5_80, BC_Gen5_2, BC_Gen5_4, BC_Gen5_6, BC_Gen5_8, BC_Gen5_10, BC_Gen5_12, BC_Gen5_14, BC_Gen5_16, BC_Gen5_18, BC_Gen5_20, BC_Gen5_24, BC_Gen5_32, BC_Gen5_40, BC_Gen5_80, HS_Gen5_2, HS_Gen5_4, HS_Gen5_6, HS_Gen5_8, HS_Gen5_10, HS_Gen5_12, HS_Gen5_14, HS_Gen5_16, HS_Gen5_18, HS_Gen5_20, HS_Gen5_24, HS_Gen5_32, HS_Gen5_40 and HS_Gen5_80.

    IntegrationRuntimeSsisCustomSetupScript, IntegrationRuntimeSsisCustomSetupScriptArgs

    BlobContainerUri string
    The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    SasToken string
    A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    BlobContainerUri string
    The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    SasToken string
    A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    blobContainerUri String
    The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    sasToken String
    A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    blobContainerUri string
    The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    sasToken string
    A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    blob_container_uri str
    The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    sas_token str
    A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    blobContainerUri String
    The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
    sasToken String
    A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.

    IntegrationRuntimeSsisExpressCustomSetup, IntegrationRuntimeSsisExpressCustomSetupArgs

    CommandKeys List<IntegrationRuntimeSsisExpressCustomSetupCommandKey>
    One or more command_key blocks as defined below.
    Components List<IntegrationRuntimeSsisExpressCustomSetupComponent>
    One or more component blocks as defined below.
    Environment Dictionary<string, string>
    The Environment Variables for the Azure-SSIS Integration Runtime.
    PowershellVersion string
    The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
    CommandKeys []IntegrationRuntimeSsisExpressCustomSetupCommandKey
    One or more command_key blocks as defined below.
    Components []IntegrationRuntimeSsisExpressCustomSetupComponent
    One or more component blocks as defined below.
    Environment map[string]string
    The Environment Variables for the Azure-SSIS Integration Runtime.
    PowershellVersion string
    The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
    commandKeys List<IntegrationRuntimeSsisExpressCustomSetupCommandKey>
    One or more command_key blocks as defined below.
    components List<IntegrationRuntimeSsisExpressCustomSetupComponent>
    One or more component blocks as defined below.
    environment Map<String,String>
    The Environment Variables for the Azure-SSIS Integration Runtime.
    powershellVersion String
    The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
    commandKeys IntegrationRuntimeSsisExpressCustomSetupCommandKey[]
    One or more command_key blocks as defined below.
    components IntegrationRuntimeSsisExpressCustomSetupComponent[]
    One or more component blocks as defined below.
    environment {[key: string]: string}
    The Environment Variables for the Azure-SSIS Integration Runtime.
    powershellVersion string
    The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
    command_keys Sequence[IntegrationRuntimeSsisExpressCustomSetupCommandKey]
    One or more command_key blocks as defined below.
    components Sequence[IntegrationRuntimeSsisExpressCustomSetupComponent]
    One or more component blocks as defined below.
    environment Mapping[str, str]
    The Environment Variables for the Azure-SSIS Integration Runtime.
    powershell_version str
    The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
    commandKeys List<Property Map>
    One or more command_key blocks as defined below.
    components List<Property Map>
    One or more component blocks as defined below.
    environment Map<String>
    The Environment Variables for the Azure-SSIS Integration Runtime.
    powershellVersion String
    The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.

    IntegrationRuntimeSsisExpressCustomSetupCommandKey, IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs

    TargetName string
    The target computer or domain name.
    UserName string
    The username for the target device.
    KeyVaultPassword IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPassword
    A key_vault_secret_reference block as defined below.
    Password string
    The password for the target device.
    TargetName string
    The target computer or domain name.
    UserName string
    The username for the target device.
    KeyVaultPassword IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPassword
    A key_vault_secret_reference block as defined below.
    Password string
    The password for the target device.
    targetName String
    The target computer or domain name.
    userName String
    The username for the target device.
    keyVaultPassword IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPassword
    A key_vault_secret_reference block as defined below.
    password String
    The password for the target device.
    targetName string
    The target computer or domain name.
    userName string
    The username for the target device.
    keyVaultPassword IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPassword
    A key_vault_secret_reference block as defined below.
    password string
    The password for the target device.
    target_name str
    The target computer or domain name.
    user_name str
    The username for the target device.
    key_vault_password IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPassword
    A key_vault_secret_reference block as defined below.
    password str
    The password for the target device.
    targetName String
    The target computer or domain name.
    userName String
    The username for the target device.
    keyVaultPassword Property Map
    A key_vault_secret_reference block as defined below.
    password String
    The password for the target device.

    IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPassword, IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgs

    LinkedServiceName string
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    SecretName string
    Specifies the secret name in Azure Key Vault.
    Parameters Dictionary<string, string>
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    SecretVersion string
    Specifies the secret version in Azure Key Vault.
    LinkedServiceName string
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    SecretName string
    Specifies the secret name in Azure Key Vault.
    Parameters map[string]string
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    SecretVersion string
    Specifies the secret version in Azure Key Vault.
    linkedServiceName String
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    secretName String
    Specifies the secret name in Azure Key Vault.
    parameters Map<String,String>
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    secretVersion String
    Specifies the secret version in Azure Key Vault.
    linkedServiceName string
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    secretName string
    Specifies the secret name in Azure Key Vault.
    parameters {[key: string]: string}
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    secretVersion string
    Specifies the secret version in Azure Key Vault.
    linked_service_name str
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    secret_name str
    Specifies the secret name in Azure Key Vault.
    parameters Mapping[str, str]
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    secret_version str
    Specifies the secret version in Azure Key Vault.
    linkedServiceName String
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    secretName String
    Specifies the secret name in Azure Key Vault.
    parameters Map<String>
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    secretVersion String
    Specifies the secret version in Azure Key Vault.

    IntegrationRuntimeSsisExpressCustomSetupComponent, IntegrationRuntimeSsisExpressCustomSetupComponentArgs

    Name string
    The Component Name installed for the Azure-SSIS Integration Runtime.
    KeyVaultLicense IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense
    A key_vault_secret_reference block as defined below.
    License string
    The license used for the Component.
    Name string
    The Component Name installed for the Azure-SSIS Integration Runtime.
    KeyVaultLicense IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense
    A key_vault_secret_reference block as defined below.
    License string
    The license used for the Component.
    name String
    The Component Name installed for the Azure-SSIS Integration Runtime.
    keyVaultLicense IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense
    A key_vault_secret_reference block as defined below.
    license String
    The license used for the Component.
    name string
    The Component Name installed for the Azure-SSIS Integration Runtime.
    keyVaultLicense IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense
    A key_vault_secret_reference block as defined below.
    license string
    The license used for the Component.
    name str
    The Component Name installed for the Azure-SSIS Integration Runtime.
    key_vault_license IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense
    A key_vault_secret_reference block as defined below.
    license str
    The license used for the Component.
    name String
    The Component Name installed for the Azure-SSIS Integration Runtime.
    keyVaultLicense Property Map
    A key_vault_secret_reference block as defined below.
    license String
    The license used for the Component.

    IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense, IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs

    LinkedServiceName string
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    SecretName string
    Specifies the secret name in Azure Key Vault.
    Parameters Dictionary<string, string>
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    SecretVersion string
    Specifies the secret version in Azure Key Vault.
    LinkedServiceName string
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    SecretName string
    Specifies the secret name in Azure Key Vault.
    Parameters map[string]string
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    SecretVersion string
    Specifies the secret version in Azure Key Vault.
    linkedServiceName String
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    secretName String
    Specifies the secret name in Azure Key Vault.
    parameters Map<String,String>
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    secretVersion String
    Specifies the secret version in Azure Key Vault.
    linkedServiceName string
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    secretName string
    Specifies the secret name in Azure Key Vault.
    parameters {[key: string]: string}
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    secretVersion string
    Specifies the secret version in Azure Key Vault.
    linked_service_name str
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    secret_name str
    Specifies the secret name in Azure Key Vault.
    parameters Mapping[str, str]
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    secret_version str
    Specifies the secret version in Azure Key Vault.
    linkedServiceName String
    Specifies the name of an existing Key Vault Data Factory Linked Service.
    secretName String
    Specifies the secret name in Azure Key Vault.
    parameters Map<String>
    A map of parameters to associate with the Key Vault Data Factory Linked Service.
    secretVersion String
    Specifies the secret version in Azure Key Vault.

    IntegrationRuntimeSsisPackageStore, IntegrationRuntimeSsisPackageStoreArgs

    LinkedServiceName string
    Name of the Linked Service to associate with the packages.
    Name string
    Name of the package store.
    LinkedServiceName string
    Name of the Linked Service to associate with the packages.
    Name string
    Name of the package store.
    linkedServiceName String
    Name of the Linked Service to associate with the packages.
    name String
    Name of the package store.
    linkedServiceName string
    Name of the Linked Service to associate with the packages.
    name string
    Name of the package store.
    linked_service_name str
    Name of the Linked Service to associate with the packages.
    name str
    Name of the package store.
    linkedServiceName String
    Name of the Linked Service to associate with the packages.
    name String
    Name of the package store.

    IntegrationRuntimeSsisProxy, IntegrationRuntimeSsisProxyArgs

    SelfHostedIntegrationRuntimeName string
    Name of Self Hosted Integration Runtime as a proxy.
    StagingStorageLinkedServiceName string
    Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
    Path string
    The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
    SelfHostedIntegrationRuntimeName string
    Name of Self Hosted Integration Runtime as a proxy.
    StagingStorageLinkedServiceName string
    Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
    Path string
    The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
    selfHostedIntegrationRuntimeName String
    Name of Self Hosted Integration Runtime as a proxy.
    stagingStorageLinkedServiceName String
    Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
    path String
    The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
    selfHostedIntegrationRuntimeName string
    Name of Self Hosted Integration Runtime as a proxy.
    stagingStorageLinkedServiceName string
    Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
    path string
    The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
    self_hosted_integration_runtime_name str
    Name of Self Hosted Integration Runtime as a proxy.
    staging_storage_linked_service_name str
    Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
    path str
    The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
    selfHostedIntegrationRuntimeName String
    Name of Self Hosted Integration Runtime as a proxy.
    stagingStorageLinkedServiceName String
    Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
    path String
    The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.

    IntegrationRuntimeSsisVnetIntegration, IntegrationRuntimeSsisVnetIntegrationArgs

    PublicIps List<string>
    Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
    SubnetId string
    id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    SubnetName string
    Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    VnetId string
    ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
    PublicIps []string
    Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
    SubnetId string
    id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    SubnetName string
    Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    VnetId string
    ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
    publicIps List<String>
    Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
    subnetId String
    id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    subnetName String
    Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    vnetId String
    ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
    publicIps string[]
    Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
    subnetId string
    id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    subnetName string
    Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    vnetId string
    ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
    public_ips Sequence[str]
    Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
    subnet_id str
    id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    subnet_name str
    Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    vnet_id str
    ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
    publicIps List<String>
    Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
    subnetId String
    id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    subnetName String
    Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
    vnetId String
    ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.

    Import

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

     $ pulumi import azure:datafactory/integrationRuntimeSsis:IntegrationRuntimeSsis 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.