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

com.pulumi.azurenative.education.inputs.GetStudentPlainArgs 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.education.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetStudentPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetStudentPlainArgs Empty = new GetStudentPlainArgs();

    /**
     * The ID that uniquely identifies a billing account.
     * 
     */
    @Import(name="billingAccountName", required=true)
    private String billingAccountName;

    /**
     * @return The ID that uniquely identifies a billing account.
     * 
     */
    public String billingAccountName() {
        return this.billingAccountName;
    }

    /**
     * The ID that uniquely identifies a billing profile.
     * 
     */
    @Import(name="billingProfileName", required=true)
    private String billingProfileName;

    /**
     * @return The ID that uniquely identifies a billing profile.
     * 
     */
    public String billingProfileName() {
        return this.billingProfileName;
    }

    /**
     * The ID that uniquely identifies an invoice section.
     * 
     */
    @Import(name="invoiceSectionName", required=true)
    private String invoiceSectionName;

    /**
     * @return The ID that uniquely identifies an invoice section.
     * 
     */
    public String invoiceSectionName() {
        return this.invoiceSectionName;
    }

    /**
     * Student alias.
     * 
     */
    @Import(name="studentAlias", required=true)
    private String studentAlias;

    /**
     * @return Student alias.
     * 
     */
    public String studentAlias() {
        return this.studentAlias;
    }

    private GetStudentPlainArgs() {}

    private GetStudentPlainArgs(GetStudentPlainArgs $) {
        this.billingAccountName = $.billingAccountName;
        this.billingProfileName = $.billingProfileName;
        this.invoiceSectionName = $.invoiceSectionName;
        this.studentAlias = $.studentAlias;
    }

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

    public static final class Builder {
        private GetStudentPlainArgs $;

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

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

        /**
         * @param billingAccountName The ID that uniquely identifies a billing account.
         * 
         * @return builder
         * 
         */
        public Builder billingAccountName(String billingAccountName) {
            $.billingAccountName = billingAccountName;
            return this;
        }

        /**
         * @param billingProfileName The ID that uniquely identifies a billing profile.
         * 
         * @return builder
         * 
         */
        public Builder billingProfileName(String billingProfileName) {
            $.billingProfileName = billingProfileName;
            return this;
        }

        /**
         * @param invoiceSectionName The ID that uniquely identifies an invoice section.
         * 
         * @return builder
         * 
         */
        public Builder invoiceSectionName(String invoiceSectionName) {
            $.invoiceSectionName = invoiceSectionName;
            return this;
        }

        /**
         * @param studentAlias Student alias.
         * 
         * @return builder
         * 
         */
        public Builder studentAlias(String studentAlias) {
            $.studentAlias = studentAlias;
            return this;
        }

        public GetStudentPlainArgs build() {
            if ($.billingAccountName == null) {
                throw new MissingRequiredPropertyException("GetStudentPlainArgs", "billingAccountName");
            }
            if ($.billingProfileName == null) {
                throw new MissingRequiredPropertyException("GetStudentPlainArgs", "billingProfileName");
            }
            if ($.invoiceSectionName == null) {
                throw new MissingRequiredPropertyException("GetStudentPlainArgs", "invoiceSectionName");
            }
            if ($.studentAlias == null) {
                throw new MissingRequiredPropertyException("GetStudentPlainArgs", "studentAlias");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy