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
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 (
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
})
}
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 * 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",
});
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")
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
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" },
},
});
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
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:
- Integration
Account Name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- Map
Type This property is required. string | Pulumi.Azure Native. Logic. Map Type - The map type.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- Content string
- The content.
- Content
Type string - The content type.
- Location string
- The resource location.
- Map
Name Changes to this property will trigger replacement.
- 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 Name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- Map
Type This property is required. string | MapType - The map type.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- Content string
- The content.
- Content
Type string - The content type.
- Location string
- The resource location.
- Map
Name Changes to this property will trigger replacement.
- 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 Name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- map
Type This property is required. String | MapType - The map type.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- content String
- The content.
- content
Type String - The content type.
- location String
- The resource location.
- map
Name Changes to this property will trigger replacement.
- 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 Name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- map
Type This property is required. string | MapType - The map type.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- content string
- The content.
- content
Type string - The content type.
- location string
- The resource location.
- map
Name Changes to this property will trigger replacement.
- 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_ name This property is required. Changes to this property will trigger replacement.
- 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.
- 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.
- 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 Name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- map
Type This property is required. String | "NotSpecified" | "Xslt" | "Xslt20" | "Xslt30" | "Liquid" - The map type.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- content String
- The content.
- content
Type String - The content type.
- location String
- The resource location.
- map
Name Changes to this property will trigger replacement.
- 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 This property is required. Pulumi.Azure Native. Logic. Inputs. Content Hash Response - The content hash.
- Content
Size This property is required. double - The content size.
- Content
Version This property is required. string - The content version.
- Metadata
This property is required. object - The metadata.
- Uri string
- The content link URI.
- Content
Hash This property is required. ContentHash Response - The content hash.
- Content
Size This property is required. float64 - The content size.
- Content
Version This property is required. string - The content version.
- Metadata
This property is required. interface{} - The metadata.
- Uri string
- The content link URI.
- content
Hash This property is required. ContentHash Response - The content hash.
- content
Size This property is required. Double - The content size.
- content
Version This property is required. String - The content version.
- metadata
This property is required. Object - The metadata.
- uri String
- The content link URI.
- content
Hash This property is required. ContentHash Response - The content hash.
- content
Size This property is required. number - The content size.
- content
Version 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. ContentHash Response - 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.
- content
Hash This property is required. Property Map - The content hash.
- content
Size This property is required. Number - The content size.
- content
Version 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
- 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/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/maps/{mapName}
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