All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.orbital.kotlin.outputs.ContactProfileLinkChannelEndPoint.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.orbital.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property endPointName Name of an end point.
 * @property ipAddress IP address of an end point.
 * @property port TCP port to listen on to receive data.
 * @property protocol Protocol of an end point. Possible values are `TCP` and `UDP`.
 */
public data class ContactProfileLinkChannelEndPoint(
    public val endPointName: String,
    public val ipAddress: String? = null,
    public val port: String,
    public val protocol: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.orbital.outputs.ContactProfileLinkChannelEndPoint): ContactProfileLinkChannelEndPoint = ContactProfileLinkChannelEndPoint(
            endPointName = javaType.endPointName(),
            ipAddress = javaType.ipAddress().map({ args0 -> args0 }).orElse(null),
            port = javaType.port(),
            protocol = javaType.protocol(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy