IntegrationRuntimeArgs

data class IntegrationRuntimeArgs(val integrationRuntimeName: Output<String>? = null, val properties: Output<Either<ManagedIntegrationRuntimeArgs, SelfHostedIntegrationRuntimeArgs>>? = null, val resourceGroupName: Output<String>? = null, val workspaceName: Output<String>? = null) : ConvertibleToJava<IntegrationRuntimeArgs>

Integration runtime resource type. Uses Azure REST API version 2021-06-01. In version 1.x of the Azure Native provider, it used API version 2021-03-01. Other available API versions: 2021-06-01-preview.

Example Usage

Create integration runtime

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var integrationRuntime = new AzureNative.Synapse.IntegrationRuntime("integrationRuntime", new()
{
IntegrationRuntimeName = "exampleIntegrationRuntime",
Properties = new AzureNative.Synapse.Inputs.SelfHostedIntegrationRuntimeArgs
{
Description = "A selfhosted integration runtime",
Type = "SelfHosted",
},
ResourceGroupName = "exampleResourceGroup",
WorkspaceName = "exampleWorkspace",
});
});
package main
import (
synapse "github.com/pulumi/pulumi-azure-native-sdk/synapse/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := synapse.NewIntegrationRuntime(ctx, "integrationRuntime", &synapse.IntegrationRuntimeArgs{
IntegrationRuntimeName: pulumi.String("exampleIntegrationRuntime"),
Properties: &synapse.SelfHostedIntegrationRuntimeArgs{
Description: pulumi.String("A selfhosted integration runtime"),
Type: pulumi.String("SelfHosted"),
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
WorkspaceName: pulumi.String("exampleWorkspace"),
})
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.synapse.IntegrationRuntime;
import com.pulumi.azurenative.synapse.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()
.integrationRuntimeName("exampleIntegrationRuntime")
.properties(SelfHostedIntegrationRuntimeArgs.builder()
.description("A selfhosted integration runtime")
.type("SelfHosted")
.build())
.resourceGroupName("exampleResourceGroup")
.workspaceName("exampleWorkspace")
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:synapse:IntegrationRuntime exampleIntegrationRuntime /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/workspaces/{workspaceName}/integrationRuntimes/{integrationRuntimeName}

Constructors

Link copied to clipboard
constructor(integrationRuntimeName: Output<String>? = null, properties: Output<Either<ManagedIntegrationRuntimeArgs, SelfHostedIntegrationRuntimeArgs>>? = null, resourceGroupName: Output<String>? = null, workspaceName: Output<String>? = null)

Properties

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

Integration runtime name

Link copied to clipboard

Integration runtime properties.

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

The name of the resource group. The name is case insensitive.

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

The name of the workspace.

Functions

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