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

com.pulumi.azurenative.hdinsight.inputs.ApplicationGetHttpsEndpointArgs 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.hdinsight.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Gets the application HTTP endpoints.
 * 
 */
public final class ApplicationGetHttpsEndpointArgs extends com.pulumi.resources.ResourceArgs {

    public static final ApplicationGetHttpsEndpointArgs Empty = new ApplicationGetHttpsEndpointArgs();

    /**
     * The list of access modes for the application.
     * 
     */
    @Import(name="accessModes")
    private @Nullable Output> accessModes;

    /**
     * @return The list of access modes for the application.
     * 
     */
    public Optional>> accessModes() {
        return Optional.ofNullable(this.accessModes);
    }

    /**
     * The destination port to connect to.
     * 
     */
    @Import(name="destinationPort")
    private @Nullable Output destinationPort;

    /**
     * @return The destination port to connect to.
     * 
     */
    public Optional> destinationPort() {
        return Optional.ofNullable(this.destinationPort);
    }

    /**
     * The value indicates whether to disable GatewayAuth.
     * 
     */
    @Import(name="disableGatewayAuth")
    private @Nullable Output disableGatewayAuth;

    /**
     * @return The value indicates whether to disable GatewayAuth.
     * 
     */
    public Optional> disableGatewayAuth() {
        return Optional.ofNullable(this.disableGatewayAuth);
    }

    /**
     * The private ip address of the endpoint.
     * 
     */
    @Import(name="privateIPAddress")
    private @Nullable Output privateIPAddress;

    /**
     * @return The private ip address of the endpoint.
     * 
     */
    public Optional> privateIPAddress() {
        return Optional.ofNullable(this.privateIPAddress);
    }

    /**
     * The subdomain suffix of the application.
     * 
     */
    @Import(name="subDomainSuffix")
    private @Nullable Output subDomainSuffix;

    /**
     * @return The subdomain suffix of the application.
     * 
     */
    public Optional> subDomainSuffix() {
        return Optional.ofNullable(this.subDomainSuffix);
    }

    private ApplicationGetHttpsEndpointArgs() {}

    private ApplicationGetHttpsEndpointArgs(ApplicationGetHttpsEndpointArgs $) {
        this.accessModes = $.accessModes;
        this.destinationPort = $.destinationPort;
        this.disableGatewayAuth = $.disableGatewayAuth;
        this.privateIPAddress = $.privateIPAddress;
        this.subDomainSuffix = $.subDomainSuffix;
    }

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

    public static final class Builder {
        private ApplicationGetHttpsEndpointArgs $;

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

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

        /**
         * @param accessModes The list of access modes for the application.
         * 
         * @return builder
         * 
         */
        public Builder accessModes(@Nullable Output> accessModes) {
            $.accessModes = accessModes;
            return this;
        }

        /**
         * @param accessModes The list of access modes for the application.
         * 
         * @return builder
         * 
         */
        public Builder accessModes(List accessModes) {
            return accessModes(Output.of(accessModes));
        }

        /**
         * @param accessModes The list of access modes for the application.
         * 
         * @return builder
         * 
         */
        public Builder accessModes(String... accessModes) {
            return accessModes(List.of(accessModes));
        }

        /**
         * @param destinationPort The destination port to connect to.
         * 
         * @return builder
         * 
         */
        public Builder destinationPort(@Nullable Output destinationPort) {
            $.destinationPort = destinationPort;
            return this;
        }

        /**
         * @param destinationPort The destination port to connect to.
         * 
         * @return builder
         * 
         */
        public Builder destinationPort(Integer destinationPort) {
            return destinationPort(Output.of(destinationPort));
        }

        /**
         * @param disableGatewayAuth The value indicates whether to disable GatewayAuth.
         * 
         * @return builder
         * 
         */
        public Builder disableGatewayAuth(@Nullable Output disableGatewayAuth) {
            $.disableGatewayAuth = disableGatewayAuth;
            return this;
        }

        /**
         * @param disableGatewayAuth The value indicates whether to disable GatewayAuth.
         * 
         * @return builder
         * 
         */
        public Builder disableGatewayAuth(Boolean disableGatewayAuth) {
            return disableGatewayAuth(Output.of(disableGatewayAuth));
        }

        /**
         * @param privateIPAddress The private ip address of the endpoint.
         * 
         * @return builder
         * 
         */
        public Builder privateIPAddress(@Nullable Output privateIPAddress) {
            $.privateIPAddress = privateIPAddress;
            return this;
        }

        /**
         * @param privateIPAddress The private ip address of the endpoint.
         * 
         * @return builder
         * 
         */
        public Builder privateIPAddress(String privateIPAddress) {
            return privateIPAddress(Output.of(privateIPAddress));
        }

        /**
         * @param subDomainSuffix The subdomain suffix of the application.
         * 
         * @return builder
         * 
         */
        public Builder subDomainSuffix(@Nullable Output subDomainSuffix) {
            $.subDomainSuffix = subDomainSuffix;
            return this;
        }

        /**
         * @param subDomainSuffix The subdomain suffix of the application.
         * 
         * @return builder
         * 
         */
        public Builder subDomainSuffix(String subDomainSuffix) {
            return subDomainSuffix(Output.of(subDomainSuffix));
        }

        public ApplicationGetHttpsEndpointArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy