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

com.pulumi.azurenative.security.inputs.DefenderForServersGcpOfferingConfigurationArgs 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.security.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;


/**
 * Configuration for servers Arc auto provisioning
 * 
 */
public final class DefenderForServersGcpOfferingConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final DefenderForServersGcpOfferingConfigurationArgs Empty = new DefenderForServersGcpOfferingConfigurationArgs();

    /**
     * Optional Arc private link scope resource id to link the Arc agent
     * 
     */
    @Import(name="privateLinkScope")
    private @Nullable Output privateLinkScope;

    /**
     * @return Optional Arc private link scope resource id to link the Arc agent
     * 
     */
    public Optional> privateLinkScope() {
        return Optional.ofNullable(this.privateLinkScope);
    }

    /**
     * Optional HTTP proxy endpoint to use for the Arc agent
     * 
     */
    @Import(name="proxy")
    private @Nullable Output proxy;

    /**
     * @return Optional HTTP proxy endpoint to use for the Arc agent
     * 
     */
    public Optional> proxy() {
        return Optional.ofNullable(this.proxy);
    }

    private DefenderForServersGcpOfferingConfigurationArgs() {}

    private DefenderForServersGcpOfferingConfigurationArgs(DefenderForServersGcpOfferingConfigurationArgs $) {
        this.privateLinkScope = $.privateLinkScope;
        this.proxy = $.proxy;
    }

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

    public static final class Builder {
        private DefenderForServersGcpOfferingConfigurationArgs $;

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

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

        /**
         * @param privateLinkScope Optional Arc private link scope resource id to link the Arc agent
         * 
         * @return builder
         * 
         */
        public Builder privateLinkScope(@Nullable Output privateLinkScope) {
            $.privateLinkScope = privateLinkScope;
            return this;
        }

        /**
         * @param privateLinkScope Optional Arc private link scope resource id to link the Arc agent
         * 
         * @return builder
         * 
         */
        public Builder privateLinkScope(String privateLinkScope) {
            return privateLinkScope(Output.of(privateLinkScope));
        }

        /**
         * @param proxy Optional HTTP proxy endpoint to use for the Arc agent
         * 
         * @return builder
         * 
         */
        public Builder proxy(@Nullable Output proxy) {
            $.proxy = proxy;
            return this;
        }

        /**
         * @param proxy Optional HTTP proxy endpoint to use for the Arc agent
         * 
         * @return builder
         * 
         */
        public Builder proxy(String proxy) {
            return proxy(Output.of(proxy));
        }

        public DefenderForServersGcpOfferingConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy