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

azure-native-v2.logic.IntegrationAccountAssembly

Explore with Pulumi AI

The assembly definition. Azure REST API version: 2019-05-01. Prior API version in Azure Native 1.x: 2019-05-01.

Example Usage

Create or update an account assembly

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

return await Deployment.RunAsync(() => 
{
    var integrationAccountAssembly = new AzureNative.Logic.IntegrationAccountAssembly("integrationAccountAssembly", new()
    {
        AssemblyArtifactName = "testAssembly",
        IntegrationAccountName = "testIntegrationAccount",
        Location = "westus",
        Properties = new AzureNative.Logic.Inputs.AssemblyPropertiesArgs
        {
            AssemblyName = "System.IdentityModel.Tokens.Jwt",
            Content = "Base64 encoded Assembly Content",
            Metadata = null,
        },
        ResourceGroupName = "testResourceGroup",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := logic.NewIntegrationAccountAssembly(ctx, "integrationAccountAssembly", &logic.IntegrationAccountAssemblyArgs{
			AssemblyArtifactName:   pulumi.String("testAssembly"),
			IntegrationAccountName: pulumi.String("testIntegrationAccount"),
			Location:               pulumi.String("westus"),
			Properties: &logic.AssemblyPropertiesArgs{
				AssemblyName: pulumi.String("System.IdentityModel.Tokens.Jwt"),
				Content:      pulumi.Any("Base64 encoded Assembly Content"),
				Metadata:     pulumi.Any(map[string]interface{}{}),
			},
			ResourceGroupName: pulumi.String("testResourceGroup"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.logic.IntegrationAccountAssembly;
import com.pulumi.azurenative.logic.IntegrationAccountAssemblyArgs;
import com.pulumi.azurenative.logic.inputs.AssemblyPropertiesArgs;
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 integrationAccountAssembly = new IntegrationAccountAssembly("integrationAccountAssembly", IntegrationAccountAssemblyArgs.builder()
            .assemblyArtifactName("testAssembly")
            .integrationAccountName("testIntegrationAccount")
            .location("westus")
            .properties(AssemblyPropertiesArgs.builder()
                .assemblyName("System.IdentityModel.Tokens.Jwt")
                .content("Base64 encoded Assembly Content")
                .metadata()
                .build())
            .resourceGroupName("testResourceGroup")
            .build());

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

const integrationAccountAssembly = new azure_native.logic.IntegrationAccountAssembly("integrationAccountAssembly", {
    assemblyArtifactName: "testAssembly",
    integrationAccountName: "testIntegrationAccount",
    location: "westus",
    properties: {
        assemblyName: "System.IdentityModel.Tokens.Jwt",
        content: "Base64 encoded Assembly Content",
        metadata: {},
    },
    resourceGroupName: "testResourceGroup",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

integration_account_assembly = azure_native.logic.IntegrationAccountAssembly("integrationAccountAssembly",
    assembly_artifact_name="testAssembly",
    integration_account_name="testIntegrationAccount",
    location="westus",
    properties={
        "assembly_name": "System.IdentityModel.Tokens.Jwt",
        "content": "Base64 encoded Assembly Content",
        "metadata": {},
    },
    resource_group_name="testResourceGroup")
Copy
resources:
  integrationAccountAssembly:
    type: azure-native:logic:IntegrationAccountAssembly
    properties:
      assemblyArtifactName: testAssembly
      integrationAccountName: testIntegrationAccount
      location: westus
      properties:
        assemblyName: System.IdentityModel.Tokens.Jwt
        content: Base64 encoded Assembly Content
        metadata: {}
      resourceGroupName: testResourceGroup
Copy

Create IntegrationAccountAssembly Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new IntegrationAccountAssembly(name: string, args: IntegrationAccountAssemblyArgs, opts?: CustomResourceOptions);
@overload
def IntegrationAccountAssembly(resource_name: str,
                               args: IntegrationAccountAssemblyArgs,
                               opts: Optional[ResourceOptions] = None)

@overload
def IntegrationAccountAssembly(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               integration_account_name: Optional[str] = None,
                               properties: Optional[AssemblyPropertiesArgs] = None,
                               resource_group_name: Optional[str] = None,
                               assembly_artifact_name: Optional[str] = None,
                               location: Optional[str] = None,
                               tags: Optional[Mapping[str, str]] = None)
func NewIntegrationAccountAssembly(ctx *Context, name string, args IntegrationAccountAssemblyArgs, opts ...ResourceOption) (*IntegrationAccountAssembly, error)
public IntegrationAccountAssembly(string name, IntegrationAccountAssemblyArgs args, CustomResourceOptions? opts = null)
public IntegrationAccountAssembly(String name, IntegrationAccountAssemblyArgs args)
public IntegrationAccountAssembly(String name, IntegrationAccountAssemblyArgs args, CustomResourceOptions options)
type: azure-native:logic:IntegrationAccountAssembly
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. IntegrationAccountAssemblyArgs
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. IntegrationAccountAssemblyArgs
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. IntegrationAccountAssemblyArgs
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. IntegrationAccountAssemblyArgs
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. IntegrationAccountAssemblyArgs
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 integrationAccountAssemblyResource = new AzureNative.Logic.IntegrationAccountAssembly("integrationAccountAssemblyResource", new()
{
    IntegrationAccountName = "string",
    Properties = 
    {
        { "assemblyName", "string" },
        { "assemblyCulture", "string" },
        { "assemblyPublicKeyToken", "string" },
        { "assemblyVersion", "string" },
        { "changedTime", "string" },
        { "content", "any" },
        { "contentLink", 
        {
            { "uri", "string" },
        } },
        { "contentType", "string" },
        { "createdTime", "string" },
        { "metadata", "any" },
    },
    ResourceGroupName = "string",
    AssemblyArtifactName = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := logic.NewIntegrationAccountAssembly(ctx, "integrationAccountAssemblyResource", &logic.IntegrationAccountAssemblyArgs{
	IntegrationAccountName: "string",
	Properties: map[string]interface{}{
		"assemblyName":           "string",
		"assemblyCulture":        "string",
		"assemblyPublicKeyToken": "string",
		"assemblyVersion":        "string",
		"changedTime":            "string",
		"content":                "any",
		"contentLink": map[string]interface{}{
			"uri": "string",
		},
		"contentType": "string",
		"createdTime": "string",
		"metadata":    "any",
	},
	ResourceGroupName:    "string",
	AssemblyArtifactName: "string",
	Location:             "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var integrationAccountAssemblyResource = new IntegrationAccountAssembly("integrationAccountAssemblyResource", IntegrationAccountAssemblyArgs.builder()
    .integrationAccountName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .assemblyArtifactName("string")
    .location("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
integration_account_assembly_resource = azure_native.logic.IntegrationAccountAssembly("integrationAccountAssemblyResource",
    integration_account_name=string,
    properties={
        assemblyName: string,
        assemblyCulture: string,
        assemblyPublicKeyToken: string,
        assemblyVersion: string,
        changedTime: string,
        content: any,
        contentLink: {
            uri: string,
        },
        contentType: string,
        createdTime: string,
        metadata: any,
    },
    resource_group_name=string,
    assembly_artifact_name=string,
    location=string,
    tags={
        string: string,
    })
Copy
const integrationAccountAssemblyResource = new azure_native.logic.IntegrationAccountAssembly("integrationAccountAssemblyResource", {
    integrationAccountName: "string",
    properties: {
        assemblyName: "string",
        assemblyCulture: "string",
        assemblyPublicKeyToken: "string",
        assemblyVersion: "string",
        changedTime: "string",
        content: "any",
        contentLink: {
            uri: "string",
        },
        contentType: "string",
        createdTime: "string",
        metadata: "any",
    },
    resourceGroupName: "string",
    assemblyArtifactName: "string",
    location: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:logic:IntegrationAccountAssembly
properties:
    assemblyArtifactName: string
    integrationAccountName: string
    location: string
    properties:
        assemblyCulture: string
        assemblyName: string
        assemblyPublicKeyToken: string
        assemblyVersion: string
        changedTime: string
        content: any
        contentLink:
            uri: string
        contentType: string
        createdTime: string
        metadata: any
    resourceGroupName: string
    tags:
        string: string
Copy

IntegrationAccountAssembly 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 IntegrationAccountAssembly resource accepts the following input properties:

IntegrationAccountName
This property is required.
Changes to this property will trigger replacement.
string
The integration account name.
Properties This property is required. Pulumi.AzureNative.Logic.Inputs.AssemblyProperties
The assembly properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
AssemblyArtifactName Changes to this property will trigger replacement. string
The assembly artifact name.
Location string
The resource location.
Tags Dictionary<string, string>
The resource tags.
IntegrationAccountName
This property is required.
Changes to this property will trigger replacement.
string
The integration account name.
Properties This property is required. AssemblyPropertiesArgs
The assembly properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
AssemblyArtifactName Changes to this property will trigger replacement. string
The assembly artifact name.
Location string
The resource location.
Tags map[string]string
The resource tags.
integrationAccountName
This property is required.
Changes to this property will trigger replacement.
String
The integration account name.
properties This property is required. AssemblyProperties
The assembly properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
assemblyArtifactName Changes to this property will trigger replacement. String
The assembly artifact name.
location String
The resource location.
tags Map<String,String>
The resource tags.
integrationAccountName
This property is required.
Changes to this property will trigger replacement.
string
The integration account name.
properties This property is required. AssemblyProperties
The assembly properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
assemblyArtifactName Changes to this property will trigger replacement. string
The assembly artifact name.
location string
The resource location.
tags {[key: string]: string}
The resource tags.
integration_account_name
This property is required.
Changes to this property will trigger replacement.
str
The integration account name.
properties This property is required. AssemblyPropertiesArgs
The assembly properties.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name.
assembly_artifact_name Changes to this property will trigger replacement. str
The assembly artifact name.
location str
The resource location.
tags Mapping[str, str]
The resource tags.
integrationAccountName
This property is required.
Changes to this property will trigger replacement.
String
The integration account name.
properties This property is required. Property Map
The assembly properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
assemblyArtifactName Changes to this property will trigger replacement. String
The assembly artifact name.
location String
The resource location.
tags Map<String>
The resource tags.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
Gets the resource name.
Type string
Gets the resource type.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Gets the resource name.
Type string
Gets the resource type.
id String
The provider-assigned unique ID for this managed resource.
name String
Gets the resource name.
type String
Gets the resource type.
id string
The provider-assigned unique ID for this managed resource.
name string
Gets the resource name.
type string
Gets the resource type.
id str
The provider-assigned unique ID for this managed resource.
name str
Gets the resource name.
type str
Gets the resource type.
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

AssemblyProperties
, AssemblyPropertiesArgs

AssemblyName This property is required. string
The assembly name.
AssemblyCulture string
The assembly culture.
AssemblyPublicKeyToken string
The assembly public key token.
AssemblyVersion string
The assembly version.
ChangedTime string
The artifact changed time.
Content object
ContentLink Pulumi.AzureNative.Logic.Inputs.ContentLink
The content link.
ContentType string
The content type.
CreatedTime string
The artifact creation time.
Metadata object
AssemblyName This property is required. string
The assembly name.
AssemblyCulture string
The assembly culture.
AssemblyPublicKeyToken string
The assembly public key token.
AssemblyVersion string
The assembly version.
ChangedTime string
The artifact changed time.
Content interface{}
ContentLink ContentLink
The content link.
ContentType string
The content type.
CreatedTime string
The artifact creation time.
Metadata interface{}
assemblyName This property is required. String
The assembly name.
assemblyCulture String
The assembly culture.
assemblyPublicKeyToken String
The assembly public key token.
assemblyVersion String
The assembly version.
changedTime String
The artifact changed time.
content Object
contentLink ContentLink
The content link.
contentType String
The content type.
createdTime String
The artifact creation time.
metadata Object
assemblyName This property is required. string
The assembly name.
assemblyCulture string
The assembly culture.
assemblyPublicKeyToken string
The assembly public key token.
assemblyVersion string
The assembly version.
changedTime string
The artifact changed time.
content any
contentLink ContentLink
The content link.
contentType string
The content type.
createdTime string
The artifact creation time.
metadata any
assembly_name This property is required. str
The assembly name.
assembly_culture str
The assembly culture.
assembly_public_key_token str
The assembly public key token.
assembly_version str
The assembly version.
changed_time str
The artifact changed time.
content Any
content_link ContentLink
The content link.
content_type str
The content type.
created_time str
The artifact creation time.
metadata Any
assemblyName This property is required. String
The assembly name.
assemblyCulture String
The assembly culture.
assemblyPublicKeyToken String
The assembly public key token.
assemblyVersion String
The assembly version.
changedTime String
The artifact changed time.
content Any
contentLink Property Map
The content link.
contentType String
The content type.
createdTime String
The artifact creation time.
metadata Any

AssemblyPropertiesResponse
, AssemblyPropertiesResponseArgs

AssemblyName This property is required. string
The assembly name.
AssemblyCulture string
The assembly culture.
AssemblyPublicKeyToken string
The assembly public key token.
AssemblyVersion string
The assembly version.
ChangedTime string
The artifact changed time.
Content object
ContentLink Pulumi.AzureNative.Logic.Inputs.ContentLinkResponse
The content link.
ContentType string
The content type.
CreatedTime string
The artifact creation time.
Metadata object
AssemblyName This property is required. string
The assembly name.
AssemblyCulture string
The assembly culture.
AssemblyPublicKeyToken string
The assembly public key token.
AssemblyVersion string
The assembly version.
ChangedTime string
The artifact changed time.
Content interface{}
ContentLink ContentLinkResponse
The content link.
ContentType string
The content type.
CreatedTime string
The artifact creation time.
Metadata interface{}
assemblyName This property is required. String
The assembly name.
assemblyCulture String
The assembly culture.
assemblyPublicKeyToken String
The assembly public key token.
assemblyVersion String
The assembly version.
changedTime String
The artifact changed time.
content Object
contentLink ContentLinkResponse
The content link.
contentType String
The content type.
createdTime String
The artifact creation time.
metadata Object
assemblyName This property is required. string
The assembly name.
assemblyCulture string
The assembly culture.
assemblyPublicKeyToken string
The assembly public key token.
assemblyVersion string
The assembly version.
changedTime string
The artifact changed time.
content any
contentLink ContentLinkResponse
The content link.
contentType string
The content type.
createdTime string
The artifact creation time.
metadata any
assembly_name This property is required. str
The assembly name.
assembly_culture str
The assembly culture.
assembly_public_key_token str
The assembly public key token.
assembly_version str
The assembly version.
changed_time str
The artifact changed time.
content Any
content_link ContentLinkResponse
The content link.
content_type str
The content type.
created_time str
The artifact creation time.
metadata Any
assemblyName This property is required. String
The assembly name.
assemblyCulture String
The assembly culture.
assemblyPublicKeyToken String
The assembly public key token.
assemblyVersion String
The assembly version.
changedTime String
The artifact changed time.
content Any
contentLink Property Map
The content link.
contentType String
The content type.
createdTime String
The artifact creation time.
metadata Any

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.
Uri string
The content link URI.
Uri string
The content link URI.
uri String
The content link URI.
uri string
The content link URI.
uri str
The content link URI.
uri String
The content link URI.

ContentLinkResponse
, ContentLinkResponseArgs

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

Import

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

$ pulumi import azure-native:logic:IntegrationAccountAssembly testAssembly /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/assemblies/{assemblyArtifactName} 
Copy

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

Package Details

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