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

com.pulumi.azurenative.web.outputs.AseV3NetworkingConfigurationResponse 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.web.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class AseV3NetworkingConfigurationResponse {
    /**
     * @return Property to enable and disable new private endpoint connection creation on ASE
     * 
     */
    private @Nullable Boolean allowNewPrivateEndpointConnections;
    private List externalInboundIpAddresses;
    /**
     * @return Property to enable and disable FTP on ASEV3
     * 
     */
    private @Nullable Boolean ftpEnabled;
    /**
     * @return Resource Id.
     * 
     */
    private String id;
    /**
     * @return Customer provided Inbound IP Address. Only able to be set on Ase create.
     * 
     */
    private @Nullable String inboundIpAddressOverride;
    private List internalInboundIpAddresses;
    /**
     * @return Kind of resource.
     * 
     */
    private @Nullable String kind;
    private List linuxOutboundIpAddresses;
    /**
     * @return Resource Name.
     * 
     */
    private String name;
    /**
     * @return Property to enable and disable Remote Debug on ASEV3
     * 
     */
    private @Nullable Boolean remoteDebugEnabled;
    /**
     * @return Resource type.
     * 
     */
    private String type;
    private List windowsOutboundIpAddresses;

    private AseV3NetworkingConfigurationResponse() {}
    /**
     * @return Property to enable and disable new private endpoint connection creation on ASE
     * 
     */
    public Optional allowNewPrivateEndpointConnections() {
        return Optional.ofNullable(this.allowNewPrivateEndpointConnections);
    }
    public List externalInboundIpAddresses() {
        return this.externalInboundIpAddresses;
    }
    /**
     * @return Property to enable and disable FTP on ASEV3
     * 
     */
    public Optional ftpEnabled() {
        return Optional.ofNullable(this.ftpEnabled);
    }
    /**
     * @return Resource Id.
     * 
     */
    public String id() {
        return this.id;
    }
    /**
     * @return Customer provided Inbound IP Address. Only able to be set on Ase create.
     * 
     */
    public Optional inboundIpAddressOverride() {
        return Optional.ofNullable(this.inboundIpAddressOverride);
    }
    public List internalInboundIpAddresses() {
        return this.internalInboundIpAddresses;
    }
    /**
     * @return Kind of resource.
     * 
     */
    public Optional kind() {
        return Optional.ofNullable(this.kind);
    }
    public List linuxOutboundIpAddresses() {
        return this.linuxOutboundIpAddresses;
    }
    /**
     * @return Resource Name.
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return Property to enable and disable Remote Debug on ASEV3
     * 
     */
    public Optional remoteDebugEnabled() {
        return Optional.ofNullable(this.remoteDebugEnabled);
    }
    /**
     * @return Resource type.
     * 
     */
    public String type() {
        return this.type;
    }
    public List windowsOutboundIpAddresses() {
        return this.windowsOutboundIpAddresses;
    }

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

    public static Builder builder(AseV3NetworkingConfigurationResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Boolean allowNewPrivateEndpointConnections;
        private List externalInboundIpAddresses;
        private @Nullable Boolean ftpEnabled;
        private String id;
        private @Nullable String inboundIpAddressOverride;
        private List internalInboundIpAddresses;
        private @Nullable String kind;
        private List linuxOutboundIpAddresses;
        private String name;
        private @Nullable Boolean remoteDebugEnabled;
        private String type;
        private List windowsOutboundIpAddresses;
        public Builder() {}
        public Builder(AseV3NetworkingConfigurationResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.allowNewPrivateEndpointConnections = defaults.allowNewPrivateEndpointConnections;
    	      this.externalInboundIpAddresses = defaults.externalInboundIpAddresses;
    	      this.ftpEnabled = defaults.ftpEnabled;
    	      this.id = defaults.id;
    	      this.inboundIpAddressOverride = defaults.inboundIpAddressOverride;
    	      this.internalInboundIpAddresses = defaults.internalInboundIpAddresses;
    	      this.kind = defaults.kind;
    	      this.linuxOutboundIpAddresses = defaults.linuxOutboundIpAddresses;
    	      this.name = defaults.name;
    	      this.remoteDebugEnabled = defaults.remoteDebugEnabled;
    	      this.type = defaults.type;
    	      this.windowsOutboundIpAddresses = defaults.windowsOutboundIpAddresses;
        }

        @CustomType.Setter
        public Builder allowNewPrivateEndpointConnections(@Nullable Boolean allowNewPrivateEndpointConnections) {

            this.allowNewPrivateEndpointConnections = allowNewPrivateEndpointConnections;
            return this;
        }
        @CustomType.Setter
        public Builder externalInboundIpAddresses(List externalInboundIpAddresses) {
            if (externalInboundIpAddresses == null) {
              throw new MissingRequiredPropertyException("AseV3NetworkingConfigurationResponse", "externalInboundIpAddresses");
            }
            this.externalInboundIpAddresses = externalInboundIpAddresses;
            return this;
        }
        public Builder externalInboundIpAddresses(String... externalInboundIpAddresses) {
            return externalInboundIpAddresses(List.of(externalInboundIpAddresses));
        }
        @CustomType.Setter
        public Builder ftpEnabled(@Nullable Boolean ftpEnabled) {

            this.ftpEnabled = ftpEnabled;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("AseV3NetworkingConfigurationResponse", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder inboundIpAddressOverride(@Nullable String inboundIpAddressOverride) {

            this.inboundIpAddressOverride = inboundIpAddressOverride;
            return this;
        }
        @CustomType.Setter
        public Builder internalInboundIpAddresses(List internalInboundIpAddresses) {
            if (internalInboundIpAddresses == null) {
              throw new MissingRequiredPropertyException("AseV3NetworkingConfigurationResponse", "internalInboundIpAddresses");
            }
            this.internalInboundIpAddresses = internalInboundIpAddresses;
            return this;
        }
        public Builder internalInboundIpAddresses(String... internalInboundIpAddresses) {
            return internalInboundIpAddresses(List.of(internalInboundIpAddresses));
        }
        @CustomType.Setter
        public Builder kind(@Nullable String kind) {

            this.kind = kind;
            return this;
        }
        @CustomType.Setter
        public Builder linuxOutboundIpAddresses(List linuxOutboundIpAddresses) {
            if (linuxOutboundIpAddresses == null) {
              throw new MissingRequiredPropertyException("AseV3NetworkingConfigurationResponse", "linuxOutboundIpAddresses");
            }
            this.linuxOutboundIpAddresses = linuxOutboundIpAddresses;
            return this;
        }
        public Builder linuxOutboundIpAddresses(String... linuxOutboundIpAddresses) {
            return linuxOutboundIpAddresses(List.of(linuxOutboundIpAddresses));
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("AseV3NetworkingConfigurationResponse", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder remoteDebugEnabled(@Nullable Boolean remoteDebugEnabled) {

            this.remoteDebugEnabled = remoteDebugEnabled;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("AseV3NetworkingConfigurationResponse", "type");
            }
            this.type = type;
            return this;
        }
        @CustomType.Setter
        public Builder windowsOutboundIpAddresses(List windowsOutboundIpAddresses) {
            if (windowsOutboundIpAddresses == null) {
              throw new MissingRequiredPropertyException("AseV3NetworkingConfigurationResponse", "windowsOutboundIpAddresses");
            }
            this.windowsOutboundIpAddresses = windowsOutboundIpAddresses;
            return this;
        }
        public Builder windowsOutboundIpAddresses(String... windowsOutboundIpAddresses) {
            return windowsOutboundIpAddresses(List.of(windowsOutboundIpAddresses));
        }
        public AseV3NetworkingConfigurationResponse build() {
            final var _resultValue = new AseV3NetworkingConfigurationResponse();
            _resultValue.allowNewPrivateEndpointConnections = allowNewPrivateEndpointConnections;
            _resultValue.externalInboundIpAddresses = externalInboundIpAddresses;
            _resultValue.ftpEnabled = ftpEnabled;
            _resultValue.id = id;
            _resultValue.inboundIpAddressOverride = inboundIpAddressOverride;
            _resultValue.internalInboundIpAddresses = internalInboundIpAddresses;
            _resultValue.kind = kind;
            _resultValue.linuxOutboundIpAddresses = linuxOutboundIpAddresses;
            _resultValue.name = name;
            _resultValue.remoteDebugEnabled = remoteDebugEnabled;
            _resultValue.type = type;
            _resultValue.windowsOutboundIpAddresses = windowsOutboundIpAddresses;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy