1. Packages
  2. Azure Native
  3. API Docs
  4. logic
  5. IntegrationAccountBatchConfiguration
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.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.logic.IntegrationAccountBatchConfiguration

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.34.0 published on Thursday, Mar 28, 2024 by Pulumi

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

    Example Usage

    Create or update a batch configuration

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var integrationAccountBatchConfiguration = new AzureNative.Logic.IntegrationAccountBatchConfiguration("integrationAccountBatchConfiguration", new()
        {
            BatchConfigurationName = "testBatchConfiguration",
            IntegrationAccountName = "testIntegrationAccount",
            Location = "westus",
            Properties = new AzureNative.Logic.Inputs.BatchConfigurationPropertiesArgs
            {
                BatchGroupName = "DEFAULT",
                ReleaseCriteria = new AzureNative.Logic.Inputs.BatchReleaseCriteriaArgs
                {
                    BatchSize = 234567,
                    MessageCount = 10,
                    Recurrence = new AzureNative.Logic.Inputs.WorkflowTriggerRecurrenceArgs
                    {
                        Frequency = AzureNative.Logic.RecurrenceFrequency.Minute,
                        Interval = 1,
                        StartTime = "2017-03-24T11:43:00",
                        TimeZone = "India Standard Time",
                    },
                },
            },
            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.NewIntegrationAccountBatchConfiguration(ctx, "integrationAccountBatchConfiguration", &logic.IntegrationAccountBatchConfigurationArgs{
    			BatchConfigurationName: pulumi.String("testBatchConfiguration"),
    			IntegrationAccountName: pulumi.String("testIntegrationAccount"),
    			Location:               pulumi.String("westus"),
    			Properties: &logic.BatchConfigurationPropertiesArgs{
    				BatchGroupName: pulumi.String("DEFAULT"),
    				ReleaseCriteria: &logic.BatchReleaseCriteriaArgs{
    					BatchSize:    pulumi.Int(234567),
    					MessageCount: pulumi.Int(10),
    					Recurrence: &logic.WorkflowTriggerRecurrenceArgs{
    						Frequency: pulumi.String(logic.RecurrenceFrequencyMinute),
    						Interval:  pulumi.Int(1),
    						StartTime: pulumi.String("2017-03-24T11:43:00"),
    						TimeZone:  pulumi.String("India Standard Time"),
    					},
    				},
    			},
    			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.IntegrationAccountBatchConfiguration;
    import com.pulumi.azurenative.logic.IntegrationAccountBatchConfigurationArgs;
    import com.pulumi.azurenative.logic.inputs.BatchConfigurationPropertiesArgs;
    import com.pulumi.azurenative.logic.inputs.BatchReleaseCriteriaArgs;
    import com.pulumi.azurenative.logic.inputs.WorkflowTriggerRecurrenceArgs;
    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 integrationAccountBatchConfiguration = new IntegrationAccountBatchConfiguration("integrationAccountBatchConfiguration", IntegrationAccountBatchConfigurationArgs.builder()        
                .batchConfigurationName("testBatchConfiguration")
                .integrationAccountName("testIntegrationAccount")
                .location("westus")
                .properties(BatchConfigurationPropertiesArgs.builder()
                    .batchGroupName("DEFAULT")
                    .releaseCriteria(BatchReleaseCriteriaArgs.builder()
                        .batchSize(234567)
                        .messageCount(10)
                        .recurrence(WorkflowTriggerRecurrenceArgs.builder()
                            .frequency("Minute")
                            .interval(1)
                            .startTime("2017-03-24T11:43:00")
                            .timeZone("India Standard Time")
                            .build())
                        .build())
                    .build())
                .resourceGroupName("testResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    integration_account_batch_configuration = azure_native.logic.IntegrationAccountBatchConfiguration("integrationAccountBatchConfiguration",
        batch_configuration_name="testBatchConfiguration",
        integration_account_name="testIntegrationAccount",
        location="westus",
        properties=azure_native.logic.BatchConfigurationPropertiesArgs(
            batch_group_name="DEFAULT",
            release_criteria=azure_native.logic.BatchReleaseCriteriaArgs(
                batch_size=234567,
                message_count=10,
                recurrence=azure_native.logic.WorkflowTriggerRecurrenceArgs(
                    frequency=azure_native.logic.RecurrenceFrequency.MINUTE,
                    interval=1,
                    start_time="2017-03-24T11:43:00",
                    time_zone="India Standard Time",
                ),
            ),
        ),
        resource_group_name="testResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const integrationAccountBatchConfiguration = new azure_native.logic.IntegrationAccountBatchConfiguration("integrationAccountBatchConfiguration", {
        batchConfigurationName: "testBatchConfiguration",
        integrationAccountName: "testIntegrationAccount",
        location: "westus",
        properties: {
            batchGroupName: "DEFAULT",
            releaseCriteria: {
                batchSize: 234567,
                messageCount: 10,
                recurrence: {
                    frequency: azure_native.logic.RecurrenceFrequency.Minute,
                    interval: 1,
                    startTime: "2017-03-24T11:43:00",
                    timeZone: "India Standard Time",
                },
            },
        },
        resourceGroupName: "testResourceGroup",
    });
    
    resources:
      integrationAccountBatchConfiguration:
        type: azure-native:logic:IntegrationAccountBatchConfiguration
        properties:
          batchConfigurationName: testBatchConfiguration
          integrationAccountName: testIntegrationAccount
          location: westus
          properties:
            batchGroupName: DEFAULT
            releaseCriteria:
              batchSize: 234567
              messageCount: 10
              recurrence:
                frequency: Minute
                interval: 1
                startTime: 2017-03-24T11:43:00
                timeZone: India Standard Time
          resourceGroupName: testResourceGroup
    

    Create IntegrationAccountBatchConfiguration Resource

    new IntegrationAccountBatchConfiguration(name: string, args: IntegrationAccountBatchConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def IntegrationAccountBatchConfiguration(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             batch_configuration_name: Optional[str] = None,
                                             integration_account_name: Optional[str] = None,
                                             location: Optional[str] = None,
                                             properties: Optional[BatchConfigurationPropertiesArgs] = None,
                                             resource_group_name: Optional[str] = None,
                                             tags: Optional[Mapping[str, str]] = None)
    @overload
    def IntegrationAccountBatchConfiguration(resource_name: str,
                                             args: IntegrationAccountBatchConfigurationArgs,
                                             opts: Optional[ResourceOptions] = 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-native:logic:IntegrationAccountBatchConfiguration
    properties: # The arguments to resource properties.
    options: # 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.
    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.

    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:

    IntegrationAccountName string
    The integration account name.
    Properties Pulumi.AzureNative.Logic.Inputs.BatchConfigurationProperties
    The batch configuration properties.
    ResourceGroupName string
    The resource group name.
    BatchConfigurationName string
    The batch configuration name.
    Location string
    The resource location.
    Tags Dictionary<string, string>
    The resource tags.
    IntegrationAccountName string
    The integration account name.
    Properties BatchConfigurationPropertiesArgs
    The batch configuration properties.
    ResourceGroupName string
    The resource group name.
    BatchConfigurationName string
    The batch configuration name.
    Location string
    The resource location.
    Tags map[string]string
    The resource tags.
    integrationAccountName String
    The integration account name.
    properties BatchConfigurationProperties
    The batch configuration properties.
    resourceGroupName String
    The resource group name.
    batchConfigurationName String
    The batch configuration name.
    location String
    The resource location.
    tags Map<String,String>
    The resource tags.
    integrationAccountName string
    The integration account name.
    properties BatchConfigurationProperties
    The batch configuration properties.
    resourceGroupName string
    The resource group name.
    batchConfigurationName string
    The batch configuration name.
    location string
    The resource location.
    tags {[key: string]: string}
    The resource tags.
    integration_account_name str
    The integration account name.
    properties BatchConfigurationPropertiesArgs
    The batch configuration properties.
    resource_group_name str
    The resource group name.
    batch_configuration_name str
    The batch configuration name.
    location str
    The resource location.
    tags Mapping[str, str]
    The resource tags.
    integrationAccountName String
    The integration account name.
    properties Property Map
    The batch configuration properties.
    resourceGroupName String
    The resource group name.
    batchConfigurationName String
    The batch configuration name.
    location String
    The resource location.
    tags Map<String>
    The resource tags.

    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.
    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

    BatchConfigurationProperties, BatchConfigurationPropertiesArgs

    BatchGroupName string
    The name of the batch group.
    ReleaseCriteria Pulumi.AzureNative.Logic.Inputs.BatchReleaseCriteria
    The batch release criteria.
    ChangedTime string
    The artifact changed time.
    CreatedTime string
    The artifact creation time.
    Metadata object
    BatchGroupName string
    The name of the batch group.
    ReleaseCriteria BatchReleaseCriteria
    The batch release criteria.
    ChangedTime string
    The artifact changed time.
    CreatedTime string
    The artifact creation time.
    Metadata interface{}
    batchGroupName String
    The name of the batch group.
    releaseCriteria BatchReleaseCriteria
    The batch release criteria.
    changedTime String
    The artifact changed time.
    createdTime String
    The artifact creation time.
    metadata Object
    batchGroupName string
    The name of the batch group.
    releaseCriteria BatchReleaseCriteria
    The batch release criteria.
    changedTime string
    The artifact changed time.
    createdTime string
    The artifact creation time.
    metadata any
    batch_group_name str
    The name of the batch group.
    release_criteria BatchReleaseCriteria
    The batch release criteria.
    changed_time str
    The artifact changed time.
    created_time str
    The artifact creation time.
    metadata Any
    batchGroupName String
    The name of the batch group.
    releaseCriteria Property Map
    The batch release criteria.
    changedTime String
    The artifact changed time.
    createdTime String
    The artifact creation time.
    metadata Any

    BatchConfigurationPropertiesResponse, BatchConfigurationPropertiesResponseArgs

    BatchGroupName string
    The name of the batch group.
    ReleaseCriteria Pulumi.AzureNative.Logic.Inputs.BatchReleaseCriteriaResponse
    The batch release criteria.
    ChangedTime string
    The artifact changed time.
    CreatedTime string
    The artifact creation time.
    Metadata object
    BatchGroupName string
    The name of the batch group.
    ReleaseCriteria BatchReleaseCriteriaResponse
    The batch release criteria.
    ChangedTime string
    The artifact changed time.
    CreatedTime string
    The artifact creation time.
    Metadata interface{}
    batchGroupName String
    The name of the batch group.
    releaseCriteria BatchReleaseCriteriaResponse
    The batch release criteria.
    changedTime String
    The artifact changed time.
    createdTime String
    The artifact creation time.
    metadata Object
    batchGroupName string
    The name of the batch group.
    releaseCriteria BatchReleaseCriteriaResponse
    The batch release criteria.
    changedTime string
    The artifact changed time.
    createdTime string
    The artifact creation time.
    metadata any
    batch_group_name str
    The name of the batch group.
    release_criteria BatchReleaseCriteriaResponse
    The batch release criteria.
    changed_time str
    The artifact changed time.
    created_time str
    The artifact creation time.
    metadata Any
    batchGroupName String
    The name of the batch group.
    releaseCriteria Property Map
    The batch release criteria.
    changedTime String
    The artifact changed time.
    createdTime String
    The artifact creation time.
    metadata Any

    BatchReleaseCriteria, BatchReleaseCriteriaArgs

    BatchSize int
    The batch size in bytes.
    MessageCount int
    The message count.
    Recurrence Pulumi.AzureNative.Logic.Inputs.WorkflowTriggerRecurrence
    The recurrence.
    BatchSize int
    The batch size in bytes.
    MessageCount int
    The message count.
    Recurrence WorkflowTriggerRecurrence
    The recurrence.
    batchSize Integer
    The batch size in bytes.
    messageCount Integer
    The message count.
    recurrence WorkflowTriggerRecurrence
    The recurrence.
    batchSize number
    The batch size in bytes.
    messageCount number
    The message count.
    recurrence WorkflowTriggerRecurrence
    The recurrence.
    batch_size int
    The batch size in bytes.
    message_count int
    The message count.
    recurrence WorkflowTriggerRecurrence
    The recurrence.
    batchSize Number
    The batch size in bytes.
    messageCount Number
    The message count.
    recurrence Property Map
    The recurrence.

    BatchReleaseCriteriaResponse, BatchReleaseCriteriaResponseArgs

    BatchSize int
    The batch size in bytes.
    MessageCount int
    The message count.
    Recurrence Pulumi.AzureNative.Logic.Inputs.WorkflowTriggerRecurrenceResponse
    The recurrence.
    BatchSize int
    The batch size in bytes.
    MessageCount int
    The message count.
    Recurrence WorkflowTriggerRecurrenceResponse
    The recurrence.
    batchSize Integer
    The batch size in bytes.
    messageCount Integer
    The message count.
    recurrence WorkflowTriggerRecurrenceResponse
    The recurrence.
    batchSize number
    The batch size in bytes.
    messageCount number
    The message count.
    recurrence WorkflowTriggerRecurrenceResponse
    The recurrence.
    batch_size int
    The batch size in bytes.
    message_count int
    The message count.
    recurrence WorkflowTriggerRecurrenceResponse
    The recurrence.
    batchSize Number
    The batch size in bytes.
    messageCount Number
    The message count.
    recurrence Property Map
    The recurrence.

    DayOfWeek, DayOfWeekArgs

    Sunday
    Sunday
    Monday
    Monday
    Tuesday
    Tuesday
    Wednesday
    Wednesday
    Thursday
    Thursday
    Friday
    Friday
    Saturday
    Saturday
    DayOfWeekSunday
    Sunday
    DayOfWeekMonday
    Monday
    DayOfWeekTuesday
    Tuesday
    DayOfWeekWednesday
    Wednesday
    DayOfWeekThursday
    Thursday
    DayOfWeekFriday
    Friday
    DayOfWeekSaturday
    Saturday
    Sunday
    Sunday
    Monday
    Monday
    Tuesday
    Tuesday
    Wednesday
    Wednesday
    Thursday
    Thursday
    Friday
    Friday
    Saturday
    Saturday
    Sunday
    Sunday
    Monday
    Monday
    Tuesday
    Tuesday
    Wednesday
    Wednesday
    Thursday
    Thursday
    Friday
    Friday
    Saturday
    Saturday
    SUNDAY
    Sunday
    MONDAY
    Monday
    TUESDAY
    Tuesday
    WEDNESDAY
    Wednesday
    THURSDAY
    Thursday
    FRIDAY
    Friday
    SATURDAY
    Saturday
    "Sunday"
    Sunday
    "Monday"
    Monday
    "Tuesday"
    Tuesday
    "Wednesday"
    Wednesday
    "Thursday"
    Thursday
    "Friday"
    Friday
    "Saturday"
    Saturday

    DaysOfWeek, DaysOfWeekArgs

    Sunday
    Sunday
    Monday
    Monday
    Tuesday
    Tuesday
    Wednesday
    Wednesday
    Thursday
    Thursday
    Friday
    Friday
    Saturday
    Saturday
    DaysOfWeekSunday
    Sunday
    DaysOfWeekMonday
    Monday
    DaysOfWeekTuesday
    Tuesday
    DaysOfWeekWednesday
    Wednesday
    DaysOfWeekThursday
    Thursday
    DaysOfWeekFriday
    Friday
    DaysOfWeekSaturday
    Saturday
    Sunday
    Sunday
    Monday
    Monday
    Tuesday
    Tuesday
    Wednesday
    Wednesday
    Thursday
    Thursday
    Friday
    Friday
    Saturday
    Saturday
    Sunday
    Sunday
    Monday
    Monday
    Tuesday
    Tuesday
    Wednesday
    Wednesday
    Thursday
    Thursday
    Friday
    Friday
    Saturday
    Saturday
    SUNDAY
    Sunday
    MONDAY
    Monday
    TUESDAY
    Tuesday
    WEDNESDAY
    Wednesday
    THURSDAY
    Thursday
    FRIDAY
    Friday
    SATURDAY
    Saturday
    "Sunday"
    Sunday
    "Monday"
    Monday
    "Tuesday"
    Tuesday
    "Wednesday"
    Wednesday
    "Thursday"
    Thursday
    "Friday"
    Friday
    "Saturday"
    Saturday

    RecurrenceFrequency, RecurrenceFrequencyArgs

    NotSpecified
    NotSpecified
    Second
    Second
    Minute
    Minute
    Hour
    Hour
    Day
    Day
    Week
    Week
    Month
    Month
    Year
    Year
    RecurrenceFrequencyNotSpecified
    NotSpecified
    RecurrenceFrequencySecond
    Second
    RecurrenceFrequencyMinute
    Minute
    RecurrenceFrequencyHour
    Hour
    RecurrenceFrequencyDay
    Day
    RecurrenceFrequencyWeek
    Week
    RecurrenceFrequencyMonth
    Month
    RecurrenceFrequencyYear
    Year
    NotSpecified
    NotSpecified
    Second
    Second
    Minute
    Minute
    Hour
    Hour
    Day
    Day
    Week
    Week
    Month
    Month
    Year
    Year
    NotSpecified
    NotSpecified
    Second
    Second
    Minute
    Minute
    Hour
    Hour
    Day
    Day
    Week
    Week
    Month
    Month
    Year
    Year
    NOT_SPECIFIED
    NotSpecified
    SECOND
    Second
    MINUTE
    Minute
    HOUR
    Hour
    DAY
    Day
    WEEK
    Week
    MONTH
    Month
    YEAR
    Year
    "NotSpecified"
    NotSpecified
    "Second"
    Second
    "Minute"
    Minute
    "Hour"
    Hour
    "Day"
    Day
    "Week"
    Week
    "Month"
    Month
    "Year"
    Year

    RecurrenceSchedule, RecurrenceScheduleArgs

    Hours List<int>
    The hours.
    Minutes List<int>
    The minutes.
    MonthDays List<int>
    The month days.
    MonthlyOccurrences List<Pulumi.AzureNative.Logic.Inputs.RecurrenceScheduleOccurrence>
    The monthly occurrences.
    WeekDays List<Pulumi.AzureNative.Logic.DaysOfWeek>
    The days of the week.
    Hours []int
    The hours.
    Minutes []int
    The minutes.
    MonthDays []int
    The month days.
    MonthlyOccurrences []RecurrenceScheduleOccurrence
    The monthly occurrences.
    WeekDays []DaysOfWeek
    The days of the week.
    hours List<Integer>
    The hours.
    minutes List<Integer>
    The minutes.
    monthDays List<Integer>
    The month days.
    monthlyOccurrences List<RecurrenceScheduleOccurrence>
    The monthly occurrences.
    weekDays List<DaysOfWeek>
    The days of the week.
    hours number[]
    The hours.
    minutes number[]
    The minutes.
    monthDays number[]
    The month days.
    monthlyOccurrences RecurrenceScheduleOccurrence[]
    The monthly occurrences.
    weekDays DaysOfWeek[]
    The days of the week.
    hours Sequence[int]
    The hours.
    minutes Sequence[int]
    The minutes.
    month_days Sequence[int]
    The month days.
    monthly_occurrences Sequence[RecurrenceScheduleOccurrence]
    The monthly occurrences.
    week_days Sequence[DaysOfWeek]
    The days of the week.
    hours List<Number>
    The hours.
    minutes List<Number>
    The minutes.
    monthDays List<Number>
    The month days.
    monthlyOccurrences List<Property Map>
    The monthly occurrences.
    weekDays List<"Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday">
    The days of the week.

    RecurrenceScheduleOccurrence, RecurrenceScheduleOccurrenceArgs

    Day Pulumi.AzureNative.Logic.DayOfWeek
    The day of the week.
    Occurrence int
    The occurrence.
    Day DayOfWeek
    The day of the week.
    Occurrence int
    The occurrence.
    day DayOfWeek
    The day of the week.
    occurrence Integer
    The occurrence.
    day DayOfWeek
    The day of the week.
    occurrence number
    The occurrence.
    day DayOfWeek
    The day of the week.
    occurrence int
    The occurrence.

    RecurrenceScheduleOccurrenceResponse, RecurrenceScheduleOccurrenceResponseArgs

    Day string
    The day of the week.
    Occurrence int
    The occurrence.
    Day string
    The day of the week.
    Occurrence int
    The occurrence.
    day String
    The day of the week.
    occurrence Integer
    The occurrence.
    day string
    The day of the week.
    occurrence number
    The occurrence.
    day str
    The day of the week.
    occurrence int
    The occurrence.
    day String
    The day of the week.
    occurrence Number
    The occurrence.

    RecurrenceScheduleResponse, RecurrenceScheduleResponseArgs

    Hours List<int>
    The hours.
    Minutes List<int>
    The minutes.
    MonthDays List<int>
    The month days.
    MonthlyOccurrences List<Pulumi.AzureNative.Logic.Inputs.RecurrenceScheduleOccurrenceResponse>
    The monthly occurrences.
    WeekDays List<string>
    The days of the week.
    Hours []int
    The hours.
    Minutes []int
    The minutes.
    MonthDays []int
    The month days.
    MonthlyOccurrences []RecurrenceScheduleOccurrenceResponse
    The monthly occurrences.
    WeekDays []string
    The days of the week.
    hours List<Integer>
    The hours.
    minutes List<Integer>
    The minutes.
    monthDays List<Integer>
    The month days.
    monthlyOccurrences List<RecurrenceScheduleOccurrenceResponse>
    The monthly occurrences.
    weekDays List<String>
    The days of the week.
    hours number[]
    The hours.
    minutes number[]
    The minutes.
    monthDays number[]
    The month days.
    monthlyOccurrences RecurrenceScheduleOccurrenceResponse[]
    The monthly occurrences.
    weekDays string[]
    The days of the week.
    hours Sequence[int]
    The hours.
    minutes Sequence[int]
    The minutes.
    month_days Sequence[int]
    The month days.
    monthly_occurrences Sequence[RecurrenceScheduleOccurrenceResponse]
    The monthly occurrences.
    week_days Sequence[str]
    The days of the week.
    hours List<Number>
    The hours.
    minutes List<Number>
    The minutes.
    monthDays List<Number>
    The month days.
    monthlyOccurrences List<Property Map>
    The monthly occurrences.
    weekDays List<String>
    The days of the week.

    WorkflowTriggerRecurrence, WorkflowTriggerRecurrenceArgs

    EndTime string
    The end time.
    Frequency string | Pulumi.AzureNative.Logic.RecurrenceFrequency
    The frequency.
    Interval int
    The interval.
    Schedule Pulumi.AzureNative.Logic.Inputs.RecurrenceSchedule
    The recurrence schedule.
    StartTime string
    The start time.
    TimeZone string
    The time zone.
    EndTime string
    The end time.
    Frequency string | RecurrenceFrequency
    The frequency.
    Interval int
    The interval.
    Schedule RecurrenceSchedule
    The recurrence schedule.
    StartTime string
    The start time.
    TimeZone string
    The time zone.
    endTime String
    The end time.
    frequency String | RecurrenceFrequency
    The frequency.
    interval Integer
    The interval.
    schedule RecurrenceSchedule
    The recurrence schedule.
    startTime String
    The start time.
    timeZone String
    The time zone.
    endTime string
    The end time.
    frequency string | RecurrenceFrequency
    The frequency.
    interval number
    The interval.
    schedule RecurrenceSchedule
    The recurrence schedule.
    startTime string
    The start time.
    timeZone string
    The time zone.
    end_time str
    The end time.
    frequency str | RecurrenceFrequency
    The frequency.
    interval int
    The interval.
    schedule RecurrenceSchedule
    The recurrence schedule.
    start_time str
    The start time.
    time_zone str
    The time zone.
    endTime String
    The end time.
    frequency String | "NotSpecified" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year"
    The frequency.
    interval Number
    The interval.
    schedule Property Map
    The recurrence schedule.
    startTime String
    The start time.
    timeZone String
    The time zone.

    WorkflowTriggerRecurrenceResponse, WorkflowTriggerRecurrenceResponseArgs

    EndTime string
    The end time.
    Frequency string
    The frequency.
    Interval int
    The interval.
    Schedule Pulumi.AzureNative.Logic.Inputs.RecurrenceScheduleResponse
    The recurrence schedule.
    StartTime string
    The start time.
    TimeZone string
    The time zone.
    EndTime string
    The end time.
    Frequency string
    The frequency.
    Interval int
    The interval.
    Schedule RecurrenceScheduleResponse
    The recurrence schedule.
    StartTime string
    The start time.
    TimeZone string
    The time zone.
    endTime String
    The end time.
    frequency String
    The frequency.
    interval Integer
    The interval.
    schedule RecurrenceScheduleResponse
    The recurrence schedule.
    startTime String
    The start time.
    timeZone String
    The time zone.
    endTime string
    The end time.
    frequency string
    The frequency.
    interval number
    The interval.
    schedule RecurrenceScheduleResponse
    The recurrence schedule.
    startTime string
    The start time.
    timeZone string
    The time zone.
    end_time str
    The end time.
    frequency str
    The frequency.
    interval int
    The interval.
    schedule RecurrenceScheduleResponse
    The recurrence schedule.
    start_time str
    The start time.
    time_zone str
    The time zone.
    endTime String
    The end time.
    frequency String
    The frequency.
    interval Number
    The interval.
    schedule Property Map
    The recurrence schedule.
    startTime String
    The start time.
    timeZone String
    The time zone.

    Import

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

    $ pulumi import azure-native:logic:IntegrationAccountBatchConfiguration testBatchConfiguration /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/batchConfigurations/{batchConfigurationName} 
    

    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.34.0 published on Thursday, Mar 28, 2024 by Pulumi