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

com.pulumi.meraki.networks.inputs.FloorPlansDeviceArgs 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 com.pulumi.meraki.networks.inputs.FloorPlansDeviceDetailArgs;
import java.lang.Double;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final FloorPlansDeviceArgs Empty = new FloorPlansDeviceArgs();

    /**
     * Physical address of the device
     * 
     */
    @Import(name="address")
    private @Nullable Output address;

    /**
     * @return Physical address of the device
     * 
     */
    public Optional> address() {
        return Optional.ofNullable(this.address);
    }

    /**
     * Additional device information
     * 
     */
    @Import(name="details")
    private @Nullable Output> details;

    /**
     * @return Additional device information
     * 
     */
    public Optional>> details() {
        return Optional.ofNullable(this.details);
    }

    /**
     * Firmware version of the device
     * 
     */
    @Import(name="firmware")
    private @Nullable Output firmware;

    /**
     * @return Firmware version of the device
     * 
     */
    public Optional> firmware() {
        return Optional.ofNullable(this.firmware);
    }

    /**
     * IMEI of the device, if applicable
     * 
     */
    @Import(name="imei")
    private @Nullable Output imei;

    /**
     * @return IMEI of the device, if applicable
     * 
     */
    public Optional> imei() {
        return Optional.ofNullable(this.imei);
    }

    /**
     * LAN IP address of the device
     * 
     */
    @Import(name="lanIp")
    private @Nullable Output lanIp;

    /**
     * @return LAN IP address of the device
     * 
     */
    public Optional> lanIp() {
        return Optional.ofNullable(this.lanIp);
    }

    /**
     * Latitude of the device
     * 
     */
    @Import(name="lat")
    private @Nullable Output lat;

    /**
     * @return Latitude of the device
     * 
     */
    public Optional> lat() {
        return Optional.ofNullable(this.lat);
    }

    /**
     * Longitude of the device
     * 
     */
    @Import(name="lng")
    private @Nullable Output lng;

    /**
     * @return Longitude of the device
     * 
     */
    public Optional> lng() {
        return Optional.ofNullable(this.lng);
    }

    /**
     * MAC address of the device
     * 
     */
    @Import(name="mac")
    private @Nullable Output mac;

    /**
     * @return MAC address of the device
     * 
     */
    public Optional> mac() {
        return Optional.ofNullable(this.mac);
    }

    /**
     * Model of the device
     * 
     */
    @Import(name="model")
    private @Nullable Output model;

    /**
     * @return Model of the device
     * 
     */
    public Optional> model() {
        return Optional.ofNullable(this.model);
    }

    /**
     * Name of the device
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Name of the device
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * ID of the network the device belongs to
     * 
     */
    @Import(name="networkId")
    private @Nullable Output networkId;

    /**
     * @return ID of the network the device belongs to
     * 
     */
    public Optional> networkId() {
        return Optional.ofNullable(this.networkId);
    }

    /**
     * Notes for the device, limited to 255 characters
     * 
     */
    @Import(name="notes")
    private @Nullable Output notes;

    /**
     * @return Notes for the device, limited to 255 characters
     * 
     */
    public Optional> notes() {
        return Optional.ofNullable(this.notes);
    }

    /**
     * Product type of the device
     * 
     */
    @Import(name="productType")
    private @Nullable Output productType;

    /**
     * @return Product type of the device
     * 
     */
    public Optional> productType() {
        return Optional.ofNullable(this.productType);
    }

    /**
     * Serial number of the device
     * 
     */
    @Import(name="serial")
    private @Nullable Output serial;

    /**
     * @return Serial number of the device
     * 
     */
    public Optional> serial() {
        return Optional.ofNullable(this.serial);
    }

    /**
     * List of tags assigned to the device
     * 
     */
    @Import(name="tags")
    private @Nullable Output> tags;

    /**
     * @return List of tags assigned to the device
     * 
     */
    public Optional>> tags() {
        return Optional.ofNullable(this.tags);
    }

    private FloorPlansDeviceArgs() {}

    private FloorPlansDeviceArgs(FloorPlansDeviceArgs $) {
        this.address = $.address;
        this.details = $.details;
        this.firmware = $.firmware;
        this.imei = $.imei;
        this.lanIp = $.lanIp;
        this.lat = $.lat;
        this.lng = $.lng;
        this.mac = $.mac;
        this.model = $.model;
        this.name = $.name;
        this.networkId = $.networkId;
        this.notes = $.notes;
        this.productType = $.productType;
        this.serial = $.serial;
        this.tags = $.tags;
    }

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

    public static final class Builder {
        private FloorPlansDeviceArgs $;

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

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

        /**
         * @param address Physical address of the device
         * 
         * @return builder
         * 
         */
        public Builder address(@Nullable Output address) {
            $.address = address;
            return this;
        }

        /**
         * @param address Physical address of the device
         * 
         * @return builder
         * 
         */
        public Builder address(String address) {
            return address(Output.of(address));
        }

        /**
         * @param details Additional device information
         * 
         * @return builder
         * 
         */
        public Builder details(@Nullable Output> details) {
            $.details = details;
            return this;
        }

        /**
         * @param details Additional device information
         * 
         * @return builder
         * 
         */
        public Builder details(List details) {
            return details(Output.of(details));
        }

        /**
         * @param details Additional device information
         * 
         * @return builder
         * 
         */
        public Builder details(FloorPlansDeviceDetailArgs... details) {
            return details(List.of(details));
        }

        /**
         * @param firmware Firmware version of the device
         * 
         * @return builder
         * 
         */
        public Builder firmware(@Nullable Output firmware) {
            $.firmware = firmware;
            return this;
        }

        /**
         * @param firmware Firmware version of the device
         * 
         * @return builder
         * 
         */
        public Builder firmware(String firmware) {
            return firmware(Output.of(firmware));
        }

        /**
         * @param imei IMEI of the device, if applicable
         * 
         * @return builder
         * 
         */
        public Builder imei(@Nullable Output imei) {
            $.imei = imei;
            return this;
        }

        /**
         * @param imei IMEI of the device, if applicable
         * 
         * @return builder
         * 
         */
        public Builder imei(String imei) {
            return imei(Output.of(imei));
        }

        /**
         * @param lanIp LAN IP address of the device
         * 
         * @return builder
         * 
         */
        public Builder lanIp(@Nullable Output lanIp) {
            $.lanIp = lanIp;
            return this;
        }

        /**
         * @param lanIp LAN IP address of the device
         * 
         * @return builder
         * 
         */
        public Builder lanIp(String lanIp) {
            return lanIp(Output.of(lanIp));
        }

        /**
         * @param lat Latitude of the device
         * 
         * @return builder
         * 
         */
        public Builder lat(@Nullable Output lat) {
            $.lat = lat;
            return this;
        }

        /**
         * @param lat Latitude of the device
         * 
         * @return builder
         * 
         */
        public Builder lat(Double lat) {
            return lat(Output.of(lat));
        }

        /**
         * @param lng Longitude of the device
         * 
         * @return builder
         * 
         */
        public Builder lng(@Nullable Output lng) {
            $.lng = lng;
            return this;
        }

        /**
         * @param lng Longitude of the device
         * 
         * @return builder
         * 
         */
        public Builder lng(Double lng) {
            return lng(Output.of(lng));
        }

        /**
         * @param mac MAC address of the device
         * 
         * @return builder
         * 
         */
        public Builder mac(@Nullable Output mac) {
            $.mac = mac;
            return this;
        }

        /**
         * @param mac MAC address of the device
         * 
         * @return builder
         * 
         */
        public Builder mac(String mac) {
            return mac(Output.of(mac));
        }

        /**
         * @param model Model of the device
         * 
         * @return builder
         * 
         */
        public Builder model(@Nullable Output model) {
            $.model = model;
            return this;
        }

        /**
         * @param model Model of the device
         * 
         * @return builder
         * 
         */
        public Builder model(String model) {
            return model(Output.of(model));
        }

        /**
         * @param name Name of the device
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Name of the device
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param networkId ID of the network the device belongs to
         * 
         * @return builder
         * 
         */
        public Builder networkId(@Nullable Output networkId) {
            $.networkId = networkId;
            return this;
        }

        /**
         * @param networkId ID of the network the device belongs to
         * 
         * @return builder
         * 
         */
        public Builder networkId(String networkId) {
            return networkId(Output.of(networkId));
        }

        /**
         * @param notes Notes for the device, limited to 255 characters
         * 
         * @return builder
         * 
         */
        public Builder notes(@Nullable Output notes) {
            $.notes = notes;
            return this;
        }

        /**
         * @param notes Notes for the device, limited to 255 characters
         * 
         * @return builder
         * 
         */
        public Builder notes(String notes) {
            return notes(Output.of(notes));
        }

        /**
         * @param productType Product type of the device
         * 
         * @return builder
         * 
         */
        public Builder productType(@Nullable Output productType) {
            $.productType = productType;
            return this;
        }

        /**
         * @param productType Product type of the device
         * 
         * @return builder
         * 
         */
        public Builder productType(String productType) {
            return productType(Output.of(productType));
        }

        /**
         * @param serial Serial number of the device
         * 
         * @return builder
         * 
         */
        public Builder serial(@Nullable Output serial) {
            $.serial = serial;
            return this;
        }

        /**
         * @param serial Serial number of the device
         * 
         * @return builder
         * 
         */
        public Builder serial(String serial) {
            return serial(Output.of(serial));
        }

        /**
         * @param tags List of tags assigned to the device
         * 
         * @return builder
         * 
         */
        public Builder tags(@Nullable Output> tags) {
            $.tags = tags;
            return this;
        }

        /**
         * @param tags List of tags assigned to the device
         * 
         * @return builder
         * 
         */
        public Builder tags(List tags) {
            return tags(Output.of(tags));
        }

        /**
         * @param tags List of tags assigned to the device
         * 
         * @return builder
         * 
         */
        public Builder tags(String... tags) {
            return tags(List.of(tags));
        }

        public FloorPlansDeviceArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy