IntegrationRuntime

class IntegrationRuntime : KotlinCustomResource

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

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>