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

com.pulumi.azurenative.awsconnector.inputs.ApplicationArgs 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.awsconnector.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Definition of Application
 * 
 */
public final class ApplicationArgs extends com.pulumi.resources.ResourceArgs {

    public static final ApplicationArgs Empty = new ApplicationArgs();

    /**
     * <p>This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.</p>
     * 
     */
    @Import(name="additionalInfo")
    private @Nullable Output> additionalInfo;

    /**
     * @return <p>This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.</p>
     * 
     */
    public Optional>> additionalInfo() {
        return Optional.ofNullable(this.additionalInfo);
    }

    /**
     * <p>Arguments for Amazon EMR to pass to the application.</p>
     * 
     */
    @Import(name="args")
    private @Nullable Output> args;

    /**
     * @return <p>Arguments for Amazon EMR to pass to the application.</p>
     * 
     */
    public Optional>> args() {
        return Optional.ofNullable(this.args);
    }

    /**
     * <p>The name of the application.</p>
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return <p>The name of the application.</p>
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * <p>The version of the application.</p>
     * 
     */
    @Import(name="version")
    private @Nullable Output version;

    /**
     * @return <p>The version of the application.</p>
     * 
     */
    public Optional> version() {
        return Optional.ofNullable(this.version);
    }

    private ApplicationArgs() {}

    private ApplicationArgs(ApplicationArgs $) {
        this.additionalInfo = $.additionalInfo;
        this.args = $.args;
        this.name = $.name;
        this.version = $.version;
    }

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

    public static final class Builder {
        private ApplicationArgs $;

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

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

        /**
         * @param additionalInfo <p>This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.</p>
         * 
         * @return builder
         * 
         */
        public Builder additionalInfo(@Nullable Output> additionalInfo) {
            $.additionalInfo = additionalInfo;
            return this;
        }

        /**
         * @param additionalInfo <p>This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.</p>
         * 
         * @return builder
         * 
         */
        public Builder additionalInfo(Map additionalInfo) {
            return additionalInfo(Output.of(additionalInfo));
        }

        /**
         * @param args <p>Arguments for Amazon EMR to pass to the application.</p>
         * 
         * @return builder
         * 
         */
        public Builder args(@Nullable Output> args) {
            $.args = args;
            return this;
        }

        /**
         * @param args <p>Arguments for Amazon EMR to pass to the application.</p>
         * 
         * @return builder
         * 
         */
        public Builder args(List args) {
            return args(Output.of(args));
        }

        /**
         * @param args <p>Arguments for Amazon EMR to pass to the application.</p>
         * 
         * @return builder
         * 
         */
        public Builder args(String... args) {
            return args(List.of(args));
        }

        /**
         * @param name <p>The name of the application.</p>
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name <p>The name of the application.</p>
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param version <p>The version of the application.</p>
         * 
         * @return builder
         * 
         */
        public Builder version(@Nullable Output version) {
            $.version = version;
            return this;
        }

        /**
         * @param version <p>The version of the application.</p>
         * 
         * @return builder
         * 
         */
        public Builder version(String version) {
            return version(Output.of(version));
        }

        public ApplicationArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy