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

com.pulumi.googlenative.datastream.v1.kotlin.outputs.PostgresqlSchemaResponse.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.datastream.v1.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * PostgreSQL schema.
 * @property postgresqlTables Tables in the schema.
 * @property schema Schema name.
 */
public data class PostgresqlSchemaResponse(
    public val postgresqlTables: List,
    public val schema: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.datastream.v1.outputs.PostgresqlSchemaResponse): PostgresqlSchemaResponse = PostgresqlSchemaResponse(
            postgresqlTables = javaType.postgresqlTables().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.googlenative.datastream.v1.kotlin.outputs.PostgresqlTableResponse.Companion.toKotlin(args0)
                })
            }),
            schema = javaType.schema(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy