IntegrationServiceEnvironment

class IntegrationServiceEnvironment : KotlinCustomResource

The integration service environment. 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 = "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",
},
});
});
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());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:logic:IntegrationServiceEnvironment testIntegrationServiceEnvironment /subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Logic/integrationServiceEnvironments/testIntegrationServiceEnvironment

Properties

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>