azure-native.logic.IntegrationAccountBatchConfiguration
Explore with Pulumi AI
The batch configuration resource definition.
Uses Azure REST API version 2019-05-01. In version 2.x of the Azure Native provider, it used API version 2019-05-01.
Other available API versions: 2016-06-01, 2018-07-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native logic [ApiVersion]
. See the version guide for details.
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,
integration_account_name: Optional[str] = None,
properties: Optional[BatchConfigurationPropertiesArgs] = None,
resource_group_name: Optional[str] = None,
batch_configuration_name: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, 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-native:logic:IntegrationAccountBatchConfiguration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. IntegrationAccountBatchConfigurationArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. 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
This property is required. string - The unique name of the resource.
- args
This property is required. IntegrationAccountBatchConfigurationArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. IntegrationAccountBatchConfigurationArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. IntegrationAccountBatchConfigurationArgs - The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var integrationAccountBatchConfigurationResource = new AzureNative.Logic.IntegrationAccountBatchConfiguration("integrationAccountBatchConfigurationResource", new()
{
IntegrationAccountName = "string",
Properties = new AzureNative.Logic.Inputs.BatchConfigurationPropertiesArgs
{
BatchGroupName = "string",
ReleaseCriteria = new AzureNative.Logic.Inputs.BatchReleaseCriteriaArgs
{
BatchSize = 0,
MessageCount = 0,
Recurrence = new AzureNative.Logic.Inputs.WorkflowTriggerRecurrenceArgs
{
EndTime = "string",
Frequency = "string",
Interval = 0,
Schedule = new AzureNative.Logic.Inputs.RecurrenceScheduleArgs
{
Hours = new[]
{
0,
},
Minutes = new[]
{
0,
},
MonthDays = new[]
{
0,
},
MonthlyOccurrences = new[]
{
new AzureNative.Logic.Inputs.RecurrenceScheduleOccurrenceArgs
{
Day = AzureNative.Logic.DayOfWeek.Sunday,
Occurrence = 0,
},
},
WeekDays = new[]
{
AzureNative.Logic.DaysOfWeek.Sunday,
},
},
StartTime = "string",
TimeZone = "string",
},
},
ChangedTime = "string",
CreatedTime = "string",
Metadata = "any",
},
ResourceGroupName = "string",
BatchConfigurationName = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := logic.NewIntegrationAccountBatchConfiguration(ctx, "integrationAccountBatchConfigurationResource", &logic.IntegrationAccountBatchConfigurationArgs{
IntegrationAccountName: pulumi.String("string"),
Properties: &logic.BatchConfigurationPropertiesArgs{
BatchGroupName: pulumi.String("string"),
ReleaseCriteria: &logic.BatchReleaseCriteriaArgs{
BatchSize: pulumi.Int(0),
MessageCount: pulumi.Int(0),
Recurrence: &logic.WorkflowTriggerRecurrenceArgs{
EndTime: pulumi.String("string"),
Frequency: pulumi.String("string"),
Interval: pulumi.Int(0),
Schedule: &logic.RecurrenceScheduleArgs{
Hours: pulumi.IntArray{
pulumi.Int(0),
},
Minutes: pulumi.IntArray{
pulumi.Int(0),
},
MonthDays: pulumi.IntArray{
pulumi.Int(0),
},
MonthlyOccurrences: logic.RecurrenceScheduleOccurrenceArray{
&logic.RecurrenceScheduleOccurrenceArgs{
Day: logic.DayOfWeekSunday,
Occurrence: pulumi.Int(0),
},
},
WeekDays: logic.DaysOfWeekArray{
logic.DaysOfWeekSunday,
},
},
StartTime: pulumi.String("string"),
TimeZone: pulumi.String("string"),
},
},
ChangedTime: pulumi.String("string"),
CreatedTime: pulumi.String("string"),
Metadata: pulumi.Any("any"),
},
ResourceGroupName: pulumi.String("string"),
BatchConfigurationName: pulumi.String("string"),
Location: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var integrationAccountBatchConfigurationResource = new IntegrationAccountBatchConfiguration("integrationAccountBatchConfigurationResource", IntegrationAccountBatchConfigurationArgs.builder()
.integrationAccountName("string")
.properties(BatchConfigurationPropertiesArgs.builder()
.batchGroupName("string")
.releaseCriteria(BatchReleaseCriteriaArgs.builder()
.batchSize(0)
.messageCount(0)
.recurrence(WorkflowTriggerRecurrenceArgs.builder()
.endTime("string")
.frequency("string")
.interval(0)
.schedule(RecurrenceScheduleArgs.builder()
.hours(0)
.minutes(0)
.monthDays(0)
.monthlyOccurrences(RecurrenceScheduleOccurrenceArgs.builder()
.day("Sunday")
.occurrence(0)
.build())
.weekDays("Sunday")
.build())
.startTime("string")
.timeZone("string")
.build())
.build())
.changedTime("string")
.createdTime("string")
.metadata("any")
.build())
.resourceGroupName("string")
.batchConfigurationName("string")
.location("string")
.tags(Map.of("string", "string"))
.build());
integration_account_batch_configuration_resource = azure_native.logic.IntegrationAccountBatchConfiguration("integrationAccountBatchConfigurationResource",
integration_account_name="string",
properties={
"batch_group_name": "string",
"release_criteria": {
"batch_size": 0,
"message_count": 0,
"recurrence": {
"end_time": "string",
"frequency": "string",
"interval": 0,
"schedule": {
"hours": [0],
"minutes": [0],
"month_days": [0],
"monthly_occurrences": [{
"day": azure_native.logic.DayOfWeek.SUNDAY,
"occurrence": 0,
}],
"week_days": [azure_native.logic.DaysOfWeek.SUNDAY],
},
"start_time": "string",
"time_zone": "string",
},
},
"changed_time": "string",
"created_time": "string",
"metadata": "any",
},
resource_group_name="string",
batch_configuration_name="string",
location="string",
tags={
"string": "string",
})
const integrationAccountBatchConfigurationResource = new azure_native.logic.IntegrationAccountBatchConfiguration("integrationAccountBatchConfigurationResource", {
integrationAccountName: "string",
properties: {
batchGroupName: "string",
releaseCriteria: {
batchSize: 0,
messageCount: 0,
recurrence: {
endTime: "string",
frequency: "string",
interval: 0,
schedule: {
hours: [0],
minutes: [0],
monthDays: [0],
monthlyOccurrences: [{
day: azure_native.logic.DayOfWeek.Sunday,
occurrence: 0,
}],
weekDays: [azure_native.logic.DaysOfWeek.Sunday],
},
startTime: "string",
timeZone: "string",
},
},
changedTime: "string",
createdTime: "string",
metadata: "any",
},
resourceGroupName: "string",
batchConfigurationName: "string",
location: "string",
tags: {
string: "string",
},
});
type: azure-native:logic:IntegrationAccountBatchConfiguration
properties:
batchConfigurationName: string
integrationAccountName: string
location: string
properties:
batchGroupName: string
changedTime: string
createdTime: string
metadata: any
releaseCriteria:
batchSize: 0
messageCount: 0
recurrence:
endTime: string
frequency: string
interval: 0
schedule:
hours:
- 0
minutes:
- 0
monthDays:
- 0
monthlyOccurrences:
- day: Sunday
occurrence: 0
weekDays:
- Sunday
startTime: string
timeZone: string
resourceGroupName: string
tags:
string: 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IntegrationAccountBatchConfiguration resource accepts the following input properties:
- Integration
Account Name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- Properties
This property is required. Pulumi.Azure Native. Logic. Inputs. Batch Configuration Properties - The batch configuration properties.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- Batch
Configuration Name Changes to this property will trigger replacement.
- The batch configuration name.
- Location string
- The resource location.
- Dictionary<string, string>
- The resource tags.
- Integration
Account Name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- Properties
This property is required. BatchConfiguration Properties Args - The batch configuration properties.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- Batch
Configuration Name Changes to this property will trigger replacement.
- The batch configuration name.
- Location string
- The resource location.
- map[string]string
- The resource tags.
- integration
Account Name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- properties
This property is required. BatchConfiguration Properties - The batch configuration properties.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- batch
Configuration Name Changes to this property will trigger replacement.
- The batch configuration name.
- location String
- The resource location.
- Map<String,String>
- The resource tags.
- integration
Account Name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- properties
This property is required. BatchConfiguration Properties - The batch configuration properties.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- batch
Configuration Name Changes to this property will trigger replacement.
- The batch configuration name.
- location string
- The resource location.
- {[key: string]: string}
- The resource tags.
- integration_
account_ name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- properties
This property is required. BatchConfiguration Properties Args - The batch configuration properties.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- batch_
configuration_ name Changes to this property will trigger replacement.
- The batch configuration name.
- location str
- The resource location.
- Mapping[str, str]
- The resource tags.
- integration
Account Name This property is required. Changes to this property will trigger replacement.
- The integration account name.
- properties
This property is required. Property Map - The batch configuration properties.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- batch
Configuration Name Changes to this property will trigger replacement.
- The batch configuration name.
- location String
- The resource location.
- Map<String>
- The resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationAccountBatchConfiguration resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Gets the resource name.
- Type string
- Gets the resource type.
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Gets the resource name.
- Type string
- Gets the resource type.
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Gets the resource name.
- type String
- Gets the resource type.
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Gets the resource name.
- type string
- Gets the resource type.
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Gets the resource name.
- type str
- Gets the resource type.
- azure
Api StringVersion - The Azure API version of the resource.
- 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
- Batch
Group Name This property is required. string - The name of the batch group.
- Release
Criteria This property is required. Pulumi.Azure Native. Logic. Inputs. Batch Release Criteria - The batch release criteria.
- Changed
Time string - The artifact changed time.
- Created
Time string - The artifact creation time.
- Metadata object
- Batch
Group Name This property is required. string - The name of the batch group.
- Release
Criteria This property is required. BatchRelease Criteria - The batch release criteria.
- Changed
Time string - The artifact changed time.
- Created
Time string - The artifact creation time.
- Metadata interface{}
- batch
Group Name This property is required. String - The name of the batch group.
- release
Criteria This property is required. BatchRelease Criteria - The batch release criteria.
- changed
Time String - The artifact changed time.
- created
Time String - The artifact creation time.
- metadata Object
- batch
Group Name This property is required. string - The name of the batch group.
- release
Criteria This property is required. BatchRelease Criteria - The batch release criteria.
- changed
Time string - The artifact changed time.
- created
Time string - The artifact creation time.
- metadata any
- batch_
group_ name This property is required. str - The name of the batch group.
- release_
criteria This property is required. BatchRelease Criteria - The batch release criteria.
- changed_
time str - The artifact changed time.
- created_
time str - The artifact creation time.
- metadata Any
- batch
Group Name This property is required. String - The name of the batch group.
- release
Criteria This property is required. Property Map - The batch release criteria.
- changed
Time String - The artifact changed time.
- created
Time String - The artifact creation time.
- metadata Any
BatchConfigurationPropertiesResponse, BatchConfigurationPropertiesResponseArgs
- Batch
Group Name This property is required. string - The name of the batch group.
- Release
Criteria This property is required. Pulumi.Azure Native. Logic. Inputs. Batch Release Criteria Response - The batch release criteria.
- Changed
Time string - The artifact changed time.
- Created
Time string - The artifact creation time.
- Metadata object
- Batch
Group Name This property is required. string - The name of the batch group.
- Release
Criteria This property is required. BatchRelease Criteria Response - The batch release criteria.
- Changed
Time string - The artifact changed time.
- Created
Time string - The artifact creation time.
- Metadata interface{}
- batch
Group Name This property is required. String - The name of the batch group.
- release
Criteria This property is required. BatchRelease Criteria Response - The batch release criteria.
- changed
Time String - The artifact changed time.
- created
Time String - The artifact creation time.
- metadata Object
- batch
Group Name This property is required. string - The name of the batch group.
- release
Criteria This property is required. BatchRelease Criteria Response - The batch release criteria.
- changed
Time string - The artifact changed time.
- created
Time string - The artifact creation time.
- metadata any
- batch_
group_ name This property is required. str - The name of the batch group.
- release_
criteria This property is required. BatchRelease Criteria Response - The batch release criteria.
- changed_
time str - The artifact changed time.
- created_
time str - The artifact creation time.
- metadata Any
- batch
Group Name This property is required. String - The name of the batch group.
- release
Criteria This property is required. Property Map - The batch release criteria.
- changed
Time String - The artifact changed time.
- created
Time String - The artifact creation time.
- metadata Any
BatchReleaseCriteria, BatchReleaseCriteriaArgs
- Batch
Size int - The batch size in bytes.
- Message
Count int - The message count.
- Recurrence
Pulumi.
Azure Native. Logic. Inputs. Workflow Trigger Recurrence - The recurrence.
- Batch
Size int - The batch size in bytes.
- Message
Count int - The message count.
- Recurrence
Workflow
Trigger Recurrence - The recurrence.
- batch
Size Integer - The batch size in bytes.
- message
Count Integer - The message count.
- recurrence
Workflow
Trigger Recurrence - The recurrence.
- batch
Size number - The batch size in bytes.
- message
Count number - The message count.
- recurrence
Workflow
Trigger Recurrence - The recurrence.
- batch_
size int - The batch size in bytes.
- message_
count int - The message count.
- recurrence
Workflow
Trigger Recurrence - The recurrence.
- batch
Size Number - The batch size in bytes.
- message
Count Number - The message count.
- recurrence Property Map
- The recurrence.
BatchReleaseCriteriaResponse, BatchReleaseCriteriaResponseArgs
- Batch
Size int - The batch size in bytes.
- Message
Count int - The message count.
- Recurrence
Pulumi.
Azure Native. Logic. Inputs. Workflow Trigger Recurrence Response - The recurrence.
- Batch
Size int - The batch size in bytes.
- Message
Count int - The message count.
- Recurrence
Workflow
Trigger Recurrence Response - The recurrence.
- batch
Size Integer - The batch size in bytes.
- message
Count Integer - The message count.
- recurrence
Workflow
Trigger Recurrence Response - The recurrence.
- batch
Size number - The batch size in bytes.
- message
Count number - The message count.
- recurrence
Workflow
Trigger Recurrence Response - The recurrence.
- batch_
size int - The batch size in bytes.
- message_
count int - The message count.
- recurrence
Workflow
Trigger Recurrence Response - The recurrence.
- batch
Size Number - The batch size in bytes.
- message
Count 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
- Day
Of Week Sunday - Sunday
- Day
Of Week Monday - Monday
- Day
Of Week Tuesday - Tuesday
- Day
Of Week Wednesday - Wednesday
- Day
Of Week Thursday - Thursday
- Day
Of Week Friday - Friday
- Day
Of Week 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
- "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
- Days
Of Week Sunday - Sunday
- Days
Of Week Monday - Monday
- Days
Of Week Tuesday - Tuesday
- Days
Of Week Wednesday - Wednesday
- Days
Of Week Thursday - Thursday
- Days
Of Week Friday - Friday
- Days
Of Week 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
- "Sunday"
- Sunday
- "Monday"
- Monday
- "Tuesday"
- Tuesday
- "Wednesday"
- Wednesday
- "Thursday"
- Thursday
- "Friday"
- Friday
- "Saturday"
- Saturday
RecurrenceFrequency, RecurrenceFrequencyArgs
- Not
Specified - NotSpecified
- Second
- Second
- Minute
- Minute
- Hour
- Hour
- Day
- Day
- Week
- Week
- Month
- Month
- Year
- Year
- Recurrence
Frequency Not Specified - NotSpecified
- Recurrence
Frequency Second - Second
- Recurrence
Frequency Minute - Minute
- Recurrence
Frequency Hour - Hour
- Recurrence
Frequency Day - Day
- Recurrence
Frequency Week - Week
- Recurrence
Frequency Month - Month
- Recurrence
Frequency Year - Year
- Not
Specified - 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
- NOT_SPECIFIED
- 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
RecurrenceSchedule, RecurrenceScheduleArgs
- Hours List<int>
- The hours.
- Minutes List<int>
- The minutes.
- Month
Days List<int> - The month days.
- Monthly
Occurrences List<Pulumi.Azure Native. Logic. Inputs. Recurrence Schedule Occurrence> - The monthly occurrences.
- Week
Days List<Pulumi.Azure Native. Logic. Days Of Week> - The days of the week.
- Hours []int
- The hours.
- Minutes []int
- The minutes.
- Month
Days []int - The month days.
- Monthly
Occurrences []RecurrenceSchedule Occurrence - The monthly occurrences.
- Week
Days []DaysOf Week - The days of the week.
- hours List<Integer>
- The hours.
- minutes List<Integer>
- The minutes.
- month
Days List<Integer> - The month days.
- monthly
Occurrences List<RecurrenceSchedule Occurrence> - The monthly occurrences.
- week
Days List<DaysOf Week> - The days of the week.
- hours number[]
- The hours.
- minutes number[]
- The minutes.
- month
Days number[] - The month days.
- monthly
Occurrences RecurrenceSchedule Occurrence[] - The monthly occurrences.
- week
Days DaysOf Week[] - 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[RecurrenceSchedule Occurrence] - The monthly occurrences.
- week_
days Sequence[DaysOf Week] - The days of the week.
- hours List<Number>
- The hours.
- minutes List<Number>
- The minutes.
- month
Days List<Number> - The month days.
- monthly
Occurrences List<Property Map> - The monthly occurrences.
- week
Days List<"Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday"> - The days of the week.
RecurrenceScheduleOccurrence, RecurrenceScheduleOccurrenceArgs
- Day
Pulumi.
Azure Native. Logic. Day Of Week - The day of the week.
- Occurrence int
- The occurrence.
- Day
Day
Of Week - The day of the week.
- Occurrence int
- The occurrence.
- day
Day
Of Week - The day of the week.
- occurrence Integer
- The occurrence.
- day
Day
Of Week - The day of the week.
- occurrence number
- The occurrence.
- day
Day
Of Week - The day of the week.
- occurrence int
- The occurrence.
- day "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday"
- The day of the week.
- occurrence Number
- 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.
- Month
Days List<int> - The month days.
- Monthly
Occurrences List<Pulumi.Azure Native. Logic. Inputs. Recurrence Schedule Occurrence Response> - The monthly occurrences.
- Week
Days List<string> - The days of the week.
- Hours []int
- The hours.
- Minutes []int
- The minutes.
- Month
Days []int - The month days.
- Monthly
Occurrences []RecurrenceSchedule Occurrence Response - The monthly occurrences.
- Week
Days []string - The days of the week.
- hours List<Integer>
- The hours.
- minutes List<Integer>
- The minutes.
- month
Days List<Integer> - The month days.
- monthly
Occurrences List<RecurrenceSchedule Occurrence Response> - The monthly occurrences.
- week
Days List<String> - The days of the week.
- hours number[]
- The hours.
- minutes number[]
- The minutes.
- month
Days number[] - The month days.
- monthly
Occurrences RecurrenceSchedule Occurrence Response[] - The monthly occurrences.
- week
Days 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[RecurrenceSchedule Occurrence Response] - The monthly occurrences.
- week_
days Sequence[str] - The days of the week.
- hours List<Number>
- The hours.
- minutes List<Number>
- The minutes.
- month
Days List<Number> - The month days.
- monthly
Occurrences List<Property Map> - The monthly occurrences.
- week
Days List<String> - The days of the week.
WorkflowTriggerRecurrence, WorkflowTriggerRecurrenceArgs
- End
Time string - The end time.
- Frequency
string | Pulumi.
Azure Native. Logic. Recurrence Frequency - The frequency.
- Interval int
- The interval.
- Schedule
Pulumi.
Azure Native. Logic. Inputs. Recurrence Schedule - The recurrence schedule.
- Start
Time string - The start time.
- Time
Zone string - The time zone.
- End
Time string - The end time.
- Frequency
string | Recurrence
Frequency - The frequency.
- Interval int
- The interval.
- Schedule
Recurrence
Schedule - The recurrence schedule.
- Start
Time string - The start time.
- Time
Zone string - The time zone.
- end
Time String - The end time.
- frequency
String | Recurrence
Frequency - The frequency.
- interval Integer
- The interval.
- schedule
Recurrence
Schedule - The recurrence schedule.
- start
Time String - The start time.
- time
Zone String - The time zone.
- end
Time string - The end time.
- frequency
string | Recurrence
Frequency - The frequency.
- interval number
- The interval.
- schedule
Recurrence
Schedule - The recurrence schedule.
- start
Time string - The start time.
- time
Zone string - The time zone.
- end_
time str - The end time.
- frequency
str | Recurrence
Frequency - The frequency.
- interval int
- The interval.
- schedule
Recurrence
Schedule - The recurrence schedule.
- start_
time str - The start time.
- time_
zone str - The time zone.
- end
Time String - The end time.
- frequency
String | "Not
Specified" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year" - The frequency.
- interval Number
- The interval.
- schedule Property Map
- The recurrence schedule.
- start
Time String - The start time.
- time
Zone String - The time zone.
WorkflowTriggerRecurrenceResponse, WorkflowTriggerRecurrenceResponseArgs
- end_
time str - The end time.
- frequency str
- The frequency.
- interval int
- The interval.
- schedule
Recurrence
Schedule Response - The recurrence schedule.
- start_
time str - The start time.
- time_
zone str - 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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0