We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a Logic App Integration Account Map.
Example Usage
using System.IO;
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleIntegrationAccount = new Azure.LogicApps.IntegrationAccount("exampleIntegrationAccount", new Azure.LogicApps.IntegrationAccountArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
SkuName = "Standard",
});
var exampleIntegrationAccountMap = new Azure.LogicApps.IntegrationAccountMap("exampleIntegrationAccountMap", new Azure.LogicApps.IntegrationAccountMapArgs
{
ResourceGroupName = exampleResourceGroup.Name,
IntegrationAccountName = exampleIntegrationAccount.Name,
MapType = "Xslt",
Content = File.ReadAllText("testdata/integration_account_map_content.xsd"),
});
}
}
package main
import (
"io/ioutil"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/logicapps"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func readFileOrPanic(path string) pulumi.StringPtrInput {
data, err := ioutil.ReadFile(path)
if err != nil {
panic(err.Error())
}
return pulumi.String(string(data))
}
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleIntegrationAccount, err := logicapps.NewIntegrationAccount(ctx, "exampleIntegrationAccount", &logicapps.IntegrationAccountArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
SkuName: pulumi.String("Standard"),
})
if err != nil {
return err
}
_, err = logicapps.NewIntegrationAccountMap(ctx, "exampleIntegrationAccountMap", &logicapps.IntegrationAccountMapArgs{
ResourceGroupName: exampleResourceGroup.Name,
IntegrationAccountName: exampleIntegrationAccount.Name,
MapType: pulumi.String("Xslt"),
Content: readFileOrPanic("testdata/integration_account_map_content.xsd"),
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
import * from "fs";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleIntegrationAccount = new azure.logicapps.IntegrationAccount("exampleIntegrationAccount", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
skuName: "Standard",
});
const exampleIntegrationAccountMap = new azure.logicapps.IntegrationAccountMap("exampleIntegrationAccountMap", {
resourceGroupName: exampleResourceGroup.name,
integrationAccountName: exampleIntegrationAccount.name,
mapType: "Xslt",
content: fs.readFileSync("testdata/integration_account_map_content.xsd"),
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_integration_account = azure.logicapps.IntegrationAccount("exampleIntegrationAccount",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku_name="Standard")
example_integration_account_map = azure.logicapps.IntegrationAccountMap("exampleIntegrationAccountMap",
resource_group_name=example_resource_group.name,
integration_account_name=example_integration_account.name,
map_type="Xslt",
content=(lambda path: open(path).read())("testdata/integration_account_map_content.xsd"))
Example coming soon!
Create IntegrationAccountMap Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationAccountMap(name: string, args: IntegrationAccountMapArgs, opts?: CustomResourceOptions);@overload
def IntegrationAccountMap(resource_name: str,
args: IntegrationAccountMapArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationAccountMap(resource_name: str,
opts: Optional[ResourceOptions] = None,
content: Optional[str] = None,
integration_account_name: Optional[str] = None,
map_type: Optional[str] = None,
resource_group_name: Optional[str] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None)func NewIntegrationAccountMap(ctx *Context, name string, args IntegrationAccountMapArgs, opts ...ResourceOption) (*IntegrationAccountMap, error)public IntegrationAccountMap(string name, IntegrationAccountMapArgs args, CustomResourceOptions? opts = null)
public IntegrationAccountMap(String name, IntegrationAccountMapArgs args)
public IntegrationAccountMap(String name, IntegrationAccountMapArgs args, CustomResourceOptions options)
type: azure:logicapps:IntegrationAccountMap
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 IntegrationAccountMapArgs
- 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 IntegrationAccountMapArgs
- 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 IntegrationAccountMapArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationAccountMapArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationAccountMapArgs
- 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 integrationAccountMapResource = new Azure.LogicApps.IntegrationAccountMap("integrationAccountMapResource", new()
{
Content = "string",
IntegrationAccountName = "string",
MapType = "string",
ResourceGroupName = "string",
Metadata =
{
{ "string", "string" },
},
Name = "string",
});
example, err := logicapps.NewIntegrationAccountMapResource(ctx, "integrationAccountMapResource", &logicapps.IntegrationAccountMapResourceArgs{
Content: pulumi.String("string"),
IntegrationAccountName: pulumi.String("string"),
MapType: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Metadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
Name: pulumi.String("string"),
})
var integrationAccountMapResource = new IntegrationAccountMap("integrationAccountMapResource", IntegrationAccountMapArgs.builder()
.content("string")
.integrationAccountName("string")
.mapType("string")
.resourceGroupName("string")
.metadata(Map.of("string", "string"))
.name("string")
.build());
integration_account_map_resource = azure.logicapps.IntegrationAccountMap("integrationAccountMapResource",
content="string",
integration_account_name="string",
map_type="string",
resource_group_name="string",
metadata={
"string": "string",
},
name="string")
const integrationAccountMapResource = new azure.logicapps.IntegrationAccountMap("integrationAccountMapResource", {
content: "string",
integrationAccountName: "string",
mapType: "string",
resourceGroupName: "string",
metadata: {
string: "string",
},
name: "string",
});
type: azure:logicapps:IntegrationAccountMap
properties:
content: string
integrationAccountName: string
mapType: string
metadata:
string: string
name: string
resourceGroupName: string
IntegrationAccountMap Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IntegrationAccountMap resource accepts the following input properties:
- Content string
- The content of the Logic App Integration Account Map.
- Integration
Account stringName - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- Map
Type string - The type of the Logic App Integration Account Map.
- Resource
Group stringName - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- Metadata Dictionary<string, string>
- The metadata of the Logic App Integration Account Map.
- Name string
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- Content string
- The content of the Logic App Integration Account Map.
- Integration
Account stringName - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- Map
Type string - The type of the Logic App Integration Account Map.
- Resource
Group stringName - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- Metadata map[string]string
- The metadata of the Logic App Integration Account Map.
- Name string
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- content String
- The content of the Logic App Integration Account Map.
- integration
Account StringName - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- map
Type String - The type of the Logic App Integration Account Map.
- resource
Group StringName - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- metadata Map<String,String>
- The metadata of the Logic App Integration Account Map.
- name String
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- content string
- The content of the Logic App Integration Account Map.
- integration
Account stringName - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- map
Type string - The type of the Logic App Integration Account Map.
- resource
Group stringName - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- metadata {[key: string]: string}
- The metadata of the Logic App Integration Account Map.
- name string
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- content str
- The content of the Logic App Integration Account Map.
- integration_
account_ strname - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- map_
type str - The type of the Logic App Integration Account Map.
- resource_
group_ strname - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- metadata Mapping[str, str]
- The metadata of the Logic App Integration Account Map.
- name str
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- content String
- The content of the Logic App Integration Account Map.
- integration
Account StringName - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- map
Type String - The type of the Logic App Integration Account Map.
- resource
Group StringName - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- metadata Map<String>
- The metadata of the Logic App Integration Account Map.
- name String
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationAccountMap resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing IntegrationAccountMap Resource
Get an existing IntegrationAccountMap resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IntegrationAccountMapState, opts?: CustomResourceOptions): IntegrationAccountMap@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
content: Optional[str] = None,
integration_account_name: Optional[str] = None,
map_type: Optional[str] = None,
metadata: Optional[Mapping[str, str]] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None) -> IntegrationAccountMapfunc GetIntegrationAccountMap(ctx *Context, name string, id IDInput, state *IntegrationAccountMapState, opts ...ResourceOption) (*IntegrationAccountMap, error)public static IntegrationAccountMap Get(string name, Input<string> id, IntegrationAccountMapState? state, CustomResourceOptions? opts = null)public static IntegrationAccountMap get(String name, Output<String> id, IntegrationAccountMapState state, CustomResourceOptions options)resources: _: type: azure:logicapps:IntegrationAccountMap get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Content string
- The content of the Logic App Integration Account Map.
- Integration
Account stringName - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- Map
Type string - The type of the Logic App Integration Account Map.
- Metadata Dictionary<string, string>
- The metadata of the Logic App Integration Account Map.
- Name string
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- Resource
Group stringName - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- Content string
- The content of the Logic App Integration Account Map.
- Integration
Account stringName - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- Map
Type string - The type of the Logic App Integration Account Map.
- Metadata map[string]string
- The metadata of the Logic App Integration Account Map.
- Name string
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- Resource
Group stringName - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- content String
- The content of the Logic App Integration Account Map.
- integration
Account StringName - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- map
Type String - The type of the Logic App Integration Account Map.
- metadata Map<String,String>
- The metadata of the Logic App Integration Account Map.
- name String
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- resource
Group StringName - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- content string
- The content of the Logic App Integration Account Map.
- integration
Account stringName - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- map
Type string - The type of the Logic App Integration Account Map.
- metadata {[key: string]: string}
- The metadata of the Logic App Integration Account Map.
- name string
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- resource
Group stringName - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- content str
- The content of the Logic App Integration Account Map.
- integration_
account_ strname - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- map_
type str - The type of the Logic App Integration Account Map.
- metadata Mapping[str, str]
- The metadata of the Logic App Integration Account Map.
- name str
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- resource_
group_ strname - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
- content String
- The content of the Logic App Integration Account Map.
- integration
Account StringName - The name of the Logic App Integration Account. Changing this forces a new Logic App Integration Account Map to be created.
- map
Type String - The type of the Logic App Integration Account Map.
- metadata Map<String>
- The metadata of the Logic App Integration Account Map.
- name String
- The name which should be used for this Logic App Integration Account Map. Changing this forces a new Logic App Integration Account Map to be created.
- resource
Group StringName - The name of the Resource Group where the Logic App Integration Account Map should exist. Changing this forces a new Logic App Integration Account Map to be created.
Import
Logic App Integration Account Maps can be imported using the resource id, e.g.
$ pulumi import azure:logicapps/integrationAccountMap:IntegrationAccountMap example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Logic/integrationAccounts/account1/maps/map1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
