1. Packages
  2. Azure Native
  3. API Docs
  4. logic
  5. IntegrationAccount
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.IntegrationAccount

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 integration account. 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 an integration account

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var integrationAccount = new AzureNative.Logic.IntegrationAccount("integrationAccount", new()
        {
            IntegrationAccountName = "testIntegrationAccount",
            Location = "westus",
            ResourceGroupName = "testResourceGroup",
            Sku = new AzureNative.Logic.Inputs.IntegrationAccountSkuArgs
            {
                Name = AzureNative.Logic.IntegrationAccountSkuName.Standard,
            },
        });
    
    });
    
    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.NewIntegrationAccount(ctx, "integrationAccount", &logic.IntegrationAccountArgs{
    			IntegrationAccountName: pulumi.String("testIntegrationAccount"),
    			Location:               pulumi.String("westus"),
    			ResourceGroupName:      pulumi.String("testResourceGroup"),
    			Sku: &logic.IntegrationAccountSkuArgs{
    				Name: pulumi.String(logic.IntegrationAccountSkuNameStandard),
    			},
    		})
    		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.IntegrationAccount;
    import com.pulumi.azurenative.logic.IntegrationAccountArgs;
    import com.pulumi.azurenative.logic.inputs.IntegrationAccountSkuArgs;
    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 integrationAccount = new IntegrationAccount("integrationAccount", IntegrationAccountArgs.builder()        
                .integrationAccountName("testIntegrationAccount")
                .location("westus")
                .resourceGroupName("testResourceGroup")
                .sku(IntegrationAccountSkuArgs.builder()
                    .name("Standard")
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    integration_account = azure_native.logic.IntegrationAccount("integrationAccount",
        integration_account_name="testIntegrationAccount",
        location="westus",
        resource_group_name="testResourceGroup",
        sku=azure_native.logic.IntegrationAccountSkuArgs(
            name=azure_native.logic.IntegrationAccountSkuName.STANDARD,
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const integrationAccount = new azure_native.logic.IntegrationAccount("integrationAccount", {
        integrationAccountName: "testIntegrationAccount",
        location: "westus",
        resourceGroupName: "testResourceGroup",
        sku: {
            name: azure_native.logic.IntegrationAccountSkuName.Standard,
        },
    });
    
    resources:
      integrationAccount:
        type: azure-native:logic:IntegrationAccount
        properties:
          integrationAccountName: testIntegrationAccount
          location: westus
          resourceGroupName: testResourceGroup
          sku:
            name: Standard
    

    Create IntegrationAccount Resource

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

    Constructor syntax

    new IntegrationAccount(name: string, args: IntegrationAccountArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationAccount(resource_name: str,
                           args: IntegrationAccountArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationAccount(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           resource_group_name: Optional[str] = None,
                           integration_account_name: Optional[str] = None,
                           integration_service_environment: Optional[ResourceReferenceArgs] = None,
                           location: Optional[str] = None,
                           sku: Optional[IntegrationAccountSkuArgs] = None,
                           state: Optional[Union[str, WorkflowState]] = None,
                           tags: Optional[Mapping[str, str]] = None)
    func NewIntegrationAccount(ctx *Context, name string, args IntegrationAccountArgs, opts ...ResourceOption) (*IntegrationAccount, error)
    public IntegrationAccount(string name, IntegrationAccountArgs args, CustomResourceOptions? opts = null)
    public IntegrationAccount(String name, IntegrationAccountArgs args)
    public IntegrationAccount(String name, IntegrationAccountArgs args, CustomResourceOptions options)
    
    type: azure-native:logic:IntegrationAccount
    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 IntegrationAccountArgs
    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 IntegrationAccountArgs
    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 IntegrationAccountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationAccountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationAccountArgs
    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 integrationAccountResource = new AzureNative.Logic.IntegrationAccount("integrationAccountResource", new()
    {
        ResourceGroupName = "string",
        IntegrationAccountName = "string",
        IntegrationServiceEnvironment = new AzureNative.Logic.Inputs.ResourceReferenceArgs
        {
            Id = "string",
        },
        Location = "string",
        Sku = new AzureNative.Logic.Inputs.IntegrationAccountSkuArgs
        {
            Name = "string",
        },
        State = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := logic.NewIntegrationAccount(ctx, "integrationAccountResource", &logic.IntegrationAccountArgs{
    ResourceGroupName: pulumi.String("string"),
    IntegrationAccountName: pulumi.String("string"),
    IntegrationServiceEnvironment: &logic.ResourceReferenceArgs{
    Id: pulumi.String("string"),
    },
    Location: pulumi.String("string"),
    Sku: &logic.IntegrationAccountSkuArgs{
    Name: pulumi.String("string"),
    },
    State: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var integrationAccountResource = new IntegrationAccount("integrationAccountResource", IntegrationAccountArgs.builder()        
        .resourceGroupName("string")
        .integrationAccountName("string")
        .integrationServiceEnvironment(ResourceReferenceArgs.builder()
            .id("string")
            .build())
        .location("string")
        .sku(IntegrationAccountSkuArgs.builder()
            .name("string")
            .build())
        .state("string")
        .tags(Map.of("string", "string"))
        .build());
    
    integration_account_resource = azure_native.logic.IntegrationAccount("integrationAccountResource",
        resource_group_name="string",
        integration_account_name="string",
        integration_service_environment=azure_native.logic.ResourceReferenceArgs(
            id="string",
        ),
        location="string",
        sku=azure_native.logic.IntegrationAccountSkuArgs(
            name="string",
        ),
        state="string",
        tags={
            "string": "string",
        })
    
    const integrationAccountResource = new azure_native.logic.IntegrationAccount("integrationAccountResource", {
        resourceGroupName: "string",
        integrationAccountName: "string",
        integrationServiceEnvironment: {
            id: "string",
        },
        location: "string",
        sku: {
            name: "string",
        },
        state: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:logic:IntegrationAccount
    properties:
        integrationAccountName: string
        integrationServiceEnvironment:
            id: string
        location: string
        resourceGroupName: string
        sku:
            name: string
        state: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The resource group name.
    IntegrationAccountName string
    The integration account name.
    IntegrationServiceEnvironment Pulumi.AzureNative.Logic.Inputs.ResourceReference
    The integration service environment.
    Location string
    The resource location.
    Sku Pulumi.AzureNative.Logic.Inputs.IntegrationAccountSku
    The sku.
    State string | Pulumi.AzureNative.Logic.WorkflowState
    The workflow state.
    Tags Dictionary<string, string>
    The resource tags.
    ResourceGroupName string
    The resource group name.
    IntegrationAccountName string
    The integration account name.
    IntegrationServiceEnvironment ResourceReferenceArgs
    The integration service environment.
    Location string
    The resource location.
    Sku IntegrationAccountSkuArgs
    The sku.
    State string | WorkflowStateEnum
    The workflow state.
    Tags map[string]string
    The resource tags.
    resourceGroupName String
    The resource group name.
    integrationAccountName String
    The integration account name.
    integrationServiceEnvironment ResourceReference
    The integration service environment.
    location String
    The resource location.
    sku IntegrationAccountSku
    The sku.
    state String | WorkflowState
    The workflow state.
    tags Map<String,String>
    The resource tags.
    resourceGroupName string
    The resource group name.
    integrationAccountName string
    The integration account name.
    integrationServiceEnvironment ResourceReference
    The integration service environment.
    location string
    The resource location.
    sku IntegrationAccountSku
    The sku.
    state string | WorkflowState
    The workflow state.
    tags {[key: string]: string}
    The resource tags.
    resource_group_name str
    The resource group name.
    integration_account_name str
    The integration account name.
    integration_service_environment ResourceReferenceArgs
    The integration service environment.
    location str
    The resource location.
    sku IntegrationAccountSkuArgs
    The sku.
    state str | WorkflowState
    The workflow state.
    tags Mapping[str, str]
    The resource tags.
    resourceGroupName String
    The resource group name.
    integrationAccountName String
    The integration account name.
    integrationServiceEnvironment Property Map
    The integration service environment.
    location String
    The resource location.
    sku Property Map
    The sku.
    state String | "NotSpecified" | "Completed" | "Enabled" | "Disabled" | "Deleted" | "Suspended"
    The workflow state.
    tags Map<String>
    The resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IntegrationAccount 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

    IntegrationAccountSku, IntegrationAccountSkuArgs

    Name string | IntegrationAccountSkuName
    The sku name.
    name String | IntegrationAccountSkuName
    The sku name.
    name string | IntegrationAccountSkuName
    The sku name.
    name str | IntegrationAccountSkuName
    The sku name.

    IntegrationAccountSkuName, IntegrationAccountSkuNameArgs

    NotSpecified
    NotSpecified
    Free
    Free
    Basic
    Basic
    Standard
    Standard
    IntegrationAccountSkuNameNotSpecified
    NotSpecified
    IntegrationAccountSkuNameFree
    Free
    IntegrationAccountSkuNameBasic
    Basic
    IntegrationAccountSkuNameStandard
    Standard
    NotSpecified
    NotSpecified
    Free
    Free
    Basic
    Basic
    Standard
    Standard
    NotSpecified
    NotSpecified
    Free
    Free
    Basic
    Basic
    Standard
    Standard
    NOT_SPECIFIED
    NotSpecified
    FREE
    Free
    BASIC
    Basic
    STANDARD
    Standard
    "NotSpecified"
    NotSpecified
    "Free"
    Free
    "Basic"
    Basic
    "Standard"
    Standard

    IntegrationAccountSkuResponse, IntegrationAccountSkuResponseArgs

    Name string
    The sku name.
    Name string
    The sku name.
    name String
    The sku name.
    name string
    The sku name.
    name str
    The sku name.
    name String
    The sku name.

    ResourceReference, ResourceReferenceArgs

    Id string
    The resource id.
    Id string
    The resource id.
    id String
    The resource id.
    id string
    The resource id.
    id str
    The resource id.
    id String
    The resource id.

    ResourceReferenceResponse, ResourceReferenceResponseArgs

    Name string
    Gets the resource name.
    Type string
    Gets the resource type.
    Id string
    The resource id.
    Name string
    Gets the resource name.
    Type string
    Gets the resource type.
    Id string
    The resource id.
    name String
    Gets the resource name.
    type String
    Gets the resource type.
    id String
    The resource id.
    name string
    Gets the resource name.
    type string
    Gets the resource type.
    id string
    The resource id.
    name str
    Gets the resource name.
    type str
    Gets the resource type.
    id str
    The resource id.
    name String
    Gets the resource name.
    type String
    Gets the resource type.
    id String
    The resource id.

    WorkflowState, WorkflowStateArgs

    NotSpecified
    NotSpecified
    Completed
    Completed
    Enabled
    Enabled
    Disabled
    Disabled
    Deleted
    Deleted
    Suspended
    Suspended
    WorkflowStateNotSpecified
    NotSpecified
    WorkflowStateCompleted
    Completed
    WorkflowStateEnabled
    Enabled
    WorkflowStateDisabled
    Disabled
    WorkflowStateDeleted
    Deleted
    WorkflowStateSuspended
    Suspended
    NotSpecified
    NotSpecified
    Completed
    Completed
    Enabled
    Enabled
    Disabled
    Disabled
    Deleted
    Deleted
    Suspended
    Suspended
    NotSpecified
    NotSpecified
    Completed
    Completed
    Enabled
    Enabled
    Disabled
    Disabled
    Deleted
    Deleted
    Suspended
    Suspended
    NOT_SPECIFIED
    NotSpecified
    COMPLETED
    Completed
    ENABLED
    Enabled
    DISABLED
    Disabled
    DELETED
    Deleted
    SUSPENDED
    Suspended
    "NotSpecified"
    NotSpecified
    "Completed"
    Completed
    "Enabled"
    Enabled
    "Disabled"
    Disabled
    "Deleted"
    Deleted
    "Suspended"
    Suspended

    Import

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

    $ pulumi import azure-native:logic:IntegrationAccount testIntegrationAccount /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName} 
    

    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