1. Packages
  2. Azure Native
  3. API Docs
  4. logic
  5. IntegrationAccountMap
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.logic.IntegrationAccountMap

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    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",
        });
    
    });
    
    package main
    
    import (
    	"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:               nil,
    			ResourceGroupName:      pulumi.String("testResourceGroup"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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());
    
        }
    }
    
    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"?>
    <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>""",
        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")
    
    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"?>
    <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: azure_native.logic.MapType.Xslt,
        metadata: {},
        resourceGroupName: "testResourceGroup",
    });
    
    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
    

    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",
        });
    
    });
    
    package main
    
    import (
    	"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:               nil,
    			ResourceGroupName:      pulumi.String("testResourceGroup"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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());
    
        }
    }
    
    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")
    
    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",
    });
    
    resources:
      integrationAccountMap:
        type: azure-native:logic:IntegrationAccountMap
        properties:
          contentType: application/xml
          integrationAccountName: testIntegrationAccount
          location: westus
          mapName: testMap
          mapType: Xslt
          metadata: {}
          resourceGroupName: testResourceGroup
    

    Create IntegrationAccountMap Resource

    new IntegrationAccountMap(name: string, args: IntegrationAccountMapArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationAccountMap(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              content: Optional[str] = None,
                              content_type: Optional[str] = None,
                              integration_account_name: Optional[str] = None,
                              location: Optional[str] = None,
                              map_name: Optional[str] = None,
                              map_type: Optional[Union[str, MapType]] = None,
                              metadata: Optional[Any] = None,
                              parameters_schema: Optional[IntegrationAccountMapPropertiesParametersSchemaArgs] = None,
                              resource_group_name: Optional[str] = None,
                              tags: Optional[Mapping[str, str]] = None)
    @overload
    def IntegrationAccountMap(resource_name: str,
                              args: IntegrationAccountMapArgs,
                              opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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:

    IntegrationAccountName string
    The integration account name.
    MapType string | Pulumi.AzureNative.Logic.MapType
    The map type.
    ResourceGroupName string
    The resource group name.
    Content string
    The content.
    ContentType string
    The content type.
    Location string
    The resource location.
    MapName 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 string
    The integration account name.
    MapType string | MapType
    The map type.
    ResourceGroupName string
    The resource group name.
    Content string
    The content.
    ContentType string
    The content type.
    Location string
    The resource location.
    MapName 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 String
    The integration account name.
    mapType String | MapType
    The map type.
    resourceGroupName String
    The resource group name.
    content String
    The content.
    contentType String
    The content type.
    location String
    The resource location.
    mapName 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 string
    The integration account name.
    mapType string | MapType
    The map type.
    resourceGroupName string
    The resource group name.
    content string
    The content.
    contentType string
    The content type.
    location string
    The resource location.
    mapName 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 str
    The integration account name.
    map_type str | MapType
    The map type.
    resource_group_name str
    The resource group name.
    content str
    The content.
    content_type str
    The content type.
    location str
    The resource location.
    map_name 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 String
    The integration account name.
    mapType String | "NotSpecified" | "Xslt" | "Xslt20" | "Xslt30" | "Liquid"
    The map type.
    resourceGroupName String
    The resource group name.
    content String
    The content.
    contentType String
    The content type.
    location String
    The resource location.
    mapName 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 Pulumi.AzureNative.Logic.Inputs.ContentHashResponse
    The content hash.
    ContentSize double
    The content size.
    ContentVersion string
    The content version.
    Metadata object
    The metadata.
    Uri string
    The content link URI.
    ContentHash ContentHashResponse
    The content hash.
    ContentSize float64
    The content size.
    ContentVersion string
    The content version.
    Metadata interface{}
    The metadata.
    Uri string
    The content link URI.
    contentHash ContentHashResponse
    The content hash.
    contentSize Double
    The content size.
    contentVersion String
    The content version.
    metadata Object
    The metadata.
    uri String
    The content link URI.
    contentHash ContentHashResponse
    The content hash.
    contentSize number
    The content size.
    contentVersion string
    The content version.
    metadata any
    The metadata.
    uri string
    The content link URI.
    content_hash ContentHashResponse
    The content hash.
    content_size float
    The content size.
    content_version str
    The content version.
    metadata Any
    The metadata.
    uri str
    The content link URI.
    contentHash Property Map
    The content hash.
    contentSize Number
    The content size.
    contentVersion String
    The content version.
    metadata 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} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi