com.pulumi.azurenative.education.StudentArgs 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.education;
import com.pulumi.azurenative.education.enums.StudentRole;
import com.pulumi.azurenative.education.inputs.AmountArgs;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class StudentArgs extends com.pulumi.resources.ResourceArgs {
public static final StudentArgs Empty = new StudentArgs();
/**
* 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;
}
/**
* Student Budget
*
*/
@Import(name="budget", required=true)
private Output budget;
/**
* @return Student Budget
*
*/
public Output budget() {
return this.budget;
}
/**
* Student Email
*
*/
@Import(name="email", required=true)
private Output email;
/**
* @return Student Email
*
*/
public Output email() {
return this.email;
}
/**
* Date this student is set to expire from the lab.
*
*/
@Import(name="expirationDate", required=true)
private Output expirationDate;
/**
* @return Date this student is set to expire from the lab.
*
*/
public Output expirationDate() {
return this.expirationDate;
}
/**
* First Name
*
*/
@Import(name="firstName", required=true)
private Output firstName;
/**
* @return First Name
*
*/
public Output firstName() {
return this.firstName;
}
/**
* 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;
}
/**
* Last Name
*
*/
@Import(name="lastName", required=true)
private Output lastName;
/**
* @return Last Name
*
*/
public Output lastName() {
return this.lastName;
}
/**
* Student Role
*
*/
@Import(name="role", required=true)
private Output> role;
/**
* @return Student Role
*
*/
public Output> role() {
return this.role;
}
/**
* Student alias.
*
*/
@Import(name="studentAlias")
private @Nullable Output studentAlias;
/**
* @return Student alias.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy