![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.network.kotlin.outputs.IntentContentResponse.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.network.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Intent information.
* @property description
* @property destinationResourceId Destination resource id of the intent.
* @property ipTraffic IP traffic information.
* @property sourceResourceId Source resource id of the intent.
*/
public data class IntentContentResponse(
public val description: String? = null,
public val destinationResourceId: String,
public val ipTraffic: IPTrafficResponse,
public val sourceResourceId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.network.outputs.IntentContentResponse): IntentContentResponse = IntentContentResponse(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
destinationResourceId = javaType.destinationResourceId(),
ipTraffic = javaType.ipTraffic().let({ args0 ->
com.pulumi.azurenative.network.kotlin.outputs.IPTrafficResponse.Companion.toKotlin(args0)
}),
sourceResourceId = javaType.sourceResourceId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy