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

com.pulumi.azurenative.testbase.inputs.IntuneEnrollmentMetadataArgs 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.EnrolledIntuneAppArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * The metadata of Intune enrollment.
 * 
 */
public final class IntuneEnrollmentMetadataArgs extends com.pulumi.resources.ResourceArgs {

    public static final IntuneEnrollmentMetadataArgs Empty = new IntuneEnrollmentMetadataArgs();

    /**
     * The enrolled Intune apps.
     * 
     */
    @Import(name="appList")
    private @Nullable Output> appList;

    /**
     * @return The enrolled Intune apps.
     * 
     */
    public Optional>> appList() {
        return Optional.ofNullable(this.appList);
    }

    /**
     * The id of the Intune enrollment credential.
     * 
     */
    @Import(name="credentialId")
    private @Nullable Output credentialId;

    /**
     * @return The id of the Intune enrollment credential.
     * 
     */
    public Optional> credentialId() {
        return Optional.ofNullable(this.credentialId);
    }

    /**
     * The expected duration of Intune applications and policies deployment.
     * 
     */
    @Import(name="expectedDeploymentDurationInMinute")
    private @Nullable Output expectedDeploymentDurationInMinute;

    /**
     * @return The expected duration of Intune applications and policies deployment.
     * 
     */
    public Optional> expectedDeploymentDurationInMinute() {
        return Optional.ofNullable(this.expectedDeploymentDurationInMinute);
    }

    private IntuneEnrollmentMetadataArgs() {}

    private IntuneEnrollmentMetadataArgs(IntuneEnrollmentMetadataArgs $) {
        this.appList = $.appList;
        this.credentialId = $.credentialId;
        this.expectedDeploymentDurationInMinute = $.expectedDeploymentDurationInMinute;
    }

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

    public static final class Builder {
        private IntuneEnrollmentMetadataArgs $;

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

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

        /**
         * @param appList The enrolled Intune apps.
         * 
         * @return builder
         * 
         */
        public Builder appList(@Nullable Output> appList) {
            $.appList = appList;
            return this;
        }

        /**
         * @param appList The enrolled Intune apps.
         * 
         * @return builder
         * 
         */
        public Builder appList(List appList) {
            return appList(Output.of(appList));
        }

        /**
         * @param appList The enrolled Intune apps.
         * 
         * @return builder
         * 
         */
        public Builder appList(EnrolledIntuneAppArgs... appList) {
            return appList(List.of(appList));
        }

        /**
         * @param credentialId The id of the Intune enrollment credential.
         * 
         * @return builder
         * 
         */
        public Builder credentialId(@Nullable Output credentialId) {
            $.credentialId = credentialId;
            return this;
        }

        /**
         * @param credentialId The id of the Intune enrollment credential.
         * 
         * @return builder
         * 
         */
        public Builder credentialId(String credentialId) {
            return credentialId(Output.of(credentialId));
        }

        /**
         * @param expectedDeploymentDurationInMinute The expected duration of Intune applications and policies deployment.
         * 
         * @return builder
         * 
         */
        public Builder expectedDeploymentDurationInMinute(@Nullable Output expectedDeploymentDurationInMinute) {
            $.expectedDeploymentDurationInMinute = expectedDeploymentDurationInMinute;
            return this;
        }

        /**
         * @param expectedDeploymentDurationInMinute The expected duration of Intune applications and policies deployment.
         * 
         * @return builder
         * 
         */
        public Builder expectedDeploymentDurationInMinute(Integer expectedDeploymentDurationInMinute) {
            return expectedDeploymentDurationInMinute(Output.of(expectedDeploymentDurationInMinute));
        }

        public IntuneEnrollmentMetadataArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy