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. API Version: 2021-03-01.

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"
"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.SelfHostedIntegrationRuntime{
Description: "A selfhosted integration runtime",
Type: "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(Map.ofEntries(
Map.entry("description", "A selfhosted integration runtime"),
Map.entry("type", "SelfHosted")
))
.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/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.Synapse/workspaces/exampleWorkspaceName/integrationruntimes/exampleIntegrationRuntime

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