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

com.pulumi.azurenative.datacatalog.inputs.GetADCCatalogPlainArgs 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.datacatalog.inputs;

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


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

    public static final GetADCCatalogPlainArgs Empty = new GetADCCatalogPlainArgs();

    /**
     * The name of the data catalog in the specified subscription and resource group.
     * 
     */
    @Import(name="catalogName", required=true)
    private String catalogName;

    /**
     * @return The name of the data catalog in the specified subscription and resource group.
     * 
     */
    public String catalogName() {
        return this.catalogName;
    }

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

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

    private GetADCCatalogPlainArgs() {}

    private GetADCCatalogPlainArgs(GetADCCatalogPlainArgs $) {
        this.catalogName = $.catalogName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetADCCatalogPlainArgs $;

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

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

        /**
         * @param catalogName The name of the data catalog in the specified subscription and resource group.
         * 
         * @return builder
         * 
         */
        public Builder catalogName(String catalogName) {
            $.catalogName = catalogName;
            return this;
        }

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy