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. Uses Azure REST API version 2019-05-01. In version 1.x of the Azure Native provider, it used API version 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 = AzureNative.Logic.IntegrationServiceEnvironmentAccessEndpointType.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 = AzureNative.Logic.IntegrationServiceEnvironmentSkuName.Premium,
},
});
});
Content copied to clipboard
package main
import (
logic "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.IntegrationServiceEnvironmentPropertiesArgs{
EncryptionConfiguration: &logic.IntegrationServiceEnvironmenEncryptionConfigurationArgs{
EncryptionKeyReference: &logic.IntegrationServiceEnvironmenEncryptionKeyReferenceArgs{
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: &logic.NetworkConfigurationArgs{
AccessEndpoint: &logic.IntegrationServiceEnvironmentAccessEndpointArgs{
Type: pulumi.String(logic.IntegrationServiceEnvironmentAccessEndpointTypeInternal),
},
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(logic.IntegrationServiceEnvironmentSkuNamePremium),
},
})
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 com.pulumi.azurenative.logic.inputs.IntegrationServiceEnvironmentPropertiesArgs;
import com.pulumi.azurenative.logic.inputs.IntegrationServiceEnvironmenEncryptionConfigurationArgs;
import com.pulumi.azurenative.logic.inputs.IntegrationServiceEnvironmenEncryptionKeyReferenceArgs;
import com.pulumi.azurenative.logic.inputs.ResourceReferenceArgs;
import com.pulumi.azurenative.logic.inputs.NetworkConfigurationArgs;
import com.pulumi.azurenative.logic.inputs.IntegrationServiceEnvironmentAccessEndpointArgs;
import com.pulumi.azurenative.logic.inputs.IntegrationServiceEnvironmentSkuArgs;
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(IntegrationServiceEnvironmentPropertiesArgs.builder()
.encryptionConfiguration(IntegrationServiceEnvironmenEncryptionConfigurationArgs.builder()
.encryptionKeyReference(IntegrationServiceEnvironmenEncryptionKeyReferenceArgs.builder()
.keyName("testKeyName")
.keyVault(ResourceReferenceArgs.builder()
.id("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.KeyVault/vaults/testKeyVault")
.build())
.keyVersion("13b261d30b984753869902d7f47f4d55")
.build())
.build())
.networkConfiguration(NetworkConfigurationArgs.builder()
.accessEndpoint(IntegrationServiceEnvironmentAccessEndpointArgs.builder()
.type("Internal")
.build())
.subnets(
ResourceReferenceArgs.builder()
.id("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s1")
.build(),
ResourceReferenceArgs.builder()
.id("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s2")
.build(),
ResourceReferenceArgs.builder()
.id("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s3")
.build(),
ResourceReferenceArgs.builder()
.id("/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s4")
.build())
.build())
.build())
.resourceGroup("testResourceGroup")
.sku(IntegrationServiceEnvironmentSkuArgs.builder()
.capacity(2)
.name("Premium")
.build())
.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
constructor(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)