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

com.pulumi.meraki.networks.inputs.ApplianceTrafficShapingVpnExclusionsParametersCustomArgs Maven / Gradle / Ivy

There is a newer version: 0.4.0-alpha.1731736975
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.meraki.networks.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;


public final class ApplianceTrafficShapingVpnExclusionsParametersCustomArgs extends com.pulumi.resources.ResourceArgs {

    public static final ApplianceTrafficShapingVpnExclusionsParametersCustomArgs Empty = new ApplianceTrafficShapingVpnExclusionsParametersCustomArgs();

    /**
     * Destination address; hostname required for DNS, IPv4 otherwise.
     * 
     */
    @Import(name="destination")
    private @Nullable Output destination;

    /**
     * @return Destination address; hostname required for DNS, IPv4 otherwise.
     * 
     */
    public Optional> destination() {
        return Optional.ofNullable(this.destination);
    }

    /**
     * Destination port.
     * 
     */
    @Import(name="port")
    private @Nullable Output port;

    /**
     * @return Destination port.
     * 
     */
    public Optional> port() {
        return Optional.ofNullable(this.port);
    }

    /**
     * Protocol.
     * 
     */
    @Import(name="protocol")
    private @Nullable Output protocol;

    /**
     * @return Protocol.
     * 
     */
    public Optional> protocol() {
        return Optional.ofNullable(this.protocol);
    }

    private ApplianceTrafficShapingVpnExclusionsParametersCustomArgs() {}

    private ApplianceTrafficShapingVpnExclusionsParametersCustomArgs(ApplianceTrafficShapingVpnExclusionsParametersCustomArgs $) {
        this.destination = $.destination;
        this.port = $.port;
        this.protocol = $.protocol;
    }

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

    public static final class Builder {
        private ApplianceTrafficShapingVpnExclusionsParametersCustomArgs $;

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

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

        /**
         * @param destination Destination address; hostname required for DNS, IPv4 otherwise.
         * 
         * @return builder
         * 
         */
        public Builder destination(@Nullable Output destination) {
            $.destination = destination;
            return this;
        }

        /**
         * @param destination Destination address; hostname required for DNS, IPv4 otherwise.
         * 
         * @return builder
         * 
         */
        public Builder destination(String destination) {
            return destination(Output.of(destination));
        }

        /**
         * @param port Destination port.
         * 
         * @return builder
         * 
         */
        public Builder port(@Nullable Output port) {
            $.port = port;
            return this;
        }

        /**
         * @param port Destination port.
         * 
         * @return builder
         * 
         */
        public Builder port(String port) {
            return port(Output.of(port));
        }

        /**
         * @param protocol Protocol.
         * 
         * @return builder
         * 
         */
        public Builder protocol(@Nullable Output protocol) {
            $.protocol = protocol;
            return this;
        }

        /**
         * @param protocol Protocol.
         * 
         * @return builder
         * 
         */
        public Builder protocol(String protocol) {
            return protocol(Output.of(protocol));
        }

        public ApplianceTrafficShapingVpnExclusionsParametersCustomArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy