1. Packages
  2. Azure Native
  3. API Docs
  4. logic
  5. IntegrationAccountAssembly
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.logic.IntegrationAccountAssembly

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    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 (
    	"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(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.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 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=azure_native.logic.AssemblyPropertiesArgs(
            assembly_name="System.IdentityModel.Tokens.Jwt",
            content="Base64 encoded Assembly Content",
            metadata={},
        ),
        resource_group_name="testResourceGroup")
    
    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",
    });
    
    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.

    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=azure_native.logic.AssemblyPropertiesArgs(
            assembly_name="string",
            assembly_culture="string",
            assembly_public_key_token="string",
            assembly_version="string",
            changed_time="string",
            content="any",
            content_link=azure_native.logic.ContentLinkArgs(
                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

    The IntegrationAccountAssembly resource accepts the following input properties:

    IntegrationAccountName string
    The integration account name.
    Properties Pulumi.AzureNative.Logic.Inputs.AssemblyProperties
    The assembly properties.
    ResourceGroupName string
    The resource group name.
    AssemblyArtifactName string
    The assembly artifact name.
    Location string
    The resource location.
    Tags Dictionary<string, string>
    The resource tags.
    IntegrationAccountName string
    The integration account name.
    Properties AssemblyPropertiesArgs
    The assembly properties.
    ResourceGroupName string
    The resource group name.
    AssemblyArtifactName string
    The assembly artifact name.
    Location string
    The resource location.
    Tags map[string]string
    The resource tags.
    integrationAccountName String
    The integration account name.
    properties AssemblyProperties
    The assembly properties.
    resourceGroupName String
    The resource group name.
    assemblyArtifactName String
    The assembly artifact name.
    location String
    The resource location.
    tags Map<String,String>
    The resource tags.
    integrationAccountName string
    The integration account name.
    properties AssemblyProperties
    The assembly properties.
    resourceGroupName string
    The resource group name.
    assemblyArtifactName string
    The assembly artifact name.
    location string
    The resource location.
    tags {[key: string]: string}
    The resource tags.
    integration_account_name str
    The integration account name.
    properties AssemblyPropertiesArgs
    The assembly properties.
    resource_group_name str
    The resource group name.
    assembly_artifact_name str
    The assembly artifact name.
    location str
    The resource location.
    tags Mapping[str, str]
    The resource tags.
    integrationAccountName String
    The integration account name.
    properties Property Map
    The assembly properties.
    resourceGroupName String
    The resource group name.
    assemblyArtifactName 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 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 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 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 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 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 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 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 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 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 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 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 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 Pulumi.AzureNative.Logic.Inputs.ContentHashResponse
    The content hash.
    ContentSize double
    The content size.
    ContentVersion string
    The content version.
    Metadata object
    The metadata.
    Uri string
    The content link URI.
    ContentHash ContentHashResponse
    The content hash.
    ContentSize float64
    The content size.
    ContentVersion string
    The content version.
    Metadata interface{}
    The metadata.
    Uri string
    The content link URI.
    contentHash ContentHashResponse
    The content hash.
    contentSize Double
    The content size.
    contentVersion String
    The content version.
    metadata Object
    The metadata.
    uri String
    The content link URI.
    contentHash ContentHashResponse
    The content hash.
    contentSize number
    The content size.
    contentVersion string
    The content version.
    metadata any
    The metadata.
    uri string
    The content link URI.
    content_hash ContentHashResponse
    The content hash.
    content_size float
    The content size.
    content_version str
    The content version.
    metadata Any
    The metadata.
    uri str
    The content link URI.
    contentHash Property Map
    The content hash.
    contentSize Number
    The content size.
    contentVersion String
    The content version.
    metadata Any
    The metadata.
    uri String
    The content link URI.

    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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi