We recommend using Azure Native.
azure.logicapps.IntegrationAccountMap
Explore with Pulumi AI
Manages a Logic App Integration Account Map.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
import * as std from "@pulumi/std";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleIntegrationAccount = new azure.logicapps.IntegrationAccount("example", {
name: "example-ia",
location: example.location,
resourceGroupName: example.name,
skuName: "Standard",
});
const exampleIntegrationAccountMap = new azure.logicapps.IntegrationAccountMap("example", {
name: "example-iamap",
resourceGroupName: example.name,
integrationAccountName: exampleIntegrationAccount.name,
mapType: "Xslt",
content: std.file({
input: "testdata/integration_account_map_content.xsd",
}).then(invoke => invoke.result),
});
import pulumi
import pulumi_azure as azure
import pulumi_std as std
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_integration_account = azure.logicapps.IntegrationAccount("example",
name="example-ia",
location=example.location,
resource_group_name=example.name,
sku_name="Standard")
example_integration_account_map = azure.logicapps.IntegrationAccountMap("example",
name="example-iamap",
resource_group_name=example.name,
integration_account_name=example_integration_account.name,
map_type="Xslt",
content=std.file(input="testdata/integration_account_map_content.xsd").result)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/logicapps"
"github.com/pulumi/pulumi-std/sdk/go/std"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleIntegrationAccount, err := logicapps.NewIntegrationAccount(ctx, "example", &logicapps.IntegrationAccountArgs{
Name: pulumi.String("example-ia"),
Location: example.Location,
ResourceGroupName: example.Name,
SkuName: pulumi.String("Standard"),
})
if err != nil {
return err
}
invokeFile, err := std.File(ctx, &std.FileArgs{
Input: "testdata/integration_account_map_content.xsd",
}, nil)
if err != nil {
return err
}
_, err = logicapps.NewIntegrationAccountMap(ctx, "example", &logicapps.IntegrationAccountMapArgs{
Name: pulumi.String("example-iamap"),
ResourceGroupName: example.Name,
IntegrationAccountName: exampleIntegrationAccount.Name,
MapType: pulumi.String("Xslt"),
Content: invokeFile.Result,
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
using Std = Pulumi.Std;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleIntegrationAccount = new Azure.LogicApps.IntegrationAccount("example", new()
{
Name = "example-ia",
Location = example.Location,
ResourceGroupName = example.Name,
SkuName = "Standard",
});
var exampleIntegrationAccountMap = new Azure.LogicApps.IntegrationAccountMap("example", new()
{
Name = "example-iamap",
ResourceGroupName = example.Name,
IntegrationAccountName = exampleIntegrationAccount.Name,
MapType = "Xslt",
Content = Std.File.Invoke(new()
{
Input = "testdata/integration_account_map_content.xsd",
}).Apply(invoke => invoke.Result),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.logicapps.IntegrationAccount;
import com.pulumi.azure.logicapps.IntegrationAccountArgs;
import com.pulumi.azure.logicapps.IntegrationAccountMap;
import com.pulumi.azure.logicapps.IntegrationAccountMapArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleIntegrationAccount = new IntegrationAccount("exampleIntegrationAccount", IntegrationAccountArgs.builder()
.name("example-ia")
.location(example.location())
.resourceGroupName(example.name())
.skuName("Standard")
.build());
var exampleIntegrationAccountMap = new IntegrationAccountMap("exampleIntegrationAccountMap", IntegrationAccountMapArgs.builder()
.name("example-iamap")
.resourceGroupName(example.name())
.integrationAccountName(exampleIntegrationAccount.name())
.mapType("Xslt")
.content(StdFunctions.file(FileArgs.builder()
.input("testdata/integration_account_map_content.xsd")
.build()).result())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleIntegrationAccount:
type: azure:logicapps:IntegrationAccount
name: example
properties:
name: example-ia
location: ${example.location}
resourceGroupName: ${example.name}
skuName: Standard
exampleIntegrationAccountMap:
type: azure:logicapps:IntegrationAccountMap
name: example
properties:
name: example-iamap
resourceGroupName: ${example.name}
integrationAccountName: ${exampleIntegrationAccount.name}
mapType: Xslt
content:
fn::invoke:
Function: std:file
Arguments:
input: testdata/integration_account_map_content.xsd
Return: result
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.NewIntegrationAccountMap(ctx, "integrationAccountMapResource", &logicapps.IntegrationAccountMapArgs{
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
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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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) -> IntegrationAccountMap
func 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)
Resource lookup is not supported in YAML
- 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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. Possible values are
Liquid
,NotSpecified
,Xslt
,Xslt30
andXslt20
. - 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
azurerm
Terraform Provider.