IntegrationServiceEnvironment

class IntegrationServiceEnvironment : KotlinCustomResource

The integration service environment. Uses Azure REST API version 2019-05-01. In version 2.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,
},
});
});
package main
import (
logic "github.com/pulumi/pulumi-azure-native-sdk/logic/v3"
"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
})
}
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());
}
}

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}

Properties

Link copied to clipboard
val azureApiVersion: Output<String>

The Azure API version of the resource.

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

Managed service identity properties.

Link copied to clipboard
val location: Output<String>?

The resource location.

Link copied to clipboard
val name: Output<String>

Gets the resource name.

Link copied to clipboard

The integration service environment properties.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

The resource tags.

Link copied to clipboard
val type: Output<String>

Gets the resource type.

Link copied to clipboard
val urn: Output<String>