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

com.pulumi.azurenative.azurestackhci.outputs.QosPolicyOverridesResponse 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.azurestackhci.outputs;

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

@CustomType
public final class QosPolicyOverridesResponse {
    /**
     * @return This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
     * 
     */
    private @Nullable String bandwidthPercentageSMB;
    /**
     * @return This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
     * 
     */
    private @Nullable String priorityValue8021ActionCluster;
    /**
     * @return This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
     * 
     */
    private @Nullable String priorityValue8021ActionSMB;

    private QosPolicyOverridesResponse() {}
    /**
     * @return This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
     * 
     */
    public Optional bandwidthPercentageSMB() {
        return Optional.ofNullable(this.bandwidthPercentageSMB);
    }
    /**
     * @return This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
     * 
     */
    public Optional priorityValue8021ActionCluster() {
        return Optional.ofNullable(this.priorityValue8021ActionCluster);
    }
    /**
     * @return This parameter should only be modified based on your OEM guidance. Do not modify this parameter without OEM validation.
     * 
     */
    public Optional priorityValue8021ActionSMB() {
        return Optional.ofNullable(this.priorityValue8021ActionSMB);
    }

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

    public static Builder builder(QosPolicyOverridesResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String bandwidthPercentageSMB;
        private @Nullable String priorityValue8021ActionCluster;
        private @Nullable String priorityValue8021ActionSMB;
        public Builder() {}
        public Builder(QosPolicyOverridesResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.bandwidthPercentageSMB = defaults.bandwidthPercentageSMB;
    	      this.priorityValue8021ActionCluster = defaults.priorityValue8021ActionCluster;
    	      this.priorityValue8021ActionSMB = defaults.priorityValue8021ActionSMB;
        }

        @CustomType.Setter
        public Builder bandwidthPercentageSMB(@Nullable String bandwidthPercentageSMB) {

            this.bandwidthPercentageSMB = bandwidthPercentageSMB;
            return this;
        }
        @CustomType.Setter
        public Builder priorityValue8021ActionCluster(@Nullable String priorityValue8021ActionCluster) {

            this.priorityValue8021ActionCluster = priorityValue8021ActionCluster;
            return this;
        }
        @CustomType.Setter
        public Builder priorityValue8021ActionSMB(@Nullable String priorityValue8021ActionSMB) {

            this.priorityValue8021ActionSMB = priorityValue8021ActionSMB;
            return this;
        }
        public QosPolicyOverridesResponse build() {
            final var _resultValue = new QosPolicyOverridesResponse();
            _resultValue.bandwidthPercentageSMB = bandwidthPercentageSMB;
            _resultValue.priorityValue8021ActionCluster = priorityValue8021ActionCluster;
            _resultValue.priorityValue8021ActionSMB = priorityValue8021ActionSMB;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy