com.pulumi.alicloud.cen.kotlin.outputs.GetTransitRouterRouteTablesTable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-alicloud-kotlin Show documentation
Show all versions of pulumi-alicloud-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.alicloud.cen.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property id ID of resource.
* @property status The status of the transit router route table to query. Valid values `Creating`, `Active` and `Deleting`..
* @property transitRouterRouteTableDescription The description of the transit router route table.
* @property transitRouterRouteTableId ID of the trabsit router route table.
* @property transitRouterRouteTableName Name of the transit router route table.
* @property transitRouterRouteTableType The type of the transit router route table to query. Valid values `System` and `Custom`.
*/
public data class GetTransitRouterRouteTablesTable(
public val id: String,
public val status: String,
public val transitRouterRouteTableDescription: String,
public val transitRouterRouteTableId: String,
public val transitRouterRouteTableName: String,
public val transitRouterRouteTableType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.alicloud.cen.outputs.GetTransitRouterRouteTablesTable): GetTransitRouterRouteTablesTable = GetTransitRouterRouteTablesTable(
id = javaType.id(),
status = javaType.status(),
transitRouterRouteTableDescription = javaType.transitRouterRouteTableDescription(),
transitRouterRouteTableId = javaType.transitRouterRouteTableId(),
transitRouterRouteTableName = javaType.transitRouterRouteTableName(),
transitRouterRouteTableType = javaType.transitRouterRouteTableType(),
)
}
}