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

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

import com.pulumi.azurenative.offazurespringboot.inputs.SpringbootappsPropertiesArgs;
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 SpringbootappArgs extends com.pulumi.resources.ResourceArgs {

    public static final SpringbootappArgs Empty = new SpringbootappArgs();

    /**
     * The springbootapps resource definition.
     * 
     */
    @Import(name="properties")
    private @Nullable Output properties;

    /**
     * @return The springbootapps resource definition.
     * 
     */
    public Optional> properties() {
        return Optional.ofNullable(this.properties);
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The springbootsites name.
     * 
     */
    @Import(name="siteName", required=true)
    private Output siteName;

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

    /**
     * The springbootapps name.
     * 
     */
    @Import(name="springbootappsName")
    private @Nullable Output springbootappsName;

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

    private SpringbootappArgs() {}

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

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

    public static final class Builder {
        private SpringbootappArgs $;

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

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

        /**
         * @param properties The springbootapps resource definition.
         * 
         * @return builder
         * 
         */
        public Builder properties(@Nullable Output properties) {
            $.properties = properties;
            return this;
        }

        /**
         * @param properties The springbootapps resource definition.
         * 
         * @return builder
         * 
         */
        public Builder properties(SpringbootappsPropertiesArgs properties) {
            return properties(Output.of(properties));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param siteName The springbootsites name.
         * 
         * @return builder
         * 
         */
        public Builder siteName(Output siteName) {
            $.siteName = siteName;
            return this;
        }

        /**
         * @param siteName The springbootsites name.
         * 
         * @return builder
         * 
         */
        public Builder siteName(String siteName) {
            return siteName(Output.of(siteName));
        }

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

        /**
         * @param springbootappsName The springbootapps name.
         * 
         * @return builder
         * 
         */
        public Builder springbootappsName(String springbootappsName) {
            return springbootappsName(Output.of(springbootappsName));
        }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy