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

com.pulumi.vsphere.outputs.DistributedPortGroupVlanRange Maven / Gradle / Ivy

There is a newer version: 4.13.0-alpha.1731738919
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.vsphere.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.util.Objects;

@CustomType
public final class DistributedPortGroupVlanRange {
    private Integer maxVlan;
    private Integer minVlan;

    private DistributedPortGroupVlanRange() {}
    public Integer maxVlan() {
        return this.maxVlan;
    }
    public Integer minVlan() {
        return this.minVlan;
    }

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

    public static Builder builder(DistributedPortGroupVlanRange defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private Integer maxVlan;
        private Integer minVlan;
        public Builder() {}
        public Builder(DistributedPortGroupVlanRange defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.maxVlan = defaults.maxVlan;
    	      this.minVlan = defaults.minVlan;
        }

        @CustomType.Setter
        public Builder maxVlan(Integer maxVlan) {
            this.maxVlan = Objects.requireNonNull(maxVlan);
            return this;
        }
        @CustomType.Setter
        public Builder minVlan(Integer minVlan) {
            this.minVlan = Objects.requireNonNull(minVlan);
            return this;
        }
        public DistributedPortGroupVlanRange build() {
            final var o = new DistributedPortGroupVlanRange();
            o.maxVlan = maxVlan;
            o.minVlan = minVlan;
            return o;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy