We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a Data Factory Azure-SSIS Integration Runtime.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleFactory = new Azure.DataFactory.Factory("exampleFactory", new Azure.DataFactory.FactoryArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
});
var exampleIntegrationRuntimeSsis = new Azure.DataFactory.IntegrationRuntimeSsis("exampleIntegrationRuntimeSsis", new Azure.DataFactory.IntegrationRuntimeSsisArgs
{
DataFactoryId = exampleFactory.Id,
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
NodeSize = "Standard_D8_v3",
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/datafactory"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleFactory, err := datafactory.NewFactory(ctx, "exampleFactory", &datafactory.FactoryArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
})
if err != nil {
return err
}
_, err = datafactory.NewIntegrationRuntimeSsis(ctx, "exampleIntegrationRuntimeSsis", &datafactory.IntegrationRuntimeSsisArgs{
DataFactoryId: exampleFactory.ID(),
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
NodeSize: pulumi.String("Standard_D8_v3"),
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleFactory = new azure.datafactory.Factory("exampleFactory", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
});
const exampleIntegrationRuntimeSsis = new azure.datafactory.IntegrationRuntimeSsis("exampleIntegrationRuntimeSsis", {
dataFactoryId: exampleFactory.id,
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
nodeSize: "Standard_D8_v3",
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_factory = azure.datafactory.Factory("exampleFactory",
location=example_resource_group.location,
resource_group_name=example_resource_group.name)
example_integration_runtime_ssis = azure.datafactory.IntegrationRuntimeSsis("exampleIntegrationRuntimeSsis",
data_factory_id=example_factory.id,
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
node_size="Standard_D8_v3")
Example coming soon!
Create IntegrationRuntimeSsis Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationRuntimeSsis(name: string, args: IntegrationRuntimeSsisArgs, opts?: CustomResourceOptions);@overload
def IntegrationRuntimeSsis(resource_name: str,
args: IntegrationRuntimeSsisArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationRuntimeSsis(resource_name: str,
opts: Optional[ResourceOptions] = None,
node_size: Optional[str] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
max_parallel_executions_per_node: Optional[int] = None,
description: Optional[str] = None,
edition: Optional[str] = None,
express_custom_setup: Optional[IntegrationRuntimeSsisExpressCustomSetupArgs] = None,
license_type: Optional[str] = None,
catalog_info: Optional[IntegrationRuntimeSsisCatalogInfoArgs] = None,
data_factory_name: Optional[str] = None,
name: Optional[str] = None,
data_factory_id: Optional[str] = None,
number_of_nodes: Optional[int] = None,
package_stores: Optional[Sequence[IntegrationRuntimeSsisPackageStoreArgs]] = None,
proxy: Optional[IntegrationRuntimeSsisProxyArgs] = None,
custom_setup_script: Optional[IntegrationRuntimeSsisCustomSetupScriptArgs] = None,
vnet_integration: Optional[IntegrationRuntimeSsisVnetIntegrationArgs] = None)func NewIntegrationRuntimeSsis(ctx *Context, name string, args IntegrationRuntimeSsisArgs, opts ...ResourceOption) (*IntegrationRuntimeSsis, error)public IntegrationRuntimeSsis(string name, IntegrationRuntimeSsisArgs args, CustomResourceOptions? opts = null)
public IntegrationRuntimeSsis(String name, IntegrationRuntimeSsisArgs args)
public IntegrationRuntimeSsis(String name, IntegrationRuntimeSsisArgs args, CustomResourceOptions options)
type: azure:datafactory:IntegrationRuntimeSsis
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args IntegrationRuntimeSsisArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IntegrationRuntimeSsisArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IntegrationRuntimeSsisArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationRuntimeSsisArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationRuntimeSsisArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var integrationRuntimeSsisResource = new Azure.DataFactory.IntegrationRuntimeSsis("integrationRuntimeSsisResource", new()
{
NodeSize = "string",
ResourceGroupName = "string",
Location = "string",
MaxParallelExecutionsPerNode = 0,
Description = "string",
Edition = "string",
ExpressCustomSetup = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisExpressCustomSetupArgs
{
CommandKeys = new[]
{
new Azure.DataFactory.Inputs.IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs
{
TargetName = "string",
UserName = "string",
KeyVaultPassword = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgs
{
LinkedServiceName = "string",
SecretName = "string",
Parameters =
{
{ "string", "string" },
},
SecretVersion = "string",
},
Password = "string",
},
},
Components = new[]
{
new Azure.DataFactory.Inputs.IntegrationRuntimeSsisExpressCustomSetupComponentArgs
{
Name = "string",
KeyVaultLicense = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs
{
LinkedServiceName = "string",
SecretName = "string",
Parameters =
{
{ "string", "string" },
},
SecretVersion = "string",
},
License = "string",
},
},
Environment =
{
{ "string", "string" },
},
PowershellVersion = "string",
},
LicenseType = "string",
CatalogInfo = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisCatalogInfoArgs
{
ServerEndpoint = "string",
AdministratorLogin = "string",
AdministratorPassword = "string",
DualStandbyPairName = "string",
PricingTier = "string",
},
Name = "string",
DataFactoryId = "string",
NumberOfNodes = 0,
PackageStores = new[]
{
new Azure.DataFactory.Inputs.IntegrationRuntimeSsisPackageStoreArgs
{
LinkedServiceName = "string",
Name = "string",
},
},
Proxy = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisProxyArgs
{
SelfHostedIntegrationRuntimeName = "string",
StagingStorageLinkedServiceName = "string",
Path = "string",
},
CustomSetupScript = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisCustomSetupScriptArgs
{
BlobContainerUri = "string",
SasToken = "string",
},
VnetIntegration = new Azure.DataFactory.Inputs.IntegrationRuntimeSsisVnetIntegrationArgs
{
PublicIps = new[]
{
"string",
},
SubnetId = "string",
SubnetName = "string",
VnetId = "string",
},
});
example, err := datafactory.NewIntegrationRuntimeSsis(ctx, "integrationRuntimeSsisResource", &datafactory.IntegrationRuntimeSsisArgs{
NodeSize: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
MaxParallelExecutionsPerNode: pulumi.Int(0),
Description: pulumi.String("string"),
Edition: pulumi.String("string"),
ExpressCustomSetup: &datafactory.IntegrationRuntimeSsisExpressCustomSetupArgs{
CommandKeys: datafactory.IntegrationRuntimeSsisExpressCustomSetupCommandKeyArray{
&datafactory.IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs{
TargetName: pulumi.String("string"),
UserName: pulumi.String("string"),
KeyVaultPassword: &datafactory.IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgs{
LinkedServiceName: pulumi.String("string"),
SecretName: pulumi.String("string"),
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
SecretVersion: pulumi.String("string"),
},
Password: pulumi.String("string"),
},
},
Components: datafactory.IntegrationRuntimeSsisExpressCustomSetupComponentArray{
&datafactory.IntegrationRuntimeSsisExpressCustomSetupComponentArgs{
Name: pulumi.String("string"),
KeyVaultLicense: &datafactory.IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs{
LinkedServiceName: pulumi.String("string"),
SecretName: pulumi.String("string"),
Parameters: pulumi.StringMap{
"string": pulumi.String("string"),
},
SecretVersion: pulumi.String("string"),
},
License: pulumi.String("string"),
},
},
Environment: pulumi.StringMap{
"string": pulumi.String("string"),
},
PowershellVersion: pulumi.String("string"),
},
LicenseType: pulumi.String("string"),
CatalogInfo: &datafactory.IntegrationRuntimeSsisCatalogInfoArgs{
ServerEndpoint: pulumi.String("string"),
AdministratorLogin: pulumi.String("string"),
AdministratorPassword: pulumi.String("string"),
DualStandbyPairName: pulumi.String("string"),
PricingTier: pulumi.String("string"),
},
Name: pulumi.String("string"),
DataFactoryId: pulumi.String("string"),
NumberOfNodes: pulumi.Int(0),
PackageStores: datafactory.IntegrationRuntimeSsisPackageStoreArray{
&datafactory.IntegrationRuntimeSsisPackageStoreArgs{
LinkedServiceName: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
Proxy: &datafactory.IntegrationRuntimeSsisProxyArgs{
SelfHostedIntegrationRuntimeName: pulumi.String("string"),
StagingStorageLinkedServiceName: pulumi.String("string"),
Path: pulumi.String("string"),
},
CustomSetupScript: &datafactory.IntegrationRuntimeSsisCustomSetupScriptArgs{
BlobContainerUri: pulumi.String("string"),
SasToken: pulumi.String("string"),
},
VnetIntegration: &datafactory.IntegrationRuntimeSsisVnetIntegrationArgs{
PublicIps: pulumi.StringArray{
pulumi.String("string"),
},
SubnetId: pulumi.String("string"),
SubnetName: pulumi.String("string"),
VnetId: pulumi.String("string"),
},
})
var integrationRuntimeSsisResource = new IntegrationRuntimeSsis("integrationRuntimeSsisResource", IntegrationRuntimeSsisArgs.builder()
.nodeSize("string")
.resourceGroupName("string")
.location("string")
.maxParallelExecutionsPerNode(0)
.description("string")
.edition("string")
.expressCustomSetup(IntegrationRuntimeSsisExpressCustomSetupArgs.builder()
.commandKeys(IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs.builder()
.targetName("string")
.userName("string")
.keyVaultPassword(IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgs.builder()
.linkedServiceName("string")
.secretName("string")
.parameters(Map.of("string", "string"))
.secretVersion("string")
.build())
.password("string")
.build())
.components(IntegrationRuntimeSsisExpressCustomSetupComponentArgs.builder()
.name("string")
.keyVaultLicense(IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs.builder()
.linkedServiceName("string")
.secretName("string")
.parameters(Map.of("string", "string"))
.secretVersion("string")
.build())
.license("string")
.build())
.environment(Map.of("string", "string"))
.powershellVersion("string")
.build())
.licenseType("string")
.catalogInfo(IntegrationRuntimeSsisCatalogInfoArgs.builder()
.serverEndpoint("string")
.administratorLogin("string")
.administratorPassword("string")
.dualStandbyPairName("string")
.pricingTier("string")
.build())
.name("string")
.dataFactoryId("string")
.numberOfNodes(0)
.packageStores(IntegrationRuntimeSsisPackageStoreArgs.builder()
.linkedServiceName("string")
.name("string")
.build())
.proxy(IntegrationRuntimeSsisProxyArgs.builder()
.selfHostedIntegrationRuntimeName("string")
.stagingStorageLinkedServiceName("string")
.path("string")
.build())
.customSetupScript(IntegrationRuntimeSsisCustomSetupScriptArgs.builder()
.blobContainerUri("string")
.sasToken("string")
.build())
.vnetIntegration(IntegrationRuntimeSsisVnetIntegrationArgs.builder()
.publicIps("string")
.subnetId("string")
.subnetName("string")
.vnetId("string")
.build())
.build());
integration_runtime_ssis_resource = azure.datafactory.IntegrationRuntimeSsis("integrationRuntimeSsisResource",
node_size="string",
resource_group_name="string",
location="string",
max_parallel_executions_per_node=0,
description="string",
edition="string",
express_custom_setup={
"command_keys": [{
"target_name": "string",
"user_name": "string",
"key_vault_password": {
"linked_service_name": "string",
"secret_name": "string",
"parameters": {
"string": "string",
},
"secret_version": "string",
},
"password": "string",
}],
"components": [{
"name": "string",
"key_vault_license": {
"linked_service_name": "string",
"secret_name": "string",
"parameters": {
"string": "string",
},
"secret_version": "string",
},
"license": "string",
}],
"environment": {
"string": "string",
},
"powershell_version": "string",
},
license_type="string",
catalog_info={
"server_endpoint": "string",
"administrator_login": "string",
"administrator_password": "string",
"dual_standby_pair_name": "string",
"pricing_tier": "string",
},
name="string",
data_factory_id="string",
number_of_nodes=0,
package_stores=[{
"linked_service_name": "string",
"name": "string",
}],
proxy={
"self_hosted_integration_runtime_name": "string",
"staging_storage_linked_service_name": "string",
"path": "string",
},
custom_setup_script={
"blob_container_uri": "string",
"sas_token": "string",
},
vnet_integration={
"public_ips": ["string"],
"subnet_id": "string",
"subnet_name": "string",
"vnet_id": "string",
})
const integrationRuntimeSsisResource = new azure.datafactory.IntegrationRuntimeSsis("integrationRuntimeSsisResource", {
nodeSize: "string",
resourceGroupName: "string",
location: "string",
maxParallelExecutionsPerNode: 0,
description: "string",
edition: "string",
expressCustomSetup: {
commandKeys: [{
targetName: "string",
userName: "string",
keyVaultPassword: {
linkedServiceName: "string",
secretName: "string",
parameters: {
string: "string",
},
secretVersion: "string",
},
password: "string",
}],
components: [{
name: "string",
keyVaultLicense: {
linkedServiceName: "string",
secretName: "string",
parameters: {
string: "string",
},
secretVersion: "string",
},
license: "string",
}],
environment: {
string: "string",
},
powershellVersion: "string",
},
licenseType: "string",
catalogInfo: {
serverEndpoint: "string",
administratorLogin: "string",
administratorPassword: "string",
dualStandbyPairName: "string",
pricingTier: "string",
},
name: "string",
dataFactoryId: "string",
numberOfNodes: 0,
packageStores: [{
linkedServiceName: "string",
name: "string",
}],
proxy: {
selfHostedIntegrationRuntimeName: "string",
stagingStorageLinkedServiceName: "string",
path: "string",
},
customSetupScript: {
blobContainerUri: "string",
sasToken: "string",
},
vnetIntegration: {
publicIps: ["string"],
subnetId: "string",
subnetName: "string",
vnetId: "string",
},
});
type: azure:datafactory:IntegrationRuntimeSsis
properties:
catalogInfo:
administratorLogin: string
administratorPassword: string
dualStandbyPairName: string
pricingTier: string
serverEndpoint: string
customSetupScript:
blobContainerUri: string
sasToken: string
dataFactoryId: string
description: string
edition: string
expressCustomSetup:
commandKeys:
- keyVaultPassword:
linkedServiceName: string
parameters:
string: string
secretName: string
secretVersion: string
password: string
targetName: string
userName: string
components:
- keyVaultLicense:
linkedServiceName: string
parameters:
string: string
secretName: string
secretVersion: string
license: string
name: string
environment:
string: string
powershellVersion: string
licenseType: string
location: string
maxParallelExecutionsPerNode: 0
name: string
nodeSize: string
numberOfNodes: 0
packageStores:
- linkedServiceName: string
name: string
proxy:
path: string
selfHostedIntegrationRuntimeName: string
stagingStorageLinkedServiceName: string
resourceGroupName: string
vnetIntegration:
publicIps:
- string
subnetId: string
subnetName: string
vnetId: string
IntegrationRuntimeSsis Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IntegrationRuntimeSsis resource accepts the following input properties:
- Node
Size string - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - Resource
Group stringName - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- Catalog
Info IntegrationRuntime Ssis Catalog Info - A
catalog_infoblock as defined below. - Custom
Setup IntegrationScript Runtime Ssis Custom Setup Script - A
custom_setup_scriptblock as defined below. - Data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- Data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- Description string
- Integration runtime description.
- Edition string
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - Express
Custom IntegrationSetup Runtime Ssis Express Custom Setup - An
express_custom_setupblock as defined below. - License
Type string - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Max
Parallel intExecutions Per Node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - Name string
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- Number
Of intNodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - Package
Stores List<IntegrationRuntime Ssis Package Store> - One or more
package_storeblock as defined below. - Proxy
Integration
Runtime Ssis Proxy - A
proxyblock as defined below. - Vnet
Integration IntegrationRuntime Ssis Vnet Integration - A
vnet_integrationblock as defined below.
- Node
Size string - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - Resource
Group stringName - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- Catalog
Info IntegrationRuntime Ssis Catalog Info Args - A
catalog_infoblock as defined below. - Custom
Setup IntegrationScript Runtime Ssis Custom Setup Script Args - A
custom_setup_scriptblock as defined below. - Data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- Data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- Description string
- Integration runtime description.
- Edition string
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - Express
Custom IntegrationSetup Runtime Ssis Express Custom Setup Args - An
express_custom_setupblock as defined below. - License
Type string - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Max
Parallel intExecutions Per Node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - Name string
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- Number
Of intNodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - Package
Stores []IntegrationRuntime Ssis Package Store Args - One or more
package_storeblock as defined below. - Proxy
Integration
Runtime Ssis Proxy Args - A
proxyblock as defined below. - Vnet
Integration IntegrationRuntime Ssis Vnet Integration Args - A
vnet_integrationblock as defined below.
- node
Size String - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - resource
Group StringName - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- catalog
Info IntegrationRuntime Ssis Catalog Info - A
catalog_infoblock as defined below. - custom
Setup IntegrationScript Runtime Ssis Custom Setup Script - A
custom_setup_scriptblock as defined below. - data
Factory StringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory StringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description String
- Integration runtime description.
- edition String
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - express
Custom IntegrationSetup Runtime Ssis Express Custom Setup - An
express_custom_setupblock as defined below. - license
Type String - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max
Parallel IntegerExecutions Per Node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - name String
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- number
Of IntegerNodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - package
Stores List<IntegrationRuntime Ssis Package Store> - One or more
package_storeblock as defined below. - proxy
Integration
Runtime Ssis Proxy - A
proxyblock as defined below. - vnet
Integration IntegrationRuntime Ssis Vnet Integration - A
vnet_integrationblock as defined below.
- node
Size string - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - resource
Group stringName - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- catalog
Info IntegrationRuntime Ssis Catalog Info - A
catalog_infoblock as defined below. - custom
Setup IntegrationScript Runtime Ssis Custom Setup Script - A
custom_setup_scriptblock as defined below. - data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description string
- Integration runtime description.
- edition string
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - express
Custom IntegrationSetup Runtime Ssis Express Custom Setup - An
express_custom_setupblock as defined below. - license
Type string - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max
Parallel numberExecutions Per Node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - name string
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- number
Of numberNodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - package
Stores IntegrationRuntime Ssis Package Store[] - One or more
package_storeblock as defined below. - proxy
Integration
Runtime Ssis Proxy - A
proxyblock as defined below. - vnet
Integration IntegrationRuntime Ssis Vnet Integration - A
vnet_integrationblock as defined below.
- node_
size str - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - resource_
group_ strname - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- catalog_
info IntegrationRuntime Ssis Catalog Info Args - A
catalog_infoblock as defined below. - custom_
setup_ Integrationscript Runtime Ssis Custom Setup Script Args - A
custom_setup_scriptblock as defined below. - data_
factory_ strid - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data_
factory_ strname - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description str
- Integration runtime description.
- edition str
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - express_
custom_ Integrationsetup Runtime Ssis Express Custom Setup Args - An
express_custom_setupblock as defined below. - license_
type str - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max_
parallel_ intexecutions_ per_ node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - name str
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- number_
of_ intnodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - package_
stores Sequence[IntegrationRuntime Ssis Package Store Args] - One or more
package_storeblock as defined below. - proxy
Integration
Runtime Ssis Proxy Args - A
proxyblock as defined below. - vnet_
integration IntegrationRuntime Ssis Vnet Integration Args - A
vnet_integrationblock as defined below.
- node
Size String - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - resource
Group StringName - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- catalog
Info Property Map - A
catalog_infoblock as defined below. - custom
Setup Property MapScript - A
custom_setup_scriptblock as defined below. - data
Factory StringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory StringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description String
- Integration runtime description.
- edition String
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - express
Custom Property MapSetup - An
express_custom_setupblock as defined below. - license
Type String - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max
Parallel NumberExecutions Per Node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - name String
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- number
Of NumberNodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - package
Stores List<Property Map> - One or more
package_storeblock as defined below. - proxy Property Map
- A
proxyblock as defined below. - vnet
Integration Property Map - A
vnet_integrationblock as defined below.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationRuntimeSsis resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing IntegrationRuntimeSsis Resource
Get an existing IntegrationRuntimeSsis resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IntegrationRuntimeSsisState, opts?: CustomResourceOptions): IntegrationRuntimeSsis@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
catalog_info: Optional[IntegrationRuntimeSsisCatalogInfoArgs] = None,
custom_setup_script: Optional[IntegrationRuntimeSsisCustomSetupScriptArgs] = None,
data_factory_id: Optional[str] = None,
data_factory_name: Optional[str] = None,
description: Optional[str] = None,
edition: Optional[str] = None,
express_custom_setup: Optional[IntegrationRuntimeSsisExpressCustomSetupArgs] = None,
license_type: Optional[str] = None,
location: Optional[str] = None,
max_parallel_executions_per_node: Optional[int] = None,
name: Optional[str] = None,
node_size: Optional[str] = None,
number_of_nodes: Optional[int] = None,
package_stores: Optional[Sequence[IntegrationRuntimeSsisPackageStoreArgs]] = None,
proxy: Optional[IntegrationRuntimeSsisProxyArgs] = None,
resource_group_name: Optional[str] = None,
vnet_integration: Optional[IntegrationRuntimeSsisVnetIntegrationArgs] = None) -> IntegrationRuntimeSsisfunc GetIntegrationRuntimeSsis(ctx *Context, name string, id IDInput, state *IntegrationRuntimeSsisState, opts ...ResourceOption) (*IntegrationRuntimeSsis, error)public static IntegrationRuntimeSsis Get(string name, Input<string> id, IntegrationRuntimeSsisState? state, CustomResourceOptions? opts = null)public static IntegrationRuntimeSsis get(String name, Output<String> id, IntegrationRuntimeSsisState state, CustomResourceOptions options)resources: _: type: azure:datafactory:IntegrationRuntimeSsis get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Catalog
Info IntegrationRuntime Ssis Catalog Info - A
catalog_infoblock as defined below. - Custom
Setup IntegrationScript Runtime Ssis Custom Setup Script - A
custom_setup_scriptblock as defined below. - Data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- Data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- Description string
- Integration runtime description.
- Edition string
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - Express
Custom IntegrationSetup Runtime Ssis Express Custom Setup - An
express_custom_setupblock as defined below. - License
Type string - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Max
Parallel intExecutions Per Node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - Name string
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- Node
Size string - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - Number
Of intNodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - Package
Stores List<IntegrationRuntime Ssis Package Store> - One or more
package_storeblock as defined below. - Proxy
Integration
Runtime Ssis Proxy - A
proxyblock as defined below. - Resource
Group stringName - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- Vnet
Integration IntegrationRuntime Ssis Vnet Integration - A
vnet_integrationblock as defined below.
- Catalog
Info IntegrationRuntime Ssis Catalog Info Args - A
catalog_infoblock as defined below. - Custom
Setup IntegrationScript Runtime Ssis Custom Setup Script Args - A
custom_setup_scriptblock as defined below. - Data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- Data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- Description string
- Integration runtime description.
- Edition string
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - Express
Custom IntegrationSetup Runtime Ssis Express Custom Setup Args - An
express_custom_setupblock as defined below. - License
Type string - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - Location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Max
Parallel intExecutions Per Node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - Name string
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- Node
Size string - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - Number
Of intNodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - Package
Stores []IntegrationRuntime Ssis Package Store Args - One or more
package_storeblock as defined below. - Proxy
Integration
Runtime Ssis Proxy Args - A
proxyblock as defined below. - Resource
Group stringName - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- Vnet
Integration IntegrationRuntime Ssis Vnet Integration Args - A
vnet_integrationblock as defined below.
- catalog
Info IntegrationRuntime Ssis Catalog Info - A
catalog_infoblock as defined below. - custom
Setup IntegrationScript Runtime Ssis Custom Setup Script - A
custom_setup_scriptblock as defined below. - data
Factory StringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory StringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description String
- Integration runtime description.
- edition String
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - express
Custom IntegrationSetup Runtime Ssis Express Custom Setup - An
express_custom_setupblock as defined below. - license
Type String - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max
Parallel IntegerExecutions Per Node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - name String
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- node
Size String - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - number
Of IntegerNodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - package
Stores List<IntegrationRuntime Ssis Package Store> - One or more
package_storeblock as defined below. - proxy
Integration
Runtime Ssis Proxy - A
proxyblock as defined below. - resource
Group StringName - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- vnet
Integration IntegrationRuntime Ssis Vnet Integration - A
vnet_integrationblock as defined below.
- catalog
Info IntegrationRuntime Ssis Catalog Info - A
catalog_infoblock as defined below. - custom
Setup IntegrationScript Runtime Ssis Custom Setup Script - A
custom_setup_scriptblock as defined below. - data
Factory stringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory stringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description string
- Integration runtime description.
- edition string
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - express
Custom IntegrationSetup Runtime Ssis Express Custom Setup - An
express_custom_setupblock as defined below. - license
Type string - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - location string
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max
Parallel numberExecutions Per Node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - name string
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- node
Size string - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - number
Of numberNodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - package
Stores IntegrationRuntime Ssis Package Store[] - One or more
package_storeblock as defined below. - proxy
Integration
Runtime Ssis Proxy - A
proxyblock as defined below. - resource
Group stringName - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- vnet
Integration IntegrationRuntime Ssis Vnet Integration - A
vnet_integrationblock as defined below.
- catalog_
info IntegrationRuntime Ssis Catalog Info Args - A
catalog_infoblock as defined below. - custom_
setup_ Integrationscript Runtime Ssis Custom Setup Script Args - A
custom_setup_scriptblock as defined below. - data_
factory_ strid - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data_
factory_ strname - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description str
- Integration runtime description.
- edition str
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - express_
custom_ Integrationsetup Runtime Ssis Express Custom Setup Args - An
express_custom_setupblock as defined below. - license_
type str - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - location str
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max_
parallel_ intexecutions_ per_ node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - name str
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- node_
size str - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - number_
of_ intnodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - package_
stores Sequence[IntegrationRuntime Ssis Package Store Args] - One or more
package_storeblock as defined below. - proxy
Integration
Runtime Ssis Proxy Args - A
proxyblock as defined below. - resource_
group_ strname - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- vnet_
integration IntegrationRuntime Ssis Vnet Integration Args - A
vnet_integrationblock as defined below.
- catalog
Info Property Map - A
catalog_infoblock as defined below. - custom
Setup Property MapScript - A
custom_setup_scriptblock as defined below. - data
Factory StringId - The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.
- data
Factory StringName - The Data Factory name in which to associate the Linked Service with. Changing this forces a new resource.
- description String
- Integration runtime description.
- edition String
- The Azure-SSIS Integration Runtime edition. Valid values are
StandardandEnterprise. Defaults toStandard. - express
Custom Property MapSetup - An
express_custom_setupblock as defined below. - license
Type String - The type of the license that is used. Valid values are
LicenseIncludedandBasePrice. Defaults toLicenseIncluded. - location String
- Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- max
Parallel NumberExecutions Per Node - Defines the maximum parallel executions per node. Defaults to
1. Max is16. - name String
- Specifies the name of the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.
- node
Size String - The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are:
Standard_D2_v3,Standard_D4_v3,Standard_D8_v3,Standard_D16_v3,Standard_D32_v3,Standard_D64_v3,Standard_E2_v3,Standard_E4_v3,Standard_E8_v3,Standard_E16_v3,Standard_E32_v3,Standard_E64_v3,Standard_D1_v2,Standard_D2_v2,Standard_D3_v2,Standard_D4_v2,Standard_A4_v2andStandard_A8_v2 - number
Of NumberNodes - Number of nodes for the Azure-SSIS Integration Runtime. Max is
10. Defaults to1. - package
Stores List<Property Map> - One or more
package_storeblock as defined below. - proxy Property Map
- A
proxyblock as defined below. - resource
Group StringName - The name of the resource group in which to create the Azure-SSIS Integration Runtime. Changing this forces a new resource to be created.
- vnet
Integration Property Map - A
vnet_integrationblock as defined below.
Supporting Types
IntegrationRuntimeSsisCatalogInfo, IntegrationRuntimeSsisCatalogInfoArgs
- Server
Endpoint string - The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
- Administrator
Login string - Administrator login name for the SQL Server.
- Administrator
Password string - Administrator login password for the SQL Server.
- Dual
Standby stringPair Name - The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
- Pricing
Tier string - Pricing tier for the database that will be created for the SSIS catalog. Valid values are:
Basic,S0,S1,S2,S3,S4,S6,S7,S9,S12,P1,P2,P4,P6,P11,P15,GP_S_Gen5_1,GP_S_Gen5_2,GP_S_Gen5_4,GP_S_Gen5_6,GP_S_Gen5_8,GP_S_Gen5_10,GP_S_Gen5_12,GP_S_Gen5_14,GP_S_Gen5_16,GP_S_Gen5_18,GP_S_Gen5_20,GP_S_Gen5_24,GP_S_Gen5_32,GP_S_Gen5_40,GP_Gen5_2,GP_Gen5_4,GP_Gen5_6,GP_Gen5_8,GP_Gen5_10,GP_Gen5_12,GP_Gen5_14,GP_Gen5_16,GP_Gen5_18,GP_Gen5_20,GP_Gen5_24,GP_Gen5_32,GP_Gen5_40,GP_Gen5_80,BC_Gen5_2,BC_Gen5_4,BC_Gen5_6,BC_Gen5_8,BC_Gen5_10,BC_Gen5_12,BC_Gen5_14,BC_Gen5_16,BC_Gen5_18,BC_Gen5_20,BC_Gen5_24,BC_Gen5_32,BC_Gen5_40,BC_Gen5_80,HS_Gen5_2,HS_Gen5_4,HS_Gen5_6,HS_Gen5_8,HS_Gen5_10,HS_Gen5_12,HS_Gen5_14,HS_Gen5_16,HS_Gen5_18,HS_Gen5_20,HS_Gen5_24,HS_Gen5_32,HS_Gen5_40andHS_Gen5_80.
- Server
Endpoint string - The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
- Administrator
Login string - Administrator login name for the SQL Server.
- Administrator
Password string - Administrator login password for the SQL Server.
- Dual
Standby stringPair Name - The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
- Pricing
Tier string - Pricing tier for the database that will be created for the SSIS catalog. Valid values are:
Basic,S0,S1,S2,S3,S4,S6,S7,S9,S12,P1,P2,P4,P6,P11,P15,GP_S_Gen5_1,GP_S_Gen5_2,GP_S_Gen5_4,GP_S_Gen5_6,GP_S_Gen5_8,GP_S_Gen5_10,GP_S_Gen5_12,GP_S_Gen5_14,GP_S_Gen5_16,GP_S_Gen5_18,GP_S_Gen5_20,GP_S_Gen5_24,GP_S_Gen5_32,GP_S_Gen5_40,GP_Gen5_2,GP_Gen5_4,GP_Gen5_6,GP_Gen5_8,GP_Gen5_10,GP_Gen5_12,GP_Gen5_14,GP_Gen5_16,GP_Gen5_18,GP_Gen5_20,GP_Gen5_24,GP_Gen5_32,GP_Gen5_40,GP_Gen5_80,BC_Gen5_2,BC_Gen5_4,BC_Gen5_6,BC_Gen5_8,BC_Gen5_10,BC_Gen5_12,BC_Gen5_14,BC_Gen5_16,BC_Gen5_18,BC_Gen5_20,BC_Gen5_24,BC_Gen5_32,BC_Gen5_40,BC_Gen5_80,HS_Gen5_2,HS_Gen5_4,HS_Gen5_6,HS_Gen5_8,HS_Gen5_10,HS_Gen5_12,HS_Gen5_14,HS_Gen5_16,HS_Gen5_18,HS_Gen5_20,HS_Gen5_24,HS_Gen5_32,HS_Gen5_40andHS_Gen5_80.
- server
Endpoint String - The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
- administrator
Login String - Administrator login name for the SQL Server.
- administrator
Password String - Administrator login password for the SQL Server.
- dual
Standby StringPair Name - The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
- pricing
Tier String - Pricing tier for the database that will be created for the SSIS catalog. Valid values are:
Basic,S0,S1,S2,S3,S4,S6,S7,S9,S12,P1,P2,P4,P6,P11,P15,GP_S_Gen5_1,GP_S_Gen5_2,GP_S_Gen5_4,GP_S_Gen5_6,GP_S_Gen5_8,GP_S_Gen5_10,GP_S_Gen5_12,GP_S_Gen5_14,GP_S_Gen5_16,GP_S_Gen5_18,GP_S_Gen5_20,GP_S_Gen5_24,GP_S_Gen5_32,GP_S_Gen5_40,GP_Gen5_2,GP_Gen5_4,GP_Gen5_6,GP_Gen5_8,GP_Gen5_10,GP_Gen5_12,GP_Gen5_14,GP_Gen5_16,GP_Gen5_18,GP_Gen5_20,GP_Gen5_24,GP_Gen5_32,GP_Gen5_40,GP_Gen5_80,BC_Gen5_2,BC_Gen5_4,BC_Gen5_6,BC_Gen5_8,BC_Gen5_10,BC_Gen5_12,BC_Gen5_14,BC_Gen5_16,BC_Gen5_18,BC_Gen5_20,BC_Gen5_24,BC_Gen5_32,BC_Gen5_40,BC_Gen5_80,HS_Gen5_2,HS_Gen5_4,HS_Gen5_6,HS_Gen5_8,HS_Gen5_10,HS_Gen5_12,HS_Gen5_14,HS_Gen5_16,HS_Gen5_18,HS_Gen5_20,HS_Gen5_24,HS_Gen5_32,HS_Gen5_40andHS_Gen5_80.
- server
Endpoint string - The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
- administrator
Login string - Administrator login name for the SQL Server.
- administrator
Password string - Administrator login password for the SQL Server.
- dual
Standby stringPair Name - The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
- pricing
Tier string - Pricing tier for the database that will be created for the SSIS catalog. Valid values are:
Basic,S0,S1,S2,S3,S4,S6,S7,S9,S12,P1,P2,P4,P6,P11,P15,GP_S_Gen5_1,GP_S_Gen5_2,GP_S_Gen5_4,GP_S_Gen5_6,GP_S_Gen5_8,GP_S_Gen5_10,GP_S_Gen5_12,GP_S_Gen5_14,GP_S_Gen5_16,GP_S_Gen5_18,GP_S_Gen5_20,GP_S_Gen5_24,GP_S_Gen5_32,GP_S_Gen5_40,GP_Gen5_2,GP_Gen5_4,GP_Gen5_6,GP_Gen5_8,GP_Gen5_10,GP_Gen5_12,GP_Gen5_14,GP_Gen5_16,GP_Gen5_18,GP_Gen5_20,GP_Gen5_24,GP_Gen5_32,GP_Gen5_40,GP_Gen5_80,BC_Gen5_2,BC_Gen5_4,BC_Gen5_6,BC_Gen5_8,BC_Gen5_10,BC_Gen5_12,BC_Gen5_14,BC_Gen5_16,BC_Gen5_18,BC_Gen5_20,BC_Gen5_24,BC_Gen5_32,BC_Gen5_40,BC_Gen5_80,HS_Gen5_2,HS_Gen5_4,HS_Gen5_6,HS_Gen5_8,HS_Gen5_10,HS_Gen5_12,HS_Gen5_14,HS_Gen5_16,HS_Gen5_18,HS_Gen5_20,HS_Gen5_24,HS_Gen5_32,HS_Gen5_40andHS_Gen5_80.
- server_
endpoint str - The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
- administrator_
login str - Administrator login name for the SQL Server.
- administrator_
password str - Administrator login password for the SQL Server.
- dual_
standby_ strpair_ name - The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
- pricing_
tier str - Pricing tier for the database that will be created for the SSIS catalog. Valid values are:
Basic,S0,S1,S2,S3,S4,S6,S7,S9,S12,P1,P2,P4,P6,P11,P15,GP_S_Gen5_1,GP_S_Gen5_2,GP_S_Gen5_4,GP_S_Gen5_6,GP_S_Gen5_8,GP_S_Gen5_10,GP_S_Gen5_12,GP_S_Gen5_14,GP_S_Gen5_16,GP_S_Gen5_18,GP_S_Gen5_20,GP_S_Gen5_24,GP_S_Gen5_32,GP_S_Gen5_40,GP_Gen5_2,GP_Gen5_4,GP_Gen5_6,GP_Gen5_8,GP_Gen5_10,GP_Gen5_12,GP_Gen5_14,GP_Gen5_16,GP_Gen5_18,GP_Gen5_20,GP_Gen5_24,GP_Gen5_32,GP_Gen5_40,GP_Gen5_80,BC_Gen5_2,BC_Gen5_4,BC_Gen5_6,BC_Gen5_8,BC_Gen5_10,BC_Gen5_12,BC_Gen5_14,BC_Gen5_16,BC_Gen5_18,BC_Gen5_20,BC_Gen5_24,BC_Gen5_32,BC_Gen5_40,BC_Gen5_80,HS_Gen5_2,HS_Gen5_4,HS_Gen5_6,HS_Gen5_8,HS_Gen5_10,HS_Gen5_12,HS_Gen5_14,HS_Gen5_16,HS_Gen5_18,HS_Gen5_20,HS_Gen5_24,HS_Gen5_32,HS_Gen5_40andHS_Gen5_80.
- server
Endpoint String - The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.
- administrator
Login String - Administrator login name for the SQL Server.
- administrator
Password String - Administrator login password for the SQL Server.
- dual
Standby StringPair Name - The dual standby Azure-SSIS Integration Runtime pair with SSISDB failover.
- pricing
Tier String - Pricing tier for the database that will be created for the SSIS catalog. Valid values are:
Basic,S0,S1,S2,S3,S4,S6,S7,S9,S12,P1,P2,P4,P6,P11,P15,GP_S_Gen5_1,GP_S_Gen5_2,GP_S_Gen5_4,GP_S_Gen5_6,GP_S_Gen5_8,GP_S_Gen5_10,GP_S_Gen5_12,GP_S_Gen5_14,GP_S_Gen5_16,GP_S_Gen5_18,GP_S_Gen5_20,GP_S_Gen5_24,GP_S_Gen5_32,GP_S_Gen5_40,GP_Gen5_2,GP_Gen5_4,GP_Gen5_6,GP_Gen5_8,GP_Gen5_10,GP_Gen5_12,GP_Gen5_14,GP_Gen5_16,GP_Gen5_18,GP_Gen5_20,GP_Gen5_24,GP_Gen5_32,GP_Gen5_40,GP_Gen5_80,BC_Gen5_2,BC_Gen5_4,BC_Gen5_6,BC_Gen5_8,BC_Gen5_10,BC_Gen5_12,BC_Gen5_14,BC_Gen5_16,BC_Gen5_18,BC_Gen5_20,BC_Gen5_24,BC_Gen5_32,BC_Gen5_40,BC_Gen5_80,HS_Gen5_2,HS_Gen5_4,HS_Gen5_6,HS_Gen5_8,HS_Gen5_10,HS_Gen5_12,HS_Gen5_14,HS_Gen5_16,HS_Gen5_18,HS_Gen5_20,HS_Gen5_24,HS_Gen5_32,HS_Gen5_40andHS_Gen5_80.
IntegrationRuntimeSsisCustomSetupScript, IntegrationRuntimeSsisCustomSetupScriptArgs
- Blob
Container stringUri - The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- Sas
Token string - A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- Blob
Container stringUri - The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- Sas
Token string - A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- blob
Container StringUri - The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- sas
Token String - A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- blob
Container stringUri - The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- sas
Token string - A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- blob_
container_ struri - The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- sas_
token str - A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- blob
Container StringUri - The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
- sas
Token String - A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.
IntegrationRuntimeSsisExpressCustomSetup, IntegrationRuntimeSsisExpressCustomSetupArgs
- Command
Keys List<IntegrationRuntime Ssis Express Custom Setup Command Key> - One or more
command_keyblocks as defined below. - Components
List<Integration
Runtime Ssis Express Custom Setup Component> - One or more
componentblocks as defined below. - Environment Dictionary<string, string>
- The Environment Variables for the Azure-SSIS Integration Runtime.
- Powershell
Version string - The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
- Command
Keys []IntegrationRuntime Ssis Express Custom Setup Command Key - One or more
command_keyblocks as defined below. - Components
[]Integration
Runtime Ssis Express Custom Setup Component - One or more
componentblocks as defined below. - Environment map[string]string
- The Environment Variables for the Azure-SSIS Integration Runtime.
- Powershell
Version string - The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
- command
Keys List<IntegrationRuntime Ssis Express Custom Setup Command Key> - One or more
command_keyblocks as defined below. - components
List<Integration
Runtime Ssis Express Custom Setup Component> - One or more
componentblocks as defined below. - environment Map<String,String>
- The Environment Variables for the Azure-SSIS Integration Runtime.
- powershell
Version String - The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
- command
Keys IntegrationRuntime Ssis Express Custom Setup Command Key[] - One or more
command_keyblocks as defined below. - components
Integration
Runtime Ssis Express Custom Setup Component[] - One or more
componentblocks as defined below. - environment {[key: string]: string}
- The Environment Variables for the Azure-SSIS Integration Runtime.
- powershell
Version string - The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
- command_
keys Sequence[IntegrationRuntime Ssis Express Custom Setup Command Key] - One or more
command_keyblocks as defined below. - components
Sequence[Integration
Runtime Ssis Express Custom Setup Component] - One or more
componentblocks as defined below. - environment Mapping[str, str]
- The Environment Variables for the Azure-SSIS Integration Runtime.
- powershell_
version str - The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
- command
Keys List<Property Map> - One or more
command_keyblocks as defined below. - components List<Property Map>
- One or more
componentblocks as defined below. - environment Map<String>
- The Environment Variables for the Azure-SSIS Integration Runtime.
- powershell
Version String - The version of Azure Powershell installed for the Azure-SSIS Integration Runtime.
IntegrationRuntimeSsisExpressCustomSetupCommandKey, IntegrationRuntimeSsisExpressCustomSetupCommandKeyArgs
- Target
Name string - The target computer or domain name.
- User
Name string - The username for the target device.
- Key
Vault IntegrationPassword Runtime Ssis Express Custom Setup Command Key Key Vault Password - A
key_vault_secret_referenceblock as defined below. - Password string
- The password for the target device.
- Target
Name string - The target computer or domain name.
- User
Name string - The username for the target device.
- Key
Vault IntegrationPassword Runtime Ssis Express Custom Setup Command Key Key Vault Password - A
key_vault_secret_referenceblock as defined below. - Password string
- The password for the target device.
- target
Name String - The target computer or domain name.
- user
Name String - The username for the target device.
- key
Vault IntegrationPassword Runtime Ssis Express Custom Setup Command Key Key Vault Password - A
key_vault_secret_referenceblock as defined below. - password String
- The password for the target device.
- target
Name string - The target computer or domain name.
- user
Name string - The username for the target device.
- key
Vault IntegrationPassword Runtime Ssis Express Custom Setup Command Key Key Vault Password - A
key_vault_secret_referenceblock as defined below. - password string
- The password for the target device.
- target_
name str - The target computer or domain name.
- user_
name str - The username for the target device.
- key_
vault_ Integrationpassword Runtime Ssis Express Custom Setup Command Key Key Vault Password - A
key_vault_secret_referenceblock as defined below. - password str
- The password for the target device.
- target
Name String - The target computer or domain name.
- user
Name String - The username for the target device.
- key
Vault Property MapPassword - A
key_vault_secret_referenceblock as defined below. - password String
- The password for the target device.
IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPassword, IntegrationRuntimeSsisExpressCustomSetupCommandKeyKeyVaultPasswordArgs
- Linked
Service stringName - Specifies the name of an existing Key Vault Data Factory Linked Service.
- Secret
Name string - Specifies the secret name in Azure Key Vault.
- Parameters Dictionary<string, string>
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- Secret
Version string - Specifies the secret version in Azure Key Vault.
- Linked
Service stringName - Specifies the name of an existing Key Vault Data Factory Linked Service.
- Secret
Name string - Specifies the secret name in Azure Key Vault.
- Parameters map[string]string
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- Secret
Version string - Specifies the secret version in Azure Key Vault.
- linked
Service StringName - Specifies the name of an existing Key Vault Data Factory Linked Service.
- secret
Name String - Specifies the secret name in Azure Key Vault.
- parameters Map<String,String>
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- secret
Version String - Specifies the secret version in Azure Key Vault.
- linked
Service stringName - Specifies the name of an existing Key Vault Data Factory Linked Service.
- secret
Name string - Specifies the secret name in Azure Key Vault.
- parameters {[key: string]: string}
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- secret
Version string - Specifies the secret version in Azure Key Vault.
- linked_
service_ strname - Specifies the name of an existing Key Vault Data Factory Linked Service.
- secret_
name str - Specifies the secret name in Azure Key Vault.
- parameters Mapping[str, str]
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- secret_
version str - Specifies the secret version in Azure Key Vault.
- linked
Service StringName - Specifies the name of an existing Key Vault Data Factory Linked Service.
- secret
Name String - Specifies the secret name in Azure Key Vault.
- parameters Map<String>
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- secret
Version String - Specifies the secret version in Azure Key Vault.
IntegrationRuntimeSsisExpressCustomSetupComponent, IntegrationRuntimeSsisExpressCustomSetupComponentArgs
- Name string
- The Component Name installed for the Azure-SSIS Integration Runtime.
- Key
Vault IntegrationLicense Runtime Ssis Express Custom Setup Component Key Vault License - A
key_vault_secret_referenceblock as defined below. - License string
- The license used for the Component.
- Name string
- The Component Name installed for the Azure-SSIS Integration Runtime.
- Key
Vault IntegrationLicense Runtime Ssis Express Custom Setup Component Key Vault License - A
key_vault_secret_referenceblock as defined below. - License string
- The license used for the Component.
- name String
- The Component Name installed for the Azure-SSIS Integration Runtime.
- key
Vault IntegrationLicense Runtime Ssis Express Custom Setup Component Key Vault License - A
key_vault_secret_referenceblock as defined below. - license String
- The license used for the Component.
- name string
- The Component Name installed for the Azure-SSIS Integration Runtime.
- key
Vault IntegrationLicense Runtime Ssis Express Custom Setup Component Key Vault License - A
key_vault_secret_referenceblock as defined below. - license string
- The license used for the Component.
- name str
- The Component Name installed for the Azure-SSIS Integration Runtime.
- key_
vault_ Integrationlicense Runtime Ssis Express Custom Setup Component Key Vault License - A
key_vault_secret_referenceblock as defined below. - license str
- The license used for the Component.
- name String
- The Component Name installed for the Azure-SSIS Integration Runtime.
- key
Vault Property MapLicense - A
key_vault_secret_referenceblock as defined below. - license String
- The license used for the Component.
IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicense, IntegrationRuntimeSsisExpressCustomSetupComponentKeyVaultLicenseArgs
- Linked
Service stringName - Specifies the name of an existing Key Vault Data Factory Linked Service.
- Secret
Name string - Specifies the secret name in Azure Key Vault.
- Parameters Dictionary<string, string>
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- Secret
Version string - Specifies the secret version in Azure Key Vault.
- Linked
Service stringName - Specifies the name of an existing Key Vault Data Factory Linked Service.
- Secret
Name string - Specifies the secret name in Azure Key Vault.
- Parameters map[string]string
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- Secret
Version string - Specifies the secret version in Azure Key Vault.
- linked
Service StringName - Specifies the name of an existing Key Vault Data Factory Linked Service.
- secret
Name String - Specifies the secret name in Azure Key Vault.
- parameters Map<String,String>
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- secret
Version String - Specifies the secret version in Azure Key Vault.
- linked
Service stringName - Specifies the name of an existing Key Vault Data Factory Linked Service.
- secret
Name string - Specifies the secret name in Azure Key Vault.
- parameters {[key: string]: string}
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- secret
Version string - Specifies the secret version in Azure Key Vault.
- linked_
service_ strname - Specifies the name of an existing Key Vault Data Factory Linked Service.
- secret_
name str - Specifies the secret name in Azure Key Vault.
- parameters Mapping[str, str]
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- secret_
version str - Specifies the secret version in Azure Key Vault.
- linked
Service StringName - Specifies the name of an existing Key Vault Data Factory Linked Service.
- secret
Name String - Specifies the secret name in Azure Key Vault.
- parameters Map<String>
- A map of parameters to associate with the Key Vault Data Factory Linked Service.
- secret
Version String - Specifies the secret version in Azure Key Vault.
IntegrationRuntimeSsisPackageStore, IntegrationRuntimeSsisPackageStoreArgs
- Linked
Service stringName - Name of the Linked Service to associate with the packages.
- Name string
- Name of the package store.
- Linked
Service stringName - Name of the Linked Service to associate with the packages.
- Name string
- Name of the package store.
- linked
Service StringName - Name of the Linked Service to associate with the packages.
- name String
- Name of the package store.
- linked
Service stringName - Name of the Linked Service to associate with the packages.
- name string
- Name of the package store.
- linked_
service_ strname - Name of the Linked Service to associate with the packages.
- name str
- Name of the package store.
- linked
Service StringName - Name of the Linked Service to associate with the packages.
- name String
- Name of the package store.
IntegrationRuntimeSsisProxy, IntegrationRuntimeSsisProxyArgs
- Self
Hosted stringIntegration Runtime Name - Name of Self Hosted Integration Runtime as a proxy.
- Staging
Storage stringLinked Service Name - Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
- Path string
- The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
- Self
Hosted stringIntegration Runtime Name - Name of Self Hosted Integration Runtime as a proxy.
- Staging
Storage stringLinked Service Name - Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
- Path string
- The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
- self
Hosted StringIntegration Runtime Name - Name of Self Hosted Integration Runtime as a proxy.
- staging
Storage StringLinked Service Name - Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
- path String
- The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
- self
Hosted stringIntegration Runtime Name - Name of Self Hosted Integration Runtime as a proxy.
- staging
Storage stringLinked Service Name - Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
- path string
- The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
- self_
hosted_ strintegration_ runtime_ name - Name of Self Hosted Integration Runtime as a proxy.
- staging_
storage_ strlinked_ service_ name - Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
- path str
- The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
- self
Hosted StringIntegration Runtime Name - Name of Self Hosted Integration Runtime as a proxy.
- staging
Storage StringLinked Service Name - Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
- path String
- The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
IntegrationRuntimeSsisVnetIntegration, IntegrationRuntimeSsisVnetIntegrationArgs
- Public
Ips List<string> - Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
- Subnet
Id string - id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- Subnet
Name string - Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- Vnet
Id string - ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
- Public
Ips []string - Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
- Subnet
Id string - id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- Subnet
Name string - Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- Vnet
Id string - ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
- public
Ips List<String> - Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
- subnet
Id String - id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- subnet
Name String - Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- vnet
Id String - ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
- public
Ips string[] - Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
- subnet
Id string - id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- subnet
Name string - Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- vnet
Id string - ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
- public_
ips Sequence[str] - Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
- subnet_
id str - id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- subnet_
name str - Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- vnet_
id str - ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
- public
Ips List<String> - Static public IP addresses for the Azure-SSIS Integration Runtime. The size must be 2.
- subnet
Id String - id of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- subnet
Name String - Name of the subnet to which the nodes of the Azure-SSIS Integration Runtime will be added.
- vnet
Id String - ID of the virtual network to which the nodes of the Azure-SSIS Integration Runtime will be added.
Import
Data Factory Azure-SSIS Integration Runtimes can be imported using the resource id, e.g.
$ pulumi import azure:datafactory/integrationRuntimeSsis:IntegrationRuntimeSsis example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/integrationruntimes/example
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
