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

com.pulumi.azurenative.apimanagement.inputs.BackendConfigurationArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.apimanagement.inputs;

import com.pulumi.azurenative.apimanagement.inputs.BackendSubnetConfigurationArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Information regarding how the gateway should integrate with backend systems.
 * 
 */
public final class BackendConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final BackendConfigurationArgs Empty = new BackendConfigurationArgs();

    /**
     * The default hostname of the data-plane gateway to which requests can be sent.
     * 
     */
    @Import(name="subnet")
    private @Nullable Output subnet;

    /**
     * @return The default hostname of the data-plane gateway to which requests can be sent.
     * 
     */
    public Optional> subnet() {
        return Optional.ofNullable(this.subnet);
    }

    private BackendConfigurationArgs() {}

    private BackendConfigurationArgs(BackendConfigurationArgs $) {
        this.subnet = $.subnet;
    }

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

    public static final class Builder {
        private BackendConfigurationArgs $;

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

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

        /**
         * @param subnet The default hostname of the data-plane gateway to which requests can be sent.
         * 
         * @return builder
         * 
         */
        public Builder subnet(@Nullable Output subnet) {
            $.subnet = subnet;
            return this;
        }

        /**
         * @param subnet The default hostname of the data-plane gateway to which requests can be sent.
         * 
         * @return builder
         * 
         */
        public Builder subnet(BackendSubnetConfigurationArgs subnet) {
            return subnet(Output.of(subnet));
        }

        public BackendConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy