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

com.pulumi.alicloud.cen.kotlin.outputs.GetTransitRouterRouteTablesTable.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: 3.62.0.0
Show newest version
@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(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy