com.pulumi.azurenative.network.kotlin.outputs.GetRoutingIntentResult.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.network.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The routing intent child resource of a Virtual hub.
* @property etag A unique read-only string that changes whenever the resource is updated.
* @property id Resource ID.
* @property name The name of the resource that is unique within a resource group. This name can be used to access the resource.
* @property provisioningState The provisioning state of the RoutingIntent resource.
* @property routingPolicies List of routing policies.
* @property type Resource type.
*/
public data class GetRoutingIntentResult(
public val etag: String,
public val id: String? = null,
public val name: String? = null,
public val provisioningState: String,
public val routingPolicies: List? = null,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.network.outputs.GetRoutingIntentResult): GetRoutingIntentResult = GetRoutingIntentResult(
etag = javaType.etag(),
id = javaType.id().map({ args0 -> args0 }).orElse(null),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
provisioningState = javaType.provisioningState(),
routingPolicies = javaType.routingPolicies().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.network.kotlin.outputs.RoutingPolicyResponse.Companion.toKotlin(args0)
})
}),
type = javaType.type(),
)
}
}