
com.pulumi.azure.orbital.kotlin.outputs.ContactProfileLinkChannel.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.outputs
import kotlin.Double
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @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 ContactProfileLinkChannel(
public val bandwidthMhz: Double,
public val centerFrequencyMhz: Double,
public val demodulationConfiguration: String? = null,
public val endPoints: List,
public val modulationConfiguration: String? = null,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.orbital.outputs.ContactProfileLinkChannel):
ContactProfileLinkChannel = ContactProfileLinkChannel(
bandwidthMhz = javaType.bandwidthMhz(),
centerFrequencyMhz = javaType.centerFrequencyMhz(),
demodulationConfiguration = javaType.demodulationConfiguration().map({ args0 ->
args0
}).orElse(null),
endPoints = javaType.endPoints().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.orbital.kotlin.outputs.ContactProfileLinkChannelEndPoint.Companion.toKotlin(args0)
})
}),
modulationConfiguration = javaType.modulationConfiguration().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy