
com.pulumi.azurenative.network.kotlin.outputs.ReachabilityAnalysisIntentPropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.network.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Represents the Reachability Analysis Intent properties.
* @property description
* @property destinationResourceId Destination resource id to verify the reachability path of.
* @property ipTraffic IP traffic information.
* @property provisioningState Provisioning states of a resource.
* @property sourceResourceId Source resource id to verify the reachability path of.
*/
public data class ReachabilityAnalysisIntentPropertiesResponse(
public val description: String? = null,
public val destinationResourceId: String,
public val ipTraffic: IPTrafficResponse,
public val provisioningState: String,
public val sourceResourceId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.network.outputs.ReachabilityAnalysisIntentPropertiesResponse): ReachabilityAnalysisIntentPropertiesResponse = ReachabilityAnalysisIntentPropertiesResponse(
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)
}),
provisioningState = javaType.provisioningState(),
sourceResourceId = javaType.sourceResourceId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy