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

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

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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 GetDeviceDeviceProperty(
    public val capacity: Int,
    public val configuredRoleTypes: List,
    public val culture: String,
    public val hcsVersion: String,
    public val model: String,
    public val nodeCount: Int,
    public val serialNumber: String,
    public val softwareVersion: String,
    public val status: String,
    public val timeZone: String,
    public val type: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.databoxedge.outputs.GetDeviceDeviceProperty): GetDeviceDeviceProperty = GetDeviceDeviceProperty(
            capacity = javaType.capacity(),
            configuredRoleTypes = javaType.configuredRoleTypes().map({ args0 -> args0 }),
            culture = javaType.culture(),
            hcsVersion = javaType.hcsVersion(),
            model = javaType.model(),
            nodeCount = javaType.nodeCount(),
            serialNumber = javaType.serialNumber(),
            softwareVersion = javaType.softwareVersion(),
            status = javaType.status(),
            timeZone = javaType.timeZone(),
            type = javaType.type(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy