azure-native.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",
    });
});
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
	})
}
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());
    }
}
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",
});
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")
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
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 string
- The unique name of the resource.
- args IntegrationAccountAssemblyArgs
- 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 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 string
- The unique name of the resource.
- args IntegrationAccountAssemblyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationAccountAssemblyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 = new AzureNative.Logic.Inputs.AssemblyPropertiesArgs
    {
        AssemblyName = "string",
        AssemblyCulture = "string",
        AssemblyPublicKeyToken = "string",
        AssemblyVersion = "string",
        ChangedTime = "string",
        Content = "any",
        ContentLink = new AzureNative.Logic.Inputs.ContentLinkArgs
        {
            Uri = "string",
        },
        ContentType = "string",
        CreatedTime = "string",
        Metadata = "any",
    },
    ResourceGroupName = "string",
    AssemblyArtifactName = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := logic.NewIntegrationAccountAssembly(ctx, "integrationAccountAssemblyResource", &logic.IntegrationAccountAssemblyArgs{
	IntegrationAccountName: pulumi.String("string"),
	Properties: &logic.AssemblyPropertiesArgs{
		AssemblyName:           pulumi.String("string"),
		AssemblyCulture:        pulumi.String("string"),
		AssemblyPublicKeyToken: pulumi.String("string"),
		AssemblyVersion:        pulumi.String("string"),
		ChangedTime:            pulumi.String("string"),
		Content:                pulumi.Any("any"),
		ContentLink: &logic.ContentLinkArgs{
			Uri: pulumi.String("string"),
		},
		ContentType: pulumi.String("string"),
		CreatedTime: pulumi.String("string"),
		Metadata:    pulumi.Any("any"),
	},
	ResourceGroupName:    pulumi.String("string"),
	AssemblyArtifactName: pulumi.String("string"),
	Location:             pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var integrationAccountAssemblyResource = new IntegrationAccountAssembly("integrationAccountAssemblyResource", IntegrationAccountAssemblyArgs.builder()
    .integrationAccountName("string")
    .properties(AssemblyPropertiesArgs.builder()
        .assemblyName("string")
        .assemblyCulture("string")
        .assemblyPublicKeyToken("string")
        .assemblyVersion("string")
        .changedTime("string")
        .content("any")
        .contentLink(ContentLinkArgs.builder()
            .uri("string")
            .build())
        .contentType("string")
        .createdTime("string")
        .metadata("any")
        .build())
    .resourceGroupName("string")
    .assemblyArtifactName("string")
    .location("string")
    .tags(Map.of("string", "string"))
    .build());
integration_account_assembly_resource = azure_native.logic.IntegrationAccountAssembly("integrationAccountAssemblyResource",
    integration_account_name="string",
    properties={
        "assembly_name": "string",
        "assembly_culture": "string",
        "assembly_public_key_token": "string",
        "assembly_version": "string",
        "changed_time": "string",
        "content": "any",
        "content_link": {
            "uri": "string",
        },
        "content_type": "string",
        "created_time": "string",
        "metadata": "any",
    },
    resource_group_name="string",
    assembly_artifact_name="string",
    location="string",
    tags={
        "string": "string",
    })
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",
    },
});
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
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:
- IntegrationAccount stringName 
- The integration account name.
- Properties
Pulumi.Azure Native. Logic. Inputs. Assembly Properties 
- The assembly properties.
- ResourceGroup stringName 
- The resource group name.
- AssemblyArtifact stringName 
- The assembly artifact name.
- Location string
- The resource location.
- Dictionary<string, string>
- The resource tags.
- IntegrationAccount stringName 
- The integration account name.
- Properties
AssemblyProperties Args 
- The assembly properties.
- ResourceGroup stringName 
- The resource group name.
- AssemblyArtifact stringName 
- The assembly artifact name.
- Location string
- The resource location.
- map[string]string
- The resource tags.
- integrationAccount StringName 
- The integration account name.
- properties
AssemblyProperties 
- The assembly properties.
- resourceGroup StringName 
- The resource group name.
- assemblyArtifact StringName 
- The assembly artifact name.
- location String
- The resource location.
- Map<String,String>
- The resource tags.
- integrationAccount stringName 
- The integration account name.
- properties
AssemblyProperties 
- The assembly properties.
- resourceGroup stringName 
- The resource group name.
- assemblyArtifact stringName 
- The assembly artifact name.
- location string
- The resource location.
- {[key: string]: string}
- The resource tags.
- integration_account_ strname 
- The integration account name.
- properties
AssemblyProperties Args 
- The assembly properties.
- resource_group_ strname 
- The resource group name.
- assembly_artifact_ strname 
- The assembly artifact name.
- location str
- The resource location.
- Mapping[str, str]
- The resource tags.
- integrationAccount StringName 
- The integration account name.
- properties Property Map
- The assembly properties.
- resourceGroup StringName 
- The resource group name.
- assemblyArtifact StringName 
- The assembly artifact name.
- location String
- The resource location.
- Map<String>
- The resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationAccountAssembly resource produces the following output properties:
Supporting Types
AssemblyProperties, AssemblyPropertiesArgs    
- AssemblyName string
- The assembly name.
- AssemblyCulture string
- The assembly culture.
- AssemblyPublic stringKey Token 
- The assembly public key token.
- AssemblyVersion string
- The assembly version.
- ChangedTime string
- The artifact changed time.
- Content object
- ContentLink Pulumi.Azure Native. Logic. Inputs. Content Link 
- The content link.
- ContentType string
- The content type.
- CreatedTime string
- The artifact creation time.
- Metadata object
- AssemblyName string
- The assembly name.
- AssemblyCulture string
- The assembly culture.
- AssemblyPublic stringKey Token 
- 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 String
- The assembly name.
- assemblyCulture String
- The assembly culture.
- assemblyPublic StringKey Token 
- 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 string
- The assembly name.
- assemblyCulture string
- The assembly culture.
- assemblyPublic stringKey Token 
- 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 str
- The assembly name.
- assembly_culture str
- The assembly culture.
- assembly_public_ strkey_ token 
- 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 String
- The assembly name.
- assemblyCulture String
- The assembly culture.
- assemblyPublic StringKey Token 
- 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 string
- The assembly name.
- AssemblyCulture string
- The assembly culture.
- AssemblyPublic stringKey Token 
- The assembly public key token.
- AssemblyVersion string
- The assembly version.
- ChangedTime string
- The artifact changed time.
- Content object
- ContentLink Pulumi.Azure Native. Logic. Inputs. Content Link Response 
- The content link.
- ContentType string
- The content type.
- CreatedTime string
- The artifact creation time.
- Metadata object
- AssemblyName string
- The assembly name.
- AssemblyCulture string
- The assembly culture.
- AssemblyPublic stringKey Token 
- The assembly public key token.
- AssemblyVersion string
- The assembly version.
- ChangedTime string
- The artifact changed time.
- Content interface{}
- ContentLink ContentLink Response 
- The content link.
- ContentType string
- The content type.
- CreatedTime string
- The artifact creation time.
- Metadata interface{}
- assemblyName String
- The assembly name.
- assemblyCulture String
- The assembly culture.
- assemblyPublic StringKey Token 
- The assembly public key token.
- assemblyVersion String
- The assembly version.
- changedTime String
- The artifact changed time.
- content Object
- contentLink ContentLink Response 
- The content link.
- contentType String
- The content type.
- createdTime String
- The artifact creation time.
- metadata Object
- assemblyName string
- The assembly name.
- assemblyCulture string
- The assembly culture.
- assemblyPublic stringKey Token 
- The assembly public key token.
- assemblyVersion string
- The assembly version.
- changedTime string
- The artifact changed time.
- content any
- contentLink ContentLink Response 
- The content link.
- contentType string
- The content type.
- createdTime string
- The artifact creation time.
- metadata any
- assembly_name str
- The assembly name.
- assembly_culture str
- The assembly culture.
- assembly_public_ strkey_ token 
- The assembly public key token.
- assembly_version str
- The assembly version.
- changed_time str
- The artifact changed time.
- content Any
- content_link ContentLink Response 
- The content link.
- content_type str
- The content type.
- created_time str
- The artifact creation time.
- metadata Any
- assemblyName String
- The assembly name.
- assemblyCulture String
- The assembly culture.
- assemblyPublic StringKey Token 
- 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      
ContentLink, ContentLinkArgs    
- 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 Pulumi.Azure Native. Logic. Inputs. Content Hash Response 
- The content hash.
- ContentSize double
- The content size.
- ContentVersion string
- The content version.
- Metadata object
- The metadata.
- Uri string
- The content link URI.
- ContentHash ContentHash Response 
- The content hash.
- ContentSize float64
- The content size.
- ContentVersion string
- The content version.
- Metadata interface{}
- The metadata.
- Uri string
- The content link URI.
- contentHash ContentHash Response 
- The content hash.
- contentSize Double
- The content size.
- contentVersion String
- The content version.
- metadata Object
- The metadata.
- uri String
- The content link URI.
- contentHash ContentHash Response 
- 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 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.
- 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.
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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0