com.pulumi.azurenative.education.inputs.GetStudentArgs 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.
The 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetStudentArgs extends com.pulumi.resources.InvokeArgs {
public static final GetStudentArgs Empty = new GetStudentArgs();
/**
* The ID that uniquely identifies a billing account.
*
*/
@Import(name="billingAccountName", required=true)
private Output billingAccountName;
/**
* @return The ID that uniquely identifies a billing account.
*
*/
public Output billingAccountName() {
return this.billingAccountName;
}
/**
* The ID that uniquely identifies a billing profile.
*
*/
@Import(name="billingProfileName", required=true)
private Output billingProfileName;
/**
* @return The ID that uniquely identifies a billing profile.
*
*/
public Output billingProfileName() {
return this.billingProfileName;
}
/**
* The ID that uniquely identifies an invoice section.
*
*/
@Import(name="invoiceSectionName", required=true)
private Output invoiceSectionName;
/**
* @return The ID that uniquely identifies an invoice section.
*
*/
public Output invoiceSectionName() {
return this.invoiceSectionName;
}
/**
* Student alias.
*
*/
@Import(name="studentAlias", required=true)
private Output studentAlias;
/**
* @return Student alias.
*
*/
public Output studentAlias() {
return this.studentAlias;
}
private GetStudentArgs() {}
private GetStudentArgs(GetStudentArgs $) {
this.billingAccountName = $.billingAccountName;
this.billingProfileName = $.billingProfileName;
this.invoiceSectionName = $.invoiceSectionName;
this.studentAlias = $.studentAlias;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetStudentArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetStudentArgs $;
public Builder() {
$ = new GetStudentArgs();
}
public Builder(GetStudentArgs defaults) {
$ = new GetStudentArgs(Objects.requireNonNull(defaults));
}
/**
* @param billingAccountName The ID that uniquely identifies a billing account.
*
* @return builder
*
*/
public Builder billingAccountName(Output billingAccountName) {
$.billingAccountName = billingAccountName;
return this;
}
/**
* @param billingAccountName The ID that uniquely identifies a billing account.
*
* @return builder
*
*/
public Builder billingAccountName(String billingAccountName) {
return billingAccountName(Output.of(billingAccountName));
}
/**
* @param billingProfileName The ID that uniquely identifies a billing profile.
*
* @return builder
*
*/
public Builder billingProfileName(Output billingProfileName) {
$.billingProfileName = billingProfileName;
return this;
}
/**
* @param billingProfileName The ID that uniquely identifies a billing profile.
*
* @return builder
*
*/
public Builder billingProfileName(String billingProfileName) {
return billingProfileName(Output.of(billingProfileName));
}
/**
* @param invoiceSectionName The ID that uniquely identifies an invoice section.
*
* @return builder
*
*/
public Builder invoiceSectionName(Output invoiceSectionName) {
$.invoiceSectionName = invoiceSectionName;
return this;
}
/**
* @param invoiceSectionName The ID that uniquely identifies an invoice section.
*
* @return builder
*
*/
public Builder invoiceSectionName(String invoiceSectionName) {
return invoiceSectionName(Output.of(invoiceSectionName));
}
/**
* @param studentAlias Student alias.
*
* @return builder
*
*/
public Builder studentAlias(Output studentAlias) {
$.studentAlias = studentAlias;
return this;
}
/**
* @param studentAlias Student alias.
*
* @return builder
*
*/
public Builder studentAlias(String studentAlias) {
return studentAlias(Output.of(studentAlias));
}
public GetStudentArgs build() {
if ($.billingAccountName == null) {
throw new MissingRequiredPropertyException("GetStudentArgs", "billingAccountName");
}
if ($.billingProfileName == null) {
throw new MissingRequiredPropertyException("GetStudentArgs", "billingProfileName");
}
if ($.invoiceSectionName == null) {
throw new MissingRequiredPropertyException("GetStudentArgs", "invoiceSectionName");
}
if ($.studentAlias == null) {
throw new MissingRequiredPropertyException("GetStudentArgs", "studentAlias");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy