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

com.pulumi.azurenative.storsimple.inputs.GetBandwidthSettingArgs 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.storsimple.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 GetBandwidthSettingArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetBandwidthSettingArgs Empty = new GetBandwidthSettingArgs();

    /**
     * The name of bandwidth setting to be fetched.
     * 
     */
    @Import(name="bandwidthSettingName", required=true)
    private Output bandwidthSettingName;

    /**
     * @return The name of bandwidth setting to be fetched.
     * 
     */
    public Output bandwidthSettingName() {
        return this.bandwidthSettingName;
    }

    /**
     * The manager name
     * 
     */
    @Import(name="managerName", required=true)
    private Output managerName;

    /**
     * @return The manager name
     * 
     */
    public Output managerName() {
        return this.managerName;
    }

    /**
     * The resource group name
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The resource group name
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetBandwidthSettingArgs() {}

    private GetBandwidthSettingArgs(GetBandwidthSettingArgs $) {
        this.bandwidthSettingName = $.bandwidthSettingName;
        this.managerName = $.managerName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetBandwidthSettingArgs $;

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

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

        /**
         * @param bandwidthSettingName The name of bandwidth setting to be fetched.
         * 
         * @return builder
         * 
         */
        public Builder bandwidthSettingName(Output bandwidthSettingName) {
            $.bandwidthSettingName = bandwidthSettingName;
            return this;
        }

        /**
         * @param bandwidthSettingName The name of bandwidth setting to be fetched.
         * 
         * @return builder
         * 
         */
        public Builder bandwidthSettingName(String bandwidthSettingName) {
            return bandwidthSettingName(Output.of(bandwidthSettingName));
        }

        /**
         * @param managerName The manager name
         * 
         * @return builder
         * 
         */
        public Builder managerName(Output managerName) {
            $.managerName = managerName;
            return this;
        }

        /**
         * @param managerName The manager name
         * 
         * @return builder
         * 
         */
        public Builder managerName(String managerName) {
            return managerName(Output.of(managerName));
        }

        /**
         * @param resourceGroupName The resource group name
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The resource group name
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        public GetBandwidthSettingArgs build() {
            if ($.bandwidthSettingName == null) {
                throw new MissingRequiredPropertyException("GetBandwidthSettingArgs", "bandwidthSettingName");
            }
            if ($.managerName == null) {
                throw new MissingRequiredPropertyException("GetBandwidthSettingArgs", "managerName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetBandwidthSettingArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy