IntegrationRuntimeSsisArgs

data class IntegrationRuntimeSsisArgs(val catalogInfo: Output<IntegrationRuntimeSsisCatalogInfoArgs>? = null, val customSetupScript: Output<IntegrationRuntimeSsisCustomSetupScriptArgs>? = null, val dataFactoryId: Output<String>? = null, val description: Output<String>? = null, val edition: Output<String>? = null, val expressCustomSetup: Output<IntegrationRuntimeSsisExpressCustomSetupArgs>? = null, val expressVnetIntegration: Output<IntegrationRuntimeSsisExpressVnetIntegrationArgs>? = null, val licenseType: Output<String>? = null, val location: Output<String>? = null, val maxParallelExecutionsPerNode: Output<Int>? = null, val name: Output<String>? = null, val nodeSize: Output<String>? = null, val numberOfNodes: Output<Int>? = null, val packageStores: Output<List<IntegrationRuntimeSsisPackageStoreArgs>>? = null, val proxy: Output<IntegrationRuntimeSsisProxyArgs>? = null, val vnetIntegration: Output<IntegrationRuntimeSsisVnetIntegrationArgs>? = null) : ConvertibleToJava<IntegrationRuntimeSsisArgs>

Manages a Data Factory Azure-SSIS Integration Runtime.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.datafactory.Factory;
import com.pulumi.azure.datafactory.FactoryArgs;
import com.pulumi.azure.datafactory.IntegrationRuntimeSsis;
import com.pulumi.azure.datafactory.IntegrationRuntimeSsisArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleFactory = new Factory("exampleFactory", FactoryArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.build());
var exampleIntegrationRuntimeSsis = new IntegrationRuntimeSsis("exampleIntegrationRuntimeSsis", IntegrationRuntimeSsisArgs.builder()
.dataFactoryId(exampleFactory.id())
.location(exampleResourceGroup.location())
.nodeSize("Standard_D8_v3")
.build());
}
}

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

Constructors

Link copied to clipboard
fun IntegrationRuntimeSsisArgs(catalogInfo: Output<IntegrationRuntimeSsisCatalogInfoArgs>? = null, customSetupScript: Output<IntegrationRuntimeSsisCustomSetupScriptArgs>? = null, dataFactoryId: Output<String>? = null, description: Output<String>? = null, edition: Output<String>? = null, expressCustomSetup: Output<IntegrationRuntimeSsisExpressCustomSetupArgs>? = null, expressVnetIntegration: Output<IntegrationRuntimeSsisExpressVnetIntegrationArgs>? = null, licenseType: Output<String>? = null, location: Output<String>? = null, maxParallelExecutionsPerNode: Output<Int>? = null, name: Output<String>? = null, nodeSize: Output<String>? = null, numberOfNodes: Output<Int>? = null, packageStores: Output<List<IntegrationRuntimeSsisPackageStoreArgs>>? = null, proxy: Output<IntegrationRuntimeSsisProxyArgs>? = null, vnetIntegration: Output<IntegrationRuntimeSsisVnetIntegrationArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): IntegrationRuntimeSsisArgs

Properties

Link copied to clipboard

A catalog_info block as defined below.

Link copied to clipboard

A custom_setup_script block as defined below.

Link copied to clipboard
val dataFactoryId: Output<String>? = null

The Data Factory ID in which to associate the Linked Service with. Changing this forces a new resource.

Link copied to clipboard
val description: Output<String>? = null

Integration runtime description.

Link copied to clipboard
val edition: Output<String>? = null

The Azure-SSIS Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

Link copied to clipboard

An express_custom_setup block as defined below.

Link copied to clipboard

A express_vnet_integration block as defined below.

Link copied to clipboard
val licenseType: Output<String>? = null

The type of the license that is used. Valid values are LicenseIncluded and BasePrice. Defaults to LicenseIncluded.

Link copied to clipboard
val location: Output<String>? = null

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Link copied to clipboard
val maxParallelExecutionsPerNode: Output<Int>? = null

Defines the maximum parallel executions per node. Defaults to 1. Max is 16.

Link copied to clipboard
val name: Output<String>? = null

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.

Link copied to clipboard
val nodeSize: Output<String>? = null

The size of the nodes on which the Azure-SSIS Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2

Link copied to clipboard
val numberOfNodes: Output<Int>? = null

Number of nodes for the Azure-SSIS Integration Runtime. Max is 10. Defaults to 1.

Link copied to clipboard

One or more package_store block as defined below.

Link copied to clipboard

A proxy block as defined below.

Link copied to clipboard

A vnet_integration block as defined below.