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

com.pulumi.azurenative.azurefleet.inputs.ApplicationProfileArgs 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.azurefleet.inputs;

import com.pulumi.azurenative.azurefleet.inputs.VMGalleryApplicationArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Contains the list of gallery applications that should be made available to the
 * VM/VMSS
 * 
 */
public final class ApplicationProfileArgs extends com.pulumi.resources.ResourceArgs {

    public static final ApplicationProfileArgs Empty = new ApplicationProfileArgs();

    /**
     * Specifies the gallery applications that should be made available to the VM/VMSS
     * 
     */
    @Import(name="galleryApplications")
    private @Nullable Output> galleryApplications;

    /**
     * @return Specifies the gallery applications that should be made available to the VM/VMSS
     * 
     */
    public Optional>> galleryApplications() {
        return Optional.ofNullable(this.galleryApplications);
    }

    private ApplicationProfileArgs() {}

    private ApplicationProfileArgs(ApplicationProfileArgs $) {
        this.galleryApplications = $.galleryApplications;
    }

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

    public static final class Builder {
        private ApplicationProfileArgs $;

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

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

        /**
         * @param galleryApplications Specifies the gallery applications that should be made available to the VM/VMSS
         * 
         * @return builder
         * 
         */
        public Builder galleryApplications(@Nullable Output> galleryApplications) {
            $.galleryApplications = galleryApplications;
            return this;
        }

        /**
         * @param galleryApplications Specifies the gallery applications that should be made available to the VM/VMSS
         * 
         * @return builder
         * 
         */
        public Builder galleryApplications(List galleryApplications) {
            return galleryApplications(Output.of(galleryApplications));
        }

        /**
         * @param galleryApplications Specifies the gallery applications that should be made available to the VM/VMSS
         * 
         * @return builder
         * 
         */
        public Builder galleryApplications(VMGalleryApplicationArgs... galleryApplications) {
            return galleryApplications(List.of(galleryApplications));
        }

        public ApplicationProfileArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy