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

com.pulumi.azurenative.appplatform.inputs.ServiceVNetAddonsArgs 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.appplatform.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Additional Service settings in vnet injection instance
 * 
 */
public final class ServiceVNetAddonsArgs extends com.pulumi.resources.ResourceArgs {

    public static final ServiceVNetAddonsArgs Empty = new ServiceVNetAddonsArgs();

    /**
     * Indicates whether the data plane components(log stream, app connect, remote debugging) in vnet injection instance could be accessed from internet.
     * 
     */
    @Import(name="dataPlanePublicEndpoint")
    private @Nullable Output dataPlanePublicEndpoint;

    /**
     * @return Indicates whether the data plane components(log stream, app connect, remote debugging) in vnet injection instance could be accessed from internet.
     * 
     */
    public Optional> dataPlanePublicEndpoint() {
        return Optional.ofNullable(this.dataPlanePublicEndpoint);
    }

    /**
     * Indicates whether the log stream in vnet injection instance could be accessed from internet.
     * 
     */
    @Import(name="logStreamPublicEndpoint")
    private @Nullable Output logStreamPublicEndpoint;

    /**
     * @return Indicates whether the log stream in vnet injection instance could be accessed from internet.
     * 
     */
    public Optional> logStreamPublicEndpoint() {
        return Optional.ofNullable(this.logStreamPublicEndpoint);
    }

    private ServiceVNetAddonsArgs() {}

    private ServiceVNetAddonsArgs(ServiceVNetAddonsArgs $) {
        this.dataPlanePublicEndpoint = $.dataPlanePublicEndpoint;
        this.logStreamPublicEndpoint = $.logStreamPublicEndpoint;
    }

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

    public static final class Builder {
        private ServiceVNetAddonsArgs $;

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

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

        /**
         * @param dataPlanePublicEndpoint Indicates whether the data plane components(log stream, app connect, remote debugging) in vnet injection instance could be accessed from internet.
         * 
         * @return builder
         * 
         */
        public Builder dataPlanePublicEndpoint(@Nullable Output dataPlanePublicEndpoint) {
            $.dataPlanePublicEndpoint = dataPlanePublicEndpoint;
            return this;
        }

        /**
         * @param dataPlanePublicEndpoint Indicates whether the data plane components(log stream, app connect, remote debugging) in vnet injection instance could be accessed from internet.
         * 
         * @return builder
         * 
         */
        public Builder dataPlanePublicEndpoint(Boolean dataPlanePublicEndpoint) {
            return dataPlanePublicEndpoint(Output.of(dataPlanePublicEndpoint));
        }

        /**
         * @param logStreamPublicEndpoint Indicates whether the log stream in vnet injection instance could be accessed from internet.
         * 
         * @return builder
         * 
         */
        public Builder logStreamPublicEndpoint(@Nullable Output logStreamPublicEndpoint) {
            $.logStreamPublicEndpoint = logStreamPublicEndpoint;
            return this;
        }

        /**
         * @param logStreamPublicEndpoint Indicates whether the log stream in vnet injection instance could be accessed from internet.
         * 
         * @return builder
         * 
         */
        public Builder logStreamPublicEndpoint(Boolean logStreamPublicEndpoint) {
            return logStreamPublicEndpoint(Output.of(logStreamPublicEndpoint));
        }

        public ServiceVNetAddonsArgs build() {
            $.dataPlanePublicEndpoint = Codegen.booleanProp("dataPlanePublicEndpoint").output().arg($.dataPlanePublicEndpoint).def(false).getNullable();
            $.logStreamPublicEndpoint = Codegen.booleanProp("logStreamPublicEndpoint").output().arg($.logStreamPublicEndpoint).def(false).getNullable();
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy