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

com.pulumi.azurenative.offazurespringboot.inputs.GetSpringbootappPlainArgs 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.offazurespringboot.inputs;

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


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

    public static final GetSpringbootappPlainArgs Empty = new GetSpringbootappPlainArgs();

    /**
     * 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 springbootsites name.
     * 
     */
    @Import(name="siteName", required=true)
    private String siteName;

    /**
     * @return The springbootsites name.
     * 
     */
    public String siteName() {
        return this.siteName;
    }

    /**
     * The springbootapps name.
     * 
     */
    @Import(name="springbootappsName", required=true)
    private String springbootappsName;

    /**
     * @return The springbootapps name.
     * 
     */
    public String springbootappsName() {
        return this.springbootappsName;
    }

    private GetSpringbootappPlainArgs() {}

    private GetSpringbootappPlainArgs(GetSpringbootappPlainArgs $) {
        this.resourceGroupName = $.resourceGroupName;
        this.siteName = $.siteName;
        this.springbootappsName = $.springbootappsName;
    }

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

    public static final class Builder {
        private GetSpringbootappPlainArgs $;

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

        public Builder(GetSpringbootappPlainArgs defaults) {
            $ = new GetSpringbootappPlainArgs(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 siteName The springbootsites name.
         * 
         * @return builder
         * 
         */
        public Builder siteName(String siteName) {
            $.siteName = siteName;
            return this;
        }

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

        public GetSpringbootappPlainArgs build() {
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetSpringbootappPlainArgs", "resourceGroupName");
            }
            if ($.siteName == null) {
                throw new MissingRequiredPropertyException("GetSpringbootappPlainArgs", "siteName");
            }
            if ($.springbootappsName == null) {
                throw new MissingRequiredPropertyException("GetSpringbootappPlainArgs", "springbootappsName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy