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

com.pulumi.azurenative.machinelearningservices.inputs.AksNetworkingConfigurationArgs Maven / Gradle / Ivy

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


/**
 * Advance configuration for AKS networking
 * 
 */
public final class AksNetworkingConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final AksNetworkingConfigurationArgs Empty = new AksNetworkingConfigurationArgs();

    /**
     * An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
     * 
     */
    @Import(name="dnsServiceIP")
    private @Nullable Output dnsServiceIP;

    /**
     * @return An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
     * 
     */
    public Optional> dnsServiceIP() {
        return Optional.ofNullable(this.dnsServiceIP);
    }

    /**
     * A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
     * 
     */
    @Import(name="dockerBridgeCidr")
    private @Nullable Output dockerBridgeCidr;

    /**
     * @return A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
     * 
     */
    public Optional> dockerBridgeCidr() {
        return Optional.ofNullable(this.dockerBridgeCidr);
    }

    /**
     * A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
     * 
     */
    @Import(name="serviceCidr")
    private @Nullable Output serviceCidr;

    /**
     * @return A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
     * 
     */
    public Optional> serviceCidr() {
        return Optional.ofNullable(this.serviceCidr);
    }

    /**
     * Virtual network subnet resource ID the compute nodes belong to
     * 
     */
    @Import(name="subnetId")
    private @Nullable Output subnetId;

    /**
     * @return Virtual network subnet resource ID the compute nodes belong to
     * 
     */
    public Optional> subnetId() {
        return Optional.ofNullable(this.subnetId);
    }

    private AksNetworkingConfigurationArgs() {}

    private AksNetworkingConfigurationArgs(AksNetworkingConfigurationArgs $) {
        this.dnsServiceIP = $.dnsServiceIP;
        this.dockerBridgeCidr = $.dockerBridgeCidr;
        this.serviceCidr = $.serviceCidr;
        this.subnetId = $.subnetId;
    }

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

    public static final class Builder {
        private AksNetworkingConfigurationArgs $;

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

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

        /**
         * @param dnsServiceIP An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
         * 
         * @return builder
         * 
         */
        public Builder dnsServiceIP(@Nullable Output dnsServiceIP) {
            $.dnsServiceIP = dnsServiceIP;
            return this;
        }

        /**
         * @param dnsServiceIP An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
         * 
         * @return builder
         * 
         */
        public Builder dnsServiceIP(String dnsServiceIP) {
            return dnsServiceIP(Output.of(dnsServiceIP));
        }

        /**
         * @param dockerBridgeCidr A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
         * 
         * @return builder
         * 
         */
        public Builder dockerBridgeCidr(@Nullable Output dockerBridgeCidr) {
            $.dockerBridgeCidr = dockerBridgeCidr;
            return this;
        }

        /**
         * @param dockerBridgeCidr A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
         * 
         * @return builder
         * 
         */
        public Builder dockerBridgeCidr(String dockerBridgeCidr) {
            return dockerBridgeCidr(Output.of(dockerBridgeCidr));
        }

        /**
         * @param serviceCidr A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
         * 
         * @return builder
         * 
         */
        public Builder serviceCidr(@Nullable Output serviceCidr) {
            $.serviceCidr = serviceCidr;
            return this;
        }

        /**
         * @param serviceCidr A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
         * 
         * @return builder
         * 
         */
        public Builder serviceCidr(String serviceCidr) {
            return serviceCidr(Output.of(serviceCidr));
        }

        /**
         * @param subnetId Virtual network subnet resource ID the compute nodes belong to
         * 
         * @return builder
         * 
         */
        public Builder subnetId(@Nullable Output subnetId) {
            $.subnetId = subnetId;
            return this;
        }

        /**
         * @param subnetId Virtual network subnet resource ID the compute nodes belong to
         * 
         * @return builder
         * 
         */
        public Builder subnetId(String subnetId) {
            return subnetId(Output.of(subnetId));
        }

        public AksNetworkingConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy