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

com.pulumi.azurenative.search.SharedPrivateLinkResourceArgs Maven / Gradle / Ivy

There is a newer version: 2.78.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.search;

import com.pulumi.azurenative.search.inputs.SharedPrivateLinkResourcePropertiesArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final SharedPrivateLinkResourceArgs Empty = new SharedPrivateLinkResourceArgs();

    /**
     * Describes the properties of a Shared Private Link Resource managed by the Azure Cognitive Search service.
     * 
     */
    @Import(name="properties")
    private @Nullable Output properties;

    /**
     * @return Describes the properties of a Shared Private Link Resource managed by the Azure Cognitive Search service.
     * 
     */
    public Optional> properties() {
        return Optional.ofNullable(this.properties);
    }

    /**
     * The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The name of the Azure Cognitive Search service associated with the specified resource group.
     * 
     */
    @Import(name="searchServiceName", required=true)
    private Output searchServiceName;

    /**
     * @return The name of the Azure Cognitive Search service associated with the specified resource group.
     * 
     */
    public Output searchServiceName() {
        return this.searchServiceName;
    }

    /**
     * The name of the shared private link resource managed by the Azure Cognitive Search service within the specified resource group.
     * 
     */
    @Import(name="sharedPrivateLinkResourceName")
    private @Nullable Output sharedPrivateLinkResourceName;

    /**
     * @return The name of the shared private link resource managed by the Azure Cognitive Search service within the specified resource group.
     * 
     */
    public Optional> sharedPrivateLinkResourceName() {
        return Optional.ofNullable(this.sharedPrivateLinkResourceName);
    }

    private SharedPrivateLinkResourceArgs() {}

    private SharedPrivateLinkResourceArgs(SharedPrivateLinkResourceArgs $) {
        this.properties = $.properties;
        this.resourceGroupName = $.resourceGroupName;
        this.searchServiceName = $.searchServiceName;
        this.sharedPrivateLinkResourceName = $.sharedPrivateLinkResourceName;
    }

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

    public static final class Builder {
        private SharedPrivateLinkResourceArgs $;

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

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

        /**
         * @param properties Describes the properties of a Shared Private Link Resource managed by the Azure Cognitive Search service.
         * 
         * @return builder
         * 
         */
        public Builder properties(@Nullable Output properties) {
            $.properties = properties;
            return this;
        }

        /**
         * @param properties Describes the properties of a Shared Private Link Resource managed by the Azure Cognitive Search service.
         * 
         * @return builder
         * 
         */
        public Builder properties(SharedPrivateLinkResourcePropertiesArgs properties) {
            return properties(Output.of(properties));
        }

        /**
         * @param resourceGroupName The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param searchServiceName The name of the Azure Cognitive Search service associated with the specified resource group.
         * 
         * @return builder
         * 
         */
        public Builder searchServiceName(Output searchServiceName) {
            $.searchServiceName = searchServiceName;
            return this;
        }

        /**
         * @param searchServiceName The name of the Azure Cognitive Search service associated with the specified resource group.
         * 
         * @return builder
         * 
         */
        public Builder searchServiceName(String searchServiceName) {
            return searchServiceName(Output.of(searchServiceName));
        }

        /**
         * @param sharedPrivateLinkResourceName The name of the shared private link resource managed by the Azure Cognitive Search service within the specified resource group.
         * 
         * @return builder
         * 
         */
        public Builder sharedPrivateLinkResourceName(@Nullable Output sharedPrivateLinkResourceName) {
            $.sharedPrivateLinkResourceName = sharedPrivateLinkResourceName;
            return this;
        }

        /**
         * @param sharedPrivateLinkResourceName The name of the shared private link resource managed by the Azure Cognitive Search service within the specified resource group.
         * 
         * @return builder
         * 
         */
        public Builder sharedPrivateLinkResourceName(String sharedPrivateLinkResourceName) {
            return sharedPrivateLinkResourceName(Output.of(sharedPrivateLinkResourceName));
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy