![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.iotwireless.kotlin.FuotaTaskArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.iotwireless.kotlin
import com.pulumi.awsnative.iotwireless.FuotaTaskArgs.builder
import com.pulumi.awsnative.iotwireless.kotlin.inputs.FuotaTaskLoRaWanArgs
import com.pulumi.awsnative.iotwireless.kotlin.inputs.FuotaTaskLoRaWanArgsBuilder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Create and manage FUOTA tasks.
* @property associateMulticastGroup Multicast group to associate. Only for update request.
* @property associateWirelessDevice Wireless device to associate. Only for update request.
* @property description FUOTA task description
* @property disassociateMulticastGroup Multicast group to disassociate. Only for update request.
* @property disassociateWirelessDevice Wireless device to disassociate. Only for update request.
* @property firmwareUpdateImage FUOTA task firmware update image binary S3 link
* @property firmwareUpdateRole FUOTA task firmware IAM role for reading S3
* @property loRaWan FUOTA task LoRaWAN
* @property name Name of FUOTA task
* @property tags A list of key-value pairs that contain metadata for the FUOTA task.
*/
public data class FuotaTaskArgs(
public val associateMulticastGroup: Output? = null,
public val associateWirelessDevice: Output? = null,
public val description: Output? = null,
public val disassociateMulticastGroup: Output? = null,
public val disassociateWirelessDevice: Output? = null,
public val firmwareUpdateImage: Output? = null,
public val firmwareUpdateRole: Output? = null,
public val loRaWan: Output? = null,
public val name: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.iotwireless.FuotaTaskArgs =
com.pulumi.awsnative.iotwireless.FuotaTaskArgs.builder()
.associateMulticastGroup(associateMulticastGroup?.applyValue({ args0 -> args0 }))
.associateWirelessDevice(associateWirelessDevice?.applyValue({ args0 -> args0 }))
.description(description?.applyValue({ args0 -> args0 }))
.disassociateMulticastGroup(disassociateMulticastGroup?.applyValue({ args0 -> args0 }))
.disassociateWirelessDevice(disassociateWirelessDevice?.applyValue({ args0 -> args0 }))
.firmwareUpdateImage(firmwareUpdateImage?.applyValue({ args0 -> args0 }))
.firmwareUpdateRole(firmwareUpdateRole?.applyValue({ args0 -> args0 }))
.loRaWan(loRaWan?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.name(name?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [FuotaTaskArgs].
*/
@PulumiTagMarker
public class FuotaTaskArgsBuilder internal constructor() {
private var associateMulticastGroup: Output? = null
private var associateWirelessDevice: Output? = null
private var description: Output? = null
private var disassociateMulticastGroup: Output? = null
private var disassociateWirelessDevice: Output? = null
private var firmwareUpdateImage: Output? = null
private var firmwareUpdateRole: Output? = null
private var loRaWan: Output? = null
private var name: Output? = null
private var tags: Output>? = null
/**
* @param value Multicast group to associate. Only for update request.
*/
@JvmName("wphtlwgslpmgrqkd")
public suspend fun associateMulticastGroup(`value`: Output) {
this.associateMulticastGroup = value
}
/**
* @param value Wireless device to associate. Only for update request.
*/
@JvmName("jkisjiofmoybrung")
public suspend fun associateWirelessDevice(`value`: Output) {
this.associateWirelessDevice = value
}
/**
* @param value FUOTA task description
*/
@JvmName("jrnmmhyhnmpfdass")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Multicast group to disassociate. Only for update request.
*/
@JvmName("mxnbihdtwheulsgq")
public suspend fun disassociateMulticastGroup(`value`: Output) {
this.disassociateMulticastGroup = value
}
/**
* @param value Wireless device to disassociate. Only for update request.
*/
@JvmName("rdeiwaoauugxpjpd")
public suspend fun disassociateWirelessDevice(`value`: Output) {
this.disassociateWirelessDevice = value
}
/**
* @param value FUOTA task firmware update image binary S3 link
*/
@JvmName("gbuqgvvfigikshlm")
public suspend fun firmwareUpdateImage(`value`: Output) {
this.firmwareUpdateImage = value
}
/**
* @param value FUOTA task firmware IAM role for reading S3
*/
@JvmName("iatwlsaxmgchkohi")
public suspend fun firmwareUpdateRole(`value`: Output) {
this.firmwareUpdateRole = value
}
/**
* @param value FUOTA task LoRaWAN
*/
@JvmName("ggqlshbhykmxbvjv")
public suspend fun loRaWan(`value`: Output) {
this.loRaWan = value
}
/**
* @param value Name of FUOTA task
*/
@JvmName("ihoteobqqarvwgff")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value A list of key-value pairs that contain metadata for the FUOTA task.
*/
@JvmName("irwsyugdbiwhktkm")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("xemjkmdpcndqunwi")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values A list of key-value pairs that contain metadata for the FUOTA task.
*/
@JvmName("ntppggtkkypraudm")
public suspend fun tags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy