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

com.pulumi.azurenative.network.kotlin.outputs.IntentContentResponse.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: 2.82.0.0
Show newest version
@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