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

com.pulumi.azurenative.datafactory.inputs.ManagedPrivateEndpointArgs 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.datafactory.inputs;

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


/**
 * Properties of a managed private endpoint
 * 
 */
public final class ManagedPrivateEndpointArgs extends com.pulumi.resources.ResourceArgs {

    public static final ManagedPrivateEndpointArgs Empty = new ManagedPrivateEndpointArgs();

    /**
     * Fully qualified domain names
     * 
     */
    @Import(name="fqdns")
    private @Nullable Output> fqdns;

    /**
     * @return Fully qualified domain names
     * 
     */
    public Optional>> fqdns() {
        return Optional.ofNullable(this.fqdns);
    }

    /**
     * The groupId to which the managed private endpoint is created
     * 
     */
    @Import(name="groupId")
    private @Nullable Output groupId;

    /**
     * @return The groupId to which the managed private endpoint is created
     * 
     */
    public Optional> groupId() {
        return Optional.ofNullable(this.groupId);
    }

    /**
     * The ARM resource ID of the resource to which the managed private endpoint is created
     * 
     */
    @Import(name="privateLinkResourceId")
    private @Nullable Output privateLinkResourceId;

    /**
     * @return The ARM resource ID of the resource to which the managed private endpoint is created
     * 
     */
    public Optional> privateLinkResourceId() {
        return Optional.ofNullable(this.privateLinkResourceId);
    }

    private ManagedPrivateEndpointArgs() {}

    private ManagedPrivateEndpointArgs(ManagedPrivateEndpointArgs $) {
        this.fqdns = $.fqdns;
        this.groupId = $.groupId;
        this.privateLinkResourceId = $.privateLinkResourceId;
    }

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

    public static final class Builder {
        private ManagedPrivateEndpointArgs $;

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

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

        /**
         * @param fqdns Fully qualified domain names
         * 
         * @return builder
         * 
         */
        public Builder fqdns(@Nullable Output> fqdns) {
            $.fqdns = fqdns;
            return this;
        }

        /**
         * @param fqdns Fully qualified domain names
         * 
         * @return builder
         * 
         */
        public Builder fqdns(List fqdns) {
            return fqdns(Output.of(fqdns));
        }

        /**
         * @param fqdns Fully qualified domain names
         * 
         * @return builder
         * 
         */
        public Builder fqdns(String... fqdns) {
            return fqdns(List.of(fqdns));
        }

        /**
         * @param groupId The groupId to which the managed private endpoint is created
         * 
         * @return builder
         * 
         */
        public Builder groupId(@Nullable Output groupId) {
            $.groupId = groupId;
            return this;
        }

        /**
         * @param groupId The groupId to which the managed private endpoint is created
         * 
         * @return builder
         * 
         */
        public Builder groupId(String groupId) {
            return groupId(Output.of(groupId));
        }

        /**
         * @param privateLinkResourceId The ARM resource ID of the resource to which the managed private endpoint is created
         * 
         * @return builder
         * 
         */
        public Builder privateLinkResourceId(@Nullable Output privateLinkResourceId) {
            $.privateLinkResourceId = privateLinkResourceId;
            return this;
        }

        /**
         * @param privateLinkResourceId The ARM resource ID of the resource to which the managed private endpoint is created
         * 
         * @return builder
         * 
         */
        public Builder privateLinkResourceId(String privateLinkResourceId) {
            return privateLinkResourceId(Output.of(privateLinkResourceId));
        }

        public ManagedPrivateEndpointArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy