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

com.pulumi.azurenative.testbase.inputs.DraftPackageIntuneAppMetadataArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.testbase.inputs;

import com.pulumi.azurenative.testbase.inputs.DraftPackageIntuneAppMetadataItemArgs;
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;


/**
 * The metadata of Intune app(s) used for generation.
 * 
 */
public final class DraftPackageIntuneAppMetadataArgs extends com.pulumi.resources.ResourceArgs {

    public static final DraftPackageIntuneAppMetadataArgs Empty = new DraftPackageIntuneAppMetadataArgs();

    /**
     * The Metadata of the Intune App through intunewin file uploading.
     * 
     */
    @Import(name="intuneApp")
    private @Nullable Output intuneApp;

    /**
     * @return The Metadata of the Intune App through intunewin file uploading.
     * 
     */
    public Optional> intuneApp() {
        return Optional.ofNullable(this.intuneApp);
    }

    /**
     * The Metadata of dependencies of the Intune App through intunewin file uploading.
     * 
     */
    @Import(name="intuneAppDependencies")
    private @Nullable Output> intuneAppDependencies;

    /**
     * @return The Metadata of dependencies of the Intune App through intunewin file uploading.
     * 
     */
    public Optional>> intuneAppDependencies() {
        return Optional.ofNullable(this.intuneAppDependencies);
    }

    private DraftPackageIntuneAppMetadataArgs() {}

    private DraftPackageIntuneAppMetadataArgs(DraftPackageIntuneAppMetadataArgs $) {
        this.intuneApp = $.intuneApp;
        this.intuneAppDependencies = $.intuneAppDependencies;
    }

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

    public static final class Builder {
        private DraftPackageIntuneAppMetadataArgs $;

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

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

        /**
         * @param intuneApp The Metadata of the Intune App through intunewin file uploading.
         * 
         * @return builder
         * 
         */
        public Builder intuneApp(@Nullable Output intuneApp) {
            $.intuneApp = intuneApp;
            return this;
        }

        /**
         * @param intuneApp The Metadata of the Intune App through intunewin file uploading.
         * 
         * @return builder
         * 
         */
        public Builder intuneApp(DraftPackageIntuneAppMetadataItemArgs intuneApp) {
            return intuneApp(Output.of(intuneApp));
        }

        /**
         * @param intuneAppDependencies The Metadata of dependencies of the Intune App through intunewin file uploading.
         * 
         * @return builder
         * 
         */
        public Builder intuneAppDependencies(@Nullable Output> intuneAppDependencies) {
            $.intuneAppDependencies = intuneAppDependencies;
            return this;
        }

        /**
         * @param intuneAppDependencies The Metadata of dependencies of the Intune App through intunewin file uploading.
         * 
         * @return builder
         * 
         */
        public Builder intuneAppDependencies(List intuneAppDependencies) {
            return intuneAppDependencies(Output.of(intuneAppDependencies));
        }

        /**
         * @param intuneAppDependencies The Metadata of dependencies of the Intune App through intunewin file uploading.
         * 
         * @return builder
         * 
         */
        public Builder intuneAppDependencies(DraftPackageIntuneAppMetadataItemArgs... intuneAppDependencies) {
            return intuneAppDependencies(List.of(intuneAppDependencies));
        }

        public DraftPackageIntuneAppMetadataArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy