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

com.pulumi.azurenative.billing.inputs.ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs Maven / Gradle / Ivy

// *** 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


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

    public static final ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs Empty = new ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs();

    /**
     * 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;
    }

    private ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs() {}

    private ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs(ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs $) {
        this.billingAccountName = $.billingAccountName;
    }

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

    public static final class Builder {
        private ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs $;

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

        public Builder(ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs defaults) {
            $ = new ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs(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));
        }

        public ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs build() {
            if ($.billingAccountName == null) {
                throw new MissingRequiredPropertyException("ListBillingAccountInvoiceSectionsByCreateSubscriptionPermissionArgs", "billingAccountName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy