com.pulumi.gcp.oracledatabase.kotlin.outputs.GetAutonomousDatabasesAutonomousDatabasePropertyConnectionString.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 GetAutonomousDatabasesAutonomousDatabasePropertyConnectionString(
public val allConnectionStrings: List,
public val dedicated: String,
public val high: String,
public val low: String,
public val medium: String,
public val profiles: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.oracledatabase.outputs.GetAutonomousDatabasesAutonomousDatabasePropertyConnectionString): GetAutonomousDatabasesAutonomousDatabasePropertyConnectionString =
GetAutonomousDatabasesAutonomousDatabasePropertyConnectionString(
allConnectionStrings = javaType.allConnectionStrings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.oracledatabase.kotlin.outputs.GetAutonomousDatabasesAutonomousDatabasePropertyConnectionStringAllConnectionString.Companion.toKotlin(args0)
})
}),
dedicated = javaType.dedicated(),
high = javaType.high(),
low = javaType.low(),
medium = javaType.medium(),
profiles = javaType.profiles().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.oracledatabase.kotlin.outputs.GetAutonomousDatabasesAutonomousDatabasePropertyConnectionStringProfile.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy