All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.devcenter.ScheduleArgs Maven / Gradle / Ivy

There is a newer version: 2.78.0
Show newest version
// *** 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> scheduleName() {
        return Optional.ofNullable(this.scheduleName);
    }

    /**
     * Indicates whether or not this scheduled task is enabled.
     * 
     */
    @Import(name="state")
    private @Nullable Output> state;

    /**
     * @return Indicates whether or not this scheduled task is enabled.
     * 
     */
    public Optional>> state() {
        return Optional.ofNullable(this.state);
    }

    /**
     * The target time to trigger the action. The format is HH:MM.
     * 
     */
    @Import(name="time", required=true)
    private Output time;

    /**
     * @return The target time to trigger the action. The format is HH:MM.
     * 
     */
    public Output time() {
        return this.time;
    }

    /**
     * The IANA timezone id at which the schedule should execute.
     * 
     */
    @Import(name="timeZone", required=true)
    private Output timeZone;

    /**
     * @return The IANA timezone id at which the schedule should execute.
     * 
     */
    public Output timeZone() {
        return this.timeZone;
    }

    /**
     * The maximum number of resources to return from the operation. Example: '$top=10'.
     * 
     */
    @Import(name="top")
    private @Nullable Output top;

    /**
     * @return The maximum number of resources to return from the operation. Example: '$top=10'.
     * 
     */
    public Optional> top() {
        return Optional.ofNullable(this.top);
    }

    /**
     * Supported type this scheduled task represents.
     * 
     */
    @Import(name="type", required=true)
    private Output> type;

    /**
     * @return Supported type this scheduled task represents.
     * 
     */
    public Output> type() {
        return this.type;
    }

    private ScheduleArgs() {}

    private ScheduleArgs(ScheduleArgs $) {
        this.frequency = $.frequency;
        this.poolName = $.poolName;
        this.projectName = $.projectName;
        this.resourceGroupName = $.resourceGroupName;
        this.scheduleName = $.scheduleName;
        this.state = $.state;
        this.time = $.time;
        this.timeZone = $.timeZone;
        this.top = $.top;
        this.type = $.type;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(ScheduleArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private ScheduleArgs $;

        public Builder() {
            $ = new ScheduleArgs();
        }

        public Builder(ScheduleArgs defaults) {
            $ = new ScheduleArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param frequency The frequency of this scheduled task.
         * 
         * @return builder
         * 
         */
        public Builder frequency(Output> frequency) {
            $.frequency = frequency;
            return this;
        }

        /**
         * @param frequency The frequency of this scheduled task.
         * 
         * @return builder
         * 
         */
        public Builder frequency(Either frequency) {
            return frequency(Output.of(frequency));
        }

        /**
         * @param frequency The frequency of this scheduled task.
         * 
         * @return builder
         * 
         */
        public Builder frequency(String frequency) {
            return frequency(Either.ofLeft(frequency));
        }

        /**
         * @param frequency The frequency of this scheduled task.
         * 
         * @return builder
         * 
         */
        public Builder frequency(ScheduledFrequency frequency) {
            return frequency(Either.ofRight(frequency));
        }

        /**
         * @param poolName Name of the pool.
         * 
         * @return builder
         * 
         */
        public Builder poolName(Output poolName) {
            $.poolName = poolName;
            return this;
        }

        /**
         * @param poolName Name of the pool.
         * 
         * @return builder
         * 
         */
        public Builder poolName(String poolName) {
            return poolName(Output.of(poolName));
        }

        /**
         * @param projectName The name of the project.
         * 
         * @return builder
         * 
         */
        public Builder projectName(Output projectName) {
            $.projectName = projectName;
            return this;
        }

        /**
         * @param projectName The name of the project.
         * 
         * @return builder
         * 
         */
        public Builder projectName(String projectName) {
            return projectName(Output.of(projectName));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param scheduleName The name of the schedule that uniquely identifies it.
         * 
         * @return builder
         * 
         */
        public Builder scheduleName(@Nullable Output scheduleName) {
            $.scheduleName = scheduleName;
            return this;
        }

        /**
         * @param scheduleName The name of the schedule that uniquely identifies it.
         * 
         * @return builder
         * 
         */
        public Builder scheduleName(String scheduleName) {
            return scheduleName(Output.of(scheduleName));
        }

        /**
         * @param state Indicates whether or not this scheduled task is enabled.
         * 
         * @return builder
         * 
         */
        public Builder state(@Nullable Output> state) {
            $.state = state;
            return this;
        }

        /**
         * @param state Indicates whether or not this scheduled task is enabled.
         * 
         * @return builder
         * 
         */
        public Builder state(Either state) {
            return state(Output.of(state));
        }

        /**
         * @param state Indicates whether or not this scheduled task is enabled.
         * 
         * @return builder
         * 
         */
        public Builder state(String state) {
            return state(Either.ofLeft(state));
        }

        /**
         * @param state Indicates whether or not this scheduled task is enabled.
         * 
         * @return builder
         * 
         */
        public Builder state(ScheduleEnableStatus state) {
            return state(Either.ofRight(state));
        }

        /**
         * @param time The target time to trigger the action. The format is HH:MM.
         * 
         * @return builder
         * 
         */
        public Builder time(Output time) {
            $.time = time;
            return this;
        }

        /**
         * @param time The target time to trigger the action. The format is HH:MM.
         * 
         * @return builder
         * 
         */
        public Builder time(String time) {
            return time(Output.of(time));
        }

        /**
         * @param timeZone The IANA timezone id at which the schedule should execute.
         * 
         * @return builder
         * 
         */
        public Builder timeZone(Output timeZone) {
            $.timeZone = timeZone;
            return this;
        }

        /**
         * @param timeZone The IANA timezone id at which the schedule should execute.
         * 
         * @return builder
         * 
         */
        public Builder timeZone(String timeZone) {
            return timeZone(Output.of(timeZone));
        }

        /**
         * @param top The maximum number of resources to return from the operation. Example: '$top=10'.
         * 
         * @return builder
         * 
         */
        public Builder top(@Nullable Output top) {
            $.top = top;
            return this;
        }

        /**
         * @param top The maximum number of resources to return from the operation. Example: '$top=10'.
         * 
         * @return builder
         * 
         */
        public Builder top(Integer top) {
            return top(Output.of(top));
        }

        /**
         * @param type Supported type this scheduled task represents.
         * 
         * @return builder
         * 
         */
        public Builder type(Output> type) {
            $.type = type;
            return this;
        }

        /**
         * @param type Supported type this scheduled task represents.
         * 
         * @return builder
         * 
         */
        public Builder type(Either type) {
            return type(Output.of(type));
        }

        /**
         * @param type Supported type this scheduled task represents.
         * 
         * @return builder
         * 
         */
        public Builder type(String type) {
            return type(Either.ofLeft(type));
        }

        /**
         * @param type Supported type this scheduled task represents.
         * 
         * @return builder
         * 
         */
        public Builder type(ScheduledType type) {
            return type(Either.ofRight(type));
        }

        public ScheduleArgs build() {
            if ($.frequency == null) {
                throw new MissingRequiredPropertyException("ScheduleArgs", "frequency");
            }
            if ($.poolName == null) {
                throw new MissingRequiredPropertyException("ScheduleArgs", "poolName");
            }
            if ($.projectName == null) {
                throw new MissingRequiredPropertyException("ScheduleArgs", "projectName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("ScheduleArgs", "resourceGroupName");
            }
            if ($.time == null) {
                throw new MissingRequiredPropertyException("ScheduleArgs", "time");
            }
            if ($.timeZone == null) {
                throw new MissingRequiredPropertyException("ScheduleArgs", "timeZone");
            }
            if ($.type == null) {
                throw new MissingRequiredPropertyException("ScheduleArgs", "type");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy