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

com.pulumi.azurenative.azurestackhci.inputs.IpPoolsArgs Maven / Gradle / Ivy

There is a newer version: 2.78.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.azurestackhci.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;


/**
 * The dnsServers of a device.
 * 
 */
public final class IpPoolsArgs extends com.pulumi.resources.ResourceArgs {

    public static final IpPoolsArgs Empty = new IpPoolsArgs();

    /**
     * Ending IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
     * 
     */
    @Import(name="endingAddress")
    private @Nullable Output endingAddress;

    /**
     * @return Ending IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
     * 
     */
    public Optional> endingAddress() {
        return Optional.ofNullable(this.endingAddress);
    }

    /**
     * Starting IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
     * 
     */
    @Import(name="startingAddress")
    private @Nullable Output startingAddress;

    /**
     * @return Starting IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
     * 
     */
    public Optional> startingAddress() {
        return Optional.ofNullable(this.startingAddress);
    }

    private IpPoolsArgs() {}

    private IpPoolsArgs(IpPoolsArgs $) {
        this.endingAddress = $.endingAddress;
        this.startingAddress = $.startingAddress;
    }

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

    public static final class Builder {
        private IpPoolsArgs $;

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

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

        /**
         * @param endingAddress Ending IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
         * 
         * @return builder
         * 
         */
        public Builder endingAddress(@Nullable Output endingAddress) {
            $.endingAddress = endingAddress;
            return this;
        }

        /**
         * @param endingAddress Ending IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
         * 
         * @return builder
         * 
         */
        public Builder endingAddress(String endingAddress) {
            return endingAddress(Output.of(endingAddress));
        }

        /**
         * @param startingAddress Starting IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
         * 
         * @return builder
         * 
         */
        public Builder startingAddress(@Nullable Output startingAddress) {
            $.startingAddress = startingAddress;
            return this;
        }

        /**
         * @param startingAddress Starting IP address for the management network. A minimum of six free, contiguous IPv4 addresses (excluding your host IPs) are needed for infrastructure services such as clustering.
         * 
         * @return builder
         * 
         */
        public Builder startingAddress(String startingAddress) {
            return startingAddress(Output.of(startingAddress));
        }

        public IpPoolsArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy