com.pulumi.gcp.oracledatabase.kotlin.outputs.AutonomousDatabasePropertiesConnectionString.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.oracledatabase.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property allConnectionStrings A list of all connection strings that can be used to connect to the
* Autonomous Database.
* @property dedicated The database service provides the least level of resources to each SQL
* statement, but supports the most number of concurrent SQL statements.
* @property high The database service provides the highest level of resources to each SQL
* statement.
* @property low The database service provides the least level of resources to each SQL
* statement.
* @property medium The database service provides a lower level of resources to each SQL
* statement.
* @property profiles A list of connection string profiles to allow clients to group, filter, and
* select values based on the structured metadata.
*/
public data class AutonomousDatabasePropertiesConnectionString(
public val allConnectionStrings: List? = null,
public val dedicated: String? = null,
public val high: String? = null,
public val low: String? = null,
public val medium: String? = null,
public val profiles: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.oracledatabase.outputs.AutonomousDatabasePropertiesConnectionString): AutonomousDatabasePropertiesConnectionString = AutonomousDatabasePropertiesConnectionString(
allConnectionStrings = javaType.allConnectionStrings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.oracledatabase.kotlin.outputs.AutonomousDatabasePropertiesConnectionStringAllConnectionString.Companion.toKotlin(args0)
})
}),
dedicated = javaType.dedicated().map({ args0 -> args0 }).orElse(null),
high = javaType.high().map({ args0 -> args0 }).orElse(null),
low = javaType.low().map({ args0 -> args0 }).orElse(null),
medium = javaType.medium().map({ args0 -> args0 }).orElse(null),
profiles = javaType.profiles().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.oracledatabase.kotlin.outputs.AutonomousDatabasePropertiesConnectionStringProfile.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy