
com.pulumi.azurenative.billing.inputs.GetInvoiceSectionPlainArgs 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.billing.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetInvoiceSectionPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetInvoiceSectionPlainArgs Empty = new GetInvoiceSectionPlainArgs();
/**
* 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;
}
private GetInvoiceSectionPlainArgs() {}
private GetInvoiceSectionPlainArgs(GetInvoiceSectionPlainArgs $) {
this.billingAccountName = $.billingAccountName;
this.billingProfileName = $.billingProfileName;
this.invoiceSectionName = $.invoiceSectionName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetInvoiceSectionPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetInvoiceSectionPlainArgs $;
public Builder() {
$ = new GetInvoiceSectionPlainArgs();
}
public Builder(GetInvoiceSectionPlainArgs defaults) {
$ = new GetInvoiceSectionPlainArgs(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;
}
public GetInvoiceSectionPlainArgs build() {
if ($.billingAccountName == null) {
throw new MissingRequiredPropertyException("GetInvoiceSectionPlainArgs", "billingAccountName");
}
if ($.billingProfileName == null) {
throw new MissingRequiredPropertyException("GetInvoiceSectionPlainArgs", "billingProfileName");
}
if ($.invoiceSectionName == null) {
throw new MissingRequiredPropertyException("GetInvoiceSectionPlainArgs", "invoiceSectionName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy