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

com.pulumi.azurenative.deviceregistry.inputs.GetSchemaPlainArgs 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.deviceregistry.inputs;

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


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

    public static final GetSchemaPlainArgs Empty = new GetSchemaPlainArgs();

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

    /**
     * Schema name parameter.
     * 
     */
    @Import(name="schemaName", required=true)
    private String schemaName;

    /**
     * @return Schema name parameter.
     * 
     */
    public String schemaName() {
        return this.schemaName;
    }

    /**
     * Schema registry name parameter.
     * 
     */
    @Import(name="schemaRegistryName", required=true)
    private String schemaRegistryName;

    /**
     * @return Schema registry name parameter.
     * 
     */
    public String schemaRegistryName() {
        return this.schemaRegistryName;
    }

    private GetSchemaPlainArgs() {}

    private GetSchemaPlainArgs(GetSchemaPlainArgs $) {
        this.resourceGroupName = $.resourceGroupName;
        this.schemaName = $.schemaName;
        this.schemaRegistryName = $.schemaRegistryName;
    }

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

    public static final class Builder {
        private GetSchemaPlainArgs $;

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

        public Builder(GetSchemaPlainArgs defaults) {
            $ = new GetSchemaPlainArgs(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 schemaName Schema name parameter.
         * 
         * @return builder
         * 
         */
        public Builder schemaName(String schemaName) {
            $.schemaName = schemaName;
            return this;
        }

        /**
         * @param schemaRegistryName Schema registry name parameter.
         * 
         * @return builder
         * 
         */
        public Builder schemaRegistryName(String schemaRegistryName) {
            $.schemaRegistryName = schemaRegistryName;
            return this;
        }

        public GetSchemaPlainArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetSchemaPlainArgs", "resourceGroupName");
            }
            if ($.schemaName == null) {
                throw new MissingRequiredPropertyException("GetSchemaPlainArgs", "schemaName");
            }
            if ($.schemaRegistryName == null) {
                throw new MissingRequiredPropertyException("GetSchemaPlainArgs", "schemaRegistryName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy