azure-native.logic.IntegrationAccountMap
Explore with Pulumi AI
The integration account map. API Version: 2019-05-01.
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()) , "SearchString")"" />
<xsl:variable name=""var:v2"" select=""userCSharp:StringLeft(string(StringLeftSource/text()) , "2")"" />
<xsl:variable name=""var:v3"" select=""userCSharp:StringRight(string(StringRightSource/text()) , "2")"" />
<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()) , "0" , "2")"" />
<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 = null,
ResourceGroupName = "testResourceGroup",
});
});
package main
import (
logic "github.com/pulumi/pulumi-azure-native-sdk/logic"
"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\"?>
\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\">
\n <xsl:import href=\"http://btsfunctoids.blob.core.windows.net/functoids/functoids.xslt\" />
\n <xsl:output omit-xml-declaration=\"yes\" method=\"xml\" version=\"1.0\" />
\n <xsl:template match=\"/\">
\n <xsl:apply-templates select=\"/s0:Root\" />
\n </xsl:template>
\n <xsl:template match=\"/s0:Root\">
\n <xsl:variable name=\"var:v1\" select=\"userCSharp:StringFind(string(StringFindSource/text()) , "SearchString")\" />
\n <xsl:variable name=\"var:v2\" select=\"userCSharp:StringLeft(string(StringLeftSource/text()) , "2")\" />
\n <xsl:variable name=\"var:v3\" select=\"userCSharp:StringRight(string(StringRightSource/text()) , "2")\" />
\n <xsl:variable name=\"var:v4\" select=\"userCSharp:StringUpperCase(string(UppercaseSource/text()))\" />
\n <xsl:variable name=\"var:v5\" select=\"userCSharp:StringLowerCase(string(LowercaseSource/text()))\" />
\n <xsl:variable name=\"var:v6\" select=\"userCSharp:StringSize(string(SizeSource/text()))\" />
\n <xsl:variable name=\"var:v7\" select=\"userCSharp:StringSubstring(string(StringExtractSource/text()) , "0" , "2")\" />
\n <xsl:variable name=\"var:v8\" select=\"userCSharp:StringConcat(string(StringConcatSource/text()))\" />
\n <xsl:variable name=\"var:v9\" select=\"userCSharp:StringTrimLeft(string(StringLeftTrimSource/text()))\" />
\n <xsl:variable name=\"var:v10\" select=\"userCSharp:StringTrimRight(string(StringRightTrimSource/text()))\" />
\n <ns0:Root>
\n <StringFindDestination>
\n <xsl:value-of select=\"$var:v1\" />
\n </StringFindDestination>
\n <StringLeftDestination>
\n <xsl:value-of select=\"$var:v2\" />
\n </StringLeftDestination>
\n <StringRightDestination>
\n <xsl:value-of select=\"$var:v3\" />
\n </StringRightDestination>
\n <UppercaseDestination>
\n <xsl:value-of select=\"$var:v4\" />
\n </UppercaseDestination>
\n <LowercaseDestination>
\n <xsl:value-of select=\"$var:v5\" />
\n </LowercaseDestination>
\n <SizeDestination>
\n <xsl:value-of select=\"$var:v6\" />
\n </SizeDestination>
\n <StringExtractDestination>
\n <xsl:value-of select=\"$var:v7\" />
\n </StringExtractDestination>
\n <StringConcatDestination>
\n <xsl:value-of select=\"$var:v8\" />
\n </StringConcatDestination>
\n <StringLeftTrimDestination>
\n <xsl:value-of select=\"$var:v9\" />
\n </StringLeftTrimDestination>
\n <StringRightTrimDestination>
\n <xsl:value-of select=\"$var:v10\" />
\n </StringRightTrimDestination>
\n </ns0:Root>
\n </xsl:template>
\n</xsl:stylesheet>"),
ContentType: pulumi.String("application/xml"),
IntegrationAccountName: pulumi.String("testIntegrationAccount"),
Location: pulumi.String("westus"),
MapName: pulumi.String("testMap"),
MapType: pulumi.String("Xslt"),
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()) , "SearchString")" />
<xsl:variable name="var:v2" select="userCSharp:StringLeft(string(StringLeftSource/text()) , "2")" />
<xsl:variable name="var:v3" select="userCSharp:StringRight(string(StringRightSource/text()) , "2")" />
<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()) , "0" , "2")" />
<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()) , "SearchString")" />
<xsl:variable name="var:v2" select="userCSharp:StringLeft(string(StringLeftSource/text()) , "2")" />
<xsl:variable name="var:v3" select="userCSharp:StringRight(string(StringRightSource/text()) , "2")" />
<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()) , "0" , "2")" />
<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="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()) , "SearchString")" />
<xsl:variable name="var:v2" select="userCSharp:StringLeft(string(StringLeftSource/text()) , "2")" />
<xsl:variable name="var:v3" select="userCSharp:StringRight(string(StringRightSource/text()) , "2")" />
<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()) , "0" , "2")" />
<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",
});
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()) , "SearchString")\" />\r\n <xsl:variable name=\"var:v2\" select=\"userCSharp:StringLeft(string(StringLeftSource/text()) , "2")\" />\r\n <xsl:variable name=\"var:v3\" select=\"userCSharp:StringRight(string(StringRightSource/text()) , "2")\" />\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()) , "0" , "2")\" />\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 = "Xslt",
Metadata = null,
ResourceGroupName = "testResourceGroup",
});
});
package main
import (
logic "github.com/pulumi/pulumi-azure-native-sdk/logic"
"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("Xslt"),
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="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: "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
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 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 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" },
},
});
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",
},
})
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());
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,
})
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",
},
});
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
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:
- Integration
Account stringName - The integration account name.
- Map
Type string | Pulumi.Azure Native. Logic. Map Type - The map type.
- Resource
Group stringName - The resource group name.
- Content string
- The content.
- Content
Type string - The content type.
- Location string
- The resource location.
- Map
Name string - The integration account map name.
- Metadata object
- The metadata.
- Parameters
Schema Pulumi.Azure Native. Logic. Inputs. Integration Account Map Properties Parameters Schema - The parameters schema of integration account map.
- Dictionary<string, string>
- The resource tags.
- Integration
Account stringName - The integration account name.
- Map
Type string | MapType - The map type.
- Resource
Group stringName - The resource group name.
- Content string
- The content.
- Content
Type string - The content type.
- Location string
- The resource location.
- Map
Name string - The integration account map name.
- Metadata interface{}
- The metadata.
- Parameters
Schema IntegrationAccount Map Properties Parameters Schema Args - The parameters schema of integration account map.
- map[string]string
- The resource tags.
- integration
Account StringName - The integration account name.
- map
Type String | MapType - The map type.
- resource
Group StringName - The resource group name.
- content String
- The content.
- content
Type String - The content type.
- location String
- The resource location.
- map
Name String - The integration account map name.
- metadata Object
- The metadata.
- parameters
Schema IntegrationAccount Map Properties Parameters Schema - The parameters schema of integration account map.
- Map<String,String>
- The resource tags.
- integration
Account stringName - The integration account name.
- map
Type string | MapType - The map type.
- resource
Group stringName - The resource group name.
- content string
- The content.
- content
Type string - The content type.
- location string
- The resource location.
- map
Name string - The integration account map name.
- metadata any
- The metadata.
- parameters
Schema IntegrationAccount Map Properties Parameters Schema - The parameters schema of integration account map.
- {[key: string]: string}
- The resource tags.
- integration_
account_ strname - The integration account name.
- map_
type str | MapType - The map type.
- resource_
group_ strname - 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 IntegrationAccount Map Properties Parameters Schema Args - The parameters schema of integration account map.
- Mapping[str, str]
- The resource tags.
- integration
Account StringName - The integration account name.
- map
Type String | "NotSpecified" | "Xslt" | "Xslt20" | "Xslt30" | "Liquid" - The map type.
- resource
Group StringName - The resource group name.
- content String
- The content.
- content
Type String - The content type.
- location String
- The resource location.
- map
Name String - The integration account map name.
- metadata Any
- The metadata.
- parameters
Schema Property Map - The parameters schema of integration account map.
- Map<String>
- The resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationAccountMap resource produces the following output properties:
- Changed
Time string - The changed time.
- Content
Link Pulumi.Azure Native. Logic. Outputs. Content Link Response - The content link.
- Created
Time 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 string - The changed time.
- Content
Link ContentLink Response - The content link.
- Created
Time 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 String - The changed time.
- content
Link ContentLink Response - The content link.
- created
Time 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 string - The changed time.
- content
Link ContentLink Response - The content link.
- created
Time 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 ContentLink Response - 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.
- changed
Time String - The changed time.
- content
Link Property Map - The content link.
- created
Time 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
ContentLinkResponse, ContentLinkResponseArgs
- Content
Hash Pulumi.Azure Native. Logic. Inputs. Content Hash Response - The content hash.
- Content
Size double - The content size.
- Content
Version string - The content version.
- Metadata object
- The metadata.
- Uri string
- The content link URI.
- Content
Hash ContentHash Response - The content hash.
- Content
Size float64 - The content size.
- Content
Version string - The content version.
- Metadata interface{}
- The metadata.
- Uri string
- The content link URI.
- content
Hash ContentHash Response - The content hash.
- content
Size Double - The content size.
- content
Version String - The content version.
- metadata Object
- The metadata.
- uri String
- The content link URI.
- content
Hash ContentHash Response - The content hash.
- content
Size number - The content size.
- content
Version string - The content version.
- metadata any
- The metadata.
- uri string
- The content link URI.
- content_
hash ContentHash Response - 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.
- content
Hash Property Map - The content hash.
- content
Size Number - The content size.
- content
Version 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
- Not
Specified - NotSpecified
- Xslt
- Xslt
- Xslt20
- Xslt20
- Xslt30
- Xslt30
- Liquid
- Liquid
- Map
Type Not Specified - NotSpecified
- Map
Type Xslt - Xslt
- Map
Type Xslt20 - Xslt20
- Map
Type Xslt30 - Xslt30
- Map
Type Liquid - Liquid
- Not
Specified - NotSpecified
- Xslt
- Xslt
- Xslt20
- Xslt20
- Xslt30
- Xslt30
- Liquid
- Liquid
- Not
Specified - NotSpecified
- Xslt
- Xslt
- Xslt20
- Xslt20
- Xslt30
- Xslt30
- Liquid
- Liquid
- NOT_SPECIFIED
- NotSpecified
- XSLT
- Xslt
- XSLT20
- Xslt20
- XSLT30
- Xslt30
- LIQUID
- Liquid
- "Not
Specified" - 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/<Azure-subscription-ID>/resourceGroups/refresh/providers/Microsoft.Logic/integrationAccounts/testIntegrationAccount/maps/testMap
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0