com.pulumi.azure.orbital.kotlin.inputs.ContactProfileLinkChannelArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.orbital.kotlin.inputs
import com.pulumi.azure.orbital.inputs.ContactProfileLinkChannelArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Double
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property bandwidthMhz Bandwidth in MHz.
* @property centerFrequencyMhz Center frequency in MHz.
* @property demodulationConfiguration Copy of the modem configuration file such as Kratos QRadio or Kratos QuantumRx. Only valid for downlink directions. If provided, the modem connects to the customer endpoint and sends demodulated data instead of a VITA.49 stream.
* @property endPoints Customer End point to store/retrieve data during a contact. An `end_point` block as defined below.
* @property modulationConfiguration Copy of the modem configuration file such as Kratos QRadio. Only valid for uplink directions. If provided, the modem connects to the customer endpoint and accepts commands from the customer instead of a VITA.49 stream.
* @property name Name of the channel.
*/
public data class ContactProfileLinkChannelArgs(
public val bandwidthMhz: Output,
public val centerFrequencyMhz: Output,
public val demodulationConfiguration: Output? = null,
public val endPoints: Output>,
public val modulationConfiguration: Output? = null,
public val name: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.orbital.inputs.ContactProfileLinkChannelArgs =
com.pulumi.azure.orbital.inputs.ContactProfileLinkChannelArgs.builder()
.bandwidthMhz(bandwidthMhz.applyValue({ args0 -> args0 }))
.centerFrequencyMhz(centerFrequencyMhz.applyValue({ args0 -> args0 }))
.demodulationConfiguration(demodulationConfiguration?.applyValue({ args0 -> args0 }))
.endPoints(
endPoints.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.modulationConfiguration(modulationConfiguration?.applyValue({ args0 -> args0 }))
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ContactProfileLinkChannelArgs].
*/
@PulumiTagMarker
public class ContactProfileLinkChannelArgsBuilder internal constructor() {
private var bandwidthMhz: Output? = null
private var centerFrequencyMhz: Output? = null
private var demodulationConfiguration: Output? = null
private var endPoints: Output>? = null
private var modulationConfiguration: Output? = null
private var name: Output? = null
/**
* @param value Bandwidth in MHz.
*/
@JvmName("uvafnbkubhhwptax")
public suspend fun bandwidthMhz(`value`: Output) {
this.bandwidthMhz = value
}
/**
* @param value Center frequency in MHz.
*/
@JvmName("jtrveeokiuhpalpa")
public suspend fun centerFrequencyMhz(`value`: Output) {
this.centerFrequencyMhz = value
}
/**
* @param value Copy of the modem configuration file such as Kratos QRadio or Kratos QuantumRx. Only valid for downlink directions. If provided, the modem connects to the customer endpoint and sends demodulated data instead of a VITA.49 stream.
*/
@JvmName("stkgonsujlxquvbc")
public suspend fun demodulationConfiguration(`value`: Output) {
this.demodulationConfiguration = value
}
/**
* @param value Customer End point to store/retrieve data during a contact. An `end_point` block as defined below.
*/
@JvmName("vasmujgbnxvffopc")
public suspend fun endPoints(`value`: Output>) {
this.endPoints = value
}
@JvmName("lefavixylbursgsn")
public suspend fun endPoints(vararg values: Output) {
this.endPoints = Output.all(values.asList())
}
/**
* @param values Customer End point to store/retrieve data during a contact. An `end_point` block as defined below.
*/
@JvmName("modtvsprrjbqlkls")
public suspend fun endPoints(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy