Integration Service Environment Args
    data class IntegrationServiceEnvironmentArgs(val identity: Output<ManagedServiceIdentityArgs>? = null, val integrationServiceEnvironmentName: Output<String>? = null, val location: Output<String>? = null, val properties: Output<IntegrationServiceEnvironmentPropertiesArgs>? = null, val resourceGroup: Output<String>? = null, val sku: Output<IntegrationServiceEnvironmentSkuArgs>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<IntegrationServiceEnvironmentArgs> 
The integration service environment. Azure REST API version: 2019-05-01. Prior API version in Azure Native 1.x: 2019-05-01.
Example Usage
Create or update an integration service environment
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
    var integrationServiceEnvironment = new AzureNative.Logic.IntegrationServiceEnvironment("integrationServiceEnvironment", new()
    {
        IntegrationServiceEnvironmentName = "testIntegrationServiceEnvironment",
        Location = "brazilsouth",
        Properties = new AzureNative.Logic.Inputs.IntegrationServiceEnvironmentPropertiesArgs
        {
            EncryptionConfiguration = new AzureNative.Logic.Inputs.IntegrationServiceEnvironmenEncryptionConfigurationArgs
            {
                EncryptionKeyReference = new AzureNative.Logic.Inputs.IntegrationServiceEnvironmenEncryptionKeyReferenceArgs
                {
                    KeyName = "testKeyName",
                    KeyVault = new AzureNative.Logic.Inputs.ResourceReferenceArgs
                    {
                        Id = "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.KeyVault/vaults/testKeyVault",
                    },
                    KeyVersion = "13b261d30b984753869902d7f47f4d55",
                },
            },
            NetworkConfiguration = new AzureNative.Logic.Inputs.NetworkConfigurationArgs
            {
                AccessEndpoint = new AzureNative.Logic.Inputs.IntegrationServiceEnvironmentAccessEndpointArgs
                {
                    Type = "Internal",
                },
                Subnets = new[]
                {
                    new AzureNative.Logic.Inputs.ResourceReferenceArgs
                    {
                        Id = "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s1",
                    },
                    new AzureNative.Logic.Inputs.ResourceReferenceArgs
                    {
                        Id = "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s2",
                    },
                    new AzureNative.Logic.Inputs.ResourceReferenceArgs
                    {
                        Id = "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s3",
                    },
                    new AzureNative.Logic.Inputs.ResourceReferenceArgs
                    {
                        Id = "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s4",
                    },
                },
            },
        },
        ResourceGroup = "testResourceGroup",
        Sku = new AzureNative.Logic.Inputs.IntegrationServiceEnvironmentSkuArgs
        {
            Capacity = 2,
            Name = "Premium",
        },
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-azure-native-sdk/logic/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := logic.NewIntegrationServiceEnvironment(ctx, "integrationServiceEnvironment", &logic.IntegrationServiceEnvironmentArgs{
IntegrationServiceEnvironmentName: pulumi.String("testIntegrationServiceEnvironment"),
Location: pulumi.String("brazilsouth"),
Properties: logic.IntegrationServiceEnvironmentPropertiesResponse{
EncryptionConfiguration: interface{}{
EncryptionKeyReference: interface{}{
KeyName: pulumi.String("testKeyName"),
KeyVault: &logic.ResourceReferenceArgs{
Id: pulumi.String("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.KeyVault/vaults/testKeyVault"),
},
KeyVersion: pulumi.String("13b261d30b984753869902d7f47f4d55"),
},
},
NetworkConfiguration: interface{}{
AccessEndpoint: &logic.IntegrationServiceEnvironmentAccessEndpointArgs{
Type: pulumi.String("Internal"),
},
Subnets: logic.ResourceReferenceArray{
&logic.ResourceReferenceArgs{
Id: pulumi.String("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s1"),
},
&logic.ResourceReferenceArgs{
Id: pulumi.String("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s2"),
},
&logic.ResourceReferenceArgs{
Id: pulumi.String("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s3"),
},
&logic.ResourceReferenceArgs{
Id: pulumi.String("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s4"),
},
},
},
},
ResourceGroup: pulumi.String("testResourceGroup"),
Sku: &logic.IntegrationServiceEnvironmentSkuArgs{
Capacity: pulumi.Int(2),
Name: pulumi.String("Premium"),
},
})
if err != nil {
return err
}
return nil
})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.logic.IntegrationServiceEnvironment;
import com.pulumi.azurenative.logic.IntegrationServiceEnvironmentArgs;
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 integrationServiceEnvironment = new IntegrationServiceEnvironment("integrationServiceEnvironment", IntegrationServiceEnvironmentArgs.builder()
            .integrationServiceEnvironmentName("testIntegrationServiceEnvironment")
            .location("brazilsouth")
            .properties(Map.ofEntries(
                Map.entry("encryptionConfiguration", Map.of("encryptionKeyReference", Map.ofEntries(
                    Map.entry("keyName", "testKeyName"),
                    Map.entry("keyVault", Map.of("id", "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.KeyVault/vaults/testKeyVault")),
                    Map.entry("keyVersion", "13b261d30b984753869902d7f47f4d55")
                ))),
                Map.entry("networkConfiguration", Map.ofEntries(
                    Map.entry("accessEndpoint", Map.of("type", "Internal")),
                    Map.entry("subnets",
                        Map.of("id", "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s1"),
                        Map.of("id", "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s2"),
                        Map.of("id", "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s3"),
                        Map.of("id", "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s4"))
                ))
            ))
            .resourceGroup("testResourceGroup")
            .sku(Map.ofEntries(
                Map.entry("capacity", 2),
                Map.entry("name", "Premium")
            ))
            .build());
    }
}Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:logic:IntegrationServiceEnvironment testIntegrationServiceEnvironment /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Logic/integrationServiceEnvironments/{integrationServiceEnvironmentName}Content copied to clipboard
Constructors
Link copied to clipboard
                fun IntegrationServiceEnvironmentArgs(identity: Output<ManagedServiceIdentityArgs>? = null, integrationServiceEnvironmentName: Output<String>? = null, location: Output<String>? = null, properties: Output<IntegrationServiceEnvironmentPropertiesArgs>? = null, resourceGroup: Output<String>? = null, sku: Output<IntegrationServiceEnvironmentSkuArgs>? = null, tags: Output<Map<String, String>>? = null)