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

com.pulumi.azurenative.eventgrid.inputs.GetTopicSpacePlainArgs Maven / Gradle / Ivy

// *** 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.eventgrid.inputs;

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


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

    public static final GetTopicSpacePlainArgs Empty = new GetTopicSpacePlainArgs();

    /**
     * Name of the namespace.
     * 
     */
    @Import(name="namespaceName", required=true)
    private String namespaceName;

    /**
     * @return Name of the namespace.
     * 
     */
    public String namespaceName() {
        return this.namespaceName;
    }

    /**
     * The name of the resource group within the user's subscription.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return The name of the resource group within the user's subscription.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Name of the Topic space.
     * 
     */
    @Import(name="topicSpaceName", required=true)
    private String topicSpaceName;

    /**
     * @return Name of the Topic space.
     * 
     */
    public String topicSpaceName() {
        return this.topicSpaceName;
    }

    private GetTopicSpacePlainArgs() {}

    private GetTopicSpacePlainArgs(GetTopicSpacePlainArgs $) {
        this.namespaceName = $.namespaceName;
        this.resourceGroupName = $.resourceGroupName;
        this.topicSpaceName = $.topicSpaceName;
    }

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

    public static final class Builder {
        private GetTopicSpacePlainArgs $;

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

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

        /**
         * @param namespaceName Name of the namespace.
         * 
         * @return builder
         * 
         */
        public Builder namespaceName(String namespaceName) {
            $.namespaceName = namespaceName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group within the user's subscription.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param topicSpaceName Name of the Topic space.
         * 
         * @return builder
         * 
         */
        public Builder topicSpaceName(String topicSpaceName) {
            $.topicSpaceName = topicSpaceName;
            return this;
        }

        public GetTopicSpacePlainArgs build() {
            if ($.namespaceName == null) {
                throw new MissingRequiredPropertyException("GetTopicSpacePlainArgs", "namespaceName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetTopicSpacePlainArgs", "resourceGroupName");
            }
            if ($.topicSpaceName == null) {
                throw new MissingRequiredPropertyException("GetTopicSpacePlainArgs", "topicSpaceName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy