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

com.pulumi.meraki.networks.inputs.SmDevicesInstallAppsParametersArgs Maven / Gradle / Ivy

There is a newer version: 0.4.0-alpha.1731736975
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.meraki.networks.inputs;

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


public final class SmDevicesInstallAppsParametersArgs extends com.pulumi.resources.ResourceArgs {

    public static final SmDevicesInstallAppsParametersArgs Empty = new SmDevicesInstallAppsParametersArgs();

    /**
     * ids of applications to be installed
     * 
     */
    @Import(name="appIds")
    private @Nullable Output> appIds;

    /**
     * @return ids of applications to be installed
     * 
     */
    public Optional>> appIds() {
        return Optional.ofNullable(this.appIds);
    }

    /**
     * By default, installation of an app which is believed to already be present on the device will be skipped. If you'd like to force the installation of the app, set this parameter to true.
     * 
     */
    @Import(name="force")
    private @Nullable Output force;

    /**
     * @return By default, installation of an app which is believed to already be present on the device will be skipped. If you'd like to force the installation of the app, set this parameter to true.
     * 
     */
    public Optional> force() {
        return Optional.ofNullable(this.force);
    }

    private SmDevicesInstallAppsParametersArgs() {}

    private SmDevicesInstallAppsParametersArgs(SmDevicesInstallAppsParametersArgs $) {
        this.appIds = $.appIds;
        this.force = $.force;
    }

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

    public static final class Builder {
        private SmDevicesInstallAppsParametersArgs $;

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

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

        /**
         * @param appIds ids of applications to be installed
         * 
         * @return builder
         * 
         */
        public Builder appIds(@Nullable Output> appIds) {
            $.appIds = appIds;
            return this;
        }

        /**
         * @param appIds ids of applications to be installed
         * 
         * @return builder
         * 
         */
        public Builder appIds(List appIds) {
            return appIds(Output.of(appIds));
        }

        /**
         * @param appIds ids of applications to be installed
         * 
         * @return builder
         * 
         */
        public Builder appIds(String... appIds) {
            return appIds(List.of(appIds));
        }

        /**
         * @param force By default, installation of an app which is believed to already be present on the device will be skipped. If you'd like to force the installation of the app, set this parameter to true.
         * 
         * @return builder
         * 
         */
        public Builder force(@Nullable Output force) {
            $.force = force;
            return this;
        }

        /**
         * @param force By default, installation of an app which is believed to already be present on the device will be skipped. If you'd like to force the installation of the app, set this parameter to true.
         * 
         * @return builder
         * 
         */
        public Builder force(Boolean force) {
            return force(Output.of(force));
        }

        public SmDevicesInstallAppsParametersArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy