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

com.pulumi.azurenative.integrationspaces.inputs.GetApplicationBusinessProcessDevelopmentArtifactPlainArgs 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.integrationspaces.inputs;

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


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

    public static final GetApplicationBusinessProcessDevelopmentArtifactPlainArgs Empty = new GetApplicationBusinessProcessDevelopmentArtifactPlainArgs();

    /**
     * The name of the Application
     * 
     */
    @Import(name="applicationName", required=true)
    private String applicationName;

    /**
     * @return The name of the Application
     * 
     */
    public String applicationName() {
        return this.applicationName;
    }

    /**
     * The name of the business process development artifact.
     * 
     */
    @Import(name="name", required=true)
    private String name;

    /**
     * @return The name of the business process development artifact.
     * 
     */
    public String name() {
        return this.name;
    }

    /**
     * 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 name of the space
     * 
     */
    @Import(name="spaceName", required=true)
    private String spaceName;

    /**
     * @return The name of the space
     * 
     */
    public String spaceName() {
        return this.spaceName;
    }

    private GetApplicationBusinessProcessDevelopmentArtifactPlainArgs() {}

    private GetApplicationBusinessProcessDevelopmentArtifactPlainArgs(GetApplicationBusinessProcessDevelopmentArtifactPlainArgs $) {
        this.applicationName = $.applicationName;
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
        this.spaceName = $.spaceName;
    }

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

    public static final class Builder {
        private GetApplicationBusinessProcessDevelopmentArtifactPlainArgs $;

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

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

        /**
         * @param applicationName The name of the Application
         * 
         * @return builder
         * 
         */
        public Builder applicationName(String applicationName) {
            $.applicationName = applicationName;
            return this;
        }

        /**
         * @param name The name of the business process development artifact.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            $.name = name;
            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;
        }

        /**
         * @param spaceName The name of the space
         * 
         * @return builder
         * 
         */
        public Builder spaceName(String spaceName) {
            $.spaceName = spaceName;
            return this;
        }

        public GetApplicationBusinessProcessDevelopmentArtifactPlainArgs build() {
            if ($.applicationName == null) {
                throw new MissingRequiredPropertyException("GetApplicationBusinessProcessDevelopmentArtifactPlainArgs", "applicationName");
            }
            if ($.name == null) {
                throw new MissingRequiredPropertyException("GetApplicationBusinessProcessDevelopmentArtifactPlainArgs", "name");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetApplicationBusinessProcessDevelopmentArtifactPlainArgs", "resourceGroupName");
            }
            if ($.spaceName == null) {
                throw new MissingRequiredPropertyException("GetApplicationBusinessProcessDevelopmentArtifactPlainArgs", "spaceName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy