IntegrationRuntimeManaged

class IntegrationRuntimeManaged : KotlinCustomResource

Manages an Azure Data Factory Managed Integration Runtime.

NOTE: The azure.datafactory.IntegrationRuntimeManaged resource has been superseded by the azure.datafactory.IntegrationRuntimeSsis resource. We recommend using the azure.datafactory.IntegrationRuntimeSsis resource for new deployments.

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.IntegrationRuntimeManaged;
import com.pulumi.azure.datafactory.IntegrationRuntimeManagedArgs;
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 exampleIntegrationRuntimeManaged = new IntegrationRuntimeManaged("exampleIntegrationRuntimeManaged", IntegrationRuntimeManagedArgs.builder()
.dataFactoryId(exampleFactory.id())
.location(exampleResourceGroup.location())
.nodeSize("Standard_D8_v3")
.build());
}
}

Import

Data Factory Integration Managed Runtimes can be imported using the resource id, e.g.

$ pulumi import azure:datafactory/integrationRuntimeManaged:IntegrationRuntimeManaged example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/example/providers/Microsoft.DataFactory/factories/example/integrationruntimes/example

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>

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>?

Integration runtime description.

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

The Managed Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

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

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>

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

Link copied to clipboard

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

Link copied to clipboard
val name: Output<String>

Specifies the name of the Managed 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>

The size of the nodes on which the Managed 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>?

Number of nodes for the Managed Integration Runtime. Max is 10. Defaults to 1.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>
Link copied to clipboard

A vnet_integration block as defined below.