com.pulumi.azurenative.education.inputs.GetLabPlainArgs 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.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetLabPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetLabPlainArgs Empty = new GetLabPlainArgs();
/**
* 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;
}
/**
* May be used to include budget information.
*
*/
@Import(name="includeBudget")
private @Nullable Boolean includeBudget;
/**
* @return May be used to include budget information.
*
*/
public Optional includeBudget() {
return Optional.ofNullable(this.includeBudget);
}
/**
* 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;
}
private GetLabPlainArgs() {}
private GetLabPlainArgs(GetLabPlainArgs $) {
this.billingAccountName = $.billingAccountName;
this.billingProfileName = $.billingProfileName;
this.includeBudget = $.includeBudget;
this.invoiceSectionName = $.invoiceSectionName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetLabPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetLabPlainArgs $;
public Builder() {
$ = new GetLabPlainArgs();
}
public Builder(GetLabPlainArgs defaults) {
$ = new GetLabPlainArgs(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 includeBudget May be used to include budget information.
*
* @return builder
*
*/
public Builder includeBudget(@Nullable Boolean includeBudget) {
$.includeBudget = includeBudget;
return this;
}
/**
* @param invoiceSectionName The ID that uniquely identifies an invoice section.
*
* @return builder
*
*/
public Builder invoiceSectionName(String invoiceSectionName) {
$.invoiceSectionName = invoiceSectionName;
return this;
}
public GetLabPlainArgs build() {
if ($.billingAccountName == null) {
throw new MissingRequiredPropertyException("GetLabPlainArgs", "billingAccountName");
}
if ($.billingProfileName == null) {
throw new MissingRequiredPropertyException("GetLabPlainArgs", "billingProfileName");
}
if ($.invoiceSectionName == null) {
throw new MissingRequiredPropertyException("GetLabPlainArgs", "invoiceSectionName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy