1. Packages
  2. Azure Native v2
  3. API Docs
  4. logic
  5. IntegrationAccountMap
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.logic.IntegrationAccountMap

Explore with Pulumi AI

The integration account map. Azure REST API version: 2019-05-01. Prior API version in Azure Native 1.x: 2019-05-01.

Other available API versions: 2015-08-01-preview.

Example Usage

Create or update a map

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var integrationAccountMap = new AzureNative.Logic.IntegrationAccountMap("integrationAccountMap", new()
    {
        Content = @"<?xml version=""1.0"" encoding=""UTF-16""?>
<xsl:stylesheet xmlns:xsl=""http://www.w3.org/1999/XSL/Transform"" xmlns:msxsl=""urn:schemas-microsoft-com:xslt"" xmlns:var=""http://schemas.microsoft.com/BizTalk/2003/var"" exclude-result-prefixes=""msxsl var s0 userCSharp"" version=""1.0"" xmlns:ns0=""http://BizTalk_Server_Project4.StringFunctoidsDestinationSchema"" xmlns:s0=""http://BizTalk_Server_Project4.StringFunctoidsSourceSchema"" xmlns:userCSharp=""http://schemas.microsoft.com/BizTalk/2003/userCSharp"">
  <xsl:import href=""http://btsfunctoids.blob.core.windows.net/functoids/functoids.xslt"" />
  <xsl:output omit-xml-declaration=""yes"" method=""xml"" version=""1.0"" />
  <xsl:template match=""/"">
    <xsl:apply-templates select=""/s0:Root"" />
  </xsl:template>
  <xsl:template match=""/s0:Root"">
    <xsl:variable name=""var:v1"" select=""userCSharp:StringFind(string(StringFindSource/text()) , &quot;SearchString&quot;)"" />
    <xsl:variable name=""var:v2"" select=""userCSharp:StringLeft(string(StringLeftSource/text()) , &quot;2&quot;)"" />
    <xsl:variable name=""var:v3"" select=""userCSharp:StringRight(string(StringRightSource/text()) , &quot;2&quot;)"" />
    <xsl:variable name=""var:v4"" select=""userCSharp:StringUpperCase(string(UppercaseSource/text()))"" />
    <xsl:variable name=""var:v5"" select=""userCSharp:StringLowerCase(string(LowercaseSource/text()))"" />
    <xsl:variable name=""var:v6"" select=""userCSharp:StringSize(string(SizeSource/text()))"" />
    <xsl:variable name=""var:v7"" select=""userCSharp:StringSubstring(string(StringExtractSource/text()) , &quot;0&quot; , &quot;2&quot;)"" />
    <xsl:variable name=""var:v8"" select=""userCSharp:StringConcat(string(StringConcatSource/text()))"" />
    <xsl:variable name=""var:v9"" select=""userCSharp:StringTrimLeft(string(StringLeftTrimSource/text()))"" />
    <xsl:variable name=""var:v10"" select=""userCSharp:StringTrimRight(string(StringRightTrimSource/text()))"" />
    <ns0:Root>
      <StringFindDestination>
        <xsl:value-of select=""$var:v1"" />
      </StringFindDestination>
      <StringLeftDestination>
        <xsl:value-of select=""$var:v2"" />
      </StringLeftDestination>
      <StringRightDestination>
        <xsl:value-of select=""$var:v3"" />
      </StringRightDestination>
      <UppercaseDestination>
        <xsl:value-of select=""$var:v4"" />
      </UppercaseDestination>
      <LowercaseDestination>
        <xsl:value-of select=""$var:v5"" />
      </LowercaseDestination>
      <SizeDestination>
        <xsl:value-of select=""$var:v6"" />
      </SizeDestination>
      <StringExtractDestination>
        <xsl:value-of select=""$var:v7"" />
      </StringExtractDestination>
      <StringConcatDestination>
        <xsl:value-of select=""$var:v8"" />
      </StringConcatDestination>
      <StringLeftTrimDestination>
        <xsl:value-of select=""$var:v9"" />
      </StringLeftTrimDestination>
      <StringRightTrimDestination>
        <xsl:value-of select=""$var:v10"" />
      </StringRightTrimDestination>
    </ns0:Root>
  </xsl:template>
</xsl:stylesheet>",
        ContentType = "application/xml",
        IntegrationAccountName = "testIntegrationAccount",
        Location = "westus",
        MapName = "testMap",
        MapType = AzureNative.Logic.MapType.Xslt,
        Metadata = null,
        ResourceGroupName = "testResourceGroup",
    });

});
Copy
package main

import (
	logic "github.com/pulumi/pulumi-azure-native-sdk/logic/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := logic.NewIntegrationAccountMap(ctx, "integrationAccountMap", &logic.IntegrationAccountMapArgs{
			Content: pulumi.String(`<?xml version="1.0" encoding="UTF-16"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:var="http://schemas.microsoft.com/BizTalk/2003/var" exclude-result-prefixes="msxsl var s0 userCSharp" version="1.0" xmlns:ns0="http://BizTalk_Server_Project4.StringFunctoidsDestinationSchema" xmlns:s0="http://BizTalk_Server_Project4.StringFunctoidsSourceSchema" xmlns:userCSharp="http://schemas.microsoft.com/BizTalk/2003/userCSharp">
  <xsl:import href="http://btsfunctoids.blob.core.windows.net/functoids/functoids.xslt" />
  <xsl:output omit-xml-declaration="yes" method="xml" version="1.0" />
  <xsl:template match="/">
    <xsl:apply-templates select="/s0:Root" />
  </xsl:template>
  <xsl:template match="/s0:Root">
    <xsl:variable name="var:v1" select="userCSharp:StringFind(string(StringFindSource/text()) , &quot;SearchString&quot;)" />
    <xsl:variable name="var:v2" select="userCSharp:StringLeft(string(StringLeftSource/text()) , &quot;2&quot;)" />
    <xsl:variable name="var:v3" select="userCSharp:StringRight(string(StringRightSource/text()) , &quot;2&quot;)" />
    <xsl:variable name="var:v4" select="userCSharp:StringUpperCase(string(UppercaseSource/text()))" />
    <xsl:variable name="var:v5" select="userCSharp:StringLowerCase(string(LowercaseSource/text()))" />
    <xsl:variable name="var:v6" select="userCSharp:StringSize(string(SizeSource/text()))" />
    <xsl:variable name="var:v7" select="userCSharp:StringSubstring(string(StringExtractSource/text()) , &quot;0&quot; , &quot;2&quot;)" />
    <xsl:variable name="var:v8" select="userCSharp:StringConcat(string(StringConcatSource/text()))" />
    <xsl:variable name="var:v9" select="userCSharp:StringTrimLeft(string(StringLeftTrimSource/text()))" />
    <xsl:variable name="var:v10" select="userCSharp:StringTrimRight(string(StringRightTrimSource/text()))" />
    <ns0:Root>
      <StringFindDestination>
        <xsl:value-of select="$var:v1" />
      </StringFindDestination>
      <StringLeftDestination>
        <xsl:value-of select="$var:v2" />
      </StringLeftDestination>
      <StringRightDestination>
        <xsl:value-of select="$var:v3" />
      </StringRightDestination>
      <UppercaseDestination>
        <xsl:value-of select="$var:v4" />
      </UppercaseDestination>
      <LowercaseDestination>
        <xsl:value-of select="$var:v5" />
      </LowercaseDestination>
      <SizeDestination>
        <xsl:value-of select="$var:v6" />
      </SizeDestination>
      <StringExtractDestination>
        <xsl:value-of select="$var:v7" />
      </StringExtractDestination>
      <StringConcatDestination>
        <xsl:value-of select="$var:v8" />
      </StringConcatDestination>
      <StringLeftTrimDestination>
        <xsl:value-of select="$var:v9" />
      </StringLeftTrimDestination>
      <StringRightTrimDestination>
        <xsl:value-of select="$var:v10" />
      </StringRightTrimDestination>
    </ns0:Root>
  </xsl:template>
</xsl:stylesheet>`),
			ContentType:            pulumi.String("application/xml"),
			IntegrationAccountName: pulumi.String("testIntegrationAccount"),
			Location:               pulumi.String("westus"),
			MapName:                pulumi.String("testMap"),
			MapType:                pulumi.String(logic.MapTypeXslt),
			Metadata:               pulumi.Any(map[string]interface{}{}),
			ResourceGroupName:      pulumi.String("testResourceGroup"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.logic.IntegrationAccountMap;
import com.pulumi.azurenative.logic.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 integrationAccountMap = new IntegrationAccountMap("integrationAccountMap", IntegrationAccountMapArgs.builder()
            .content("""
<?xml version="1.0" encoding="UTF-16"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:var="http://schemas.microsoft.com/BizTalk/2003/var" exclude-result-prefixes="msxsl var s0 userCSharp" version="1.0" xmlns:ns0="http://BizTalk_Server_Project4.StringFunctoidsDestinationSchema" xmlns:s0="http://BizTalk_Server_Project4.StringFunctoidsSourceSchema" xmlns:userCSharp="http://schemas.microsoft.com/BizTalk/2003/userCSharp">
  <xsl:import href="http://btsfunctoids.blob.core.windows.net/functoids/functoids.xslt" />
  <xsl:output omit-xml-declaration="yes" method="xml" version="1.0" />
  <xsl:template match="/">
    <xsl:apply-templates select="/s0:Root" />
  </xsl:template>
  <xsl:template match="/s0:Root">
    <xsl:variable name="var:v1" select="userCSharp:StringFind(string(StringFindSource/text()) , &quot;SearchString&quot;)" />
    <xsl:variable name="var:v2" select="userCSharp:StringLeft(string(StringLeftSource/text()) , &quot;2&quot;)" />
    <xsl:variable name="var:v3" select="userCSharp:StringRight(string(StringRightSource/text()) , &quot;2&quot;)" />
    <xsl:variable name="var:v4" select="userCSharp:StringUpperCase(string(UppercaseSource/text()))" />
    <xsl:variable name="var:v5" select="userCSharp:StringLowerCase(string(LowercaseSource/text()))" />
    <xsl:variable name="var:v6" select="userCSharp:StringSize(string(SizeSource/text()))" />
    <xsl:variable name="var:v7" select="userCSharp:StringSubstring(string(StringExtractSource/text()) , &quot;0&quot; , &quot;2&quot;)" />
    <xsl:variable name="var:v8" select="userCSharp:StringConcat(string(StringConcatSource/text()))" />
    <xsl:variable name="var:v9" select="userCSharp:StringTrimLeft(string(StringLeftTrimSource/text()))" />
    <xsl:variable name="var:v10" select="userCSharp:StringTrimRight(string(StringRightTrimSource/text()))" />
    <ns0:Root>
      <StringFindDestination>
        <xsl:value-of select="$var:v1" />
      </StringFindDestination>
      <StringLeftDestination>
        <xsl:value-of select="$var:v2" />
      </StringLeftDestination>
      <StringRightDestination>
        <xsl:value-of select="$var:v3" />
      </StringRightDestination>
      <UppercaseDestination>
        <xsl:value-of select="$var:v4" />
      </UppercaseDestination>
      <LowercaseDestination>
        <xsl:value-of select="$var:v5" />
      </LowercaseDestination>
      <SizeDestination>
        <xsl:value-of select="$var:v6" />
      </SizeDestination>
      <StringExtractDestination>
        <xsl:value-of select="$var:v7" />
      </StringExtractDestination>
      <StringConcatDestination>
        <xsl:value-of select="$var:v8" />
      </StringConcatDestination>
      <StringLeftTrimDestination>
        <xsl:value-of select="$var:v9" />
      </StringLeftTrimDestination>
      <StringRightTrimDestination>
        <xsl:value-of select="$var:v10" />
      </StringRightTrimDestination>
    </ns0:Root>
  </xsl:template>
</xsl:stylesheet>            """)
            .contentType("application/xml")
            .integrationAccountName("testIntegrationAccount")
            .location("westus")
            .mapName("testMap")
            .mapType("Xslt")
            .metadata()
            .resourceGroupName("testResourceGroup")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const integrationAccountMap = new azure_native.logic.IntegrationAccountMap("integrationAccountMap", {
    content: `<?xml version="1.0" encoding="UTF-16"?>\x0d
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:var="http://schemas.microsoft.com/BizTalk/2003/var" exclude-result-prefixes="msxsl var s0 userCSharp" version="1.0" xmlns:ns0="http://BizTalk_Server_Project4.StringFunctoidsDestinationSchema" xmlns:s0="http://BizTalk_Server_Project4.StringFunctoidsSourceSchema" xmlns:userCSharp="http://schemas.microsoft.com/BizTalk/2003/userCSharp">\x0d
  <xsl:import href="http://btsfunctoids.blob.core.windows.net/functoids/functoids.xslt" />\x0d
  <xsl:output omit-xml-declaration="yes" method="xml" version="1.0" />\x0d
  <xsl:template match="/">\x0d
    <xsl:apply-templates select="/s0:Root" />\x0d
  </xsl:template>\x0d
  <xsl:template match="/s0:Root">\x0d
    <xsl:variable name="var:v1" select="userCSharp:StringFind(string(StringFindSource/text()) , &quot;SearchString&quot;)" />\x0d
    <xsl:variable name="var:v2" select="userCSharp:StringLeft(string(StringLeftSource/text()) , &quot;2&quot;)" />\x0d
    <xsl:variable name="var:v3" select="userCSharp:StringRight(string(StringRightSource/text()) , &quot;2&quot;)" />\x0d
    <xsl:variable name="var:v4" select="userCSharp:StringUpperCase(string(UppercaseSource/text()))" />\x0d
    <xsl:variable name="var:v5" select="userCSharp:StringLowerCase(string(LowercaseSource/text()))" />\x0d
    <xsl:variable name="var:v6" select="userCSharp:StringSize(string(SizeSource/text()))" />\x0d
    <xsl:variable name="var:v7" select="userCSharp:StringSubstring(string(StringExtractSource/text()) , &quot;0&quot; , &quot;2&quot;)" />\x0d
    <xsl:variable name="var:v8" select="userCSharp:StringConcat(string(StringConcatSource/text()))" />\x0d
    <xsl:variable name="var:v9" select="userCSharp:StringTrimLeft(string(StringLeftTrimSource/text()))" />\x0d
    <xsl:variable name="var:v10" select="userCSharp:StringTrimRight(string(StringRightTrimSource/text()))" />\x0d
    <ns0:Root>\x0d
      <StringFindDestination>\x0d
        <xsl:value-of select="var:v1" />\x0d
      </StringFindDestination>\x0d
      <StringLeftDestination>\x0d
        <xsl:value-of select="var:v2" />\x0d
      </StringLeftDestination>\x0d
      <StringRightDestination>\x0d
        <xsl:value-of select="var:v3" />\x0d
      </StringRightDestination>\x0d
      <UppercaseDestination>\x0d
        <xsl:value-of select="var:v4" />\x0d
      </UppercaseDestination>\x0d
      <LowercaseDestination>\x0d
        <xsl:value-of select="var:v5" />\x0d
      </LowercaseDestination>\x0d
      <SizeDestination>\x0d
        <xsl:value-of select="var:v6" />\x0d
      </SizeDestination>\x0d
      <StringExtractDestination>\x0d
        <xsl:value-of select="var:v7" />\x0d
      </StringExtractDestination>\x0d
      <StringConcatDestination>\x0d
        <xsl:value-of select="var:v8" />\x0d
      </StringConcatDestination>\x0d
      <StringLeftTrimDestination>\x0d
        <xsl:value-of select="var:v9" />\x0d
      </StringLeftTrimDestination>\x0d
      <StringRightTrimDestination>\x0d
        <xsl:value-of select="var:v10" />\x0d
      </StringRightTrimDestination>\x0d
    </ns0:Root>\x0d
  </xsl:template>\x0d
</xsl:stylesheet>`,
    contentType: "application/xml",
    integrationAccountName: "testIntegrationAccount",
    location: "westus",
    mapName: "testMap",
    mapType: azure_native.logic.MapType.Xslt,
    metadata: {},
    resourceGroupName: "testResourceGroup",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

integration_account_map = azure_native.logic.IntegrationAccountMap("integrationAccountMap",
    content="""<?xml version="1.0" encoding="UTF-16"?>\x0d
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:var="http://schemas.microsoft.com/BizTalk/2003/var" exclude-result-prefixes="msxsl var s0 userCSharp" version="1.0" xmlns:ns0="http://BizTalk_Server_Project4.StringFunctoidsDestinationSchema" xmlns:s0="http://BizTalk_Server_Project4.StringFunctoidsSourceSchema" xmlns:userCSharp="http://schemas.microsoft.com/BizTalk/2003/userCSharp">\x0d
  <xsl:import href="http://btsfunctoids.blob.core.windows.net/functoids/functoids.xslt" />\x0d
  <xsl:output omit-xml-declaration="yes" method="xml" version="1.0" />\x0d
  <xsl:template match="/">\x0d
    <xsl:apply-templates select="/s0:Root" />\x0d
  </xsl:template>\x0d
  <xsl:template match="/s0:Root">\x0d
    <xsl:variable name="var:v1" select="userCSharp:StringFind(string(StringFindSource/text()) , &quot;SearchString&quot;)" />\x0d
    <xsl:variable name="var:v2" select="userCSharp:StringLeft(string(StringLeftSource/text()) , &quot;2&quot;)" />\x0d
    <xsl:variable name="var:v3" select="userCSharp:StringRight(string(StringRightSource/text()) , &quot;2&quot;)" />\x0d
    <xsl:variable name="var:v4" select="userCSharp:StringUpperCase(string(UppercaseSource/text()))" />\x0d
    <xsl:variable name="var:v5" select="userCSharp:StringLowerCase(string(LowercaseSource/text()))" />\x0d
    <xsl:variable name="var:v6" select="userCSharp:StringSize(string(SizeSource/text()))" />\x0d
    <xsl:variable name="var:v7" select="userCSharp:StringSubstring(string(StringExtractSource/text()) , &quot;0&quot; , &quot;2&quot;)" />\x0d
    <xsl:variable name="var:v8" select="userCSharp:StringConcat(string(StringConcatSource/text()))" />\x0d
    <xsl:variable name="var:v9" select="userCSharp:StringTrimLeft(string(StringLeftTrimSource/text()))" />\x0d
    <xsl:variable name="var:v10" select="userCSharp:StringTrimRight(string(StringRightTrimSource/text()))" />\x0d
    <ns0:Root>\x0d
      <StringFindDestination>\x0d
        <xsl:value-of select="$var:v1" />\x0d
      </StringFindDestination>\x0d
      <StringLeftDestination>\x0d
        <xsl:value-of select="$var:v2" />\x0d
      </StringLeftDestination>\x0d
      <StringRightDestination>\x0d
        <xsl:value-of select="$var:v3" />\x0d
      </StringRightDestination>\x0d
      <UppercaseDestination>\x0d
        <xsl:value-of select="$var:v4" />\x0d
      </UppercaseDestination>\x0d
      <LowercaseDestination>\x0d
        <xsl:value-of select="$var:v5" />\x0d
      </LowercaseDestination>\x0d
      <SizeDestination>\x0d
        <xsl:value-of select="$var:v6" />\x0d
      </SizeDestination>\x0d
      <StringExtractDestination>\x0d
        <xsl:value-of select="$var:v7" />\x0d
      </StringExtractDestination>\x0d
      <StringConcatDestination>\x0d
        <xsl:value-of select="$var:v8" />\x0d
      </StringConcatDestination>\x0d
      <StringLeftTrimDestination>\x0d
        <xsl:value-of select="$var:v9" />\x0d
      </StringLeftTrimDestination>\x0d
      <StringRightTrimDestination>\x0d
        <xsl:value-of select="$var:v10" />\x0d
      </StringRightTrimDestination>\x0d
    </ns0:Root>\x0d
  </xsl:template>\x0d
</xsl:stylesheet>""",
    content_type="application/xml",
    integration_account_name="testIntegrationAccount",
    location="westus",
    map_name="testMap",
    map_type=azure_native.logic.MapType.XSLT,
    metadata={},
    resource_group_name="testResourceGroup")
Copy
resources:
  integrationAccountMap:
    type: azure-native:logic:IntegrationAccountMap
    properties:
      content: "<?xml version=\"1.0\" encoding=\"UTF-16\"?>\r\n<xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" xmlns:msxsl=\"urn:schemas-microsoft-com:xslt\" xmlns:var=\"http://schemas.microsoft.com/BizTalk/2003/var\" exclude-result-prefixes=\"msxsl var s0 userCSharp\" version=\"1.0\" xmlns:ns0=\"http://BizTalk_Server_Project4.StringFunctoidsDestinationSchema\" xmlns:s0=\"http://BizTalk_Server_Project4.StringFunctoidsSourceSchema\" xmlns:userCSharp=\"http://schemas.microsoft.com/BizTalk/2003/userCSharp\">\r\n  <xsl:import href=\"http://btsfunctoids.blob.core.windows.net/functoids/functoids.xslt\" />\r\n  <xsl:output omit-xml-declaration=\"yes\" method=\"xml\" version=\"1.0\" />\r\n  <xsl:template match=\"/\">\r\n    <xsl:apply-templates select=\"/s0:Root\" />\r\n  </xsl:template>\r\n  <xsl:template match=\"/s0:Root\">\r\n    <xsl:variable name=\"var:v1\" select=\"userCSharp:StringFind(string(StringFindSource/text()) , &quot;SearchString&quot;)\" />\r\n    <xsl:variable name=\"var:v2\" select=\"userCSharp:StringLeft(string(StringLeftSource/text()) , &quot;2&quot;)\" />\r\n    <xsl:variable name=\"var:v3\" select=\"userCSharp:StringRight(string(StringRightSource/text()) , &quot;2&quot;)\" />\r\n    <xsl:variable name=\"var:v4\" select=\"userCSharp:StringUpperCase(string(UppercaseSource/text()))\" />\r\n    <xsl:variable name=\"var:v5\" select=\"userCSharp:StringLowerCase(string(LowercaseSource/text()))\" />\r\n    <xsl:variable name=\"var:v6\" select=\"userCSharp:StringSize(string(SizeSource/text()))\" />\r\n    <xsl:variable name=\"var:v7\" select=\"userCSharp:StringSubstring(string(StringExtractSource/text()) , &quot;0&quot; , &quot;2&quot;)\" />\r\n    <xsl:variable name=\"var:v8\" select=\"userCSharp:StringConcat(string(StringConcatSource/text()))\" />\r\n    <xsl:variable name=\"var:v9\" select=\"userCSharp:StringTrimLeft(string(StringLeftTrimSource/text()))\" />\r\n    <xsl:variable name=\"var:v10\" select=\"userCSharp:StringTrimRight(string(StringRightTrimSource/text()))\" />\r\n    <ns0:Root>\r\n      <StringFindDestination>\r\n        <xsl:value-of select=\"$var:v1\" />\r\n      </StringFindDestination>\r\n      <StringLeftDestination>\r\n        <xsl:value-of select=\"$var:v2\" />\r\n      </StringLeftDestination>\r\n      <StringRightDestination>\r\n        <xsl:value-of select=\"$var:v3\" />\r\n      </StringRightDestination>\r\n      <UppercaseDestination>\r\n        <xsl:value-of select=\"$var:v4\" />\r\n      </UppercaseDestination>\r\n      <LowercaseDestination>\r\n        <xsl:value-of select=\"$var:v5\" />\r\n      </LowercaseDestination>\r\n      <SizeDestination>\r\n        <xsl:value-of select=\"$var:v6\" />\r\n      </SizeDestination>\r\n      <StringExtractDestination>\r\n        <xsl:value-of select=\"$var:v7\" />\r\n      </StringExtractDestination>\r\n      <StringConcatDestination>\r\n        <xsl:value-of select=\"$var:v8\" />\r\n      </StringConcatDestination>\r\n      <StringLeftTrimDestination>\r\n        <xsl:value-of select=\"$var:v9\" />\r\n      </StringLeftTrimDestination>\r\n      <StringRightTrimDestination>\r\n        <xsl:value-of select=\"$var:v10\" />\r\n      </StringRightTrimDestination>\r\n    </ns0:Root>\r\n  </xsl:template>\r\n</xsl:stylesheet>"
      contentType: application/xml
      integrationAccountName: testIntegrationAccount
      location: westus
      mapName: testMap
      mapType: Xslt
      metadata: {}
      resourceGroupName: testResourceGroup
Copy

Create or update a map larger than 4 MB

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var integrationAccountMap = new AzureNative.Logic.IntegrationAccountMap("integrationAccountMap", new()
    {
        ContentType = "application/xml",
        IntegrationAccountName = "testIntegrationAccount",
        Location = "westus",
        MapName = "testMap",
        MapType = AzureNative.Logic.MapType.Xslt,
        Metadata = null,
        ResourceGroupName = "testResourceGroup",
    });

});
Copy
package main

import (
	logic "github.com/pulumi/pulumi-azure-native-sdk/logic/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := logic.NewIntegrationAccountMap(ctx, "integrationAccountMap", &logic.IntegrationAccountMapArgs{
			ContentType:            pulumi.String("application/xml"),
			IntegrationAccountName: pulumi.String("testIntegrationAccount"),
			Location:               pulumi.String("westus"),
			MapName:                pulumi.String("testMap"),
			MapType:                pulumi.String(logic.MapTypeXslt),
			Metadata:               pulumi.Any(map[string]interface{}{}),
			ResourceGroupName:      pulumi.String("testResourceGroup"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.logic.IntegrationAccountMap;
import com.pulumi.azurenative.logic.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 integrationAccountMap = new IntegrationAccountMap("integrationAccountMap", IntegrationAccountMapArgs.builder()
            .contentType("application/xml")
            .integrationAccountName("testIntegrationAccount")
            .location("westus")
            .mapName("testMap")
            .mapType("Xslt")
            .metadata()
            .resourceGroupName("testResourceGroup")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const integrationAccountMap = new azure_native.logic.IntegrationAccountMap("integrationAccountMap", {
    contentType: "application/xml",
    integrationAccountName: "testIntegrationAccount",
    location: "westus",
    mapName: "testMap",
    mapType: azure_native.logic.MapType.Xslt,
    metadata: {},
    resourceGroupName: "testResourceGroup",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

integration_account_map = azure_native.logic.IntegrationAccountMap("integrationAccountMap",
    content_type="application/xml",
    integration_account_name="testIntegrationAccount",
    location="westus",
    map_name="testMap",
    map_type=azure_native.logic.MapType.XSLT,
    metadata={},
    resource_group_name="testResourceGroup")
Copy
resources:
  integrationAccountMap:
    type: azure-native:logic:IntegrationAccountMap
    properties:
      contentType: application/xml
      integrationAccountName: testIntegrationAccount
      location: westus
      mapName: testMap
      mapType: Xslt
      metadata: {}
      resourceGroupName: testResourceGroup
Copy

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,
                          integration_account_name: Optional[str] = None,
                          map_type: Optional[Union[str, MapType]] = None,
                          resource_group_name: Optional[str] = None,
                          content: Optional[str] = None,
                          content_type: Optional[str] = None,
                          location: Optional[str] = None,
                          map_name: Optional[str] = None,
                          metadata: Optional[Any] = None,
                          parameters_schema: Optional[IntegrationAccountMapPropertiesParametersSchemaArgs] = None,
                          tags: Optional[Mapping[str, 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-native:logic:IntegrationAccountMap
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. IntegrationAccountMapArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. IntegrationAccountMapArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. IntegrationAccountMapArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. 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 AzureNative.Logic.IntegrationAccountMap("integrationAccountMapResource", new()
{
    IntegrationAccountName = "string",
    MapType = "string",
    ResourceGroupName = "string",
    Content = "string",
    ContentType = "string",
    Location = "string",
    MapName = "string",
    Metadata = "any",
    ParametersSchema = 
    {
        { "ref", "string" },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := logic.NewIntegrationAccountMap(ctx, "integrationAccountMapResource", &logic.IntegrationAccountMapArgs{
	IntegrationAccountName: "string",
	MapType:                "string",
	ResourceGroupName:      "string",
	Content:                "string",
	ContentType:            "string",
	Location:               "string",
	MapName:                "string",
	Metadata:               "any",
	ParametersSchema: map[string]interface{}{
		"ref": "string",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var integrationAccountMapResource = new IntegrationAccountMap("integrationAccountMapResource", IntegrationAccountMapArgs.builder()
    .integrationAccountName("string")
    .mapType("string")
    .resourceGroupName("string")
    .content("string")
    .contentType("string")
    .location("string")
    .mapName("string")
    .metadata("any")
    .parametersSchema(%!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());
Copy
integration_account_map_resource = azure_native.logic.IntegrationAccountMap("integrationAccountMapResource",
    integration_account_name=string,
    map_type=string,
    resource_group_name=string,
    content=string,
    content_type=string,
    location=string,
    map_name=string,
    metadata=any,
    parameters_schema={
        ref: string,
    },
    tags={
        string: string,
    })
Copy
const integrationAccountMapResource = new azure_native.logic.IntegrationAccountMap("integrationAccountMapResource", {
    integrationAccountName: "string",
    mapType: "string",
    resourceGroupName: "string",
    content: "string",
    contentType: "string",
    location: "string",
    mapName: "string",
    metadata: "any",
    parametersSchema: {
        ref: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:logic:IntegrationAccountMap
properties:
    content: string
    contentType: string
    integrationAccountName: string
    location: string
    mapName: string
    mapType: string
    metadata: any
    parametersSchema:
        ref: string
    resourceGroupName: string
    tags:
        string: string
Copy

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:

IntegrationAccountName
This property is required.
Changes to this property will trigger replacement.
string
The integration account name.
MapType This property is required. string | Pulumi.AzureNative.Logic.MapType
The map type.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
Content string
The content.
ContentType string
The content type.
Location string
The resource location.
MapName Changes to this property will trigger replacement. string
The integration account map name.
Metadata object
The metadata.
ParametersSchema Pulumi.AzureNative.Logic.Inputs.IntegrationAccountMapPropertiesParametersSchema
The parameters schema of integration account map.
Tags Dictionary<string, string>
The resource tags.
IntegrationAccountName
This property is required.
Changes to this property will trigger replacement.
string
The integration account name.
MapType This property is required. string | MapType
The map type.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
Content string
The content.
ContentType string
The content type.
Location string
The resource location.
MapName Changes to this property will trigger replacement. string
The integration account map name.
Metadata interface{}
The metadata.
ParametersSchema IntegrationAccountMapPropertiesParametersSchemaArgs
The parameters schema of integration account map.
Tags map[string]string
The resource tags.
integrationAccountName
This property is required.
Changes to this property will trigger replacement.
String
The integration account name.
mapType This property is required. String | MapType
The map type.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
content String
The content.
contentType String
The content type.
location String
The resource location.
mapName Changes to this property will trigger replacement. String
The integration account map name.
metadata Object
The metadata.
parametersSchema IntegrationAccountMapPropertiesParametersSchema
The parameters schema of integration account map.
tags Map<String,String>
The resource tags.
integrationAccountName
This property is required.
Changes to this property will trigger replacement.
string
The integration account name.
mapType This property is required. string | MapType
The map type.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
content string
The content.
contentType string
The content type.
location string
The resource location.
mapName Changes to this property will trigger replacement. string
The integration account map name.
metadata any
The metadata.
parametersSchema IntegrationAccountMapPropertiesParametersSchema
The parameters schema of integration account map.
tags {[key: string]: string}
The resource tags.
integration_account_name
This property is required.
Changes to this property will trigger replacement.
str
The integration account name.
map_type This property is required. str | MapType
The map type.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name.
content str
The content.
content_type str
The content type.
location str
The resource location.
map_name Changes to this property will trigger replacement. str
The integration account map name.
metadata Any
The metadata.
parameters_schema IntegrationAccountMapPropertiesParametersSchemaArgs
The parameters schema of integration account map.
tags Mapping[str, str]
The resource tags.
integrationAccountName
This property is required.
Changes to this property will trigger replacement.
String
The integration account name.
mapType This property is required. String | "NotSpecified" | "Xslt" | "Xslt20" | "Xslt30" | "Liquid"
The map type.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
content String
The content.
contentType String
The content type.
location String
The resource location.
mapName Changes to this property will trigger replacement. String
The integration account map name.
metadata Any
The metadata.
parametersSchema Property Map
The parameters schema of integration account map.
tags Map<String>
The resource tags.

Outputs

All input properties are implicitly available as output properties. Additionally, the IntegrationAccountMap resource produces the following output properties:

ChangedTime string
The changed time.
ContentLink Pulumi.AzureNative.Logic.Outputs.ContentLinkResponse
The content link.
CreatedTime string
The created time.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Gets the resource name.
Type string
Gets the resource type.
ChangedTime string
The changed time.
ContentLink ContentLinkResponse
The content link.
CreatedTime string
The created time.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Gets the resource name.
Type string
Gets the resource type.
changedTime String
The changed time.
contentLink ContentLinkResponse
The content link.
createdTime String
The created time.
id String
The provider-assigned unique ID for this managed resource.
name String
Gets the resource name.
type String
Gets the resource type.
changedTime string
The changed time.
contentLink ContentLinkResponse
The content link.
createdTime string
The created time.
id string
The provider-assigned unique ID for this managed resource.
name string
Gets the resource name.
type string
Gets the resource type.
changed_time str
The changed time.
content_link ContentLinkResponse
The content link.
created_time str
The created time.
id str
The provider-assigned unique ID for this managed resource.
name str
Gets the resource name.
type str
Gets the resource type.
changedTime String
The changed time.
contentLink Property Map
The content link.
createdTime String
The created time.
id String
The provider-assigned unique ID for this managed resource.
name String
Gets the resource name.
type String
Gets the resource type.

Supporting Types

ContentHashResponse
, ContentHashResponseArgs

Algorithm string
The algorithm of the content hash.
Value string
The value of the content hash.
Algorithm string
The algorithm of the content hash.
Value string
The value of the content hash.
algorithm String
The algorithm of the content hash.
value String
The value of the content hash.
algorithm string
The algorithm of the content hash.
value string
The value of the content hash.
algorithm str
The algorithm of the content hash.
value str
The value of the content hash.
algorithm String
The algorithm of the content hash.
value String
The value of the content hash.

ContentLinkResponse
, ContentLinkResponseArgs

ContentHash This property is required. Pulumi.AzureNative.Logic.Inputs.ContentHashResponse
The content hash.
ContentSize This property is required. double
The content size.
ContentVersion This property is required. string
The content version.
Metadata This property is required. object
The metadata.
Uri string
The content link URI.
ContentHash This property is required. ContentHashResponse
The content hash.
ContentSize This property is required. float64
The content size.
ContentVersion This property is required. string
The content version.
Metadata This property is required. interface{}
The metadata.
Uri string
The content link URI.
contentHash This property is required. ContentHashResponse
The content hash.
contentSize This property is required. Double
The content size.
contentVersion This property is required. String
The content version.
metadata This property is required. Object
The metadata.
uri String
The content link URI.
contentHash This property is required. ContentHashResponse
The content hash.
contentSize This property is required. number
The content size.
contentVersion This property is required. string
The content version.
metadata This property is required. any
The metadata.
uri string
The content link URI.
content_hash This property is required. ContentHashResponse
The content hash.
content_size This property is required. float
The content size.
content_version This property is required. str
The content version.
metadata This property is required. Any
The metadata.
uri str
The content link URI.
contentHash This property is required. Property Map
The content hash.
contentSize This property is required. Number
The content size.
contentVersion This property is required. String
The content version.
metadata This property is required. Any
The metadata.
uri String
The content link URI.

IntegrationAccountMapPropertiesParametersSchema
, IntegrationAccountMapPropertiesParametersSchemaArgs

Ref string
The reference name.
Ref string
The reference name.
ref String
The reference name.
ref string
The reference name.
ref str
The reference name.
ref String
The reference name.

IntegrationAccountMapPropertiesResponseParametersSchema
, IntegrationAccountMapPropertiesResponseParametersSchemaArgs

Ref string
The reference name.
Ref string
The reference name.
ref String
The reference name.
ref string
The reference name.
ref str
The reference name.
ref String
The reference name.

MapType
, MapTypeArgs

NotSpecified
NotSpecified
Xslt
Xslt
Xslt20
Xslt20
Xslt30
Xslt30
Liquid
Liquid
MapTypeNotSpecified
NotSpecified
MapTypeXslt
Xslt
MapTypeXslt20
Xslt20
MapTypeXslt30
Xslt30
MapTypeLiquid
Liquid
NotSpecified
NotSpecified
Xslt
Xslt
Xslt20
Xslt20
Xslt30
Xslt30
Liquid
Liquid
NotSpecified
NotSpecified
Xslt
Xslt
Xslt20
Xslt20
Xslt30
Xslt30
Liquid
Liquid
NOT_SPECIFIED
NotSpecified
XSLT
Xslt
XSLT20
Xslt20
XSLT30
Xslt30
LIQUID
Liquid
"NotSpecified"
NotSpecified
"Xslt"
Xslt
"Xslt20"
Xslt20
"Xslt30"
Xslt30
"Liquid"
Liquid

Import

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

$ pulumi import azure-native:logic:IntegrationAccountMap testMap /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0