com.pulumi.awsnative.iotwireless.kotlin.outputs.TaskDefinitionLoRaWanGatewayVersion.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iotwireless.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property model The model number of the wireless gateway.
* @property packageVersion The version of the wireless gateway firmware.
* @property station The basic station version of the wireless gateway.
*/
public data class TaskDefinitionLoRaWanGatewayVersion(
public val model: String? = null,
public val packageVersion: String? = null,
public val station: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iotwireless.outputs.TaskDefinitionLoRaWanGatewayVersion): TaskDefinitionLoRaWanGatewayVersion = TaskDefinitionLoRaWanGatewayVersion(
model = javaType.model().map({ args0 -> args0 }).orElse(null),
packageVersion = javaType.packageVersion().map({ args0 -> args0 }).orElse(null),
station = javaType.station().map({ args0 -> args0 }).orElse(null),
)
}
}