IntegrationRuntime

class IntegrationRuntime : KotlinCustomResource

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}

Properties

Link copied to clipboard
val etag: Output<String>

Resource Etag.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard

Integration runtime properties.

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

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>