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

com.pulumi.azurenative.devcenter.inputs.GetScheduleArgs 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.inputs;

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 GetScheduleArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetScheduleArgs Empty = new GetScheduleArgs();

    /**
     * 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", required=true)
    private Output scheduleName;

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

    /**
     * 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);
    }

    private GetScheduleArgs() {}

    private GetScheduleArgs(GetScheduleArgs $) {
        this.poolName = $.poolName;
        this.projectName = $.projectName;
        this.resourceGroupName = $.resourceGroupName;
        this.scheduleName = $.scheduleName;
        this.top = $.top;
    }

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

    public static final class Builder {
        private GetScheduleArgs $;

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

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

        /**
         * @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(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 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));
        }

        public GetScheduleArgs build() {
            if ($.poolName == null) {
                throw new MissingRequiredPropertyException("GetScheduleArgs", "poolName");
            }
            if ($.projectName == null) {
                throw new MissingRequiredPropertyException("GetScheduleArgs", "projectName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetScheduleArgs", "resourceGroupName");
            }
            if ($.scheduleName == null) {
                throw new MissingRequiredPropertyException("GetScheduleArgs", "scheduleName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy