com.pulumi.azure.logicapps.TriggerRecurrenceArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.logicapps;
import com.pulumi.azure.logicapps.inputs.TriggerRecurrenceScheduleArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class TriggerRecurrenceArgs extends com.pulumi.resources.ResourceArgs {
public static final TriggerRecurrenceArgs Empty = new TriggerRecurrenceArgs();
/**
* Specifies the Frequency at which this Trigger should be run. Possible values include `Month`, `Week`, `Day`, `Hour`, `Minute` and `Second`.
*
*/
@Import(name="frequency", required=true)
private Output frequency;
/**
* @return Specifies the Frequency at which this Trigger should be run. Possible values include `Month`, `Week`, `Day`, `Hour`, `Minute` and `Second`.
*
*/
public Output frequency() {
return this.frequency;
}
/**
* Specifies interval used for the Frequency, for example a value of `4` for `interval` and `hour` for `frequency` would run the Trigger every 4 hours.
*
*/
@Import(name="interval", required=true)
private Output interval;
/**
* @return Specifies interval used for the Frequency, for example a value of `4` for `interval` and `hour` for `frequency` would run the Trigger every 4 hours.
*
*/
public Output interval() {
return this.interval;
}
/**
* Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
*
*/
@Import(name="logicAppId", required=true)
private Output logicAppId;
/**
* @return Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
*
*/
public Output logicAppId() {
return this.logicAppId;
}
/**
* Specifies the name of the Recurrence Triggers to be created within the Logic App Workflow. Changing this forces a new resource to be created.
*
* > **NOTE:** This name must be unique across all Triggers within the Logic App Workflow.
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return Specifies the name of the Recurrence Triggers to be created within the Logic App Workflow. Changing this forces a new resource to be created.
*
* > **NOTE:** This name must be unique across all Triggers within the Logic App Workflow.
*
*/
public Optional