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

com.pulumi.azurenative.hybridcontainerservice.inputs.VirtualNetworksPropertiesVipPoolArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.hybridcontainerservice.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 VirtualNetworksPropertiesVipPoolArgs extends com.pulumi.resources.ResourceArgs {

    public static final VirtualNetworksPropertiesVipPoolArgs Empty = new VirtualNetworksPropertiesVipPoolArgs();

    /**
     * Ending IP address for the IP Pool
     * 
     */
    @Import(name="endIP")
    private @Nullable Output endIP;

    /**
     * @return Ending IP address for the IP Pool
     * 
     */
    public Optional> endIP() {
        return Optional.ofNullable(this.endIP);
    }

    /**
     * Starting IP address for the IP Pool
     * 
     */
    @Import(name="startIP")
    private @Nullable Output startIP;

    /**
     * @return Starting IP address for the IP Pool
     * 
     */
    public Optional> startIP() {
        return Optional.ofNullable(this.startIP);
    }

    private VirtualNetworksPropertiesVipPoolArgs() {}

    private VirtualNetworksPropertiesVipPoolArgs(VirtualNetworksPropertiesVipPoolArgs $) {
        this.endIP = $.endIP;
        this.startIP = $.startIP;
    }

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

    public static final class Builder {
        private VirtualNetworksPropertiesVipPoolArgs $;

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

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

        /**
         * @param endIP Ending IP address for the IP Pool
         * 
         * @return builder
         * 
         */
        public Builder endIP(@Nullable Output endIP) {
            $.endIP = endIP;
            return this;
        }

        /**
         * @param endIP Ending IP address for the IP Pool
         * 
         * @return builder
         * 
         */
        public Builder endIP(String endIP) {
            return endIP(Output.of(endIP));
        }

        /**
         * @param startIP Starting IP address for the IP Pool
         * 
         * @return builder
         * 
         */
        public Builder startIP(@Nullable Output startIP) {
            $.startIP = startIP;
            return this;
        }

        /**
         * @param startIP Starting IP address for the IP Pool
         * 
         * @return builder
         * 
         */
        public Builder startIP(String startIP) {
            return startIP(Output.of(startIP));
        }

        public VirtualNetworksPropertiesVipPoolArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy