com.pulumi.azurenative.devcenter.ScheduleArgs 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.devcenter;
import com.pulumi.azurenative.devcenter.enums.ScheduleEnableStatus;
import com.pulumi.azurenative.devcenter.enums.ScheduledFrequency;
import com.pulumi.azurenative.devcenter.enums.ScheduledType;
import com.pulumi.core.Either;
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 ScheduleArgs extends com.pulumi.resources.ResourceArgs {
public static final ScheduleArgs Empty = new ScheduleArgs();
/**
* The frequency of this scheduled task.
*
*/
@Import(name="frequency", required=true)
private Output> frequency;
/**
* @return The frequency of this scheduled task.
*
*/
public Output> frequency() {
return this.frequency;
}
/**
* Name of the pool.
*
*/
@Import(name="poolName", required=true)
private Output poolName;
/**
* @return Name of the pool.
*
*/
public Output poolName() {
return this.poolName;
}
/**
* The name of the project.
*
*/
@Import(name="projectName", required=true)
private Output projectName;
/**
* @return The name of the project.
*
*/
public Output projectName() {
return this.projectName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the schedule that uniquely identifies it.
*
*/
@Import(name="scheduleName")
private @Nullable Output scheduleName;
/**
* @return The name of the schedule that uniquely identifies it.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy