com.pulumi.cloudflare.kotlin.outputs.GetTunnelVirtualNetworkResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getTunnelVirtualNetwork.
* @property accountId The account identifier to target for the resource.
* @property comment The Virtual Network Comment.
* @property id The provider-assigned unique ID for this managed resource.
* @property isDefault If true, only include deleted virtual networks. If false, exclude deleted virtual networks. If empty, all virtual networks will be included.
* @property name The Virtual Network Name.
*/
public data class GetTunnelVirtualNetworkResult(
public val accountId: String,
public val comment: String,
public val id: String,
public val isDefault: Boolean,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.GetTunnelVirtualNetworkResult): GetTunnelVirtualNetworkResult = GetTunnelVirtualNetworkResult(
accountId = javaType.accountId(),
comment = javaType.comment(),
id = javaType.id(),
isDefault = javaType.isDefault(),
name = javaType.name(),
)
}
}