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

com.pulumi.azurenative.compute.inputs.GetGalleryApplicationPlainArgs Maven / Gradle / Ivy

The 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.compute.inputs;

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


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

    public static final GetGalleryApplicationPlainArgs Empty = new GetGalleryApplicationPlainArgs();

    /**
     * The name of the gallery Application Definition to be retrieved.
     * 
     */
    @Import(name="galleryApplicationName", required=true)
    private String galleryApplicationName;

    /**
     * @return The name of the gallery Application Definition to be retrieved.
     * 
     */
    public String galleryApplicationName() {
        return this.galleryApplicationName;
    }

    /**
     * The name of the Shared Application Gallery from which the Application Definitions are to be retrieved.
     * 
     */
    @Import(name="galleryName", required=true)
    private String galleryName;

    /**
     * @return The name of the Shared Application Gallery from which the Application Definitions are to be retrieved.
     * 
     */
    public String galleryName() {
        return this.galleryName;
    }

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

    /**
     * @return The name of the resource group.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetGalleryApplicationPlainArgs() {}

    private GetGalleryApplicationPlainArgs(GetGalleryApplicationPlainArgs $) {
        this.galleryApplicationName = $.galleryApplicationName;
        this.galleryName = $.galleryName;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetGalleryApplicationPlainArgs $;

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

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

        /**
         * @param galleryApplicationName The name of the gallery Application Definition to be retrieved.
         * 
         * @return builder
         * 
         */
        public Builder galleryApplicationName(String galleryApplicationName) {
            $.galleryApplicationName = galleryApplicationName;
            return this;
        }

        /**
         * @param galleryName The name of the Shared Application Gallery from which the Application Definitions are to be retrieved.
         * 
         * @return builder
         * 
         */
        public Builder galleryName(String galleryName) {
            $.galleryName = galleryName;
            return this;
        }

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

        public GetGalleryApplicationPlainArgs build() {
            if ($.galleryApplicationName == null) {
                throw new MissingRequiredPropertyException("GetGalleryApplicationPlainArgs", "galleryApplicationName");
            }
            if ($.galleryName == null) {
                throw new MissingRequiredPropertyException("GetGalleryApplicationPlainArgs", "galleryName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetGalleryApplicationPlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy