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

com.pulumi.azure.databoxedge.kotlin.outputs.DeviceDeviceProperty.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.databoxedge.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property capacity The Data Box Edge/Gateway device local capacity in MB.
 * @property configuredRoleTypes Type of compute roles configured.
 * @property culture The Data Box Edge/Gateway device culture.
 * @property hcsVersion The device software version number of the device (e.g. 1.2.18105.6).
 * @property model The Data Box Edge/Gateway device model.
 * @property nodeCount The number of nodes in the cluster.
 * @property serialNumber The Serial Number of Data Box Edge/Gateway device.
 * @property softwareVersion The Data Box Edge/Gateway device software version.
 * @property status The status of the Data Box Edge/Gateway device.
 * @property timeZone The Data Box Edge/Gateway device timezone.
 * @property type The type of the Data Box Edge/Gateway device.
 */
public data class DeviceDeviceProperty(
    public val capacity: Int? = null,
    public val configuredRoleTypes: List? = null,
    public val culture: String? = null,
    public val hcsVersion: String? = null,
    public val model: String? = null,
    public val nodeCount: Int? = null,
    public val serialNumber: String? = null,
    public val softwareVersion: String? = null,
    public val status: String? = null,
    public val timeZone: String? = null,
    public val type: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.databoxedge.outputs.DeviceDeviceProperty):
            DeviceDeviceProperty = DeviceDeviceProperty(
            capacity = javaType.capacity().map({ args0 -> args0 }).orElse(null),
            configuredRoleTypes = javaType.configuredRoleTypes().map({ args0 -> args0 }),
            culture = javaType.culture().map({ args0 -> args0 }).orElse(null),
            hcsVersion = javaType.hcsVersion().map({ args0 -> args0 }).orElse(null),
            model = javaType.model().map({ args0 -> args0 }).orElse(null),
            nodeCount = javaType.nodeCount().map({ args0 -> args0 }).orElse(null),
            serialNumber = javaType.serialNumber().map({ args0 -> args0 }).orElse(null),
            softwareVersion = javaType.softwareVersion().map({ args0 -> args0 }).orElse(null),
            status = javaType.status().map({ args0 -> args0 }).orElse(null),
            timeZone = javaType.timeZone().map({ args0 -> args0 }).orElse(null),
            type = javaType.type().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy