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

com.pulumi.azurenative.databasewatcher.inputs.GetSharedPrivateLinkResourceArgs 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.databasewatcher.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetSharedPrivateLinkResourceArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetSharedPrivateLinkResourceArgs Empty = new GetSharedPrivateLinkResourceArgs();

    /**
     * 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;
    }

    /**
     * The Shared Private Link resource name.
     * 
     */
    @Import(name="sharedPrivateLinkResourceName", required=true)
    private Output sharedPrivateLinkResourceName;

    /**
     * @return The Shared Private Link resource name.
     * 
     */
    public Output sharedPrivateLinkResourceName() {
        return this.sharedPrivateLinkResourceName;
    }

    /**
     * The database watcher name.
     * 
     */
    @Import(name="watcherName", required=true)
    private Output watcherName;

    /**
     * @return The database watcher name.
     * 
     */
    public Output watcherName() {
        return this.watcherName;
    }

    private GetSharedPrivateLinkResourceArgs() {}

    private GetSharedPrivateLinkResourceArgs(GetSharedPrivateLinkResourceArgs $) {
        this.resourceGroupName = $.resourceGroupName;
        this.sharedPrivateLinkResourceName = $.sharedPrivateLinkResourceName;
        this.watcherName = $.watcherName;
    }

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

    public static final class Builder {
        private GetSharedPrivateLinkResourceArgs $;

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

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

        /**
         * @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 sharedPrivateLinkResourceName The Shared Private Link resource name.
         * 
         * @return builder
         * 
         */
        public Builder sharedPrivateLinkResourceName(Output sharedPrivateLinkResourceName) {
            $.sharedPrivateLinkResourceName = sharedPrivateLinkResourceName;
            return this;
        }

        /**
         * @param sharedPrivateLinkResourceName The Shared Private Link resource name.
         * 
         * @return builder
         * 
         */
        public Builder sharedPrivateLinkResourceName(String sharedPrivateLinkResourceName) {
            return sharedPrivateLinkResourceName(Output.of(sharedPrivateLinkResourceName));
        }

        /**
         * @param watcherName The database watcher name.
         * 
         * @return builder
         * 
         */
        public Builder watcherName(Output watcherName) {
            $.watcherName = watcherName;
            return this;
        }

        /**
         * @param watcherName The database watcher name.
         * 
         * @return builder
         * 
         */
        public Builder watcherName(String watcherName) {
            return watcherName(Output.of(watcherName));
        }

        public GetSharedPrivateLinkResourceArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetSharedPrivateLinkResourceArgs", "resourceGroupName");
            }
            if ($.sharedPrivateLinkResourceName == null) {
                throw new MissingRequiredPropertyException("GetSharedPrivateLinkResourceArgs", "sharedPrivateLinkResourceName");
            }
            if ($.watcherName == null) {
                throw new MissingRequiredPropertyException("GetSharedPrivateLinkResourceArgs", "watcherName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy