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

com.pulumi.azurenative.databasewatcher.inputs.GetSharedPrivateLinkResourcePlainArgs 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.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


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

    public static final GetSharedPrivateLinkResourcePlainArgs Empty = new GetSharedPrivateLinkResourcePlainArgs();

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

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

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

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

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

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

    private GetSharedPrivateLinkResourcePlainArgs() {}

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

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

    public static final class Builder {
        private GetSharedPrivateLinkResourcePlainArgs $;

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

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

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

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy