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

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

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


public final class ManagedPrivateEndpointArgs extends com.pulumi.resources.ResourceArgs {

    public static final ManagedPrivateEndpointArgs Empty = new ManagedPrivateEndpointArgs();

    /**
     * The group Ids of the managed private endpoint.
     * 
     */
    @Import(name="groupIds")
    private @Nullable Output> groupIds;

    /**
     * @return The group Ids of the managed private endpoint.
     * 
     */
    public Optional>> groupIds() {
        return Optional.ofNullable(this.groupIds);
    }

    /**
     * The geo-location where the resource lives
     * 
     */
    @Import(name="location")
    private @Nullable Output location;

    /**
     * @return The geo-location where the resource lives
     * 
     */
    public Optional> location() {
        return Optional.ofNullable(this.location);
    }

    /**
     * The managed private endpoint name of Azure Managed Grafana.
     * 
     */
    @Import(name="managedPrivateEndpointName")
    private @Nullable Output managedPrivateEndpointName;

    /**
     * @return The managed private endpoint name of Azure Managed Grafana.
     * 
     */
    public Optional> managedPrivateEndpointName() {
        return Optional.ofNullable(this.managedPrivateEndpointName);
    }

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

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

    /**
     * The region of the resource to which the managed private endpoint is pointing to.
     * 
     */
    @Import(name="privateLinkResourceRegion")
    private @Nullable Output privateLinkResourceRegion;

    /**
     * @return The region of the resource to which the managed private endpoint is pointing to.
     * 
     */
    public Optional> privateLinkResourceRegion() {
        return Optional.ofNullable(this.privateLinkResourceRegion);
    }

    /**
     * The URL of the data store behind the private link service. It would be the URL in the Grafana data source configuration page without the protocol and port.
     * 
     */
    @Import(name="privateLinkServiceUrl")
    private @Nullable Output privateLinkServiceUrl;

    /**
     * @return The URL of the data store behind the private link service. It would be the URL in the Grafana data source configuration page without the protocol and port.
     * 
     */
    public Optional> privateLinkServiceUrl() {
        return Optional.ofNullable(this.privateLinkServiceUrl);
    }

    /**
     * User input request message of the managed private endpoint.
     * 
     */
    @Import(name="requestMessage")
    private @Nullable Output requestMessage;

    /**
     * @return User input request message of the managed private endpoint.
     * 
     */
    public Optional> requestMessage() {
        return Optional.ofNullable(this.requestMessage);
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Resource tags.
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return Resource tags.
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    /**
     * The workspace name of Azure Managed Grafana.
     * 
     */
    @Import(name="workspaceName", required=true)
    private Output workspaceName;

    /**
     * @return The workspace name of Azure Managed Grafana.
     * 
     */
    public Output workspaceName() {
        return this.workspaceName;
    }

    private ManagedPrivateEndpointArgs() {}

    private ManagedPrivateEndpointArgs(ManagedPrivateEndpointArgs $) {
        this.groupIds = $.groupIds;
        this.location = $.location;
        this.managedPrivateEndpointName = $.managedPrivateEndpointName;
        this.privateLinkResourceId = $.privateLinkResourceId;
        this.privateLinkResourceRegion = $.privateLinkResourceRegion;
        this.privateLinkServiceUrl = $.privateLinkServiceUrl;
        this.requestMessage = $.requestMessage;
        this.resourceGroupName = $.resourceGroupName;
        this.tags = $.tags;
        this.workspaceName = $.workspaceName;
    }

    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 groupIds The group Ids of the managed private endpoint.
         * 
         * @return builder
         * 
         */
        public Builder groupIds(@Nullable Output> groupIds) {
            $.groupIds = groupIds;
            return this;
        }

        /**
         * @param groupIds The group Ids of the managed private endpoint.
         * 
         * @return builder
         * 
         */
        public Builder groupIds(List groupIds) {
            return groupIds(Output.of(groupIds));
        }

        /**
         * @param groupIds The group Ids of the managed private endpoint.
         * 
         * @return builder
         * 
         */
        public Builder groupIds(String... groupIds) {
            return groupIds(List.of(groupIds));
        }

        /**
         * @param location The geo-location where the resource lives
         * 
         * @return builder
         * 
         */
        public Builder location(@Nullable Output location) {
            $.location = location;
            return this;
        }

        /**
         * @param location The geo-location where the resource lives
         * 
         * @return builder
         * 
         */
        public Builder location(String location) {
            return location(Output.of(location));
        }

        /**
         * @param managedPrivateEndpointName The managed private endpoint name of Azure Managed Grafana.
         * 
         * @return builder
         * 
         */
        public Builder managedPrivateEndpointName(@Nullable Output managedPrivateEndpointName) {
            $.managedPrivateEndpointName = managedPrivateEndpointName;
            return this;
        }

        /**
         * @param managedPrivateEndpointName The managed private endpoint name of Azure Managed Grafana.
         * 
         * @return builder
         * 
         */
        public Builder managedPrivateEndpointName(String managedPrivateEndpointName) {
            return managedPrivateEndpointName(Output.of(managedPrivateEndpointName));
        }

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

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

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

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

        /**
         * @param privateLinkServiceUrl The URL of the data store behind the private link service. It would be the URL in the Grafana data source configuration page without the protocol and port.
         * 
         * @return builder
         * 
         */
        public Builder privateLinkServiceUrl(@Nullable Output privateLinkServiceUrl) {
            $.privateLinkServiceUrl = privateLinkServiceUrl;
            return this;
        }

        /**
         * @param privateLinkServiceUrl The URL of the data store behind the private link service. It would be the URL in the Grafana data source configuration page without the protocol and port.
         * 
         * @return builder
         * 
         */
        public Builder privateLinkServiceUrl(String privateLinkServiceUrl) {
            return privateLinkServiceUrl(Output.of(privateLinkServiceUrl));
        }

        /**
         * @param requestMessage User input request message of the managed private endpoint.
         * 
         * @return builder
         * 
         */
        public Builder requestMessage(@Nullable Output requestMessage) {
            $.requestMessage = requestMessage;
            return this;
        }

        /**
         * @param requestMessage User input request message of the managed private endpoint.
         * 
         * @return builder
         * 
         */
        public Builder requestMessage(String requestMessage) {
            return requestMessage(Output.of(requestMessage));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param tags Resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags Resource tags.
         * 
         * @return builder
         * 
         */
        public Builder tags(Map tags) {
            return tags(Output.of(tags));
        }

        /**
         * @param workspaceName The workspace name of Azure Managed Grafana.
         * 
         * @return builder
         * 
         */
        public Builder workspaceName(Output workspaceName) {
            $.workspaceName = workspaceName;
            return this;
        }

        /**
         * @param workspaceName The workspace name of Azure Managed Grafana.
         * 
         * @return builder
         * 
         */
        public Builder workspaceName(String workspaceName) {
            return workspaceName(Output.of(workspaceName));
        }

        public ManagedPrivateEndpointArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("ManagedPrivateEndpointArgs", "resourceGroupName");
            }
            if ($.workspaceName == null) {
                throw new MissingRequiredPropertyException("ManagedPrivateEndpointArgs", "workspaceName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy