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

com.pulumi.azurenative.scvmm.inputs.HttpProxyConfigurationArgs 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.scvmm.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;


/**
 * HTTP Proxy configuration for the VM.
 * 
 */
public final class HttpProxyConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final HttpProxyConfigurationArgs Empty = new HttpProxyConfigurationArgs();

    /**
     * Gets or sets httpsProxy url.
     * 
     */
    @Import(name="httpsProxy")
    private @Nullable Output httpsProxy;

    /**
     * @return Gets or sets httpsProxy url.
     * 
     */
    public Optional> httpsProxy() {
        return Optional.ofNullable(this.httpsProxy);
    }

    private HttpProxyConfigurationArgs() {}

    private HttpProxyConfigurationArgs(HttpProxyConfigurationArgs $) {
        this.httpsProxy = $.httpsProxy;
    }

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

    public static final class Builder {
        private HttpProxyConfigurationArgs $;

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

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

        /**
         * @param httpsProxy Gets or sets httpsProxy url.
         * 
         * @return builder
         * 
         */
        public Builder httpsProxy(@Nullable Output httpsProxy) {
            $.httpsProxy = httpsProxy;
            return this;
        }

        /**
         * @param httpsProxy Gets or sets httpsProxy url.
         * 
         * @return builder
         * 
         */
        public Builder httpsProxy(String httpsProxy) {
            return httpsProxy(Output.of(httpsProxy));
        }

        public HttpProxyConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy