
com.pulumi.azurenative.datashare.ScheduledTriggerArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.azurenative.datashare;
import com.pulumi.azurenative.datashare.enums.RecurrenceInterval;
import com.pulumi.azurenative.datashare.enums.SynchronizationMode;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ScheduledTriggerArgs extends com.pulumi.resources.ResourceArgs {
public static final ScheduledTriggerArgs Empty = new ScheduledTriggerArgs();
/**
* The name of the share account.
*
*/
@Import(name="accountName", required=true)
private Output accountName;
/**
* @return The name of the share account.
*
*/
public Output accountName() {
return this.accountName;
}
/**
* Kind of synchronization on trigger.
* Expected value is 'ScheduleBased'.
*
*/
@Import(name="kind", required=true)
private Output kind;
/**
* @return Kind of synchronization on trigger.
* Expected value is 'ScheduleBased'.
*
*/
public Output kind() {
return this.kind;
}
/**
* Recurrence Interval
*
*/
@Import(name="recurrenceInterval", required=true)
private Output> recurrenceInterval;
/**
* @return Recurrence Interval
*
*/
public Output> recurrenceInterval() {
return this.recurrenceInterval;
}
/**
* The resource group name.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The resource group name.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the share subscription which will hold the data set sink.
*
*/
@Import(name="shareSubscriptionName", required=true)
private Output shareSubscriptionName;
/**
* @return The name of the share subscription which will hold the data set sink.
*
*/
public Output shareSubscriptionName() {
return this.shareSubscriptionName;
}
/**
* Synchronization mode
*
*/
@Import(name="synchronizationMode")
private @Nullable Output> synchronizationMode;
/**
* @return Synchronization mode
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy