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

com.pulumi.azurenative.storagecache.inputs.GetRequiredAmlFSSubnetsSizeArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.storagecache.inputs;

import com.pulumi.azurenative.storagecache.inputs.SkuNameArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Double;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final GetRequiredAmlFSSubnetsSizeArgs Empty = new GetRequiredAmlFSSubnetsSizeArgs();

    /**
     * SKU for the resource.
     * 
     */
    @Import(name="sku")
    private @Nullable Output sku;

    /**
     * @return SKU for the resource.
     * 
     */
    public Optional> sku() {
        return Optional.ofNullable(this.sku);
    }

    /**
     * The size of the AML file system, in TiB.
     * 
     */
    @Import(name="storageCapacityTiB")
    private @Nullable Output storageCapacityTiB;

    /**
     * @return The size of the AML file system, in TiB.
     * 
     */
    public Optional> storageCapacityTiB() {
        return Optional.ofNullable(this.storageCapacityTiB);
    }

    private GetRequiredAmlFSSubnetsSizeArgs() {}

    private GetRequiredAmlFSSubnetsSizeArgs(GetRequiredAmlFSSubnetsSizeArgs $) {
        this.sku = $.sku;
        this.storageCapacityTiB = $.storageCapacityTiB;
    }

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

    public static final class Builder {
        private GetRequiredAmlFSSubnetsSizeArgs $;

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

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

        /**
         * @param sku SKU for the resource.
         * 
         * @return builder
         * 
         */
        public Builder sku(@Nullable Output sku) {
            $.sku = sku;
            return this;
        }

        /**
         * @param sku SKU for the resource.
         * 
         * @return builder
         * 
         */
        public Builder sku(SkuNameArgs sku) {
            return sku(Output.of(sku));
        }

        /**
         * @param storageCapacityTiB The size of the AML file system, in TiB.
         * 
         * @return builder
         * 
         */
        public Builder storageCapacityTiB(@Nullable Output storageCapacityTiB) {
            $.storageCapacityTiB = storageCapacityTiB;
            return this;
        }

        /**
         * @param storageCapacityTiB The size of the AML file system, in TiB.
         * 
         * @return builder
         * 
         */
        public Builder storageCapacityTiB(Double storageCapacityTiB) {
            return storageCapacityTiB(Output.of(storageCapacityTiB));
        }

        public GetRequiredAmlFSSubnetsSizeArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy