azure-native.datafactory.IntegrationRuntime
Explore with Pulumi AI
Integration runtime resource type. Azure REST API version: 2018-06-01. Prior API version in Azure Native 1.x: 2018-06-01.
Example Usage
IntegrationRuntimes_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var integrationRuntime = new AzureNative.DataFactory.IntegrationRuntime("integrationRuntime", new()
    {
        FactoryName = "exampleFactoryName",
        IntegrationRuntimeName = "exampleIntegrationRuntime",
        Properties = new AzureNative.DataFactory.Inputs.SelfHostedIntegrationRuntimeArgs
        {
            Description = "A selfhosted integration runtime",
            Type = "SelfHosted",
        },
        ResourceGroupName = "exampleResourceGroup",
    });
});
package main
import (
	datafactory "github.com/pulumi/pulumi-azure-native-sdk/datafactory/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datafactory.NewIntegrationRuntime(ctx, "integrationRuntime", &datafactory.IntegrationRuntimeArgs{
			FactoryName:            pulumi.String("exampleFactoryName"),
			IntegrationRuntimeName: pulumi.String("exampleIntegrationRuntime"),
			Properties: &datafactory.SelfHostedIntegrationRuntimeArgs{
				Description: pulumi.String("A selfhosted integration runtime"),
				Type:        pulumi.String("SelfHosted"),
			},
			ResourceGroupName: pulumi.String("exampleResourceGroup"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datafactory.IntegrationRuntime;
import com.pulumi.azurenative.datafactory.IntegrationRuntimeArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var integrationRuntime = new IntegrationRuntime("integrationRuntime", IntegrationRuntimeArgs.builder()
            .factoryName("exampleFactoryName")
            .integrationRuntimeName("exampleIntegrationRuntime")
            .properties(SelfHostedIntegrationRuntimeArgs.builder()
                .description("A selfhosted integration runtime")
                .type("SelfHosted")
                .build())
            .resourceGroupName("exampleResourceGroup")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const integrationRuntime = new azure_native.datafactory.IntegrationRuntime("integrationRuntime", {
    factoryName: "exampleFactoryName",
    integrationRuntimeName: "exampleIntegrationRuntime",
    properties: {
        description: "A selfhosted integration runtime",
        type: "SelfHosted",
    },
    resourceGroupName: "exampleResourceGroup",
});
import pulumi
import pulumi_azure_native as azure_native
integration_runtime = azure_native.datafactory.IntegrationRuntime("integrationRuntime",
    factory_name="exampleFactoryName",
    integration_runtime_name="exampleIntegrationRuntime",
    properties={
        "description": "A selfhosted integration runtime",
        "type": "SelfHosted",
    },
    resource_group_name="exampleResourceGroup")
resources:
  integrationRuntime:
    type: azure-native:datafactory:IntegrationRuntime
    properties:
      factoryName: exampleFactoryName
      integrationRuntimeName: exampleIntegrationRuntime
      properties:
        description: A selfhosted integration runtime
        type: SelfHosted
      resourceGroupName: exampleResourceGroup
Create IntegrationRuntime Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationRuntime(name: string, args: IntegrationRuntimeArgs, opts?: CustomResourceOptions);@overload
def IntegrationRuntime(resource_name: str,
                       args: IntegrationRuntimeArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def IntegrationRuntime(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       factory_name: Optional[str] = None,
                       properties: Optional[Union[ManagedIntegrationRuntimeArgs, SelfHostedIntegrationRuntimeArgs]] = None,
                       resource_group_name: Optional[str] = None,
                       integration_runtime_name: Optional[str] = None)func NewIntegrationRuntime(ctx *Context, name string, args IntegrationRuntimeArgs, opts ...ResourceOption) (*IntegrationRuntime, error)public IntegrationRuntime(string name, IntegrationRuntimeArgs args, CustomResourceOptions? opts = null)
public IntegrationRuntime(String name, IntegrationRuntimeArgs args)
public IntegrationRuntime(String name, IntegrationRuntimeArgs args, CustomResourceOptions options)
type: azure-native:datafactory:IntegrationRuntime
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 IntegrationRuntimeArgs
- 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 IntegrationRuntimeArgs
- 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 IntegrationRuntimeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationRuntimeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationRuntimeArgs
- 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 integrationRuntimeResource = new AzureNative.DataFactory.IntegrationRuntime("integrationRuntimeResource", new()
{
    FactoryName = "string",
    Properties = new AzureNative.DataFactory.Inputs.ManagedIntegrationRuntimeArgs
    {
        Type = "Managed",
        ComputeProperties = new AzureNative.DataFactory.Inputs.IntegrationRuntimeComputePropertiesArgs
        {
            CopyComputeScaleProperties = new AzureNative.DataFactory.Inputs.CopyComputeScalePropertiesArgs
            {
                DataIntegrationUnit = 0,
                TimeToLive = 0,
            },
            DataFlowProperties = new AzureNative.DataFactory.Inputs.IntegrationRuntimeDataFlowPropertiesArgs
            {
                Cleanup = false,
                ComputeType = "string",
                CoreCount = 0,
                CustomProperties = new[]
                {
                    new AzureNative.DataFactory.Inputs.IntegrationRuntimeDataFlowPropertiesCustomPropertiesArgs
                    {
                        Name = "string",
                        Value = "string",
                    },
                },
                TimeToLive = 0,
            },
            Location = "string",
            MaxParallelExecutionsPerNode = 0,
            NodeSize = "string",
            NumberOfNodes = 0,
            PipelineExternalComputeScaleProperties = new AzureNative.DataFactory.Inputs.PipelineExternalComputeScalePropertiesArgs
            {
                NumberOfExternalNodes = 0,
                NumberOfPipelineNodes = 0,
                TimeToLive = 0,
            },
            VNetProperties = new AzureNative.DataFactory.Inputs.IntegrationRuntimeVNetPropertiesArgs
            {
                PublicIPs = new[]
                {
                    "string",
                },
                Subnet = "string",
                SubnetId = "string",
                VNetId = "string",
            },
        },
        CustomerVirtualNetwork = new AzureNative.DataFactory.Inputs.IntegrationRuntimeCustomerVirtualNetworkArgs
        {
            SubnetId = "string",
        },
        Description = "string",
        ManagedVirtualNetwork = new AzureNative.DataFactory.Inputs.ManagedVirtualNetworkReferenceArgs
        {
            ReferenceName = "string",
            Type = "string",
        },
        SsisProperties = new AzureNative.DataFactory.Inputs.IntegrationRuntimeSsisPropertiesArgs
        {
            CatalogInfo = new AzureNative.DataFactory.Inputs.IntegrationRuntimeSsisCatalogInfoArgs
            {
                CatalogAdminPassword = new AzureNative.DataFactory.Inputs.SecureStringArgs
                {
                    Type = "SecureString",
                    Value = "string",
                },
                CatalogAdminUserName = "string",
                CatalogPricingTier = "string",
                CatalogServerEndpoint = "string",
                DualStandbyPairName = "string",
            },
            Credential = new AzureNative.DataFactory.Inputs.CredentialReferenceArgs
            {
                ReferenceName = "string",
                Type = "string",
            },
            CustomSetupScriptProperties = new AzureNative.DataFactory.Inputs.IntegrationRuntimeCustomSetupScriptPropertiesArgs
            {
                BlobContainerUri = "string",
                SasToken = new AzureNative.DataFactory.Inputs.SecureStringArgs
                {
                    Type = "SecureString",
                    Value = "string",
                },
            },
            DataProxyProperties = new AzureNative.DataFactory.Inputs.IntegrationRuntimeDataProxyPropertiesArgs
            {
                ConnectVia = new AzureNative.DataFactory.Inputs.EntityReferenceArgs
                {
                    ReferenceName = "string",
                    Type = "string",
                },
                Path = "string",
                StagingLinkedService = new AzureNative.DataFactory.Inputs.EntityReferenceArgs
                {
                    ReferenceName = "string",
                    Type = "string",
                },
            },
            Edition = "string",
            ExpressCustomSetupProperties = new[]
            {
                new AzureNative.DataFactory.Inputs.AzPowerShellSetupArgs
                {
                    Type = "AzPowerShellSetup",
                    Version = "string",
                },
            },
            LicenseType = "string",
            PackageStores = new[]
            {
                new AzureNative.DataFactory.Inputs.PackageStoreArgs
                {
                    Name = "string",
                    PackageStoreLinkedService = new AzureNative.DataFactory.Inputs.EntityReferenceArgs
                    {
                        ReferenceName = "string",
                        Type = "string",
                    },
                },
            },
        },
    },
    ResourceGroupName = "string",
    IntegrationRuntimeName = "string",
});
example, err := datafactory.NewIntegrationRuntime(ctx, "integrationRuntimeResource", &datafactory.IntegrationRuntimeArgs{
	FactoryName: pulumi.String("string"),
	Properties: &datafactory.ManagedIntegrationRuntimeArgs{
		Type: pulumi.String("Managed"),
		ComputeProperties: &datafactory.IntegrationRuntimeComputePropertiesArgs{
			CopyComputeScaleProperties: &datafactory.CopyComputeScalePropertiesArgs{
				DataIntegrationUnit: pulumi.Int(0),
				TimeToLive:          pulumi.Int(0),
			},
			DataFlowProperties: &datafactory.IntegrationRuntimeDataFlowPropertiesArgs{
				Cleanup:     pulumi.Bool(false),
				ComputeType: pulumi.String("string"),
				CoreCount:   pulumi.Int(0),
				CustomProperties: datafactory.IntegrationRuntimeDataFlowPropertiesCustomPropertiesArray{
					&datafactory.IntegrationRuntimeDataFlowPropertiesCustomPropertiesArgs{
						Name:  pulumi.String("string"),
						Value: pulumi.String("string"),
					},
				},
				TimeToLive: pulumi.Int(0),
			},
			Location:                     pulumi.String("string"),
			MaxParallelExecutionsPerNode: pulumi.Int(0),
			NodeSize:                     pulumi.String("string"),
			NumberOfNodes:                pulumi.Int(0),
			PipelineExternalComputeScaleProperties: &datafactory.PipelineExternalComputeScalePropertiesArgs{
				NumberOfExternalNodes: pulumi.Int(0),
				NumberOfPipelineNodes: pulumi.Int(0),
				TimeToLive:            pulumi.Int(0),
			},
			VNetProperties: &datafactory.IntegrationRuntimeVNetPropertiesArgs{
				PublicIPs: pulumi.StringArray{
					pulumi.String("string"),
				},
				Subnet:   pulumi.String("string"),
				SubnetId: pulumi.String("string"),
				VNetId:   pulumi.String("string"),
			},
		},
		CustomerVirtualNetwork: &datafactory.IntegrationRuntimeCustomerVirtualNetworkArgs{
			SubnetId: pulumi.String("string"),
		},
		Description: pulumi.String("string"),
		ManagedVirtualNetwork: &datafactory.ManagedVirtualNetworkReferenceArgs{
			ReferenceName: pulumi.String("string"),
			Type:          pulumi.String("string"),
		},
		SsisProperties: &datafactory.IntegrationRuntimeSsisPropertiesArgs{
			CatalogInfo: &datafactory.IntegrationRuntimeSsisCatalogInfoArgs{
				CatalogAdminPassword: &datafactory.SecureStringArgs{
					Type:  pulumi.String("SecureString"),
					Value: pulumi.String("string"),
				},
				CatalogAdminUserName:  pulumi.String("string"),
				CatalogPricingTier:    pulumi.String("string"),
				CatalogServerEndpoint: pulumi.String("string"),
				DualStandbyPairName:   pulumi.String("string"),
			},
			Credential: &datafactory.CredentialReferenceArgs{
				ReferenceName: pulumi.String("string"),
				Type:          pulumi.String("string"),
			},
			CustomSetupScriptProperties: &datafactory.IntegrationRuntimeCustomSetupScriptPropertiesArgs{
				BlobContainerUri: pulumi.String("string"),
				SasToken: &datafactory.SecureStringArgs{
					Type:  pulumi.String("SecureString"),
					Value: pulumi.String("string"),
				},
			},
			DataProxyProperties: &datafactory.IntegrationRuntimeDataProxyPropertiesArgs{
				ConnectVia: &datafactory.EntityReferenceArgs{
					ReferenceName: pulumi.String("string"),
					Type:          pulumi.String("string"),
				},
				Path: pulumi.String("string"),
				StagingLinkedService: &datafactory.EntityReferenceArgs{
					ReferenceName: pulumi.String("string"),
					Type:          pulumi.String("string"),
				},
			},
			Edition: pulumi.String("string"),
			ExpressCustomSetupProperties: pulumi.Array{
				datafactory.AzPowerShellSetup{
					Type:    "AzPowerShellSetup",
					Version: "string",
				},
			},
			LicenseType: pulumi.String("string"),
			PackageStores: datafactory.PackageStoreArray{
				&datafactory.PackageStoreArgs{
					Name: pulumi.String("string"),
					PackageStoreLinkedService: &datafactory.EntityReferenceArgs{
						ReferenceName: pulumi.String("string"),
						Type:          pulumi.String("string"),
					},
				},
			},
		},
	},
	ResourceGroupName:      pulumi.String("string"),
	IntegrationRuntimeName: pulumi.String("string"),
})
var integrationRuntimeResource = new IntegrationRuntime("integrationRuntimeResource", IntegrationRuntimeArgs.builder()
    .factoryName("string")
    .properties(ManagedIntegrationRuntimeArgs.builder()
        .type("Managed")
        .computeProperties(IntegrationRuntimeComputePropertiesArgs.builder()
            .copyComputeScaleProperties(CopyComputeScalePropertiesArgs.builder()
                .dataIntegrationUnit(0)
                .timeToLive(0)
                .build())
            .dataFlowProperties(IntegrationRuntimeDataFlowPropertiesArgs.builder()
                .cleanup(false)
                .computeType("string")
                .coreCount(0)
                .customProperties(IntegrationRuntimeDataFlowPropertiesCustomPropertiesArgs.builder()
                    .name("string")
                    .value("string")
                    .build())
                .timeToLive(0)
                .build())
            .location("string")
            .maxParallelExecutionsPerNode(0)
            .nodeSize("string")
            .numberOfNodes(0)
            .pipelineExternalComputeScaleProperties(PipelineExternalComputeScalePropertiesArgs.builder()
                .numberOfExternalNodes(0)
                .numberOfPipelineNodes(0)
                .timeToLive(0)
                .build())
            .vNetProperties(IntegrationRuntimeVNetPropertiesArgs.builder()
                .publicIPs("string")
                .subnet("string")
                .subnetId("string")
                .vNetId("string")
                .build())
            .build())
        .customerVirtualNetwork(IntegrationRuntimeCustomerVirtualNetworkArgs.builder()
            .subnetId("string")
            .build())
        .description("string")
        .managedVirtualNetwork(ManagedVirtualNetworkReferenceArgs.builder()
            .referenceName("string")
            .type("string")
            .build())
        .ssisProperties(IntegrationRuntimeSsisPropertiesArgs.builder()
            .catalogInfo(IntegrationRuntimeSsisCatalogInfoArgs.builder()
                .catalogAdminPassword(SecureStringArgs.builder()
                    .type("SecureString")
                    .value("string")
                    .build())
                .catalogAdminUserName("string")
                .catalogPricingTier("string")
                .catalogServerEndpoint("string")
                .dualStandbyPairName("string")
                .build())
            .credential(CredentialReferenceArgs.builder()
                .referenceName("string")
                .type("string")
                .build())
            .customSetupScriptProperties(IntegrationRuntimeCustomSetupScriptPropertiesArgs.builder()
                .blobContainerUri("string")
                .sasToken(SecureStringArgs.builder()
                    .type("SecureString")
                    .value("string")
                    .build())
                .build())
            .dataProxyProperties(IntegrationRuntimeDataProxyPropertiesArgs.builder()
                .connectVia(EntityReferenceArgs.builder()
                    .referenceName("string")
                    .type("string")
                    .build())
                .path("string")
                .stagingLinkedService(EntityReferenceArgs.builder()
                    .referenceName("string")
                    .type("string")
                    .build())
                .build())
            .edition("string")
            .expressCustomSetupProperties(AzPowerShellSetupArgs.builder()
                .type("AzPowerShellSetup")
                .version("string")
                .build())
            .licenseType("string")
            .packageStores(PackageStoreArgs.builder()
                .name("string")
                .packageStoreLinkedService(EntityReferenceArgs.builder()
                    .referenceName("string")
                    .type("string")
                    .build())
                .build())
            .build())
        .build())
    .resourceGroupName("string")
    .integrationRuntimeName("string")
    .build());
integration_runtime_resource = azure_native.datafactory.IntegrationRuntime("integrationRuntimeResource",
    factory_name="string",
    properties={
        "type": "Managed",
        "compute_properties": {
            "copy_compute_scale_properties": {
                "data_integration_unit": 0,
                "time_to_live": 0,
            },
            "data_flow_properties": {
                "cleanup": False,
                "compute_type": "string",
                "core_count": 0,
                "custom_properties": [{
                    "name": "string",
                    "value": "string",
                }],
                "time_to_live": 0,
            },
            "location": "string",
            "max_parallel_executions_per_node": 0,
            "node_size": "string",
            "number_of_nodes": 0,
            "pipeline_external_compute_scale_properties": {
                "number_of_external_nodes": 0,
                "number_of_pipeline_nodes": 0,
                "time_to_live": 0,
            },
            "v_net_properties": {
                "public_ips": ["string"],
                "subnet": "string",
                "subnet_id": "string",
                "v_net_id": "string",
            },
        },
        "customer_virtual_network": {
            "subnet_id": "string",
        },
        "description": "string",
        "managed_virtual_network": {
            "reference_name": "string",
            "type": "string",
        },
        "ssis_properties": {
            "catalog_info": {
                "catalog_admin_password": {
                    "type": "SecureString",
                    "value": "string",
                },
                "catalog_admin_user_name": "string",
                "catalog_pricing_tier": "string",
                "catalog_server_endpoint": "string",
                "dual_standby_pair_name": "string",
            },
            "credential": {
                "reference_name": "string",
                "type": "string",
            },
            "custom_setup_script_properties": {
                "blob_container_uri": "string",
                "sas_token": {
                    "type": "SecureString",
                    "value": "string",
                },
            },
            "data_proxy_properties": {
                "connect_via": {
                    "reference_name": "string",
                    "type": "string",
                },
                "path": "string",
                "staging_linked_service": {
                    "reference_name": "string",
                    "type": "string",
                },
            },
            "edition": "string",
            "express_custom_setup_properties": [{
                "type": "AzPowerShellSetup",
                "version": "string",
            }],
            "license_type": "string",
            "package_stores": [{
                "name": "string",
                "package_store_linked_service": {
                    "reference_name": "string",
                    "type": "string",
                },
            }],
        },
    },
    resource_group_name="string",
    integration_runtime_name="string")
const integrationRuntimeResource = new azure_native.datafactory.IntegrationRuntime("integrationRuntimeResource", {
    factoryName: "string",
    properties: {
        type: "Managed",
        computeProperties: {
            copyComputeScaleProperties: {
                dataIntegrationUnit: 0,
                timeToLive: 0,
            },
            dataFlowProperties: {
                cleanup: false,
                computeType: "string",
                coreCount: 0,
                customProperties: [{
                    name: "string",
                    value: "string",
                }],
                timeToLive: 0,
            },
            location: "string",
            maxParallelExecutionsPerNode: 0,
            nodeSize: "string",
            numberOfNodes: 0,
            pipelineExternalComputeScaleProperties: {
                numberOfExternalNodes: 0,
                numberOfPipelineNodes: 0,
                timeToLive: 0,
            },
            vNetProperties: {
                publicIPs: ["string"],
                subnet: "string",
                subnetId: "string",
                vNetId: "string",
            },
        },
        customerVirtualNetwork: {
            subnetId: "string",
        },
        description: "string",
        managedVirtualNetwork: {
            referenceName: "string",
            type: "string",
        },
        ssisProperties: {
            catalogInfo: {
                catalogAdminPassword: {
                    type: "SecureString",
                    value: "string",
                },
                catalogAdminUserName: "string",
                catalogPricingTier: "string",
                catalogServerEndpoint: "string",
                dualStandbyPairName: "string",
            },
            credential: {
                referenceName: "string",
                type: "string",
            },
            customSetupScriptProperties: {
                blobContainerUri: "string",
                sasToken: {
                    type: "SecureString",
                    value: "string",
                },
            },
            dataProxyProperties: {
                connectVia: {
                    referenceName: "string",
                    type: "string",
                },
                path: "string",
                stagingLinkedService: {
                    referenceName: "string",
                    type: "string",
                },
            },
            edition: "string",
            expressCustomSetupProperties: [{
                type: "AzPowerShellSetup",
                version: "string",
            }],
            licenseType: "string",
            packageStores: [{
                name: "string",
                packageStoreLinkedService: {
                    referenceName: "string",
                    type: "string",
                },
            }],
        },
    },
    resourceGroupName: "string",
    integrationRuntimeName: "string",
});
type: azure-native:datafactory:IntegrationRuntime
properties:
    factoryName: string
    integrationRuntimeName: string
    properties:
        computeProperties:
            copyComputeScaleProperties:
                dataIntegrationUnit: 0
                timeToLive: 0
            dataFlowProperties:
                cleanup: false
                computeType: string
                coreCount: 0
                customProperties:
                    - name: string
                      value: string
                timeToLive: 0
            location: string
            maxParallelExecutionsPerNode: 0
            nodeSize: string
            numberOfNodes: 0
            pipelineExternalComputeScaleProperties:
                numberOfExternalNodes: 0
                numberOfPipelineNodes: 0
                timeToLive: 0
            vNetProperties:
                publicIPs:
                    - string
                subnet: string
                subnetId: string
                vNetId: string
        customerVirtualNetwork:
            subnetId: string
        description: string
        managedVirtualNetwork:
            referenceName: string
            type: string
        ssisProperties:
            catalogInfo:
                catalogAdminPassword:
                    type: SecureString
                    value: string
                catalogAdminUserName: string
                catalogPricingTier: string
                catalogServerEndpoint: string
                dualStandbyPairName: string
            credential:
                referenceName: string
                type: string
            customSetupScriptProperties:
                blobContainerUri: string
                sasToken:
                    type: SecureString
                    value: string
            dataProxyProperties:
                connectVia:
                    referenceName: string
                    type: string
                path: string
                stagingLinkedService:
                    referenceName: string
                    type: string
            edition: string
            expressCustomSetupProperties:
                - type: AzPowerShellSetup
                  version: string
            licenseType: string
            packageStores:
                - name: string
                  packageStoreLinkedService:
                    referenceName: string
                    type: string
        type: Managed
    resourceGroupName: string
IntegrationRuntime 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 IntegrationRuntime resource accepts the following input properties:
- FactoryName string
- The factory name.
- Properties
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Managed Integration Runtime Azure Native. Data Factory. Inputs. Self Hosted Integration Runtime 
- Integration runtime properties.
- ResourceGroup stringName 
- The resource group name.
- IntegrationRuntime stringName 
- The integration runtime name.
- FactoryName string
- The factory name.
- Properties
ManagedIntegration | SelfRuntime Args Hosted Integration Runtime Args 
- Integration runtime properties.
- ResourceGroup stringName 
- The resource group name.
- IntegrationRuntime stringName 
- The integration runtime name.
- factoryName String
- The factory name.
- properties
ManagedIntegration | SelfRuntime Hosted Integration Runtime 
- Integration runtime properties.
- resourceGroup StringName 
- The resource group name.
- integrationRuntime StringName 
- The integration runtime name.
- factoryName string
- The factory name.
- properties
ManagedIntegration | SelfRuntime Hosted Integration Runtime 
- Integration runtime properties.
- resourceGroup stringName 
- The resource group name.
- integrationRuntime stringName 
- The integration runtime name.
- factory_name str
- The factory name.
- properties
ManagedIntegration | SelfRuntime Args Hosted Integration Runtime Args 
- Integration runtime properties.
- resource_group_ strname 
- The resource group name.
- integration_runtime_ strname 
- The integration runtime name.
- factoryName String
- The factory name.
- properties Property Map | Property Map
- Integration runtime properties.
- resourceGroup StringName 
- The resource group name.
- integrationRuntime StringName 
- The integration runtime name.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationRuntime resource produces the following output properties:
Supporting Types
AzPowerShellSetup, AzPowerShellSetupArgs        
- Version string
- The required version of Azure PowerShell to install.
- Version string
- The required version of Azure PowerShell to install.
- version String
- The required version of Azure PowerShell to install.
- version string
- The required version of Azure PowerShell to install.
- version str
- The required version of Azure PowerShell to install.
- version String
- The required version of Azure PowerShell to install.
AzPowerShellSetupResponse, AzPowerShellSetupResponseArgs          
- Version string
- The required version of Azure PowerShell to install.
- Version string
- The required version of Azure PowerShell to install.
- version String
- The required version of Azure PowerShell to install.
- version string
- The required version of Azure PowerShell to install.
- version str
- The required version of Azure PowerShell to install.
- version String
- The required version of Azure PowerShell to install.
AzureKeyVaultSecretReference, AzureKeyVaultSecretReferenceArgs          
- SecretName object
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- Store
Pulumi.Azure Native. Data Factory. Inputs. Linked Service Reference 
- The Azure Key Vault linked service reference.
- SecretVersion object
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
- SecretName interface{}
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- Store
LinkedService Reference 
- The Azure Key Vault linked service reference.
- SecretVersion interface{}
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
- secretName Object
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
LinkedService Reference 
- The Azure Key Vault linked service reference.
- secretVersion Object
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
- secretName any
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
LinkedService Reference 
- The Azure Key Vault linked service reference.
- secretVersion any
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
- secret_name Any
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
LinkedService Reference 
- The Azure Key Vault linked service reference.
- secret_version Any
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
- secretName Any
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store Property Map
- The Azure Key Vault linked service reference.
- secretVersion Any
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
AzureKeyVaultSecretReferenceResponse, AzureKeyVaultSecretReferenceResponseArgs            
- SecretName object
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- Store
Pulumi.Azure Native. Data Factory. Inputs. Linked Service Reference Response 
- The Azure Key Vault linked service reference.
- SecretVersion object
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
- SecretName interface{}
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- Store
LinkedService Reference Response 
- The Azure Key Vault linked service reference.
- SecretVersion interface{}
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
- secretName Object
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
LinkedService Reference Response 
- The Azure Key Vault linked service reference.
- secretVersion Object
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
- secretName any
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
LinkedService Reference Response 
- The Azure Key Vault linked service reference.
- secretVersion any
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
- secret_name Any
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store
LinkedService Reference Response 
- The Azure Key Vault linked service reference.
- secret_version Any
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
- secretName Any
- The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
- store Property Map
- The Azure Key Vault linked service reference.
- secretVersion Any
- The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
CmdkeySetup, CmdkeySetupArgs    
- Password
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String 
- The password of data source access.
- TargetName object
- The server name of data source access. Type: string.
- UserName object
- The user name of data source access. Type: string.
- Password
AzureKey | SecureVault Secret Reference String 
- The password of data source access.
- TargetName interface{}
- The server name of data source access. Type: string.
- UserName interface{}
- The user name of data source access. Type: string.
- password
AzureKey | SecureVault Secret Reference String 
- The password of data source access.
- targetName Object
- The server name of data source access. Type: string.
- userName Object
- The user name of data source access. Type: string.
- password
AzureKey | SecureVault Secret Reference String 
- The password of data source access.
- targetName any
- The server name of data source access. Type: string.
- userName any
- The user name of data source access. Type: string.
- password
AzureKey | SecureVault Secret Reference String 
- The password of data source access.
- target_name Any
- The server name of data source access. Type: string.
- user_name Any
- The user name of data source access. Type: string.
- password Property Map | Property Map
- The password of data source access.
- targetName Any
- The server name of data source access. Type: string.
- userName Any
- The user name of data source access. Type: string.
CmdkeySetupResponse, CmdkeySetupResponseArgs      
- Password
Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response 
- The password of data source access.
- TargetName object
- The server name of data source access. Type: string.
- UserName object
- The user name of data source access. Type: string.
- Password
AzureKey | SecureVault Secret Reference Response String Response 
- The password of data source access.
- TargetName interface{}
- The server name of data source access. Type: string.
- UserName interface{}
- The user name of data source access. Type: string.
- password
AzureKey | SecureVault Secret Reference Response String Response 
- The password of data source access.
- targetName Object
- The server name of data source access. Type: string.
- userName Object
- The user name of data source access. Type: string.
- password
AzureKey | SecureVault Secret Reference Response String Response 
- The password of data source access.
- targetName any
- The server name of data source access. Type: string.
- userName any
- The user name of data source access. Type: string.
- password
AzureKey | SecureVault Secret Reference Response String Response 
- The password of data source access.
- target_name Any
- The server name of data source access. Type: string.
- user_name Any
- The user name of data source access. Type: string.
- password Property Map | Property Map
- The password of data source access.
- targetName Any
- The server name of data source access. Type: string.
- userName Any
- The user name of data source access. Type: string.
ComponentSetup, ComponentSetupArgs    
- ComponentName string
- The name of the 3rd party component.
- LicenseKey Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Azure Native. Data Factory. Inputs. Secure String 
- The license key to activate the component.
- ComponentName string
- The name of the 3rd party component.
- LicenseKey AzureKey | SecureVault Secret Reference String 
- The license key to activate the component.
- componentName String
- The name of the 3rd party component.
- licenseKey AzureKey | SecureVault Secret Reference String 
- The license key to activate the component.
- componentName string
- The name of the 3rd party component.
- licenseKey AzureKey | SecureVault Secret Reference String 
- The license key to activate the component.
- component_name str
- The name of the 3rd party component.
- license_key AzureKey | SecureVault Secret Reference String 
- The license key to activate the component.
- componentName String
- The name of the 3rd party component.
- licenseKey Property Map | Property Map
- The license key to activate the component.
ComponentSetupResponse, ComponentSetupResponseArgs      
- ComponentName string
- The name of the 3rd party component.
- LicenseKey Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Azure Key Vault Secret Reference Response Azure Native. Data Factory. Inputs. Secure String Response 
- The license key to activate the component.
- ComponentName string
- The name of the 3rd party component.
- LicenseKey AzureKey | SecureVault Secret Reference Response String Response 
- The license key to activate the component.
- componentName String
- The name of the 3rd party component.
- licenseKey AzureKey | SecureVault Secret Reference Response String Response 
- The license key to activate the component.
- componentName string
- The name of the 3rd party component.
- licenseKey AzureKey | SecureVault Secret Reference Response String Response 
- The license key to activate the component.
- component_name str
- The name of the 3rd party component.
- license_key AzureKey | SecureVault Secret Reference Response String Response 
- The license key to activate the component.
- componentName String
- The name of the 3rd party component.
- licenseKey Property Map | Property Map
- The license key to activate the component.
CopyComputeScaleProperties, CopyComputeScalePropertiesArgs        
- DataIntegration intUnit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- TimeTo intLive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
- DataIntegration intUnit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- TimeTo intLive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
- dataIntegration IntegerUnit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- timeTo IntegerLive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
- dataIntegration numberUnit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- timeTo numberLive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
- data_integration_ intunit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- time_to_ intlive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
- dataIntegration NumberUnit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- timeTo NumberLive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
CopyComputeScalePropertiesResponse, CopyComputeScalePropertiesResponseArgs          
- DataIntegration intUnit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- TimeTo intLive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
- DataIntegration intUnit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- TimeTo intLive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
- dataIntegration IntegerUnit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- timeTo IntegerLive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
- dataIntegration numberUnit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- timeTo numberLive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
- data_integration_ intunit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- time_to_ intlive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
- dataIntegration NumberUnit 
- DIU number setting reserved for copy activity execution. Supported values are multiples of 4 in range 4-256.
- timeTo NumberLive 
- Time to live (in minutes) setting of integration runtime which will execute copy activity.
CredentialReference, CredentialReferenceArgs    
- ReferenceName string
- Reference credential name.
- Type
string | Pulumi.Azure Native. Data Factory. Credential Reference Type 
- Credential reference type.
- ReferenceName string
- Reference credential name.
- Type
string | CredentialReference Type 
- Credential reference type.
- referenceName String
- Reference credential name.
- type
String | CredentialReference Type 
- Credential reference type.
- referenceName string
- Reference credential name.
- type
string | CredentialReference Type 
- Credential reference type.
- reference_name str
- Reference credential name.
- type
str | CredentialReference Type 
- Credential reference type.
- referenceName String
- Reference credential name.
- type
String | "CredentialReference" 
- Credential reference type.
CredentialReferenceResponse, CredentialReferenceResponseArgs      
- ReferenceName string
- Reference credential name.
- Type string
- Credential reference type.
- ReferenceName string
- Reference credential name.
- Type string
- Credential reference type.
- referenceName String
- Reference credential name.
- type String
- Credential reference type.
- referenceName string
- Reference credential name.
- type string
- Credential reference type.
- reference_name str
- Reference credential name.
- type str
- Credential reference type.
- referenceName String
- Reference credential name.
- type String
- Credential reference type.
CredentialReferenceType, CredentialReferenceTypeArgs      
- CredentialReference 
- CredentialReference
- CredentialReference Type Credential Reference 
- CredentialReference
- CredentialReference 
- CredentialReference
- CredentialReference 
- CredentialReference
- CREDENTIAL_REFERENCE
- CredentialReference
- "CredentialReference" 
- CredentialReference
DataFlowComputeType, DataFlowComputeTypeArgs        
- General
- General
- MemoryOptimized 
- MemoryOptimized
- ComputeOptimized 
- ComputeOptimized
- DataFlow Compute Type General 
- General
- DataFlow Compute Type Memory Optimized 
- MemoryOptimized
- DataFlow Compute Type Compute Optimized 
- ComputeOptimized
- General
- General
- MemoryOptimized 
- MemoryOptimized
- ComputeOptimized 
- ComputeOptimized
- General
- General
- MemoryOptimized 
- MemoryOptimized
- ComputeOptimized 
- ComputeOptimized
- GENERAL
- General
- MEMORY_OPTIMIZED
- MemoryOptimized
- COMPUTE_OPTIMIZED
- ComputeOptimized
- "General"
- General
- "MemoryOptimized" 
- MemoryOptimized
- "ComputeOptimized" 
- ComputeOptimized
EntityReference, EntityReferenceArgs    
- ReferenceName string
- The name of this referenced entity.
- Type
string | Pulumi.Azure Native. Data Factory. Integration Runtime Entity Reference Type 
- The type of this referenced entity.
- ReferenceName string
- The name of this referenced entity.
- Type
string | IntegrationRuntime Entity Reference Type 
- The type of this referenced entity.
- referenceName String
- The name of this referenced entity.
- type
String | IntegrationRuntime Entity Reference Type 
- The type of this referenced entity.
- referenceName string
- The name of this referenced entity.
- type
string | IntegrationRuntime Entity Reference Type 
- The type of this referenced entity.
- reference_name str
- The name of this referenced entity.
- type
str | IntegrationRuntime Entity Reference Type 
- The type of this referenced entity.
- referenceName String
- The name of this referenced entity.
- type
String | "IntegrationRuntime Reference" | "Linked Service Reference" 
- The type of this referenced entity.
EntityReferenceResponse, EntityReferenceResponseArgs      
- ReferenceName string
- The name of this referenced entity.
- Type string
- The type of this referenced entity.
- ReferenceName string
- The name of this referenced entity.
- Type string
- The type of this referenced entity.
- referenceName String
- The name of this referenced entity.
- type String
- The type of this referenced entity.
- referenceName string
- The name of this referenced entity.
- type string
- The type of this referenced entity.
- reference_name str
- The name of this referenced entity.
- type str
- The type of this referenced entity.
- referenceName String
- The name of this referenced entity.
- type String
- The type of this referenced entity.
EnvironmentVariableSetup, EnvironmentVariableSetupArgs      
- VariableName string
- The name of the environment variable.
- VariableValue string
- The value of the environment variable.
- VariableName string
- The name of the environment variable.
- VariableValue string
- The value of the environment variable.
- variableName String
- The name of the environment variable.
- variableValue String
- The value of the environment variable.
- variableName string
- The name of the environment variable.
- variableValue string
- The value of the environment variable.
- variable_name str
- The name of the environment variable.
- variable_value str
- The value of the environment variable.
- variableName String
- The name of the environment variable.
- variableValue String
- The value of the environment variable.
EnvironmentVariableSetupResponse, EnvironmentVariableSetupResponseArgs        
- VariableName string
- The name of the environment variable.
- VariableValue string
- The value of the environment variable.
- VariableName string
- The name of the environment variable.
- VariableValue string
- The value of the environment variable.
- variableName String
- The name of the environment variable.
- variableValue String
- The value of the environment variable.
- variableName string
- The name of the environment variable.
- variableValue string
- The value of the environment variable.
- variable_name str
- The name of the environment variable.
- variable_value str
- The value of the environment variable.
- variableName String
- The name of the environment variable.
- variableValue String
- The value of the environment variable.
IntegrationRuntimeComputeProperties, IntegrationRuntimeComputePropertiesArgs        
- CopyCompute Pulumi.Scale Properties Azure Native. Data Factory. Inputs. Copy Compute Scale Properties 
- CopyComputeScale properties for managed integration runtime.
- DataFlow Pulumi.Properties Azure Native. Data Factory. Inputs. Integration Runtime Data Flow Properties 
- Data flow properties for managed integration runtime.
- Location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- MaxParallel intExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- NodeSize string
- The node size requirement to managed integration runtime.
- NumberOf intNodes 
- The required number of nodes for managed integration runtime.
- PipelineExternal Pulumi.Compute Scale Properties Azure Native. Data Factory. Inputs. Pipeline External Compute Scale Properties 
- PipelineExternalComputeScale properties for managed integration runtime.
- VNetProperties Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime VNet Properties 
- VNet properties for managed integration runtime.
- CopyCompute CopyScale Properties Compute Scale Properties 
- CopyComputeScale properties for managed integration runtime.
- DataFlow IntegrationProperties Runtime Data Flow Properties 
- Data flow properties for managed integration runtime.
- Location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- MaxParallel intExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- NodeSize string
- The node size requirement to managed integration runtime.
- NumberOf intNodes 
- The required number of nodes for managed integration runtime.
- PipelineExternal PipelineCompute Scale Properties External Compute Scale Properties 
- PipelineExternalComputeScale properties for managed integration runtime.
- VNetProperties IntegrationRuntime VNet Properties 
- VNet properties for managed integration runtime.
- copyCompute CopyScale Properties Compute Scale Properties 
- CopyComputeScale properties for managed integration runtime.
- dataFlow IntegrationProperties Runtime Data Flow Properties 
- Data flow properties for managed integration runtime.
- location String
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel IntegerExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize String
- The node size requirement to managed integration runtime.
- numberOf IntegerNodes 
- The required number of nodes for managed integration runtime.
- pipelineExternal PipelineCompute Scale Properties External Compute Scale Properties 
- PipelineExternalComputeScale properties for managed integration runtime.
- vNet IntegrationProperties Runtime VNet Properties 
- VNet properties for managed integration runtime.
- copyCompute CopyScale Properties Compute Scale Properties 
- CopyComputeScale properties for managed integration runtime.
- dataFlow IntegrationProperties Runtime Data Flow Properties 
- Data flow properties for managed integration runtime.
- location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel numberExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize string
- The node size requirement to managed integration runtime.
- numberOf numberNodes 
- The required number of nodes for managed integration runtime.
- pipelineExternal PipelineCompute Scale Properties External Compute Scale Properties 
- PipelineExternalComputeScale properties for managed integration runtime.
- vNet IntegrationProperties Runtime VNet Properties 
- VNet properties for managed integration runtime.
- copy_compute_ Copyscale_ properties Compute Scale Properties 
- CopyComputeScale properties for managed integration runtime.
- data_flow_ Integrationproperties Runtime Data Flow Properties 
- Data flow properties for managed integration runtime.
- location str
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- max_parallel_ intexecutions_ per_ node 
- Maximum parallel executions count per node for managed integration runtime.
- node_size str
- The node size requirement to managed integration runtime.
- number_of_ intnodes 
- The required number of nodes for managed integration runtime.
- pipeline_external_ Pipelinecompute_ scale_ properties External Compute Scale Properties 
- PipelineExternalComputeScale properties for managed integration runtime.
- v_net_ Integrationproperties Runtime VNet Properties 
- VNet properties for managed integration runtime.
- copyCompute Property MapScale Properties 
- CopyComputeScale properties for managed integration runtime.
- dataFlow Property MapProperties 
- Data flow properties for managed integration runtime.
- location String
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel NumberExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize String
- The node size requirement to managed integration runtime.
- numberOf NumberNodes 
- The required number of nodes for managed integration runtime.
- pipelineExternal Property MapCompute Scale Properties 
- PipelineExternalComputeScale properties for managed integration runtime.
- vNet Property MapProperties 
- VNet properties for managed integration runtime.
IntegrationRuntimeComputePropertiesResponse, IntegrationRuntimeComputePropertiesResponseArgs          
- CopyCompute Pulumi.Scale Properties Azure Native. Data Factory. Inputs. Copy Compute Scale Properties Response 
- CopyComputeScale properties for managed integration runtime.
- DataFlow Pulumi.Properties Azure Native. Data Factory. Inputs. Integration Runtime Data Flow Properties Response 
- Data flow properties for managed integration runtime.
- Location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- MaxParallel intExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- NodeSize string
- The node size requirement to managed integration runtime.
- NumberOf intNodes 
- The required number of nodes for managed integration runtime.
- PipelineExternal Pulumi.Compute Scale Properties Azure Native. Data Factory. Inputs. Pipeline External Compute Scale Properties Response 
- PipelineExternalComputeScale properties for managed integration runtime.
- VNetProperties Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime VNet Properties Response 
- VNet properties for managed integration runtime.
- CopyCompute CopyScale Properties Compute Scale Properties Response 
- CopyComputeScale properties for managed integration runtime.
- DataFlow IntegrationProperties Runtime Data Flow Properties Response 
- Data flow properties for managed integration runtime.
- Location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- MaxParallel intExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- NodeSize string
- The node size requirement to managed integration runtime.
- NumberOf intNodes 
- The required number of nodes for managed integration runtime.
- PipelineExternal PipelineCompute Scale Properties External Compute Scale Properties Response 
- PipelineExternalComputeScale properties for managed integration runtime.
- VNetProperties IntegrationRuntime VNet Properties Response 
- VNet properties for managed integration runtime.
- copyCompute CopyScale Properties Compute Scale Properties Response 
- CopyComputeScale properties for managed integration runtime.
- dataFlow IntegrationProperties Runtime Data Flow Properties Response 
- Data flow properties for managed integration runtime.
- location String
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel IntegerExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize String
- The node size requirement to managed integration runtime.
- numberOf IntegerNodes 
- The required number of nodes for managed integration runtime.
- pipelineExternal PipelineCompute Scale Properties External Compute Scale Properties Response 
- PipelineExternalComputeScale properties for managed integration runtime.
- vNet IntegrationProperties Runtime VNet Properties Response 
- VNet properties for managed integration runtime.
- copyCompute CopyScale Properties Compute Scale Properties Response 
- CopyComputeScale properties for managed integration runtime.
- dataFlow IntegrationProperties Runtime Data Flow Properties Response 
- Data flow properties for managed integration runtime.
- location string
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel numberExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize string
- The node size requirement to managed integration runtime.
- numberOf numberNodes 
- The required number of nodes for managed integration runtime.
- pipelineExternal PipelineCompute Scale Properties External Compute Scale Properties Response 
- PipelineExternalComputeScale properties for managed integration runtime.
- vNet IntegrationProperties Runtime VNet Properties Response 
- VNet properties for managed integration runtime.
- copy_compute_ Copyscale_ properties Compute Scale Properties Response 
- CopyComputeScale properties for managed integration runtime.
- data_flow_ Integrationproperties Runtime Data Flow Properties Response 
- Data flow properties for managed integration runtime.
- location str
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- max_parallel_ intexecutions_ per_ node 
- Maximum parallel executions count per node for managed integration runtime.
- node_size str
- The node size requirement to managed integration runtime.
- number_of_ intnodes 
- The required number of nodes for managed integration runtime.
- pipeline_external_ Pipelinecompute_ scale_ properties External Compute Scale Properties Response 
- PipelineExternalComputeScale properties for managed integration runtime.
- v_net_ Integrationproperties Runtime VNet Properties Response 
- VNet properties for managed integration runtime.
- copyCompute Property MapScale Properties 
- CopyComputeScale properties for managed integration runtime.
- dataFlow Property MapProperties 
- Data flow properties for managed integration runtime.
- location String
- The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
- maxParallel NumberExecutions Per Node 
- Maximum parallel executions count per node for managed integration runtime.
- nodeSize String
- The node size requirement to managed integration runtime.
- numberOf NumberNodes 
- The required number of nodes for managed integration runtime.
- pipelineExternal Property MapCompute Scale Properties 
- PipelineExternalComputeScale properties for managed integration runtime.
- vNet Property MapProperties 
- VNet properties for managed integration runtime.
IntegrationRuntimeCustomSetupScriptProperties, IntegrationRuntimeCustomSetupScriptPropertiesArgs            
- BlobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- SasToken Pulumi.Azure Native. Data Factory. Inputs. Secure String 
- The SAS token of the Azure blob container.
- BlobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- SasToken SecureString 
- The SAS token of the Azure blob container.
- blobContainer StringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken SecureString 
- The SAS token of the Azure blob container.
- blobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken SecureString 
- The SAS token of the Azure blob container.
- blob_container_ struri 
- The URI of the Azure blob container that contains the custom setup script.
- sas_token SecureString 
- The SAS token of the Azure blob container.
- blobContainer StringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken Property Map
- The SAS token of the Azure blob container.
IntegrationRuntimeCustomSetupScriptPropertiesResponse, IntegrationRuntimeCustomSetupScriptPropertiesResponseArgs              
- BlobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- SasToken Pulumi.Azure Native. Data Factory. Inputs. Secure String Response 
- The SAS token of the Azure blob container.
- BlobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- SasToken SecureString Response 
- The SAS token of the Azure blob container.
- blobContainer StringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken SecureString Response 
- The SAS token of the Azure blob container.
- blobContainer stringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken SecureString Response 
- The SAS token of the Azure blob container.
- blob_container_ struri 
- The URI of the Azure blob container that contains the custom setup script.
- sas_token SecureString Response 
- The SAS token of the Azure blob container.
- blobContainer StringUri 
- The URI of the Azure blob container that contains the custom setup script.
- sasToken Property Map
- The SAS token of the Azure blob container.
IntegrationRuntimeCustomerVirtualNetwork, IntegrationRuntimeCustomerVirtualNetworkArgs          
- SubnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- SubnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId String
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnet_id str
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId String
- The ID of subnet to which Azure-SSIS integration runtime will join.
IntegrationRuntimeCustomerVirtualNetworkResponse, IntegrationRuntimeCustomerVirtualNetworkResponseArgs            
- SubnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- SubnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId String
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId string
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnet_id str
- The ID of subnet to which Azure-SSIS integration runtime will join.
- subnetId String
- The ID of subnet to which Azure-SSIS integration runtime will join.
IntegrationRuntimeDataFlowProperties, IntegrationRuntimeDataFlowPropertiesArgs          
- Cleanup bool
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- ComputeType string | Pulumi.Azure Native. Data Factory. Data Flow Compute Type 
- Compute type of the cluster which will execute data flow job.
- CoreCount int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- CustomProperties List<Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Data Flow Properties Custom Properties> 
- Custom properties are used to tune the data flow runtime performance.
- TimeTo intLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- Cleanup bool
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- ComputeType string | DataFlow Compute Type 
- Compute type of the cluster which will execute data flow job.
- CoreCount int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- CustomProperties []IntegrationRuntime Data Flow Properties Custom Properties 
- Custom properties are used to tune the data flow runtime performance.
- TimeTo intLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- cleanup Boolean
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- computeType String | DataFlow Compute Type 
- Compute type of the cluster which will execute data flow job.
- coreCount Integer
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- customProperties List<IntegrationRuntime Data Flow Properties Custom Properties> 
- Custom properties are used to tune the data flow runtime performance.
- timeTo IntegerLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- cleanup boolean
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- computeType string | DataFlow Compute Type 
- Compute type of the cluster which will execute data flow job.
- coreCount number
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- customProperties IntegrationRuntime Data Flow Properties Custom Properties[] 
- Custom properties are used to tune the data flow runtime performance.
- timeTo numberLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- cleanup bool
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- compute_type str | DataFlow Compute Type 
- Compute type of the cluster which will execute data flow job.
- core_count int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- custom_properties Sequence[IntegrationRuntime Data Flow Properties Custom Properties] 
- Custom properties are used to tune the data flow runtime performance.
- time_to_ intlive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- cleanup Boolean
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- computeType String | "General" | "MemoryOptimized" | "Compute Optimized" 
- Compute type of the cluster which will execute data flow job.
- coreCount Number
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- customProperties List<Property Map>
- Custom properties are used to tune the data flow runtime performance.
- timeTo NumberLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
IntegrationRuntimeDataFlowPropertiesCustomProperties, IntegrationRuntimeDataFlowPropertiesCustomPropertiesArgs              
IntegrationRuntimeDataFlowPropertiesResponse, IntegrationRuntimeDataFlowPropertiesResponseArgs            
- Cleanup bool
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- ComputeType string
- Compute type of the cluster which will execute data flow job.
- CoreCount int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- CustomProperties List<Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Data Flow Properties Response Custom Properties> 
- Custom properties are used to tune the data flow runtime performance.
- TimeTo intLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- Cleanup bool
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- ComputeType string
- Compute type of the cluster which will execute data flow job.
- CoreCount int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- CustomProperties []IntegrationRuntime Data Flow Properties Response Custom Properties 
- Custom properties are used to tune the data flow runtime performance.
- TimeTo intLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- cleanup Boolean
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- computeType String
- Compute type of the cluster which will execute data flow job.
- coreCount Integer
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- customProperties List<IntegrationRuntime Data Flow Properties Response Custom Properties> 
- Custom properties are used to tune the data flow runtime performance.
- timeTo IntegerLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- cleanup boolean
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- computeType string
- Compute type of the cluster which will execute data flow job.
- coreCount number
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- customProperties IntegrationRuntime Data Flow Properties Response Custom Properties[] 
- Custom properties are used to tune the data flow runtime performance.
- timeTo numberLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- cleanup bool
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- compute_type str
- Compute type of the cluster which will execute data flow job.
- core_count int
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- custom_properties Sequence[IntegrationRuntime Data Flow Properties Response Custom Properties] 
- Custom properties are used to tune the data flow runtime performance.
- time_to_ intlive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
- cleanup Boolean
- Cluster will not be recycled and it will be used in next data flow activity run until TTL (time to live) is reached if this is set as false. Default is true.
- computeType String
- Compute type of the cluster which will execute data flow job.
- coreCount Number
- Core count of the cluster which will execute data flow job. Supported values are: 8, 16, 32, 48, 80, 144 and 272.
- customProperties List<Property Map>
- Custom properties are used to tune the data flow runtime performance.
- timeTo NumberLive 
- Time to live (in minutes) setting of the cluster which will execute data flow job.
IntegrationRuntimeDataFlowPropertiesResponseCustomProperties, IntegrationRuntimeDataFlowPropertiesResponseCustomPropertiesArgs                
IntegrationRuntimeDataProxyProperties, IntegrationRuntimeDataProxyPropertiesArgs          
- ConnectVia Pulumi.Azure Native. Data Factory. Inputs. Entity Reference 
- The self-hosted integration runtime reference.
- Path string
- The path to contain the staged data in the Blob storage.
- StagingLinked Pulumi.Service Azure Native. Data Factory. Inputs. Entity Reference 
- The staging linked service reference.
- ConnectVia EntityReference 
- The self-hosted integration runtime reference.
- Path string
- The path to contain the staged data in the Blob storage.
- StagingLinked EntityService Reference 
- The staging linked service reference.
- connectVia EntityReference 
- The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- stagingLinked EntityService Reference 
- The staging linked service reference.
- connectVia EntityReference 
- The self-hosted integration runtime reference.
- path string
- The path to contain the staged data in the Blob storage.
- stagingLinked EntityService Reference 
- The staging linked service reference.
- connect_via EntityReference 
- The self-hosted integration runtime reference.
- path str
- The path to contain the staged data in the Blob storage.
- staging_linked_ Entityservice Reference 
- The staging linked service reference.
- connectVia Property Map
- The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- stagingLinked Property MapService 
- The staging linked service reference.
IntegrationRuntimeDataProxyPropertiesResponse, IntegrationRuntimeDataProxyPropertiesResponseArgs            
- ConnectVia Pulumi.Azure Native. Data Factory. Inputs. Entity Reference Response 
- The self-hosted integration runtime reference.
- Path string
- The path to contain the staged data in the Blob storage.
- StagingLinked Pulumi.Service Azure Native. Data Factory. Inputs. Entity Reference Response 
- The staging linked service reference.
- ConnectVia EntityReference Response 
- The self-hosted integration runtime reference.
- Path string
- The path to contain the staged data in the Blob storage.
- StagingLinked EntityService Reference Response 
- The staging linked service reference.
- connectVia EntityReference Response 
- The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- stagingLinked EntityService Reference Response 
- The staging linked service reference.
- connectVia EntityReference Response 
- The self-hosted integration runtime reference.
- path string
- The path to contain the staged data in the Blob storage.
- stagingLinked EntityService Reference Response 
- The staging linked service reference.
- connect_via EntityReference Response 
- The self-hosted integration runtime reference.
- path str
- The path to contain the staged data in the Blob storage.
- staging_linked_ Entityservice Reference Response 
- The staging linked service reference.
- connectVia Property Map
- The self-hosted integration runtime reference.
- path String
- The path to contain the staged data in the Blob storage.
- stagingLinked Property MapService 
- The staging linked service reference.
IntegrationRuntimeEdition, IntegrationRuntimeEditionArgs      
- Standard
- Standard
- Enterprise
- Enterprise
- IntegrationRuntime Edition Standard 
- Standard
- IntegrationRuntime Edition Enterprise 
- Enterprise
- Standard
- Standard
- Enterprise
- Enterprise
- Standard
- Standard
- Enterprise
- Enterprise
- STANDARD
- Standard
- ENTERPRISE
- Enterprise
- "Standard"
- Standard
- "Enterprise"
- Enterprise
IntegrationRuntimeEntityReferenceType, IntegrationRuntimeEntityReferenceTypeArgs          
- IntegrationRuntime Reference 
- IntegrationRuntimeReference
- LinkedService Reference 
- LinkedServiceReference
- IntegrationRuntime Entity Reference Type Integration Runtime Reference 
- IntegrationRuntimeReference
- IntegrationRuntime Entity Reference Type Linked Service Reference 
- LinkedServiceReference
- IntegrationRuntime Reference 
- IntegrationRuntimeReference
- LinkedService Reference 
- LinkedServiceReference
- IntegrationRuntime Reference 
- IntegrationRuntimeReference
- LinkedService Reference 
- LinkedServiceReference
- INTEGRATION_RUNTIME_REFERENCE
- IntegrationRuntimeReference
- LINKED_SERVICE_REFERENCE
- LinkedServiceReference
- "IntegrationRuntime Reference" 
- IntegrationRuntimeReference
- "LinkedService Reference" 
- LinkedServiceReference
IntegrationRuntimeLicenseType, IntegrationRuntimeLicenseTypeArgs        
- BasePrice 
- BasePrice
- LicenseIncluded 
- LicenseIncluded
- IntegrationRuntime License Type Base Price 
- BasePrice
- IntegrationRuntime License Type License Included 
- LicenseIncluded
- BasePrice 
- BasePrice
- LicenseIncluded 
- LicenseIncluded
- BasePrice 
- BasePrice
- LicenseIncluded 
- LicenseIncluded
- BASE_PRICE
- BasePrice
- LICENSE_INCLUDED
- LicenseIncluded
- "BasePrice" 
- BasePrice
- "LicenseIncluded" 
- LicenseIncluded
IntegrationRuntimeSsisCatalogInfo, IntegrationRuntimeSsisCatalogInfoArgs          
- CatalogAdmin Pulumi.Password Azure Native. Data Factory. Inputs. Secure String 
- The password of the administrator user account of the catalog database.
- CatalogAdmin stringUser Name 
- The administrator user name of catalog database.
- CatalogPricing string | Pulumi.Tier Azure Native. Data Factory. Integration Runtime Ssis Catalog Pricing Tier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- CatalogServer stringEndpoint 
- The catalog database server URL.
- DualStandby stringPair Name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
- CatalogAdmin SecurePassword String 
- The password of the administrator user account of the catalog database.
- CatalogAdmin stringUser Name 
- The administrator user name of catalog database.
- CatalogPricing string | IntegrationTier Runtime Ssis Catalog Pricing Tier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- CatalogServer stringEndpoint 
- The catalog database server URL.
- DualStandby stringPair Name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
- catalogAdmin SecurePassword String 
- The password of the administrator user account of the catalog database.
- catalogAdmin StringUser Name 
- The administrator user name of catalog database.
- catalogPricing String | IntegrationTier Runtime Ssis Catalog Pricing Tier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer StringEndpoint 
- The catalog database server URL.
- dualStandby StringPair Name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
- catalogAdmin SecurePassword String 
- The password of the administrator user account of the catalog database.
- catalogAdmin stringUser Name 
- The administrator user name of catalog database.
- catalogPricing string | IntegrationTier Runtime Ssis Catalog Pricing Tier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer stringEndpoint 
- The catalog database server URL.
- dualStandby stringPair Name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
- catalog_admin_ Securepassword String 
- The password of the administrator user account of the catalog database.
- catalog_admin_ struser_ name 
- The administrator user name of catalog database.
- catalog_pricing_ str | Integrationtier Runtime Ssis Catalog Pricing Tier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalog_server_ strendpoint 
- The catalog database server URL.
- dual_standby_ strpair_ name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
- catalogAdmin Property MapPassword 
- The password of the administrator user account of the catalog database.
- catalogAdmin StringUser Name 
- The administrator user name of catalog database.
- catalogPricing String | "Basic" | "Standard" | "Premium" | "PremiumTier RS" 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer StringEndpoint 
- The catalog database server URL.
- dualStandby StringPair Name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
IntegrationRuntimeSsisCatalogInfoResponse, IntegrationRuntimeSsisCatalogInfoResponseArgs            
- CatalogAdmin Pulumi.Password Azure Native. Data Factory. Inputs. Secure String Response 
- The password of the administrator user account of the catalog database.
- CatalogAdmin stringUser Name 
- The administrator user name of catalog database.
- CatalogPricing stringTier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- CatalogServer stringEndpoint 
- The catalog database server URL.
- DualStandby stringPair Name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
- CatalogAdmin SecurePassword String Response 
- The password of the administrator user account of the catalog database.
- CatalogAdmin stringUser Name 
- The administrator user name of catalog database.
- CatalogPricing stringTier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- CatalogServer stringEndpoint 
- The catalog database server URL.
- DualStandby stringPair Name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
- catalogAdmin SecurePassword String Response 
- The password of the administrator user account of the catalog database.
- catalogAdmin StringUser Name 
- The administrator user name of catalog database.
- catalogPricing StringTier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer StringEndpoint 
- The catalog database server URL.
- dualStandby StringPair Name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
- catalogAdmin SecurePassword String Response 
- The password of the administrator user account of the catalog database.
- catalogAdmin stringUser Name 
- The administrator user name of catalog database.
- catalogPricing stringTier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer stringEndpoint 
- The catalog database server URL.
- dualStandby stringPair Name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
- catalog_admin_ Securepassword String Response 
- The password of the administrator user account of the catalog database.
- catalog_admin_ struser_ name 
- The administrator user name of catalog database.
- catalog_pricing_ strtier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalog_server_ strendpoint 
- The catalog database server URL.
- dual_standby_ strpair_ name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
- catalogAdmin Property MapPassword 
- The password of the administrator user account of the catalog database.
- catalogAdmin StringUser Name 
- The administrator user name of catalog database.
- catalogPricing StringTier 
- The pricing tier for the catalog database. The valid values could be found in https://azure.microsoft.com/en-us/pricing/details/sql-database/
- catalogServer StringEndpoint 
- The catalog database server URL.
- dualStandby StringPair Name 
- The dual standby pair name of Azure-SSIS Integration Runtimes to support SSISDB failover.
IntegrationRuntimeSsisCatalogPricingTier, IntegrationRuntimeSsisCatalogPricingTierArgs            
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- PremiumRS 
- PremiumRS
- IntegrationRuntime Ssis Catalog Pricing Tier Basic 
- Basic
- IntegrationRuntime Ssis Catalog Pricing Tier Standard 
- Standard
- IntegrationRuntime Ssis Catalog Pricing Tier Premium 
- Premium
- IntegrationRuntime Ssis Catalog Pricing Tier Premium RS 
- PremiumRS
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- PremiumRS 
- PremiumRS
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- PremiumRS 
- PremiumRS
- BASIC
- Basic
- STANDARD
- Standard
- PREMIUM
- Premium
- PREMIUM_RS
- PremiumRS
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
- "PremiumRS" 
- PremiumRS
IntegrationRuntimeSsisProperties, IntegrationRuntimeSsisPropertiesArgs        
- CatalogInfo Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Ssis Catalog Info 
- Catalog information for managed dedicated integration runtime.
- Credential
Pulumi.Azure Native. Data Factory. Inputs. Credential Reference 
- The credential reference containing authentication information.
- CustomSetup Pulumi.Script Properties Azure Native. Data Factory. Inputs. Integration Runtime Custom Setup Script Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- DataProxy Pulumi.Properties Azure Native. Data Factory. Inputs. Integration Runtime Data Proxy Properties 
- Data proxy properties for a managed dedicated integration runtime.
- Edition
string | Pulumi.Azure Native. Data Factory. Integration Runtime Edition 
- The edition for the SSIS Integration Runtime
- ExpressCustom List<object>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- LicenseType string | Pulumi.Azure Native. Data Factory. Integration Runtime License Type 
- License type for bringing your own license scenario.
- PackageStores List<Pulumi.Azure Native. Data Factory. Inputs. Package Store> 
- Package stores for the SSIS Integration Runtime.
- CatalogInfo IntegrationRuntime Ssis Catalog Info 
- Catalog information for managed dedicated integration runtime.
- Credential
CredentialReference 
- The credential reference containing authentication information.
- CustomSetup IntegrationScript Properties Runtime Custom Setup Script Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- DataProxy IntegrationProperties Runtime Data Proxy Properties 
- Data proxy properties for a managed dedicated integration runtime.
- Edition
string | IntegrationRuntime Edition 
- The edition for the SSIS Integration Runtime
- ExpressCustom []interface{}Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- LicenseType string | IntegrationRuntime License Type 
- License type for bringing your own license scenario.
- PackageStores []PackageStore 
- Package stores for the SSIS Integration Runtime.
- catalogInfo IntegrationRuntime Ssis Catalog Info 
- Catalog information for managed dedicated integration runtime.
- credential
CredentialReference 
- The credential reference containing authentication information.
- customSetup IntegrationScript Properties Runtime Custom Setup Script Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy IntegrationProperties Runtime Data Proxy Properties 
- Data proxy properties for a managed dedicated integration runtime.
- edition
String | IntegrationRuntime Edition 
- The edition for the SSIS Integration Runtime
- expressCustom List<Object>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType String | IntegrationRuntime License Type 
- License type for bringing your own license scenario.
- packageStores List<PackageStore> 
- Package stores for the SSIS Integration Runtime.
- catalogInfo IntegrationRuntime Ssis Catalog Info 
- Catalog information for managed dedicated integration runtime.
- credential
CredentialReference 
- The credential reference containing authentication information.
- customSetup IntegrationScript Properties Runtime Custom Setup Script Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy IntegrationProperties Runtime Data Proxy Properties 
- Data proxy properties for a managed dedicated integration runtime.
- edition
string | IntegrationRuntime Edition 
- The edition for the SSIS Integration Runtime
- expressCustom (AzSetup Properties Power Shell Setup | Cmdkey Setup | Component Setup | Environment Variable Setup)[] 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType string | IntegrationRuntime License Type 
- License type for bringing your own license scenario.
- packageStores PackageStore[] 
- Package stores for the SSIS Integration Runtime.
- catalog_info IntegrationRuntime Ssis Catalog Info 
- Catalog information for managed dedicated integration runtime.
- credential
CredentialReference 
- The credential reference containing authentication information.
- custom_setup_ Integrationscript_ properties Runtime Custom Setup Script Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- data_proxy_ Integrationproperties Runtime Data Proxy Properties 
- Data proxy properties for a managed dedicated integration runtime.
- edition
str | IntegrationRuntime Edition 
- The edition for the SSIS Integration Runtime
- express_custom_ Sequence[Union[Azsetup_ properties Power Shell Setup, Cmdkey Setup, Component Setup, Environment Variable Setup]] 
- Custom setup without script properties for a SSIS integration runtime.
- license_type str | IntegrationRuntime License Type 
- License type for bringing your own license scenario.
- package_stores Sequence[PackageStore] 
- Package stores for the SSIS Integration Runtime.
- catalogInfo Property Map
- Catalog information for managed dedicated integration runtime.
- credential Property Map
- The credential reference containing authentication information.
- customSetup Property MapScript Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy Property MapProperties 
- Data proxy properties for a managed dedicated integration runtime.
- edition String | "Standard" | "Enterprise"
- The edition for the SSIS Integration Runtime
- expressCustom List<Property Map | Property Map | Property Map | Property Map>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType String | "BasePrice" | "License Included" 
- License type for bringing your own license scenario.
- packageStores List<Property Map>
- Package stores for the SSIS Integration Runtime.
IntegrationRuntimeSsisPropertiesResponse, IntegrationRuntimeSsisPropertiesResponseArgs          
- CatalogInfo Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Ssis Catalog Info Response 
- Catalog information for managed dedicated integration runtime.
- Credential
Pulumi.Azure Native. Data Factory. Inputs. Credential Reference Response 
- The credential reference containing authentication information.
- CustomSetup Pulumi.Script Properties Azure Native. Data Factory. Inputs. Integration Runtime Custom Setup Script Properties Response 
- Custom setup script properties for a managed dedicated integration runtime.
- DataProxy Pulumi.Properties Azure Native. Data Factory. Inputs. Integration Runtime Data Proxy Properties Response 
- Data proxy properties for a managed dedicated integration runtime.
- Edition string
- The edition for the SSIS Integration Runtime
- ExpressCustom List<object>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- LicenseType string
- License type for bringing your own license scenario.
- PackageStores List<Pulumi.Azure Native. Data Factory. Inputs. Package Store Response> 
- Package stores for the SSIS Integration Runtime.
- CatalogInfo IntegrationRuntime Ssis Catalog Info Response 
- Catalog information for managed dedicated integration runtime.
- Credential
CredentialReference Response 
- The credential reference containing authentication information.
- CustomSetup IntegrationScript Properties Runtime Custom Setup Script Properties Response 
- Custom setup script properties for a managed dedicated integration runtime.
- DataProxy IntegrationProperties Runtime Data Proxy Properties Response 
- Data proxy properties for a managed dedicated integration runtime.
- Edition string
- The edition for the SSIS Integration Runtime
- ExpressCustom []interface{}Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- LicenseType string
- License type for bringing your own license scenario.
- PackageStores []PackageStore Response 
- Package stores for the SSIS Integration Runtime.
- catalogInfo IntegrationRuntime Ssis Catalog Info Response 
- Catalog information for managed dedicated integration runtime.
- credential
CredentialReference Response 
- The credential reference containing authentication information.
- customSetup IntegrationScript Properties Runtime Custom Setup Script Properties Response 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy IntegrationProperties Runtime Data Proxy Properties Response 
- Data proxy properties for a managed dedicated integration runtime.
- edition String
- The edition for the SSIS Integration Runtime
- expressCustom List<Object>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType String
- License type for bringing your own license scenario.
- packageStores List<PackageStore Response> 
- Package stores for the SSIS Integration Runtime.
- catalogInfo IntegrationRuntime Ssis Catalog Info Response 
- Catalog information for managed dedicated integration runtime.
- credential
CredentialReference Response 
- The credential reference containing authentication information.
- customSetup IntegrationScript Properties Runtime Custom Setup Script Properties Response 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy IntegrationProperties Runtime Data Proxy Properties Response 
- Data proxy properties for a managed dedicated integration runtime.
- edition string
- The edition for the SSIS Integration Runtime
- expressCustom (AzSetup Properties Power Shell Setup Response | Cmdkey Setup Response | Component Setup Response | Environment Variable Setup Response)[] 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType string
- License type for bringing your own license scenario.
- packageStores PackageStore Response[] 
- Package stores for the SSIS Integration Runtime.
- catalog_info IntegrationRuntime Ssis Catalog Info Response 
- Catalog information for managed dedicated integration runtime.
- credential
CredentialReference Response 
- The credential reference containing authentication information.
- custom_setup_ Integrationscript_ properties Runtime Custom Setup Script Properties Response 
- Custom setup script properties for a managed dedicated integration runtime.
- data_proxy_ Integrationproperties Runtime Data Proxy Properties Response 
- Data proxy properties for a managed dedicated integration runtime.
- edition str
- The edition for the SSIS Integration Runtime
- express_custom_ Sequence[Union[Azsetup_ properties Power Shell Setup Response, Cmdkey Setup Response, Component Setup Response, Environment Variable Setup Response]] 
- Custom setup without script properties for a SSIS integration runtime.
- license_type str
- License type for bringing your own license scenario.
- package_stores Sequence[PackageStore Response] 
- Package stores for the SSIS Integration Runtime.
- catalogInfo Property Map
- Catalog information for managed dedicated integration runtime.
- credential Property Map
- The credential reference containing authentication information.
- customSetup Property MapScript Properties 
- Custom setup script properties for a managed dedicated integration runtime.
- dataProxy Property MapProperties 
- Data proxy properties for a managed dedicated integration runtime.
- edition String
- The edition for the SSIS Integration Runtime
- expressCustom List<Property Map | Property Map | Property Map | Property Map>Setup Properties 
- Custom setup without script properties for a SSIS integration runtime.
- licenseType String
- License type for bringing your own license scenario.
- packageStores List<Property Map>
- Package stores for the SSIS Integration Runtime.
IntegrationRuntimeVNetProperties, IntegrationRuntimeVNetPropertiesArgs        
- PublicIPs List<string>
- Resource IDs of the public IP addresses that this integration runtime will use.
- Subnet string
- The name of the subnet this integration runtime will join.
- SubnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNetId string
- The ID of the VNet that this integration runtime will join.
- PublicIPs []string
- Resource IDs of the public IP addresses that this integration runtime will use.
- Subnet string
- The name of the subnet this integration runtime will join.
- SubnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNetId string
- The ID of the VNet that this integration runtime will join.
- publicIPs List<String>
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet String
- The name of the subnet this integration runtime will join.
- subnetId String
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet StringId 
- The ID of the VNet that this integration runtime will join.
- publicIPs string[]
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet string
- The name of the subnet this integration runtime will join.
- subnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet stringId 
- The ID of the VNet that this integration runtime will join.
- public_ips Sequence[str]
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet str
- The name of the subnet this integration runtime will join.
- subnet_id str
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- v_net_ strid 
- The ID of the VNet that this integration runtime will join.
- publicIPs List<String>
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet String
- The name of the subnet this integration runtime will join.
- subnetId String
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet StringId 
- The ID of the VNet that this integration runtime will join.
IntegrationRuntimeVNetPropertiesResponse, IntegrationRuntimeVNetPropertiesResponseArgs          
- PublicIPs List<string>
- Resource IDs of the public IP addresses that this integration runtime will use.
- Subnet string
- The name of the subnet this integration runtime will join.
- SubnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNetId string
- The ID of the VNet that this integration runtime will join.
- PublicIPs []string
- Resource IDs of the public IP addresses that this integration runtime will use.
- Subnet string
- The name of the subnet this integration runtime will join.
- SubnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- VNetId string
- The ID of the VNet that this integration runtime will join.
- publicIPs List<String>
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet String
- The name of the subnet this integration runtime will join.
- subnetId String
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet StringId 
- The ID of the VNet that this integration runtime will join.
- publicIPs string[]
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet string
- The name of the subnet this integration runtime will join.
- subnetId string
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet stringId 
- The ID of the VNet that this integration runtime will join.
- public_ips Sequence[str]
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet str
- The name of the subnet this integration runtime will join.
- subnet_id str
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- v_net_ strid 
- The ID of the VNet that this integration runtime will join.
- publicIPs List<String>
- Resource IDs of the public IP addresses that this integration runtime will use.
- subnet String
- The name of the subnet this integration runtime will join.
- subnetId String
- The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
- vNet StringId 
- The ID of the VNet that this integration runtime will join.
LinkedIntegrationRuntimeKeyAuthorization, LinkedIntegrationRuntimeKeyAuthorizationArgs          
- Key
Pulumi.Azure Native. Data Factory. Inputs. Secure String 
- The key used for authorization.
- Key
SecureString 
- The key used for authorization.
- key
SecureString 
- The key used for authorization.
- key
SecureString 
- The key used for authorization.
- key
SecureString 
- The key used for authorization.
- key Property Map
- The key used for authorization.
LinkedIntegrationRuntimeKeyAuthorizationResponse, LinkedIntegrationRuntimeKeyAuthorizationResponseArgs            
- Key
Pulumi.Azure Native. Data Factory. Inputs. Secure String Response 
- The key used for authorization.
- Key
SecureString Response 
- The key used for authorization.
- key
SecureString Response 
- The key used for authorization.
- key
SecureString Response 
- The key used for authorization.
- key
SecureString Response 
- The key used for authorization.
- key Property Map
- The key used for authorization.
LinkedIntegrationRuntimeRbacAuthorization, LinkedIntegrationRuntimeRbacAuthorizationArgs          
- ResourceId string
- The resource identifier of the integration runtime to be shared.
- Credential
Pulumi.Azure Native. Data Factory. Inputs. Credential Reference 
- The credential reference containing authentication information.
- ResourceId string
- The resource identifier of the integration runtime to be shared.
- Credential
CredentialReference 
- The credential reference containing authentication information.
- resourceId String
- The resource identifier of the integration runtime to be shared.
- credential
CredentialReference 
- The credential reference containing authentication information.
- resourceId string
- The resource identifier of the integration runtime to be shared.
- credential
CredentialReference 
- The credential reference containing authentication information.
- resource_id str
- The resource identifier of the integration runtime to be shared.
- credential
CredentialReference 
- The credential reference containing authentication information.
- resourceId String
- The resource identifier of the integration runtime to be shared.
- credential Property Map
- The credential reference containing authentication information.
LinkedIntegrationRuntimeRbacAuthorizationResponse, LinkedIntegrationRuntimeRbacAuthorizationResponseArgs            
- ResourceId string
- The resource identifier of the integration runtime to be shared.
- Credential
Pulumi.Azure Native. Data Factory. Inputs. Credential Reference Response 
- The credential reference containing authentication information.
- ResourceId string
- The resource identifier of the integration runtime to be shared.
- Credential
CredentialReference Response 
- The credential reference containing authentication information.
- resourceId String
- The resource identifier of the integration runtime to be shared.
- credential
CredentialReference Response 
- The credential reference containing authentication information.
- resourceId string
- The resource identifier of the integration runtime to be shared.
- credential
CredentialReference Response 
- The credential reference containing authentication information.
- resource_id str
- The resource identifier of the integration runtime to be shared.
- credential
CredentialReference Response 
- The credential reference containing authentication information.
- resourceId String
- The resource identifier of the integration runtime to be shared.
- credential Property Map
- The credential reference containing authentication information.
LinkedServiceReference, LinkedServiceReferenceArgs      
- ReferenceName string
- Reference LinkedService name.
- Type
string | Pulumi.Azure Native. Data Factory. Type 
- Linked service reference type.
- Parameters Dictionary<string, object>
- Arguments for LinkedService.
- ReferenceName string
- Reference LinkedService name.
- Type string | Type
- Linked service reference type.
- Parameters map[string]interface{}
- Arguments for LinkedService.
- referenceName String
- Reference LinkedService name.
- type String | Type
- Linked service reference type.
- parameters Map<String,Object>
- Arguments for LinkedService.
- referenceName string
- Reference LinkedService name.
- type string | Type
- Linked service reference type.
- parameters {[key: string]: any}
- Arguments for LinkedService.
- reference_name str
- Reference LinkedService name.
- type str | Type
- Linked service reference type.
- parameters Mapping[str, Any]
- Arguments for LinkedService.
- referenceName String
- Reference LinkedService name.
- type
String | "LinkedService Reference" 
- Linked service reference type.
- parameters Map<Any>
- Arguments for LinkedService.
LinkedServiceReferenceResponse, LinkedServiceReferenceResponseArgs        
- ReferenceName string
- Reference LinkedService name.
- Type string
- Linked service reference type.
- Parameters Dictionary<string, object>
- Arguments for LinkedService.
- ReferenceName string
- Reference LinkedService name.
- Type string
- Linked service reference type.
- Parameters map[string]interface{}
- Arguments for LinkedService.
- referenceName String
- Reference LinkedService name.
- type String
- Linked service reference type.
- parameters Map<String,Object>
- Arguments for LinkedService.
- referenceName string
- Reference LinkedService name.
- type string
- Linked service reference type.
- parameters {[key: string]: any}
- Arguments for LinkedService.
- reference_name str
- Reference LinkedService name.
- type str
- Linked service reference type.
- parameters Mapping[str, Any]
- Arguments for LinkedService.
- referenceName String
- Reference LinkedService name.
- type String
- Linked service reference type.
- parameters Map<Any>
- Arguments for LinkedService.
ManagedIntegrationRuntime, ManagedIntegrationRuntimeArgs      
- ComputeProperties Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Compute Properties 
- The compute resource for managed integration runtime.
- CustomerVirtual Pulumi.Network Azure Native. Data Factory. Inputs. Integration Runtime Customer Virtual Network 
- The name of virtual network to which Azure-SSIS integration runtime will join
- Description string
- Integration runtime description.
- ManagedVirtual Pulumi.Network Azure Native. Data Factory. Inputs. Managed Virtual Network Reference 
- Managed Virtual Network reference.
- SsisProperties Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Ssis Properties 
- SSIS properties for managed integration runtime.
- ComputeProperties IntegrationRuntime Compute Properties 
- The compute resource for managed integration runtime.
- CustomerVirtual IntegrationNetwork Runtime Customer Virtual Network 
- The name of virtual network to which Azure-SSIS integration runtime will join
- Description string
- Integration runtime description.
- ManagedVirtual ManagedNetwork Virtual Network Reference 
- Managed Virtual Network reference.
- SsisProperties IntegrationRuntime Ssis Properties 
- SSIS properties for managed integration runtime.
- computeProperties IntegrationRuntime Compute Properties 
- The compute resource for managed integration runtime.
- customerVirtual IntegrationNetwork Runtime Customer Virtual Network 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description String
- Integration runtime description.
- managedVirtual ManagedNetwork Virtual Network Reference 
- Managed Virtual Network reference.
- ssisProperties IntegrationRuntime Ssis Properties 
- SSIS properties for managed integration runtime.
- computeProperties IntegrationRuntime Compute Properties 
- The compute resource for managed integration runtime.
- customerVirtual IntegrationNetwork Runtime Customer Virtual Network 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description string
- Integration runtime description.
- managedVirtual ManagedNetwork Virtual Network Reference 
- Managed Virtual Network reference.
- ssisProperties IntegrationRuntime Ssis Properties 
- SSIS properties for managed integration runtime.
- compute_properties IntegrationRuntime Compute Properties 
- The compute resource for managed integration runtime.
- customer_virtual_ Integrationnetwork Runtime Customer Virtual Network 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description str
- Integration runtime description.
- managed_virtual_ Managednetwork Virtual Network Reference 
- Managed Virtual Network reference.
- ssis_properties IntegrationRuntime Ssis Properties 
- SSIS properties for managed integration runtime.
- computeProperties Property Map
- The compute resource for managed integration runtime.
- customerVirtual Property MapNetwork 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description String
- Integration runtime description.
- managedVirtual Property MapNetwork 
- Managed Virtual Network reference.
- ssisProperties Property Map
- SSIS properties for managed integration runtime.
ManagedIntegrationRuntimeResponse, ManagedIntegrationRuntimeResponseArgs        
- State string
- Integration runtime state, only valid for managed dedicated integration runtime.
- ComputeProperties Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Compute Properties Response 
- The compute resource for managed integration runtime.
- CustomerVirtual Pulumi.Network Azure Native. Data Factory. Inputs. Integration Runtime Customer Virtual Network Response 
- The name of virtual network to which Azure-SSIS integration runtime will join
- Description string
- Integration runtime description.
- ManagedVirtual Pulumi.Network Azure Native. Data Factory. Inputs. Managed Virtual Network Reference Response 
- Managed Virtual Network reference.
- SsisProperties Pulumi.Azure Native. Data Factory. Inputs. Integration Runtime Ssis Properties Response 
- SSIS properties for managed integration runtime.
- State string
- Integration runtime state, only valid for managed dedicated integration runtime.
- ComputeProperties IntegrationRuntime Compute Properties Response 
- The compute resource for managed integration runtime.
- CustomerVirtual IntegrationNetwork Runtime Customer Virtual Network Response 
- The name of virtual network to which Azure-SSIS integration runtime will join
- Description string
- Integration runtime description.
- ManagedVirtual ManagedNetwork Virtual Network Reference Response 
- Managed Virtual Network reference.
- SsisProperties IntegrationRuntime Ssis Properties Response 
- SSIS properties for managed integration runtime.
- state String
- Integration runtime state, only valid for managed dedicated integration runtime.
- computeProperties IntegrationRuntime Compute Properties Response 
- The compute resource for managed integration runtime.
- customerVirtual IntegrationNetwork Runtime Customer Virtual Network Response 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description String
- Integration runtime description.
- managedVirtual ManagedNetwork Virtual Network Reference Response 
- Managed Virtual Network reference.
- ssisProperties IntegrationRuntime Ssis Properties Response 
- SSIS properties for managed integration runtime.
- state string
- Integration runtime state, only valid for managed dedicated integration runtime.
- computeProperties IntegrationRuntime Compute Properties Response 
- The compute resource for managed integration runtime.
- customerVirtual IntegrationNetwork Runtime Customer Virtual Network Response 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description string
- Integration runtime description.
- managedVirtual ManagedNetwork Virtual Network Reference Response 
- Managed Virtual Network reference.
- ssisProperties IntegrationRuntime Ssis Properties Response 
- SSIS properties for managed integration runtime.
- state str
- Integration runtime state, only valid for managed dedicated integration runtime.
- compute_properties IntegrationRuntime Compute Properties Response 
- The compute resource for managed integration runtime.
- customer_virtual_ Integrationnetwork Runtime Customer Virtual Network Response 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description str
- Integration runtime description.
- managed_virtual_ Managednetwork Virtual Network Reference Response 
- Managed Virtual Network reference.
- ssis_properties IntegrationRuntime Ssis Properties Response 
- SSIS properties for managed integration runtime.
- state String
- Integration runtime state, only valid for managed dedicated integration runtime.
- computeProperties Property Map
- The compute resource for managed integration runtime.
- customerVirtual Property MapNetwork 
- The name of virtual network to which Azure-SSIS integration runtime will join
- description String
- Integration runtime description.
- managedVirtual Property MapNetwork 
- Managed Virtual Network reference.
- ssisProperties Property Map
- SSIS properties for managed integration runtime.
ManagedVirtualNetworkReference, ManagedVirtualNetworkReferenceArgs        
- ReferenceName string
- Reference ManagedVirtualNetwork name.
- Type
string | Pulumi.Azure Native. Data Factory. Managed Virtual Network Reference Type 
- Managed Virtual Network reference type.
- ReferenceName string
- Reference ManagedVirtualNetwork name.
- Type
string | ManagedVirtual Network Reference Type 
- Managed Virtual Network reference type.
- referenceName String
- Reference ManagedVirtualNetwork name.
- type
String | ManagedVirtual Network Reference Type 
- Managed Virtual Network reference type.
- referenceName string
- Reference ManagedVirtualNetwork name.
- type
string | ManagedVirtual Network Reference Type 
- Managed Virtual Network reference type.
- reference_name str
- Reference ManagedVirtualNetwork name.
- type
str | ManagedVirtual Network Reference Type 
- Managed Virtual Network reference type.
- referenceName String
- Reference ManagedVirtualNetwork name.
- type
String | "ManagedVirtual Network Reference" 
- Managed Virtual Network reference type.
ManagedVirtualNetworkReferenceResponse, ManagedVirtualNetworkReferenceResponseArgs          
- ReferenceName string
- Reference ManagedVirtualNetwork name.
- Type string
- Managed Virtual Network reference type.
- ReferenceName string
- Reference ManagedVirtualNetwork name.
- Type string
- Managed Virtual Network reference type.
- referenceName String
- Reference ManagedVirtualNetwork name.
- type String
- Managed Virtual Network reference type.
- referenceName string
- Reference ManagedVirtualNetwork name.
- type string
- Managed Virtual Network reference type.
- reference_name str
- Reference ManagedVirtualNetwork name.
- type str
- Managed Virtual Network reference type.
- referenceName String
- Reference ManagedVirtualNetwork name.
- type String
- Managed Virtual Network reference type.
ManagedVirtualNetworkReferenceType, ManagedVirtualNetworkReferenceTypeArgs          
- ManagedVirtual Network Reference 
- ManagedVirtualNetworkReference
- ManagedVirtual Network Reference Type Managed Virtual Network Reference 
- ManagedVirtualNetworkReference
- ManagedVirtual Network Reference 
- ManagedVirtualNetworkReference
- ManagedVirtual Network Reference 
- ManagedVirtualNetworkReference
- MANAGED_VIRTUAL_NETWORK_REFERENCE
- ManagedVirtualNetworkReference
- "ManagedVirtual Network Reference" 
- ManagedVirtualNetworkReference
PackageStore, PackageStoreArgs    
- Name string
- The name of the package store
- PackageStore Pulumi.Linked Service Azure Native. Data Factory. Inputs. Entity Reference 
- The package store linked service reference.
- Name string
- The name of the package store
- PackageStore EntityLinked Service Reference 
- The package store linked service reference.
- name String
- The name of the package store
- packageStore EntityLinked Service Reference 
- The package store linked service reference.
- name string
- The name of the package store
- packageStore EntityLinked Service Reference 
- The package store linked service reference.
- name str
- The name of the package store
- package_store_ Entitylinked_ service Reference 
- The package store linked service reference.
- name String
- The name of the package store
- packageStore Property MapLinked Service 
- The package store linked service reference.
PackageStoreResponse, PackageStoreResponseArgs      
- Name string
- The name of the package store
- PackageStore Pulumi.Linked Service Azure Native. Data Factory. Inputs. Entity Reference Response 
- The package store linked service reference.
- Name string
- The name of the package store
- PackageStore EntityLinked Service Reference Response 
- The package store linked service reference.
- name String
- The name of the package store
- packageStore EntityLinked Service Reference Response 
- The package store linked service reference.
- name string
- The name of the package store
- packageStore EntityLinked Service Reference Response 
- The package store linked service reference.
- name str
- The name of the package store
- package_store_ Entitylinked_ service Reference Response 
- The package store linked service reference.
- name String
- The name of the package store
- packageStore Property MapLinked Service 
- The package store linked service reference.
PipelineExternalComputeScaleProperties, PipelineExternalComputeScalePropertiesArgs          
- NumberOf intExternal Nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- NumberOf intPipeline Nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- TimeTo intLive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
- NumberOf intExternal Nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- NumberOf intPipeline Nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- TimeTo intLive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
- numberOf IntegerExternal Nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- numberOf IntegerPipeline Nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- timeTo IntegerLive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
- numberOf numberExternal Nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- numberOf numberPipeline Nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- timeTo numberLive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
- number_of_ intexternal_ nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- number_of_ intpipeline_ nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- time_to_ intlive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
- numberOf NumberExternal Nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- numberOf NumberPipeline Nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- timeTo NumberLive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
PipelineExternalComputeScalePropertiesResponse, PipelineExternalComputeScalePropertiesResponseArgs            
- NumberOf intExternal Nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- NumberOf intPipeline Nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- TimeTo intLive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
- NumberOf intExternal Nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- NumberOf intPipeline Nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- TimeTo intLive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
- numberOf IntegerExternal Nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- numberOf IntegerPipeline Nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- timeTo IntegerLive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
- numberOf numberExternal Nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- numberOf numberPipeline Nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- timeTo numberLive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
- number_of_ intexternal_ nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- number_of_ intpipeline_ nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- time_to_ intlive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
- numberOf NumberExternal Nodes 
- Number of the the external nodes, which should be greater than 0 and less than 11.
- numberOf NumberPipeline Nodes 
- Number of the pipeline nodes, which should be greater than 0 and less than 11.
- timeTo NumberLive 
- Time to live (in minutes) setting of integration runtime which will execute pipeline and external activity.
SecureString, SecureStringArgs    
- Value string
- Value of secure string.
- Value string
- Value of secure string.
- value String
- Value of secure string.
- value string
- Value of secure string.
- value str
- Value of secure string.
- value String
- Value of secure string.
SecureStringResponse, SecureStringResponseArgs      
- Value string
- Value of secure string.
- Value string
- Value of secure string.
- value String
- Value of secure string.
- value string
- Value of secure string.
- value str
- Value of secure string.
- value String
- Value of secure string.
SelfHostedIntegrationRuntime, SelfHostedIntegrationRuntimeArgs        
- Description string
- Integration runtime description.
- LinkedInfo Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Linked Integration Runtime Key Authorization Azure Native. Data Factory. Inputs. Linked Integration Runtime Rbac Authorization 
- The base definition of a linked integration runtime.
- bool
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- Description string
- Integration runtime description.
- LinkedInfo LinkedIntegration | LinkedRuntime Key Authorization Integration Runtime Rbac Authorization 
- The base definition of a linked integration runtime.
- bool
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- description String
- Integration runtime description.
- linkedInfo LinkedIntegration | LinkedRuntime Key Authorization Integration Runtime Rbac Authorization 
- The base definition of a linked integration runtime.
- Boolean
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- description string
- Integration runtime description.
- linkedInfo LinkedIntegration | LinkedRuntime Key Authorization Integration Runtime Rbac Authorization 
- The base definition of a linked integration runtime.
- boolean
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- description str
- Integration runtime description.
- linked_info LinkedIntegration | LinkedRuntime Key Authorization Integration Runtime Rbac Authorization 
- The base definition of a linked integration runtime.
- bool
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- description String
- Integration runtime description.
- linkedInfo Property Map | Property Map
- The base definition of a linked integration runtime.
- Boolean
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
SelfHostedIntegrationRuntimeResponse, SelfHostedIntegrationRuntimeResponseArgs          
- Description string
- Integration runtime description.
- LinkedInfo Pulumi.Azure | Pulumi.Native. Data Factory. Inputs. Linked Integration Runtime Key Authorization Response Azure Native. Data Factory. Inputs. Linked Integration Runtime Rbac Authorization Response 
- The base definition of a linked integration runtime.
- bool
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- Description string
- Integration runtime description.
- LinkedInfo LinkedIntegration | LinkedRuntime Key Authorization Response Integration Runtime Rbac Authorization Response 
- The base definition of a linked integration runtime.
- bool
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- description String
- Integration runtime description.
- linkedInfo LinkedIntegration | LinkedRuntime Key Authorization Response Integration Runtime Rbac Authorization Response 
- The base definition of a linked integration runtime.
- Boolean
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- description string
- Integration runtime description.
- linkedInfo LinkedIntegration | LinkedRuntime Key Authorization Response Integration Runtime Rbac Authorization Response 
- The base definition of a linked integration runtime.
- boolean
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- description str
- Integration runtime description.
- linked_info LinkedIntegration | LinkedRuntime Key Authorization Response Integration Runtime Rbac Authorization Response 
- The base definition of a linked integration runtime.
- bool
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
- description String
- Integration runtime description.
- linkedInfo Property Map | Property Map
- The base definition of a linked integration runtime.
- Boolean
- An alternative option to ensure interactive authoring function when your self-hosted integration runtime is unable to establish a connection with Azure Relay.
Type, TypeArgs  
- LinkedService Reference 
- LinkedServiceReference
- TypeLinked Service Reference 
- LinkedServiceReference
- LinkedService Reference 
- LinkedServiceReference
- LinkedService Reference 
- LinkedServiceReference
- LINKED_SERVICE_REFERENCE
- LinkedServiceReference
- "LinkedService Reference" 
- LinkedServiceReference
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datafactory:IntegrationRuntime exampleIntegrationRuntime /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataFactory/factories/{factoryName}/integrationRuntimes/{integrationRuntimeName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0