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

com.pulumi.azurenative.appplatform.outputs.NetworkProfileResponseOutboundIPs Maven / Gradle / Ivy

// *** 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.appplatform.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;

@CustomType
public final class NetworkProfileResponseOutboundIPs {
    /**
     * @return A list of public IP addresses.
     * 
     */
    private List publicIPs;

    private NetworkProfileResponseOutboundIPs() {}
    /**
     * @return A list of public IP addresses.
     * 
     */
    public List publicIPs() {
        return this.publicIPs;
    }

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

    public static Builder builder(NetworkProfileResponseOutboundIPs defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private List publicIPs;
        public Builder() {}
        public Builder(NetworkProfileResponseOutboundIPs defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.publicIPs = defaults.publicIPs;
        }

        @CustomType.Setter
        public Builder publicIPs(List publicIPs) {
            if (publicIPs == null) {
              throw new MissingRequiredPropertyException("NetworkProfileResponseOutboundIPs", "publicIPs");
            }
            this.publicIPs = publicIPs;
            return this;
        }
        public Builder publicIPs(String... publicIPs) {
            return publicIPs(List.of(publicIPs));
        }
        public NetworkProfileResponseOutboundIPs build() {
            final var _resultValue = new NetworkProfileResponseOutboundIPs();
            _resultValue.publicIPs = publicIPs;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy