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

com.pulumi.azurenative.app.inputs.GetLogicAppPlainArgs 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.app.inputs;

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


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

    public static final GetLogicAppPlainArgs Empty = new GetLogicAppPlainArgs();

    /**
     * Name of the Container App.
     * 
     */
    @Import(name="containerAppName", required=true)
    private String containerAppName;

    /**
     * @return Name of the Container App.
     * 
     */
    public String containerAppName() {
        return this.containerAppName;
    }

    /**
     * Name of the Logic App, the extension resource.
     * 
     */
    @Import(name="logicAppName", required=true)
    private String logicAppName;

    /**
     * @return Name of the Logic App, the extension resource.
     * 
     */
    public String logicAppName() {
        return this.logicAppName;
    }

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

    private GetLogicAppPlainArgs() {}

    private GetLogicAppPlainArgs(GetLogicAppPlainArgs $) {
        this.containerAppName = $.containerAppName;
        this.logicAppName = $.logicAppName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetLogicAppPlainArgs $;

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

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

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

        /**
         * @param logicAppName Name of the Logic App, the extension resource.
         * 
         * @return builder
         * 
         */
        public Builder logicAppName(String logicAppName) {
            $.logicAppName = logicAppName;
            return this;
        }

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

        public GetLogicAppPlainArgs build() {
            if ($.containerAppName == null) {
                throw new MissingRequiredPropertyException("GetLogicAppPlainArgs", "containerAppName");
            }
            if ($.logicAppName == null) {
                throw new MissingRequiredPropertyException("GetLogicAppPlainArgs", "logicAppName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetLogicAppPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy