1. Packages
  2. Azure Classic
  3. API Docs
  4. logicapps
  5. IntegrationAccountBatchConfiguration

We recommend using Azure Native.

Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi

azure.logicapps.IntegrationAccountBatchConfiguration

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi

    Manages a Logic App Integration Account Batch Configuration.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleIntegrationAccount = new azure.logicapps.IntegrationAccount("example", {
        name: "example-ia",
        location: example.location,
        resourceGroupName: example.name,
        skuName: "Standard",
    });
    const exampleIntegrationAccountBatchConfiguration = new azure.logicapps.IntegrationAccountBatchConfiguration("example", {
        name: "exampleiabc",
        resourceGroupName: example.name,
        integrationAccountName: exampleIntegrationAccount.name,
        batchGroupName: "TestBatchGroup",
        releaseCriteria: {
            messageCount: 80,
        },
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_integration_account = azure.logicapps.IntegrationAccount("example",
        name="example-ia",
        location=example.location,
        resource_group_name=example.name,
        sku_name="Standard")
    example_integration_account_batch_configuration = azure.logicapps.IntegrationAccountBatchConfiguration("example",
        name="exampleiabc",
        resource_group_name=example.name,
        integration_account_name=example_integration_account.name,
        batch_group_name="TestBatchGroup",
        release_criteria=azure.logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaArgs(
            message_count=80,
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/logicapps"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleIntegrationAccount, err := logicapps.NewIntegrationAccount(ctx, "example", &logicapps.IntegrationAccountArgs{
    			Name:              pulumi.String("example-ia"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    			SkuName:           pulumi.String("Standard"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = logicapps.NewIntegrationAccountBatchConfiguration(ctx, "example", &logicapps.IntegrationAccountBatchConfigurationArgs{
    			Name:                   pulumi.String("exampleiabc"),
    			ResourceGroupName:      example.Name,
    			IntegrationAccountName: exampleIntegrationAccount.Name,
    			BatchGroupName:         pulumi.String("TestBatchGroup"),
    			ReleaseCriteria: &logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaArgs{
    				MessageCount: pulumi.Int(80),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleIntegrationAccount = new Azure.LogicApps.IntegrationAccount("example", new()
        {
            Name = "example-ia",
            Location = example.Location,
            ResourceGroupName = example.Name,
            SkuName = "Standard",
        });
    
        var exampleIntegrationAccountBatchConfiguration = new Azure.LogicApps.IntegrationAccountBatchConfiguration("example", new()
        {
            Name = "exampleiabc",
            ResourceGroupName = example.Name,
            IntegrationAccountName = exampleIntegrationAccount.Name,
            BatchGroupName = "TestBatchGroup",
            ReleaseCriteria = new Azure.LogicApps.Inputs.IntegrationAccountBatchConfigurationReleaseCriteriaArgs
            {
                MessageCount = 80,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.logicapps.IntegrationAccount;
    import com.pulumi.azure.logicapps.IntegrationAccountArgs;
    import com.pulumi.azure.logicapps.IntegrationAccountBatchConfiguration;
    import com.pulumi.azure.logicapps.IntegrationAccountBatchConfigurationArgs;
    import com.pulumi.azure.logicapps.inputs.IntegrationAccountBatchConfigurationReleaseCriteriaArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleIntegrationAccount = new IntegrationAccount("exampleIntegrationAccount", IntegrationAccountArgs.builder()        
                .name("example-ia")
                .location(example.location())
                .resourceGroupName(example.name())
                .skuName("Standard")
                .build());
    
            var exampleIntegrationAccountBatchConfiguration = new IntegrationAccountBatchConfiguration("exampleIntegrationAccountBatchConfiguration", IntegrationAccountBatchConfigurationArgs.builder()        
                .name("exampleiabc")
                .resourceGroupName(example.name())
                .integrationAccountName(exampleIntegrationAccount.name())
                .batchGroupName("TestBatchGroup")
                .releaseCriteria(IntegrationAccountBatchConfigurationReleaseCriteriaArgs.builder()
                    .messageCount(80)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleIntegrationAccount:
        type: azure:logicapps:IntegrationAccount
        name: example
        properties:
          name: example-ia
          location: ${example.location}
          resourceGroupName: ${example.name}
          skuName: Standard
      exampleIntegrationAccountBatchConfiguration:
        type: azure:logicapps:IntegrationAccountBatchConfiguration
        name: example
        properties:
          name: exampleiabc
          resourceGroupName: ${example.name}
          integrationAccountName: ${exampleIntegrationAccount.name}
          batchGroupName: TestBatchGroup
          releaseCriteria:
            messageCount: 80
    

    Create IntegrationAccountBatchConfiguration Resource

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

    Constructor syntax

    new IntegrationAccountBatchConfiguration(name: string, args: IntegrationAccountBatchConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationAccountBatchConfiguration(resource_name: str,
                                             args: IntegrationAccountBatchConfigurationArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def IntegrationAccountBatchConfiguration(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             batch_group_name: Optional[str] = None,
                                             integration_account_name: Optional[str] = None,
                                             release_criteria: Optional[IntegrationAccountBatchConfigurationReleaseCriteriaArgs] = None,
                                             resource_group_name: Optional[str] = None,
                                             metadata: Optional[Mapping[str, str]] = None,
                                             name: Optional[str] = None)
    func NewIntegrationAccountBatchConfiguration(ctx *Context, name string, args IntegrationAccountBatchConfigurationArgs, opts ...ResourceOption) (*IntegrationAccountBatchConfiguration, error)
    public IntegrationAccountBatchConfiguration(string name, IntegrationAccountBatchConfigurationArgs args, CustomResourceOptions? opts = null)
    public IntegrationAccountBatchConfiguration(String name, IntegrationAccountBatchConfigurationArgs args)
    public IntegrationAccountBatchConfiguration(String name, IntegrationAccountBatchConfigurationArgs args, CustomResourceOptions options)
    
    type: azure:logicapps:IntegrationAccountBatchConfiguration
    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 IntegrationAccountBatchConfigurationArgs
    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 IntegrationAccountBatchConfigurationArgs
    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 IntegrationAccountBatchConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationAccountBatchConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationAccountBatchConfigurationArgs
    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 integrationAccountBatchConfigurationResource = new Azure.LogicApps.IntegrationAccountBatchConfiguration("integrationAccountBatchConfigurationResource", new()
    {
        BatchGroupName = "string",
        IntegrationAccountName = "string",
        ReleaseCriteria = new Azure.LogicApps.Inputs.IntegrationAccountBatchConfigurationReleaseCriteriaArgs
        {
            BatchSize = 0,
            MessageCount = 0,
            Recurrence = new Azure.LogicApps.Inputs.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceArgs
            {
                Frequency = "string",
                Interval = 0,
                EndTime = "string",
                Schedule = new Azure.LogicApps.Inputs.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgs
                {
                    Hours = new[]
                    {
                        0,
                    },
                    Minutes = new[]
                    {
                        0,
                    },
                    MonthDays = new[]
                    {
                        0,
                    },
                    Monthlies = new[]
                    {
                        new Azure.LogicApps.Inputs.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthlyArgs
                        {
                            Week = 0,
                            Weekday = "string",
                        },
                    },
                    WeekDays = new[]
                    {
                        "string",
                    },
                },
                StartTime = "string",
                TimeZone = "string",
            },
        },
        ResourceGroupName = "string",
        Metadata = 
        {
            { "string", "string" },
        },
        Name = "string",
    });
    
    example, err := logicapps.NewIntegrationAccountBatchConfiguration(ctx, "integrationAccountBatchConfigurationResource", &logicapps.IntegrationAccountBatchConfigurationArgs{
    	BatchGroupName:         pulumi.String("string"),
    	IntegrationAccountName: pulumi.String("string"),
    	ReleaseCriteria: &logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaArgs{
    		BatchSize:    pulumi.Int(0),
    		MessageCount: pulumi.Int(0),
    		Recurrence: &logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceArgs{
    			Frequency: pulumi.String("string"),
    			Interval:  pulumi.Int(0),
    			EndTime:   pulumi.String("string"),
    			Schedule: &logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgs{
    				Hours: pulumi.IntArray{
    					pulumi.Int(0),
    				},
    				Minutes: pulumi.IntArray{
    					pulumi.Int(0),
    				},
    				MonthDays: pulumi.IntArray{
    					pulumi.Int(0),
    				},
    				Monthlies: logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthlyArray{
    					&logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthlyArgs{
    						Week:    pulumi.Int(0),
    						Weekday: pulumi.String("string"),
    					},
    				},
    				WeekDays: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    			},
    			StartTime: pulumi.String("string"),
    			TimeZone:  pulumi.String("string"),
    		},
    	},
    	ResourceGroupName: pulumi.String("string"),
    	Metadata: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    })
    
    var integrationAccountBatchConfigurationResource = new IntegrationAccountBatchConfiguration("integrationAccountBatchConfigurationResource", IntegrationAccountBatchConfigurationArgs.builder()        
        .batchGroupName("string")
        .integrationAccountName("string")
        .releaseCriteria(IntegrationAccountBatchConfigurationReleaseCriteriaArgs.builder()
            .batchSize(0)
            .messageCount(0)
            .recurrence(IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceArgs.builder()
                .frequency("string")
                .interval(0)
                .endTime("string")
                .schedule(IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgs.builder()
                    .hours(0)
                    .minutes(0)
                    .monthDays(0)
                    .monthlies(IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthlyArgs.builder()
                        .week(0)
                        .weekday("string")
                        .build())
                    .weekDays("string")
                    .build())
                .startTime("string")
                .timeZone("string")
                .build())
            .build())
        .resourceGroupName("string")
        .metadata(Map.of("string", "string"))
        .name("string")
        .build());
    
    integration_account_batch_configuration_resource = azure.logicapps.IntegrationAccountBatchConfiguration("integrationAccountBatchConfigurationResource",
        batch_group_name="string",
        integration_account_name="string",
        release_criteria=azure.logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaArgs(
            batch_size=0,
            message_count=0,
            recurrence=azure.logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceArgs(
                frequency="string",
                interval=0,
                end_time="string",
                schedule=azure.logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgs(
                    hours=[0],
                    minutes=[0],
                    month_days=[0],
                    monthlies=[azure.logicapps.IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthlyArgs(
                        week=0,
                        weekday="string",
                    )],
                    week_days=["string"],
                ),
                start_time="string",
                time_zone="string",
            ),
        ),
        resource_group_name="string",
        metadata={
            "string": "string",
        },
        name="string")
    
    const integrationAccountBatchConfigurationResource = new azure.logicapps.IntegrationAccountBatchConfiguration("integrationAccountBatchConfigurationResource", {
        batchGroupName: "string",
        integrationAccountName: "string",
        releaseCriteria: {
            batchSize: 0,
            messageCount: 0,
            recurrence: {
                frequency: "string",
                interval: 0,
                endTime: "string",
                schedule: {
                    hours: [0],
                    minutes: [0],
                    monthDays: [0],
                    monthlies: [{
                        week: 0,
                        weekday: "string",
                    }],
                    weekDays: ["string"],
                },
                startTime: "string",
                timeZone: "string",
            },
        },
        resourceGroupName: "string",
        metadata: {
            string: "string",
        },
        name: "string",
    });
    
    type: azure:logicapps:IntegrationAccountBatchConfiguration
    properties:
        batchGroupName: string
        integrationAccountName: string
        metadata:
            string: string
        name: string
        releaseCriteria:
            batchSize: 0
            messageCount: 0
            recurrence:
                endTime: string
                frequency: string
                interval: 0
                schedule:
                    hours:
                        - 0
                    minutes:
                        - 0
                    monthDays:
                        - 0
                    monthlies:
                        - week: 0
                          weekday: string
                    weekDays:
                        - string
                startTime: string
                timeZone: string
        resourceGroupName: string
    

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

    BatchGroupName string
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    IntegrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    ReleaseCriteria IntegrationAccountBatchConfigurationReleaseCriteria
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    ResourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    Metadata Dictionary<string, string>
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    Name string
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    BatchGroupName string
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    IntegrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    ReleaseCriteria IntegrationAccountBatchConfigurationReleaseCriteriaArgs
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    ResourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    Metadata map[string]string
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    Name string
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    batchGroupName String
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    integrationAccountName String
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    releaseCriteria IntegrationAccountBatchConfigurationReleaseCriteria
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    resourceGroupName String
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    metadata Map<String,String>
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    name String
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    batchGroupName string
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    integrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    releaseCriteria IntegrationAccountBatchConfigurationReleaseCriteria
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    resourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    metadata {[key: string]: string}
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    name string
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    batch_group_name str
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    integration_account_name str
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    release_criteria IntegrationAccountBatchConfigurationReleaseCriteriaArgs
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    resource_group_name str
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    metadata Mapping[str, str]
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    name str
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    batchGroupName String
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    integrationAccountName String
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    releaseCriteria Property Map
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    resourceGroupName String
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    metadata Map<String>
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    name String
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing IntegrationAccountBatchConfiguration Resource

    Get an existing IntegrationAccountBatchConfiguration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: IntegrationAccountBatchConfigurationState, opts?: CustomResourceOptions): IntegrationAccountBatchConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            batch_group_name: Optional[str] = None,
            integration_account_name: Optional[str] = None,
            metadata: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            release_criteria: Optional[IntegrationAccountBatchConfigurationReleaseCriteriaArgs] = None,
            resource_group_name: Optional[str] = None) -> IntegrationAccountBatchConfiguration
    func GetIntegrationAccountBatchConfiguration(ctx *Context, name string, id IDInput, state *IntegrationAccountBatchConfigurationState, opts ...ResourceOption) (*IntegrationAccountBatchConfiguration, error)
    public static IntegrationAccountBatchConfiguration Get(string name, Input<string> id, IntegrationAccountBatchConfigurationState? state, CustomResourceOptions? opts = null)
    public static IntegrationAccountBatchConfiguration get(String name, Output<String> id, IntegrationAccountBatchConfigurationState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BatchGroupName string
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    IntegrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    Metadata Dictionary<string, string>
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    Name string
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    ReleaseCriteria IntegrationAccountBatchConfigurationReleaseCriteria
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    ResourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    BatchGroupName string
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    IntegrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    Metadata map[string]string
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    Name string
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    ReleaseCriteria IntegrationAccountBatchConfigurationReleaseCriteriaArgs
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    ResourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    batchGroupName String
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    integrationAccountName String
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    metadata Map<String,String>
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    name String
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    releaseCriteria IntegrationAccountBatchConfigurationReleaseCriteria
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    resourceGroupName String
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    batchGroupName string
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    integrationAccountName string
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    metadata {[key: string]: string}
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    name string
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    releaseCriteria IntegrationAccountBatchConfigurationReleaseCriteria
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    resourceGroupName string
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    batch_group_name str
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    integration_account_name str
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    metadata Mapping[str, str]
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    name str
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    release_criteria IntegrationAccountBatchConfigurationReleaseCriteriaArgs
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    resource_group_name str
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.
    batchGroupName String
    The batch group name of the Logic App Integration Batch Configuration. Changing this forces a new resource to be created.
    integrationAccountName String
    The name of the Logic App Integration Account. Changing this forces a new resource to be created.
    metadata Map<String>
    A JSON mapping of any Metadata for this Logic App Integration Account Batch Configuration.
    name String
    The name which should be used for this Logic App Integration Account Batch Configuration. Only Alphanumeric characters allowed. Changing this forces a new resource to be created.
    releaseCriteria Property Map
    A release_criteria block as documented below, which is used to select the criteria to meet before processing each batch.
    resourceGroupName String
    The name of the Resource Group where the Logic App Integration Account Batch Configuration should exist. Changing this forces a new resource to be created.

    Supporting Types

    IntegrationAccountBatchConfigurationReleaseCriteria, IntegrationAccountBatchConfigurationReleaseCriteriaArgs

    BatchSize int
    The batch size in bytes for the Logic App Integration Batch Configuration.
    MessageCount int
    The message count for the Logic App Integration Batch Configuration.
    Recurrence IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence
    A recurrence block as documented below.
    BatchSize int
    The batch size in bytes for the Logic App Integration Batch Configuration.
    MessageCount int
    The message count for the Logic App Integration Batch Configuration.
    Recurrence IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence
    A recurrence block as documented below.
    batchSize Integer
    The batch size in bytes for the Logic App Integration Batch Configuration.
    messageCount Integer
    The message count for the Logic App Integration Batch Configuration.
    recurrence IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence
    A recurrence block as documented below.
    batchSize number
    The batch size in bytes for the Logic App Integration Batch Configuration.
    messageCount number
    The message count for the Logic App Integration Batch Configuration.
    recurrence IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence
    A recurrence block as documented below.
    batch_size int
    The batch size in bytes for the Logic App Integration Batch Configuration.
    message_count int
    The message count for the Logic App Integration Batch Configuration.
    recurrence IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence
    A recurrence block as documented below.
    batchSize Number
    The batch size in bytes for the Logic App Integration Batch Configuration.
    messageCount Number
    The message count for the Logic App Integration Batch Configuration.
    recurrence Property Map
    A recurrence block as documented below.

    IntegrationAccountBatchConfigurationReleaseCriteriaRecurrence, IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceArgs

    Frequency string
    The frequency of the schedule. Possible values are Day, Hour, Minute, Month, NotSpecified, Second, Week and Year.
    Interval int
    The number of frequencys between runs.
    EndTime string
    The end time of the schedule, formatted as an RFC3339 string.
    Schedule IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceSchedule
    A schedule block as documented below.
    StartTime string
    The start time of the schedule, formatted as an RFC3339 string.
    TimeZone string
    The timezone of the start/end time.
    Frequency string
    The frequency of the schedule. Possible values are Day, Hour, Minute, Month, NotSpecified, Second, Week and Year.
    Interval int
    The number of frequencys between runs.
    EndTime string
    The end time of the schedule, formatted as an RFC3339 string.
    Schedule IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceSchedule
    A schedule block as documented below.
    StartTime string
    The start time of the schedule, formatted as an RFC3339 string.
    TimeZone string
    The timezone of the start/end time.
    frequency String
    The frequency of the schedule. Possible values are Day, Hour, Minute, Month, NotSpecified, Second, Week and Year.
    interval Integer
    The number of frequencys between runs.
    endTime String
    The end time of the schedule, formatted as an RFC3339 string.
    schedule IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceSchedule
    A schedule block as documented below.
    startTime String
    The start time of the schedule, formatted as an RFC3339 string.
    timeZone String
    The timezone of the start/end time.
    frequency string
    The frequency of the schedule. Possible values are Day, Hour, Minute, Month, NotSpecified, Second, Week and Year.
    interval number
    The number of frequencys between runs.
    endTime string
    The end time of the schedule, formatted as an RFC3339 string.
    schedule IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceSchedule
    A schedule block as documented below.
    startTime string
    The start time of the schedule, formatted as an RFC3339 string.
    timeZone string
    The timezone of the start/end time.
    frequency str
    The frequency of the schedule. Possible values are Day, Hour, Minute, Month, NotSpecified, Second, Week and Year.
    interval int
    The number of frequencys between runs.
    end_time str
    The end time of the schedule, formatted as an RFC3339 string.
    schedule IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceSchedule
    A schedule block as documented below.
    start_time str
    The start time of the schedule, formatted as an RFC3339 string.
    time_zone str
    The timezone of the start/end time.
    frequency String
    The frequency of the schedule. Possible values are Day, Hour, Minute, Month, NotSpecified, Second, Week and Year.
    interval Number
    The number of frequencys between runs.
    endTime String
    The end time of the schedule, formatted as an RFC3339 string.
    schedule Property Map
    A schedule block as documented below.
    startTime String
    The start time of the schedule, formatted as an RFC3339 string.
    timeZone String
    The timezone of the start/end time.

    IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceSchedule, IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleArgs

    Hours List<int>
    A list containing a single item, which specifies the Hour interval at which this recurrence should be triggered.
    Minutes List<int>
    A list containing a single item which specifies the Minute interval at which this recurrence should be triggered.
    MonthDays List<int>
    A list of days of the month that the job should execute on.
    Monthlies List<IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthly>
    A monthly block as documented below.
    WeekDays List<string>
    A list of days of the week that the job should execute on. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
    Hours []int
    A list containing a single item, which specifies the Hour interval at which this recurrence should be triggered.
    Minutes []int
    A list containing a single item which specifies the Minute interval at which this recurrence should be triggered.
    MonthDays []int
    A list of days of the month that the job should execute on.
    Monthlies []IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthly
    A monthly block as documented below.
    WeekDays []string
    A list of days of the week that the job should execute on. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
    hours List<Integer>
    A list containing a single item, which specifies the Hour interval at which this recurrence should be triggered.
    minutes List<Integer>
    A list containing a single item which specifies the Minute interval at which this recurrence should be triggered.
    monthDays List<Integer>
    A list of days of the month that the job should execute on.
    monthlies List<IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthly>
    A monthly block as documented below.
    weekDays List<String>
    A list of days of the week that the job should execute on. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
    hours number[]
    A list containing a single item, which specifies the Hour interval at which this recurrence should be triggered.
    minutes number[]
    A list containing a single item which specifies the Minute interval at which this recurrence should be triggered.
    monthDays number[]
    A list of days of the month that the job should execute on.
    monthlies IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthly[]
    A monthly block as documented below.
    weekDays string[]
    A list of days of the week that the job should execute on. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
    hours Sequence[int]
    A list containing a single item, which specifies the Hour interval at which this recurrence should be triggered.
    minutes Sequence[int]
    A list containing a single item which specifies the Minute interval at which this recurrence should be triggered.
    month_days Sequence[int]
    A list of days of the month that the job should execute on.
    monthlies Sequence[IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthly]
    A monthly block as documented below.
    week_days Sequence[str]
    A list of days of the week that the job should execute on. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
    hours List<Number>
    A list containing a single item, which specifies the Hour interval at which this recurrence should be triggered.
    minutes List<Number>
    A list containing a single item which specifies the Minute interval at which this recurrence should be triggered.
    monthDays List<Number>
    A list of days of the month that the job should execute on.
    monthlies List<Property Map>
    A monthly block as documented below.
    weekDays List<String>
    A list of days of the week that the job should execute on. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.

    IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthly, IntegrationAccountBatchConfigurationReleaseCriteriaRecurrenceScheduleMonthlyArgs

    Week int
    The occurrence of the week within the month.
    Weekday string
    The day of the occurrence. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
    Week int
    The occurrence of the week within the month.
    Weekday string
    The day of the occurrence. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
    week Integer
    The occurrence of the week within the month.
    weekday String
    The day of the occurrence. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
    week number
    The occurrence of the week within the month.
    weekday string
    The day of the occurrence. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
    week int
    The occurrence of the week within the month.
    weekday str
    The day of the occurrence. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.
    week Number
    The occurrence of the week within the month.
    weekday String
    The day of the occurrence. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.

    Import

    Logic App Integration Account Batch Configurations can be imported using the resource id, e.g.

    $ pulumi import azure:logicapps/integrationAccountBatchConfiguration:IntegrationAccountBatchConfiguration example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Logic/integrationAccounts/account1/batchConfigurations/batchConfiguration1
    

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

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.73.0 published on Monday, Apr 22, 2024 by Pulumi