azure-native.logic.IntegrationServiceEnvironment
Explore with Pulumi AI
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",
},
});
});
Coming soon!
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 pulumi
import pulumi_azure_native as azure_native
integration_service_environment = azure_native.logic.IntegrationServiceEnvironment("integrationServiceEnvironment",
integration_service_environment_name="testIntegrationServiceEnvironment",
location="brazilsouth",
properties=azure_native.logic.IntegrationServiceEnvironmentPropertiesResponseArgs(
encryption_configuration={
"encryptionKeyReference": {
"keyName": "testKeyName",
"keyVault": azure_native.logic.ResourceReferenceArgs(
id="/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.KeyVault/vaults/testKeyVault",
),
"keyVersion": "13b261d30b984753869902d7f47f4d55",
},
},
network_configuration={
"accessEndpoint": azure_native.logic.IntegrationServiceEnvironmentAccessEndpointArgs(
type="Internal",
),
"subnets": [
azure_native.logic.ResourceReferenceArgs(
id="/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s1",
),
azure_native.logic.ResourceReferenceArgs(
id="/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s2",
),
azure_native.logic.ResourceReferenceArgs(
id="/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s3",
),
azure_native.logic.ResourceReferenceArgs(
id="/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s4",
),
],
},
),
resource_group="testResourceGroup",
sku=azure_native.logic.IntegrationServiceEnvironmentSkuArgs(
capacity=2,
name="Premium",
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const integrationServiceEnvironment = new azure_native.logic.IntegrationServiceEnvironment("integrationServiceEnvironment", {
integrationServiceEnvironmentName: "testIntegrationServiceEnvironment",
location: "brazilsouth",
properties: {
encryptionConfiguration: {
encryptionKeyReference: {
keyName: "testKeyName",
keyVault: {
id: "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.KeyVault/vaults/testKeyVault",
},
keyVersion: "13b261d30b984753869902d7f47f4d55",
},
},
networkConfiguration: {
accessEndpoint: {
type: "Internal",
},
subnets: [
{
id: "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s1",
},
{
id: "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s2",
},
{
id: "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s3",
},
{
id: "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s4",
},
],
},
},
resourceGroup: "testResourceGroup",
sku: {
capacity: 2,
name: "Premium",
},
});
resources:
integrationServiceEnvironment:
type: azure-native:logic:IntegrationServiceEnvironment
properties:
integrationServiceEnvironmentName: testIntegrationServiceEnvironment
location: brazilsouth
properties:
encryptionConfiguration:
encryptionKeyReference:
keyName: testKeyName
keyVault:
id: /subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.KeyVault/vaults/testKeyVault
keyVersion: 13b261d30b984753869902d7f47f4d55
networkConfiguration:
accessEndpoint:
type: Internal
subnets:
- id: /subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s1
- id: /subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s2
- id: /subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s3
- id: /subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testResourceGroup/providers/Microsoft.Network/virtualNetworks/testVNET/subnets/s4
resourceGroup: testResourceGroup
sku:
capacity: 2
name: Premium
Create IntegrationServiceEnvironment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationServiceEnvironment(name: string, args: IntegrationServiceEnvironmentArgs, opts?: CustomResourceOptions);
@overload
def IntegrationServiceEnvironment(resource_name: str,
args: IntegrationServiceEnvironmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationServiceEnvironment(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group: Optional[str] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
integration_service_environment_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[IntegrationServiceEnvironmentPropertiesArgs] = None,
sku: Optional[IntegrationServiceEnvironmentSkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewIntegrationServiceEnvironment(ctx *Context, name string, args IntegrationServiceEnvironmentArgs, opts ...ResourceOption) (*IntegrationServiceEnvironment, error)
public IntegrationServiceEnvironment(string name, IntegrationServiceEnvironmentArgs args, CustomResourceOptions? opts = null)
public IntegrationServiceEnvironment(String name, IntegrationServiceEnvironmentArgs args)
public IntegrationServiceEnvironment(String name, IntegrationServiceEnvironmentArgs args, CustomResourceOptions options)
type: azure-native:logic:IntegrationServiceEnvironment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args IntegrationServiceEnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IntegrationServiceEnvironmentArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IntegrationServiceEnvironmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationServiceEnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationServiceEnvironmentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var integrationServiceEnvironmentResource = new AzureNative.Logic.IntegrationServiceEnvironment("integrationServiceEnvironmentResource", new()
{
ResourceGroup = "string",
Identity =
{
{ "type", "string" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
IntegrationServiceEnvironmentName = "string",
Location = "string",
Properties =
{
{ "encryptionConfiguration",
{
{ "encryptionKeyReference",
{
{ "keyName", "string" },
{ "keyVault",
{
{ "id", "string" },
} },
{ "keyVersion", "string" },
} },
} },
{ "endpointsConfiguration",
{
{ "connector",
{
{ "accessEndpointIpAddresses", new[]
{
{
{ "address", "string" },
},
} },
{ "outgoingIpAddresses", new[]
{
{
{ "address", "string" },
},
} },
} },
{ "workflow",
{
{ "accessEndpointIpAddresses", new[]
{
{
{ "address", "string" },
},
} },
{ "outgoingIpAddresses", new[]
{
{
{ "address", "string" },
},
} },
} },
} },
{ "integrationServiceEnvironmentId", "string" },
{ "networkConfiguration",
{
{ "accessEndpoint",
{
{ "type", "string" },
} },
{ "subnets", new[]
{
{
{ "id", "string" },
},
} },
{ "virtualNetworkAddressSpace", "string" },
} },
{ "provisioningState", "string" },
{ "state", "string" },
},
Sku =
{
{ "capacity", 0 },
{ "name", "string" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := logic.NewIntegrationServiceEnvironment(ctx, "integrationServiceEnvironmentResource", &logic.IntegrationServiceEnvironmentArgs{
ResourceGroup: "string",
Identity: map[string]interface{}{
"type": "string",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
IntegrationServiceEnvironmentName: "string",
Location: "string",
Properties: map[string]interface{}{
"encryptionConfiguration": map[string]interface{}{
"encryptionKeyReference": map[string]interface{}{
"keyName": "string",
"keyVault": map[string]interface{}{
"id": "string",
},
"keyVersion": "string",
},
},
"endpointsConfiguration": map[string]interface{}{
"connector": map[string]interface{}{
"accessEndpointIpAddresses": []map[string]interface{}{
map[string]interface{}{
"address": "string",
},
},
"outgoingIpAddresses": []map[string]interface{}{
map[string]interface{}{
"address": "string",
},
},
},
"workflow": map[string]interface{}{
"accessEndpointIpAddresses": []map[string]interface{}{
map[string]interface{}{
"address": "string",
},
},
"outgoingIpAddresses": []map[string]interface{}{
map[string]interface{}{
"address": "string",
},
},
},
},
"integrationServiceEnvironmentId": "string",
"networkConfiguration": map[string]interface{}{
"accessEndpoint": map[string]interface{}{
"type": "string",
},
"subnets": []map[string]interface{}{
map[string]interface{}{
"id": "string",
},
},
"virtualNetworkAddressSpace": "string",
},
"provisioningState": "string",
"state": "string",
},
Sku: map[string]interface{}{
"capacity": 0,
"name": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
})
var integrationServiceEnvironmentResource = new IntegrationServiceEnvironment("integrationServiceEnvironmentResource", IntegrationServiceEnvironmentArgs.builder()
.resourceGroup("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.integrationServiceEnvironmentName("string")
.location("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
integration_service_environment_resource = azure_native.logic.IntegrationServiceEnvironment("integrationServiceEnvironmentResource",
resource_group=string,
identity={
type: string,
userAssignedIdentities: {
string: any,
},
},
integration_service_environment_name=string,
location=string,
properties={
encryptionConfiguration: {
encryptionKeyReference: {
keyName: string,
keyVault: {
id: string,
},
keyVersion: string,
},
},
endpointsConfiguration: {
connector: {
accessEndpointIpAddresses: [{
address: string,
}],
outgoingIpAddresses: [{
address: string,
}],
},
workflow: {
accessEndpointIpAddresses: [{
address: string,
}],
outgoingIpAddresses: [{
address: string,
}],
},
},
integrationServiceEnvironmentId: string,
networkConfiguration: {
accessEndpoint: {
type: string,
},
subnets: [{
id: string,
}],
virtualNetworkAddressSpace: string,
},
provisioningState: string,
state: string,
},
sku={
capacity: 0,
name: string,
},
tags={
string: string,
})
const integrationServiceEnvironmentResource = new azure_native.logic.IntegrationServiceEnvironment("integrationServiceEnvironmentResource", {
resourceGroup: "string",
identity: {
type: "string",
userAssignedIdentities: {
string: "any",
},
},
integrationServiceEnvironmentName: "string",
location: "string",
properties: {
encryptionConfiguration: {
encryptionKeyReference: {
keyName: "string",
keyVault: {
id: "string",
},
keyVersion: "string",
},
},
endpointsConfiguration: {
connector: {
accessEndpointIpAddresses: [{
address: "string",
}],
outgoingIpAddresses: [{
address: "string",
}],
},
workflow: {
accessEndpointIpAddresses: [{
address: "string",
}],
outgoingIpAddresses: [{
address: "string",
}],
},
},
integrationServiceEnvironmentId: "string",
networkConfiguration: {
accessEndpoint: {
type: "string",
},
subnets: [{
id: "string",
}],
virtualNetworkAddressSpace: "string",
},
provisioningState: "string",
state: "string",
},
sku: {
capacity: 0,
name: "string",
},
tags: {
string: "string",
},
});
type: azure-native:logic:IntegrationServiceEnvironment
properties:
identity:
type: string
userAssignedIdentities:
string: any
integrationServiceEnvironmentName: string
location: string
properties:
encryptionConfiguration:
encryptionKeyReference:
keyName: string
keyVault:
id: string
keyVersion: string
endpointsConfiguration:
connector:
accessEndpointIpAddresses:
- address: string
outgoingIpAddresses:
- address: string
workflow:
accessEndpointIpAddresses:
- address: string
outgoingIpAddresses:
- address: string
integrationServiceEnvironmentId: string
networkConfiguration:
accessEndpoint:
type: string
subnets:
- id: string
virtualNetworkAddressSpace: string
provisioningState: string
state: string
resourceGroup: string
sku:
capacity: 0
name: string
tags:
string: string
IntegrationServiceEnvironment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The IntegrationServiceEnvironment resource accepts the following input properties:
- Resource
Group string - The resource group.
- Identity
Pulumi.
Azure Native. Logic. Inputs. Managed Service Identity - Managed service identity properties.
- Integration
Service stringEnvironment Name - The integration service environment name.
- Location string
- The resource location.
- Properties
Pulumi.
Azure Native. Logic. Inputs. Integration Service Environment Properties - The integration service environment properties.
- Sku
Pulumi.
Azure Native. Logic. Inputs. Integration Service Environment Sku - The sku.
- Dictionary<string, string>
- The resource tags.
- Resource
Group string - The resource group.
- Identity
Managed
Service Identity Args - Managed service identity properties.
- Integration
Service stringEnvironment Name - The integration service environment name.
- Location string
- The resource location.
- Properties
Integration
Service Environment Properties Args - The integration service environment properties.
- Sku
Integration
Service Environment Sku Args - The sku.
- map[string]string
- The resource tags.
- resource
Group String - The resource group.
- identity
Managed
Service Identity - Managed service identity properties.
- integration
Service StringEnvironment Name - The integration service environment name.
- location String
- The resource location.
- properties
Integration
Service Environment Properties - The integration service environment properties.
- sku
Integration
Service Environment Sku - The sku.
- Map<String,String>
- The resource tags.
- resource
Group string - The resource group.
- identity
Managed
Service Identity - Managed service identity properties.
- integration
Service stringEnvironment Name - The integration service environment name.
- location string
- The resource location.
- properties
Integration
Service Environment Properties - The integration service environment properties.
- sku
Integration
Service Environment Sku - The sku.
- {[key: string]: string}
- The resource tags.
- resource_
group str - The resource group.
- identity
Managed
Service Identity Args - Managed service identity properties.
- integration_
service_ strenvironment_ name - The integration service environment name.
- location str
- The resource location.
- properties
Integration
Service Environment Properties Args - The integration service environment properties.
- sku
Integration
Service Environment Sku Args - The sku.
- Mapping[str, str]
- The resource tags.
- resource
Group String - The resource group.
- identity Property Map
- Managed service identity properties.
- integration
Service StringEnvironment Name - The integration service environment name.
- location String
- The resource location.
- properties Property Map
- The integration service environment properties.
- sku Property Map
- The sku.
- Map<String>
- The resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationServiceEnvironment resource produces the following output properties:
Supporting Types
FlowEndpoints, FlowEndpointsArgs
- Access
Endpoint List<Pulumi.Ip Addresses Azure Native. Logic. Inputs. Ip Address> - The access endpoint ip address.
- Outgoing
Ip List<Pulumi.Addresses Azure Native. Logic. Inputs. Ip Address> - The outgoing ip address.
- Access
Endpoint []IpIp Addresses Address - The access endpoint ip address.
- Outgoing
Ip []IpAddresses Address - The outgoing ip address.
- access
Endpoint List<IpIp Addresses Address> - The access endpoint ip address.
- outgoing
Ip List<IpAddresses Address> - The outgoing ip address.
- access
Endpoint IpIp Addresses Address[] - The access endpoint ip address.
- outgoing
Ip IpAddresses Address[] - The outgoing ip address.
- access_
endpoint_ Sequence[Ipip_ addresses Address] - The access endpoint ip address.
- outgoing_
ip_ Sequence[Ipaddresses Address] - The outgoing ip address.
- access
Endpoint List<Property Map>Ip Addresses - The access endpoint ip address.
- outgoing
Ip List<Property Map>Addresses - The outgoing ip address.
FlowEndpointsConfiguration, FlowEndpointsConfigurationArgs
- Connector
Pulumi.
Azure Native. Logic. Inputs. Flow Endpoints - The connector endpoints.
- Workflow
Pulumi.
Azure Native. Logic. Inputs. Flow Endpoints - The workflow endpoints.
- Connector
Flow
Endpoints - The connector endpoints.
- Workflow
Flow
Endpoints - The workflow endpoints.
- connector
Flow
Endpoints - The connector endpoints.
- workflow
Flow
Endpoints - The workflow endpoints.
- connector
Flow
Endpoints - The connector endpoints.
- workflow
Flow
Endpoints - The workflow endpoints.
- connector
Flow
Endpoints - The connector endpoints.
- workflow
Flow
Endpoints - The workflow endpoints.
- connector Property Map
- The connector endpoints.
- workflow Property Map
- The workflow endpoints.
FlowEndpointsConfigurationResponse, FlowEndpointsConfigurationResponseArgs
- Connector
Pulumi.
Azure Native. Logic. Inputs. Flow Endpoints Response - The connector endpoints.
- Workflow
Pulumi.
Azure Native. Logic. Inputs. Flow Endpoints Response - The workflow endpoints.
- Connector
Flow
Endpoints Response - The connector endpoints.
- Workflow
Flow
Endpoints Response - The workflow endpoints.
- connector
Flow
Endpoints Response - The connector endpoints.
- workflow
Flow
Endpoints Response - The workflow endpoints.
- connector
Flow
Endpoints Response - The connector endpoints.
- workflow
Flow
Endpoints Response - The workflow endpoints.
- connector
Flow
Endpoints Response - The connector endpoints.
- workflow
Flow
Endpoints Response - The workflow endpoints.
- connector Property Map
- The connector endpoints.
- workflow Property Map
- The workflow endpoints.
FlowEndpointsResponse, FlowEndpointsResponseArgs
- Access
Endpoint List<Pulumi.Ip Addresses Azure Native. Logic. Inputs. Ip Address Response> - The access endpoint ip address.
- Outgoing
Ip List<Pulumi.Addresses Azure Native. Logic. Inputs. Ip Address Response> - The outgoing ip address.
- Access
Endpoint []IpIp Addresses Address Response - The access endpoint ip address.
- Outgoing
Ip []IpAddresses Address Response - The outgoing ip address.
- access
Endpoint List<IpIp Addresses Address Response> - The access endpoint ip address.
- outgoing
Ip List<IpAddresses Address Response> - The outgoing ip address.
- access
Endpoint IpIp Addresses Address Response[] - The access endpoint ip address.
- outgoing
Ip IpAddresses Address Response[] - The outgoing ip address.
- access_
endpoint_ Sequence[Ipip_ addresses Address Response] - The access endpoint ip address.
- outgoing_
ip_ Sequence[Ipaddresses Address Response] - The outgoing ip address.
- access
Endpoint List<Property Map>Ip Addresses - The access endpoint ip address.
- outgoing
Ip List<Property Map>Addresses - The outgoing ip address.
IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironmenEncryptionConfigurationArgs
- Encryption
Key Pulumi.Reference Azure Native. Logic. Inputs. Integration Service Environmen Encryption Key Reference - The encryption key reference.
- Encryption
Key IntegrationReference Service Environmen Encryption Key Reference - The encryption key reference.
- encryption
Key IntegrationReference Service Environmen Encryption Key Reference - The encryption key reference.
- encryption
Key IntegrationReference Service Environmen Encryption Key Reference - The encryption key reference.
- encryption_
key_ Integrationreference Service Environmen Encryption Key Reference - The encryption key reference.
- encryption
Key Property MapReference - The encryption key reference.
IntegrationServiceEnvironmenEncryptionConfigurationResponse, IntegrationServiceEnvironmenEncryptionConfigurationResponseArgs
- Encryption
Key Pulumi.Reference Azure Native. Logic. Inputs. Integration Service Environmen Encryption Key Reference Response - The encryption key reference.
- Encryption
Key IntegrationReference Service Environmen Encryption Key Reference Response - The encryption key reference.
- encryption
Key IntegrationReference Service Environmen Encryption Key Reference Response - The encryption key reference.
- encryption
Key IntegrationReference Service Environmen Encryption Key Reference Response - The encryption key reference.
- encryption_
key_ Integrationreference Service Environmen Encryption Key Reference Response - The encryption key reference.
- encryption
Key Property MapReference - The encryption key reference.
IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironmenEncryptionKeyReferenceArgs
- Key
Name string - Gets the key name in the Key Vault.
- Key
Vault Pulumi.Azure Native. Logic. Inputs. Resource Reference - The key vault reference.
- Key
Version string - Gets the version of the key specified in the keyName property.
- Key
Name string - Gets the key name in the Key Vault.
- Key
Vault ResourceReference - The key vault reference.
- Key
Version string - Gets the version of the key specified in the keyName property.
- key
Name String - Gets the key name in the Key Vault.
- key
Vault ResourceReference - The key vault reference.
- key
Version String - Gets the version of the key specified in the keyName property.
- key
Name string - Gets the key name in the Key Vault.
- key
Vault ResourceReference - The key vault reference.
- key
Version string - Gets the version of the key specified in the keyName property.
- key_
name str - Gets the key name in the Key Vault.
- key_
vault ResourceReference - The key vault reference.
- key_
version str - Gets the version of the key specified in the keyName property.
- key
Name String - Gets the key name in the Key Vault.
- key
Vault Property Map - The key vault reference.
- key
Version String - Gets the version of the key specified in the keyName property.
IntegrationServiceEnvironmenEncryptionKeyReferenceResponse, IntegrationServiceEnvironmenEncryptionKeyReferenceResponseArgs
- Key
Name string - Gets the key name in the Key Vault.
- Key
Vault Pulumi.Azure Native. Logic. Inputs. Resource Reference Response - The key vault reference.
- Key
Version string - Gets the version of the key specified in the keyName property.
- Key
Name string - Gets the key name in the Key Vault.
- Key
Vault ResourceReference Response - The key vault reference.
- Key
Version string - Gets the version of the key specified in the keyName property.
- key
Name String - Gets the key name in the Key Vault.
- key
Vault ResourceReference Response - The key vault reference.
- key
Version String - Gets the version of the key specified in the keyName property.
- key
Name string - Gets the key name in the Key Vault.
- key
Vault ResourceReference Response - The key vault reference.
- key
Version string - Gets the version of the key specified in the keyName property.
- key_
name str - Gets the key name in the Key Vault.
- key_
vault ResourceReference Response - The key vault reference.
- key_
version str - Gets the version of the key specified in the keyName property.
- key
Name String - Gets the key name in the Key Vault.
- key
Vault Property Map - The key vault reference.
- key
Version String - Gets the version of the key specified in the keyName property.
IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentAccessEndpointArgs
- Type
string | Pulumi.
Azure Native. Logic. Integration Service Environment Access Endpoint Type - The access endpoint type.
- Type
string | Integration
Service Environment Access Endpoint Type - The access endpoint type.
- type
String | Integration
Service Environment Access Endpoint Type - The access endpoint type.
- type
string | Integration
Service Environment Access Endpoint Type - The access endpoint type.
- type
str | Integration
Service Environment Access Endpoint Type - The access endpoint type.
- type
String | "Not
Specified" | "External" | "Internal" - The access endpoint type.
IntegrationServiceEnvironmentAccessEndpointResponse, IntegrationServiceEnvironmentAccessEndpointResponseArgs
- Type string
- The access endpoint type.
- Type string
- The access endpoint type.
- type String
- The access endpoint type.
- type string
- The access endpoint type.
- type str
- The access endpoint type.
- type String
- The access endpoint type.
IntegrationServiceEnvironmentAccessEndpointType, IntegrationServiceEnvironmentAccessEndpointTypeArgs
- Not
Specified - NotSpecified
- External
- External
- Internal
- Internal
- Integration
Service Environment Access Endpoint Type Not Specified - NotSpecified
- Integration
Service Environment Access Endpoint Type External - External
- Integration
Service Environment Access Endpoint Type Internal - Internal
- Not
Specified - NotSpecified
- External
- External
- Internal
- Internal
- Not
Specified - NotSpecified
- External
- External
- Internal
- Internal
- NOT_SPECIFIED
- NotSpecified
- EXTERNAL
- External
- INTERNAL
- Internal
- "Not
Specified" - NotSpecified
- "External"
- External
- "Internal"
- Internal
IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentPropertiesArgs
- Encryption
Configuration Pulumi.Azure Native. Logic. Inputs. Integration Service Environmen Encryption Configuration - The encryption configuration.
- Endpoints
Configuration Pulumi.Azure Native. Logic. Inputs. Flow Endpoints Configuration - The endpoints configuration.
- Integration
Service stringEnvironment Id - Gets the tracking id.
- Network
Configuration Pulumi.Azure Native. Logic. Inputs. Network Configuration - The network configuration.
- Provisioning
State string | Pulumi.Azure Native. Logic. Workflow Provisioning State - The provisioning state.
- State
string | Pulumi.
Azure Native. Logic. Workflow State - The integration service environment state.
- Encryption
Configuration IntegrationService Environmen Encryption Configuration - The encryption configuration.
- Endpoints
Configuration FlowEndpoints Configuration - The endpoints configuration.
- Integration
Service stringEnvironment Id - Gets the tracking id.
- Network
Configuration NetworkConfiguration - The network configuration.
- Provisioning
State string | WorkflowProvisioning State - The provisioning state.
- State
string | Workflow
State Enum - The integration service environment state.
- encryption
Configuration IntegrationService Environmen Encryption Configuration - The encryption configuration.
- endpoints
Configuration FlowEndpoints Configuration - The endpoints configuration.
- integration
Service StringEnvironment Id - Gets the tracking id.
- network
Configuration NetworkConfiguration - The network configuration.
- provisioning
State String | WorkflowProvisioning State - The provisioning state.
- state
String | Workflow
State - The integration service environment state.
- encryption
Configuration IntegrationService Environmen Encryption Configuration - The encryption configuration.
- endpoints
Configuration FlowEndpoints Configuration - The endpoints configuration.
- integration
Service stringEnvironment Id - Gets the tracking id.
- network
Configuration NetworkConfiguration - The network configuration.
- provisioning
State string | WorkflowProvisioning State - The provisioning state.
- state
string | Workflow
State - The integration service environment state.
- encryption_
configuration IntegrationService Environmen Encryption Configuration - The encryption configuration.
- endpoints_
configuration FlowEndpoints Configuration - The endpoints configuration.
- integration_
service_ strenvironment_ id - Gets the tracking id.
- network_
configuration NetworkConfiguration - The network configuration.
- provisioning_
state str | WorkflowProvisioning State - The provisioning state.
- state
str | Workflow
State - The integration service environment state.
- encryption
Configuration Property Map - The encryption configuration.
- endpoints
Configuration Property Map - The endpoints configuration.
- integration
Service StringEnvironment Id - Gets the tracking id.
- network
Configuration Property Map - The network configuration.
- provisioning
State String | "NotSpecified" | "Accepted" | "Running" | "Ready" | "Creating" | "Created" | "Deleting" | "Deleted" | "Canceled" | "Failed" | "Succeeded" | "Moving" | "Updating" | "Registering" | "Registered" | "Unregistering" | "Unregistered" | "Completed" | "Renewing" | "Pending" | "Waiting" | "In Progress" - The provisioning state.
- state
String | "Not
Specified" | "Completed" | "Enabled" | "Disabled" | "Deleted" | "Suspended" - The integration service environment state.
IntegrationServiceEnvironmentPropertiesResponse, IntegrationServiceEnvironmentPropertiesResponseArgs
- Encryption
Configuration Pulumi.Azure Native. Logic. Inputs. Integration Service Environmen Encryption Configuration Response - The encryption configuration.
- Endpoints
Configuration Pulumi.Azure Native. Logic. Inputs. Flow Endpoints Configuration Response - The endpoints configuration.
- Integration
Service stringEnvironment Id - Gets the tracking id.
- Network
Configuration Pulumi.Azure Native. Logic. Inputs. Network Configuration Response - The network configuration.
- Provisioning
State string - The provisioning state.
- State string
- The integration service environment state.
- Encryption
Configuration IntegrationService Environmen Encryption Configuration Response - The encryption configuration.
- Endpoints
Configuration FlowEndpoints Configuration Response - The endpoints configuration.
- Integration
Service stringEnvironment Id - Gets the tracking id.
- Network
Configuration NetworkConfiguration Response - The network configuration.
- Provisioning
State string - The provisioning state.
- State string
- The integration service environment state.
- encryption
Configuration IntegrationService Environmen Encryption Configuration Response - The encryption configuration.
- endpoints
Configuration FlowEndpoints Configuration Response - The endpoints configuration.
- integration
Service StringEnvironment Id - Gets the tracking id.
- network
Configuration NetworkConfiguration Response - The network configuration.
- provisioning
State String - The provisioning state.
- state String
- The integration service environment state.
- encryption
Configuration IntegrationService Environmen Encryption Configuration Response - The encryption configuration.
- endpoints
Configuration FlowEndpoints Configuration Response - The endpoints configuration.
- integration
Service stringEnvironment Id - Gets the tracking id.
- network
Configuration NetworkConfiguration Response - The network configuration.
- provisioning
State string - The provisioning state.
- state string
- The integration service environment state.
- encryption_
configuration IntegrationService Environmen Encryption Configuration Response - The encryption configuration.
- endpoints_
configuration FlowEndpoints Configuration Response - The endpoints configuration.
- integration_
service_ strenvironment_ id - Gets the tracking id.
- network_
configuration NetworkConfiguration Response - The network configuration.
- provisioning_
state str - The provisioning state.
- state str
- The integration service environment state.
- encryption
Configuration Property Map - The encryption configuration.
- endpoints
Configuration Property Map - The endpoints configuration.
- integration
Service StringEnvironment Id - Gets the tracking id.
- network
Configuration Property Map - The network configuration.
- provisioning
State String - The provisioning state.
- state String
- The integration service environment state.
IntegrationServiceEnvironmentSku, IntegrationServiceEnvironmentSkuArgs
- Capacity int
- The sku capacity.
- Name
string | Pulumi.
Azure Native. Logic. Integration Service Environment Sku Name - The sku name.
- Capacity int
- The sku capacity.
- Name
string | Integration
Service Environment Sku Name - The sku name.
- capacity Integer
- The sku capacity.
- name
String | Integration
Service Environment Sku Name - The sku name.
- capacity number
- The sku capacity.
- name
string | Integration
Service Environment Sku Name - The sku name.
- capacity int
- The sku capacity.
- name
str | Integration
Service Environment Sku Name - The sku name.
- capacity Number
- The sku capacity.
- name
String | "Not
Specified" | "Premium" | "Developer" - The sku name.
IntegrationServiceEnvironmentSkuName, IntegrationServiceEnvironmentSkuNameArgs
- Not
Specified - NotSpecified
- Premium
- Premium
- Developer
- Developer
- Integration
Service Environment Sku Name Not Specified - NotSpecified
- Integration
Service Environment Sku Name Premium - Premium
- Integration
Service Environment Sku Name Developer - Developer
- Not
Specified - NotSpecified
- Premium
- Premium
- Developer
- Developer
- Not
Specified - NotSpecified
- Premium
- Premium
- Developer
- Developer
- NOT_SPECIFIED
- NotSpecified
- PREMIUM
- Premium
- DEVELOPER
- Developer
- "Not
Specified" - NotSpecified
- "Premium"
- Premium
- "Developer"
- Developer
IntegrationServiceEnvironmentSkuResponse, IntegrationServiceEnvironmentSkuResponseArgs
IpAddress, IpAddressArgs
- Address string
- The address.
- Address string
- The address.
- address String
- The address.
- address string
- The address.
- address str
- The address.
- address String
- The address.
IpAddressResponse, IpAddressResponseArgs
- Address string
- The address.
- Address string
- The address.
- address String
- The address.
- address string
- The address.
- address str
- The address.
- address String
- The address.
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Logic. Managed Service Identity Type - Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- User
Assigned Dictionary<string, object>Identities - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
- Type
string | Managed
Service Identity Type - Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- User
Assigned map[string]interface{}Identities - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
- type
String | Managed
Service Identity Type - Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- user
Assigned Map<String,Object>Identities - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
- type
string | Managed
Service Identity Type - Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- user
Assigned {[key: string]: any}Identities - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
- type
str | Managed
Service Identity Type - Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- user_
assigned_ Mapping[str, Any]identities - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
- type
String | "System
Assigned" | "User Assigned" | "None" - Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- user
Assigned Map<Any>Identities - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs
- Principal
Id string - Principal Id of managed service identity.
- Tenant
Id string - Tenant of managed service identity.
- Type string
- Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Logic. Inputs. User Assigned Identity Response> - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
- Principal
Id string - Principal Id of managed service identity.
- Tenant
Id string - Tenant of managed service identity.
- Type string
- Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- User
Assigned map[string]UserIdentities Assigned Identity Response - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
- principal
Id String - Principal Id of managed service identity.
- tenant
Id String - Tenant of managed service identity.
- type String
- Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
- principal
Id string - Principal Id of managed service identity.
- tenant
Id string - Tenant of managed service identity.
- type string
- Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
- principal_
id str - Principal Id of managed service identity.
- tenant_
id str - Tenant of managed service identity.
- type str
- Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
- principal
Id String - Principal Id of managed service identity.
- tenant
Id String - Tenant of managed service identity.
- type String
- Type of managed service identity. The type 'SystemAssigned' includes an implicitly created identity. The type 'None' will remove any identities from the resource.
- user
Assigned Map<Property Map>Identities - The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- None
- None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type None - None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "None"
- None
NetworkConfiguration, NetworkConfigurationArgs
- Access
Endpoint Pulumi.Azure Native. Logic. Inputs. Integration Service Environment Access Endpoint - The access endpoint.
- Subnets
List<Pulumi.
Azure Native. Logic. Inputs. Resource Reference> - The subnets.
- Virtual
Network stringAddress Space - Gets the virtual network address space.
- Access
Endpoint IntegrationService Environment Access Endpoint - The access endpoint.
- Subnets
[]Resource
Reference - The subnets.
- Virtual
Network stringAddress Space - Gets the virtual network address space.
- access
Endpoint IntegrationService Environment Access Endpoint - The access endpoint.
- subnets
List<Resource
Reference> - The subnets.
- virtual
Network StringAddress Space - Gets the virtual network address space.
- access
Endpoint IntegrationService Environment Access Endpoint - The access endpoint.
- subnets
Resource
Reference[] - The subnets.
- virtual
Network stringAddress Space - Gets the virtual network address space.
- access_
endpoint IntegrationService Environment Access Endpoint - The access endpoint.
- subnets
Sequence[Resource
Reference] - The subnets.
- virtual_
network_ straddress_ space - Gets the virtual network address space.
- access
Endpoint Property Map - The access endpoint.
- subnets List<Property Map>
- The subnets.
- virtual
Network StringAddress Space - Gets the virtual network address space.
NetworkConfigurationResponse, NetworkConfigurationResponseArgs
- Access
Endpoint Pulumi.Azure Native. Logic. Inputs. Integration Service Environment Access Endpoint Response - The access endpoint.
- Subnets
List<Pulumi.
Azure Native. Logic. Inputs. Resource Reference Response> - The subnets.
- Virtual
Network stringAddress Space - Gets the virtual network address space.
- Access
Endpoint IntegrationService Environment Access Endpoint Response - The access endpoint.
- Subnets
[]Resource
Reference Response - The subnets.
- Virtual
Network stringAddress Space - Gets the virtual network address space.
- access
Endpoint IntegrationService Environment Access Endpoint Response - The access endpoint.
- subnets
List<Resource
Reference Response> - The subnets.
- virtual
Network StringAddress Space - Gets the virtual network address space.
- access
Endpoint IntegrationService Environment Access Endpoint Response - The access endpoint.
- subnets
Resource
Reference Response[] - The subnets.
- virtual
Network stringAddress Space - Gets the virtual network address space.
- access_
endpoint IntegrationService Environment Access Endpoint Response - The access endpoint.
- subnets
Sequence[Resource
Reference Response] - The subnets.
- virtual_
network_ straddress_ space - Gets the virtual network address space.
- access
Endpoint Property Map - The access endpoint.
- subnets List<Property Map>
- The subnets.
- virtual
Network StringAddress Space - Gets the virtual network address space.
ResourceReference, ResourceReferenceArgs
- Id string
- The resource id.
- Id string
- The resource id.
- id String
- The resource id.
- id string
- The resource id.
- id str
- The resource id.
- id String
- The resource id.
ResourceReferenceResponse, ResourceReferenceResponseArgs
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - Client Id of user assigned identity
- Principal
Id string - Principal Id of user assigned identity
- Client
Id string - Client Id of user assigned identity
- Principal
Id string - Principal Id of user assigned identity
- client
Id String - Client Id of user assigned identity
- principal
Id String - Principal Id of user assigned identity
- client
Id string - Client Id of user assigned identity
- principal
Id string - Principal Id of user assigned identity
- client_
id str - Client Id of user assigned identity
- principal_
id str - Principal Id of user assigned identity
- client
Id String - Client Id of user assigned identity
- principal
Id String - Principal Id of user assigned identity
WorkflowProvisioningState, WorkflowProvisioningStateArgs
- Not
Specified - NotSpecified
- Accepted
- Accepted
- Running
- Running
- Ready
- Ready
- Creating
- Creating
- Created
- Created
- Deleting
- Deleting
- Deleted
- Deleted
- Canceled
- Canceled
- Failed
- Failed
- Succeeded
- Succeeded
- Moving
- Moving
- Updating
- Updating
- Registering
- Registering
- Registered
- Registered
- Unregistering
- Unregistering
- Unregistered
- Unregistered
- Completed
- Completed
- Renewing
- Renewing
- Pending
- Pending
- Waiting
- Waiting
- In
Progress - InProgress
- Workflow
Provisioning State Not Specified - NotSpecified
- Workflow
Provisioning State Accepted - Accepted
- Workflow
Provisioning State Running - Running
- Workflow
Provisioning State Ready - Ready
- Workflow
Provisioning State Creating - Creating
- Workflow
Provisioning State Created - Created
- Workflow
Provisioning State Deleting - Deleting
- Workflow
Provisioning State Deleted - Deleted
- Workflow
Provisioning State Canceled - Canceled
- Workflow
Provisioning State Failed - Failed
- Workflow
Provisioning State Succeeded - Succeeded
- Workflow
Provisioning State Moving - Moving
- Workflow
Provisioning State Updating - Updating
- Workflow
Provisioning State Registering - Registering
- Workflow
Provisioning State Registered - Registered
- Workflow
Provisioning State Unregistering - Unregistering
- Workflow
Provisioning State Unregistered - Unregistered
- Workflow
Provisioning State Completed - Completed
- Workflow
Provisioning State Renewing - Renewing
- Workflow
Provisioning State Pending - Pending
- Workflow
Provisioning State Waiting - Waiting
- Workflow
Provisioning State In Progress - InProgress
- Not
Specified - NotSpecified
- Accepted
- Accepted
- Running
- Running
- Ready
- Ready
- Creating
- Creating
- Created
- Created
- Deleting
- Deleting
- Deleted
- Deleted
- Canceled
- Canceled
- Failed
- Failed
- Succeeded
- Succeeded
- Moving
- Moving
- Updating
- Updating
- Registering
- Registering
- Registered
- Registered
- Unregistering
- Unregistering
- Unregistered
- Unregistered
- Completed
- Completed
- Renewing
- Renewing
- Pending
- Pending
- Waiting
- Waiting
- In
Progress - InProgress
- Not
Specified - NotSpecified
- Accepted
- Accepted
- Running
- Running
- Ready
- Ready
- Creating
- Creating
- Created
- Created
- Deleting
- Deleting
- Deleted
- Deleted
- Canceled
- Canceled
- Failed
- Failed
- Succeeded
- Succeeded
- Moving
- Moving
- Updating
- Updating
- Registering
- Registering
- Registered
- Registered
- Unregistering
- Unregistering
- Unregistered
- Unregistered
- Completed
- Completed
- Renewing
- Renewing
- Pending
- Pending
- Waiting
- Waiting
- In
Progress - InProgress
- NOT_SPECIFIED
- NotSpecified
- ACCEPTED
- Accepted
- RUNNING
- Running
- READY
- Ready
- CREATING
- Creating
- CREATED
- Created
- DELETING
- Deleting
- DELETED
- Deleted
- CANCELED
- Canceled
- FAILED
- Failed
- SUCCEEDED
- Succeeded
- MOVING
- Moving
- UPDATING
- Updating
- REGISTERING
- Registering
- REGISTERED
- Registered
- UNREGISTERING
- Unregistering
- UNREGISTERED
- Unregistered
- COMPLETED
- Completed
- RENEWING
- Renewing
- PENDING
- Pending
- WAITING
- Waiting
- IN_PROGRESS
- InProgress
- "Not
Specified" - NotSpecified
- "Accepted"
- Accepted
- "Running"
- Running
- "Ready"
- Ready
- "Creating"
- Creating
- "Created"
- Created
- "Deleting"
- Deleting
- "Deleted"
- Deleted
- "Canceled"
- Canceled
- "Failed"
- Failed
- "Succeeded"
- Succeeded
- "Moving"
- Moving
- "Updating"
- Updating
- "Registering"
- Registering
- "Registered"
- Registered
- "Unregistering"
- Unregistering
- "Unregistered"
- Unregistered
- "Completed"
- Completed
- "Renewing"
- Renewing
- "Pending"
- Pending
- "Waiting"
- Waiting
- "In
Progress" - InProgress
WorkflowState, WorkflowStateArgs
- Not
Specified - NotSpecified
- Completed
- Completed
- Enabled
- Enabled
- Disabled
- Disabled
- Deleted
- Deleted
- Suspended
- Suspended
- Workflow
State Not Specified - NotSpecified
- Workflow
State Completed - Completed
- Workflow
State Enabled - Enabled
- Workflow
State Disabled - Disabled
- Workflow
State Deleted - Deleted
- Workflow
State Suspended - Suspended
- Not
Specified - NotSpecified
- Completed
- Completed
- Enabled
- Enabled
- Disabled
- Disabled
- Deleted
- Deleted
- Suspended
- Suspended
- Not
Specified - NotSpecified
- Completed
- Completed
- Enabled
- Enabled
- Disabled
- Disabled
- Deleted
- Deleted
- Suspended
- Suspended
- NOT_SPECIFIED
- NotSpecified
- COMPLETED
- Completed
- ENABLED
- Enabled
- DISABLED
- Disabled
- DELETED
- Deleted
- SUSPENDED
- Suspended
- "Not
Specified" - NotSpecified
- "Completed"
- Completed
- "Enabled"
- Enabled
- "Disabled"
- Disabled
- "Deleted"
- Deleted
- "Suspended"
- Suspended
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
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0