com.pulumi.azure.orbital.kotlin.outputs.ContactProfileLink.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.orbital.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property channels A list of contact profile link channels. A `channels` block as defined below.
* @property direction Direction of the link. Possible values are `Uplink` and `Downlink`.
* @property name Name of the link.
* @property polarization Polarization of the link. Possible values are `LHCP`, `RHCP`, `linearVertical` and `linearHorizontal`.
*/
public data class ContactProfileLink(
public val channels: List,
public val direction: String,
public val name: String,
public val polarization: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.orbital.outputs.ContactProfileLink): ContactProfileLink = ContactProfileLink(
channels = javaType.channels().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.orbital.kotlin.outputs.ContactProfileLinkChannel.Companion.toKotlin(args0)
})
}),
direction = javaType.direction(),
name = javaType.name(),
polarization = javaType.polarization(),
)
}
}