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

com.pulumi.azure.databoxedge.inputs.DeviceDevicePropertyArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
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.azure.databoxedge.inputs;

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;


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

    public static final DeviceDevicePropertyArgs Empty = new DeviceDevicePropertyArgs();

    /**
     * The Data Box Edge/Gateway device local capacity in MB.
     * 
     */
    @Import(name="capacity")
    private @Nullable Output capacity;

    /**
     * @return The Data Box Edge/Gateway device local capacity in MB.
     * 
     */
    public Optional> capacity() {
        return Optional.ofNullable(this.capacity);
    }

    /**
     * Type of compute roles configured.
     * 
     */
    @Import(name="configuredRoleTypes")
    private @Nullable Output> configuredRoleTypes;

    /**
     * @return Type of compute roles configured.
     * 
     */
    public Optional>> configuredRoleTypes() {
        return Optional.ofNullable(this.configuredRoleTypes);
    }

    /**
     * The Data Box Edge/Gateway device culture.
     * 
     */
    @Import(name="culture")
    private @Nullable Output culture;

    /**
     * @return The Data Box Edge/Gateway device culture.
     * 
     */
    public Optional> culture() {
        return Optional.ofNullable(this.culture);
    }

    /**
     * The device software version number of the device (e.g. 1.2.18105.6).
     * 
     */
    @Import(name="hcsVersion")
    private @Nullable Output hcsVersion;

    /**
     * @return The device software version number of the device (e.g. 1.2.18105.6).
     * 
     */
    public Optional> hcsVersion() {
        return Optional.ofNullable(this.hcsVersion);
    }

    /**
     * The Data Box Edge/Gateway device model.
     * 
     */
    @Import(name="model")
    private @Nullable Output model;

    /**
     * @return The Data Box Edge/Gateway device model.
     * 
     */
    public Optional> model() {
        return Optional.ofNullable(this.model);
    }

    /**
     * The number of nodes in the cluster.
     * 
     */
    @Import(name="nodeCount")
    private @Nullable Output nodeCount;

    /**
     * @return The number of nodes in the cluster.
     * 
     */
    public Optional> nodeCount() {
        return Optional.ofNullable(this.nodeCount);
    }

    /**
     * The Serial Number of Data Box Edge/Gateway device.
     * 
     */
    @Import(name="serialNumber")
    private @Nullable Output serialNumber;

    /**
     * @return The Serial Number of Data Box Edge/Gateway device.
     * 
     */
    public Optional> serialNumber() {
        return Optional.ofNullable(this.serialNumber);
    }

    /**
     * The Data Box Edge/Gateway device software version.
     * 
     */
    @Import(name="softwareVersion")
    private @Nullable Output softwareVersion;

    /**
     * @return The Data Box Edge/Gateway device software version.
     * 
     */
    public Optional> softwareVersion() {
        return Optional.ofNullable(this.softwareVersion);
    }

    /**
     * The status of the Data Box Edge/Gateway device.
     * 
     */
    @Import(name="status")
    private @Nullable Output status;

    /**
     * @return The status of the Data Box Edge/Gateway device.
     * 
     */
    public Optional> status() {
        return Optional.ofNullable(this.status);
    }

    /**
     * The Data Box Edge/Gateway device timezone.
     * 
     */
    @Import(name="timeZone")
    private @Nullable Output timeZone;

    /**
     * @return The Data Box Edge/Gateway device timezone.
     * 
     */
    public Optional> timeZone() {
        return Optional.ofNullable(this.timeZone);
    }

    /**
     * The type of the Data Box Edge/Gateway device.
     * 
     */
    @Import(name="type")
    private @Nullable Output type;

    /**
     * @return The type of the Data Box Edge/Gateway device.
     * 
     */
    public Optional> type() {
        return Optional.ofNullable(this.type);
    }

    private DeviceDevicePropertyArgs() {}

    private DeviceDevicePropertyArgs(DeviceDevicePropertyArgs $) {
        this.capacity = $.capacity;
        this.configuredRoleTypes = $.configuredRoleTypes;
        this.culture = $.culture;
        this.hcsVersion = $.hcsVersion;
        this.model = $.model;
        this.nodeCount = $.nodeCount;
        this.serialNumber = $.serialNumber;
        this.softwareVersion = $.softwareVersion;
        this.status = $.status;
        this.timeZone = $.timeZone;
        this.type = $.type;
    }

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

    public static final class Builder {
        private DeviceDevicePropertyArgs $;

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

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

        /**
         * @param capacity The Data Box Edge/Gateway device local capacity in MB.
         * 
         * @return builder
         * 
         */
        public Builder capacity(@Nullable Output capacity) {
            $.capacity = capacity;
            return this;
        }

        /**
         * @param capacity The Data Box Edge/Gateway device local capacity in MB.
         * 
         * @return builder
         * 
         */
        public Builder capacity(Integer capacity) {
            return capacity(Output.of(capacity));
        }

        /**
         * @param configuredRoleTypes Type of compute roles configured.
         * 
         * @return builder
         * 
         */
        public Builder configuredRoleTypes(@Nullable Output> configuredRoleTypes) {
            $.configuredRoleTypes = configuredRoleTypes;
            return this;
        }

        /**
         * @param configuredRoleTypes Type of compute roles configured.
         * 
         * @return builder
         * 
         */
        public Builder configuredRoleTypes(List configuredRoleTypes) {
            return configuredRoleTypes(Output.of(configuredRoleTypes));
        }

        /**
         * @param configuredRoleTypes Type of compute roles configured.
         * 
         * @return builder
         * 
         */
        public Builder configuredRoleTypes(String... configuredRoleTypes) {
            return configuredRoleTypes(List.of(configuredRoleTypes));
        }

        /**
         * @param culture The Data Box Edge/Gateway device culture.
         * 
         * @return builder
         * 
         */
        public Builder culture(@Nullable Output culture) {
            $.culture = culture;
            return this;
        }

        /**
         * @param culture The Data Box Edge/Gateway device culture.
         * 
         * @return builder
         * 
         */
        public Builder culture(String culture) {
            return culture(Output.of(culture));
        }

        /**
         * @param hcsVersion The device software version number of the device (e.g. 1.2.18105.6).
         * 
         * @return builder
         * 
         */
        public Builder hcsVersion(@Nullable Output hcsVersion) {
            $.hcsVersion = hcsVersion;
            return this;
        }

        /**
         * @param hcsVersion The device software version number of the device (e.g. 1.2.18105.6).
         * 
         * @return builder
         * 
         */
        public Builder hcsVersion(String hcsVersion) {
            return hcsVersion(Output.of(hcsVersion));
        }

        /**
         * @param model The Data Box Edge/Gateway device model.
         * 
         * @return builder
         * 
         */
        public Builder model(@Nullable Output model) {
            $.model = model;
            return this;
        }

        /**
         * @param model The Data Box Edge/Gateway device model.
         * 
         * @return builder
         * 
         */
        public Builder model(String model) {
            return model(Output.of(model));
        }

        /**
         * @param nodeCount The number of nodes in the cluster.
         * 
         * @return builder
         * 
         */
        public Builder nodeCount(@Nullable Output nodeCount) {
            $.nodeCount = nodeCount;
            return this;
        }

        /**
         * @param nodeCount The number of nodes in the cluster.
         * 
         * @return builder
         * 
         */
        public Builder nodeCount(Integer nodeCount) {
            return nodeCount(Output.of(nodeCount));
        }

        /**
         * @param serialNumber The Serial Number of Data Box Edge/Gateway device.
         * 
         * @return builder
         * 
         */
        public Builder serialNumber(@Nullable Output serialNumber) {
            $.serialNumber = serialNumber;
            return this;
        }

        /**
         * @param serialNumber The Serial Number of Data Box Edge/Gateway device.
         * 
         * @return builder
         * 
         */
        public Builder serialNumber(String serialNumber) {
            return serialNumber(Output.of(serialNumber));
        }

        /**
         * @param softwareVersion The Data Box Edge/Gateway device software version.
         * 
         * @return builder
         * 
         */
        public Builder softwareVersion(@Nullable Output softwareVersion) {
            $.softwareVersion = softwareVersion;
            return this;
        }

        /**
         * @param softwareVersion The Data Box Edge/Gateway device software version.
         * 
         * @return builder
         * 
         */
        public Builder softwareVersion(String softwareVersion) {
            return softwareVersion(Output.of(softwareVersion));
        }

        /**
         * @param status The status of the Data Box Edge/Gateway device.
         * 
         * @return builder
         * 
         */
        public Builder status(@Nullable Output status) {
            $.status = status;
            return this;
        }

        /**
         * @param status The status of the Data Box Edge/Gateway device.
         * 
         * @return builder
         * 
         */
        public Builder status(String status) {
            return status(Output.of(status));
        }

        /**
         * @param timeZone The Data Box Edge/Gateway device timezone.
         * 
         * @return builder
         * 
         */
        public Builder timeZone(@Nullable Output timeZone) {
            $.timeZone = timeZone;
            return this;
        }

        /**
         * @param timeZone The Data Box Edge/Gateway device timezone.
         * 
         * @return builder
         * 
         */
        public Builder timeZone(String timeZone) {
            return timeZone(Output.of(timeZone));
        }

        /**
         * @param type The type of the Data Box Edge/Gateway device.
         * 
         * @return builder
         * 
         */
        public Builder type(@Nullable Output type) {
            $.type = type;
            return this;
        }

        /**
         * @param type The type of the Data Box Edge/Gateway device.
         * 
         * @return builder
         * 
         */
        public Builder type(String type) {
            return type(Output.of(type));
        }

        public DeviceDevicePropertyArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy