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

com.pulumi.azurenative.azurelargeinstance.inputs.StorageBillingPropertiesArgs 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.azurelargeinstance.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Describes the billing related details of the AzureLargeStorageInstance.
 * 
 */
public final class StorageBillingPropertiesArgs extends com.pulumi.resources.ResourceArgs {

    public static final StorageBillingPropertiesArgs Empty = new StorageBillingPropertiesArgs();

    /**
     * the billing mode for the storage instance
     * 
     */
    @Import(name="billingMode")
    private @Nullable Output billingMode;

    /**
     * @return the billing mode for the storage instance
     * 
     */
    public Optional> billingMode() {
        return Optional.ofNullable(this.billingMode);
    }

    /**
     * the SKU type that is provisioned
     * 
     */
    @Import(name="sku")
    private @Nullable Output sku;

    /**
     * @return the SKU type that is provisioned
     * 
     */
    public Optional> sku() {
        return Optional.ofNullable(this.sku);
    }

    private StorageBillingPropertiesArgs() {}

    private StorageBillingPropertiesArgs(StorageBillingPropertiesArgs $) {
        this.billingMode = $.billingMode;
        this.sku = $.sku;
    }

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

    public static final class Builder {
        private StorageBillingPropertiesArgs $;

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

        public Builder(StorageBillingPropertiesArgs defaults) {
            $ = new StorageBillingPropertiesArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param billingMode the billing mode for the storage instance
         * 
         * @return builder
         * 
         */
        public Builder billingMode(@Nullable Output billingMode) {
            $.billingMode = billingMode;
            return this;
        }

        /**
         * @param billingMode the billing mode for the storage instance
         * 
         * @return builder
         * 
         */
        public Builder billingMode(String billingMode) {
            return billingMode(Output.of(billingMode));
        }

        /**
         * @param sku the SKU type that is provisioned
         * 
         * @return builder
         * 
         */
        public Builder sku(@Nullable Output sku) {
            $.sku = sku;
            return this;
        }

        /**
         * @param sku the SKU type that is provisioned
         * 
         * @return builder
         * 
         */
        public Builder sku(String sku) {
            return sku(Output.of(sku));
        }

        public StorageBillingPropertiesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy