![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.orbital.kotlin.inputs.ContactProfileLinkArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-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.azurenative.orbital.kotlin.inputs
import com.pulumi.azurenative.orbital.inputs.ContactProfileLinkArgs.builder
import com.pulumi.azurenative.orbital.kotlin.enums.Direction
import com.pulumi.azurenative.orbital.kotlin.enums.Polarization
import com.pulumi.core.Either
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
/**
* Contact Profile Link.
* @property channels Contact Profile Link Channel.
* @property direction Direction (Uplink or Downlink).
* @property eirpdBW Effective Isotropic Radiated Power (EIRP) in dBW. It is the required EIRP by the customer. Not used yet.
* @property gainOverTemperature Gain to noise temperature in db/K. It is the required G/T by the customer. Not used yet.
* @property name Link name.
* @property polarization Polarization. e.g. (RHCP, LHCP).
*/
public data class ContactProfileLinkArgs(
public val channels: Output>,
public val direction: Output>,
public val eirpdBW: Output? = null,
public val gainOverTemperature: Output? = null,
public val name: Output,
public val polarization: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.orbital.inputs.ContactProfileLinkArgs =
com.pulumi.azurenative.orbital.inputs.ContactProfileLinkArgs.builder()
.channels(
channels.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.direction(
direction.applyValue({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.eirpdBW(eirpdBW?.applyValue({ args0 -> args0 }))
.gainOverTemperature(gainOverTemperature?.applyValue({ args0 -> args0 }))
.name(name.applyValue({ args0 -> args0 }))
.polarization(
polarization.applyValue({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [ContactProfileLinkArgs].
*/
@PulumiTagMarker
public class ContactProfileLinkArgsBuilder internal constructor() {
private var channels: Output>? = null
private var direction: Output>? = null
private var eirpdBW: Output? = null
private var gainOverTemperature: Output? = null
private var name: Output? = null
private var polarization: Output>? = null
/**
* @param value Contact Profile Link Channel.
*/
@JvmName("rnxvhxnubkfhnlqf")
public suspend fun channels(`value`: Output>) {
this.channels = value
}
@JvmName("gewttuyjhnxxsaim")
public suspend fun channels(vararg values: Output) {
this.channels = Output.all(values.asList())
}
/**
* @param values Contact Profile Link Channel.
*/
@JvmName("tntfkklttfqgyass")
public suspend fun channels(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy