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

com.pulumi.azurenative.network.inputs.ApplicationGatewayBackendAddressArgs 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.network.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;


/**
 * Backend address of an application gateway.
 * 
 */
public final class ApplicationGatewayBackendAddressArgs extends com.pulumi.resources.ResourceArgs {

    public static final ApplicationGatewayBackendAddressArgs Empty = new ApplicationGatewayBackendAddressArgs();

    /**
     * Fully qualified domain name (FQDN).
     * 
     */
    @Import(name="fqdn")
    private @Nullable Output fqdn;

    /**
     * @return Fully qualified domain name (FQDN).
     * 
     */
    public Optional> fqdn() {
        return Optional.ofNullable(this.fqdn);
    }

    /**
     * IP address.
     * 
     */
    @Import(name="ipAddress")
    private @Nullable Output ipAddress;

    /**
     * @return IP address.
     * 
     */
    public Optional> ipAddress() {
        return Optional.ofNullable(this.ipAddress);
    }

    private ApplicationGatewayBackendAddressArgs() {}

    private ApplicationGatewayBackendAddressArgs(ApplicationGatewayBackendAddressArgs $) {
        this.fqdn = $.fqdn;
        this.ipAddress = $.ipAddress;
    }

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

    public static final class Builder {
        private ApplicationGatewayBackendAddressArgs $;

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

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

        /**
         * @param fqdn Fully qualified domain name (FQDN).
         * 
         * @return builder
         * 
         */
        public Builder fqdn(@Nullable Output fqdn) {
            $.fqdn = fqdn;
            return this;
        }

        /**
         * @param fqdn Fully qualified domain name (FQDN).
         * 
         * @return builder
         * 
         */
        public Builder fqdn(String fqdn) {
            return fqdn(Output.of(fqdn));
        }

        /**
         * @param ipAddress IP address.
         * 
         * @return builder
         * 
         */
        public Builder ipAddress(@Nullable Output ipAddress) {
            $.ipAddress = ipAddress;
            return this;
        }

        /**
         * @param ipAddress IP address.
         * 
         * @return builder
         * 
         */
        public Builder ipAddress(String ipAddress) {
            return ipAddress(Output.of(ipAddress));
        }

        public ApplicationGatewayBackendAddressArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy