
com.pulumi.awsnative.iotwireless.kotlin.outputs.TaskDefinitionLoRaWanUpdateGatewayTaskCreate.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iotwireless.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property currentVersion The version of the gateways that should receive the update.
* @property sigKeyCrc The CRC of the signature private key to check.
* @property updateSignature The signature used to verify the update firmware.
* @property updateVersion The firmware version to update the gateway to.
*/
public data class TaskDefinitionLoRaWanUpdateGatewayTaskCreate(
public val currentVersion: TaskDefinitionLoRaWanGatewayVersion? = null,
public val sigKeyCrc: Int? = null,
public val updateSignature: String? = null,
public val updateVersion: TaskDefinitionLoRaWanGatewayVersion? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.iotwireless.outputs.TaskDefinitionLoRaWanUpdateGatewayTaskCreate): TaskDefinitionLoRaWanUpdateGatewayTaskCreate = TaskDefinitionLoRaWanUpdateGatewayTaskCreate(
currentVersion = javaType.currentVersion().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.iotwireless.kotlin.outputs.TaskDefinitionLoRaWanGatewayVersion.Companion.toKotlin(args0)
})
}).orElse(null),
sigKeyCrc = javaType.sigKeyCrc().map({ args0 -> args0 }).orElse(null),
updateSignature = javaType.updateSignature().map({ args0 -> args0 }).orElse(null),
updateVersion = javaType.updateVersion().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.iotwireless.kotlin.outputs.TaskDefinitionLoRaWanGatewayVersion.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy