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

com.pulumi.azurenative.security.outputs.DefenderForServersAwsOfferingResponseConfiguration Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.security.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class DefenderForServersAwsOfferingResponseConfiguration {
    /**
     * @return Optional Arc private link scope resource id to link the Arc agent
     * 
     */
    private @Nullable String privateLinkScope;
    /**
     * @return Optional HTTP proxy endpoint to use for the Arc agent
     * 
     */
    private @Nullable String proxy;

    private DefenderForServersAwsOfferingResponseConfiguration() {}
    /**
     * @return Optional Arc private link scope resource id to link the Arc agent
     * 
     */
    public Optional privateLinkScope() {
        return Optional.ofNullable(this.privateLinkScope);
    }
    /**
     * @return Optional HTTP proxy endpoint to use for the Arc agent
     * 
     */
    public Optional proxy() {
        return Optional.ofNullable(this.proxy);
    }

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

    public static Builder builder(DefenderForServersAwsOfferingResponseConfiguration defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String privateLinkScope;
        private @Nullable String proxy;
        public Builder() {}
        public Builder(DefenderForServersAwsOfferingResponseConfiguration defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.privateLinkScope = defaults.privateLinkScope;
    	      this.proxy = defaults.proxy;
        }

        @CustomType.Setter
        public Builder privateLinkScope(@Nullable String privateLinkScope) {

            this.privateLinkScope = privateLinkScope;
            return this;
        }
        @CustomType.Setter
        public Builder proxy(@Nullable String proxy) {

            this.proxy = proxy;
            return this;
        }
        public DefenderForServersAwsOfferingResponseConfiguration build() {
            final var _resultValue = new DefenderForServersAwsOfferingResponseConfiguration();
            _resultValue.privateLinkScope = privateLinkScope;
            _resultValue.proxy = proxy;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy