
com.pulumi.gcp.oracledatabase.kotlin.outputs.AutonomousDatabasePropertiesConnectionUrl.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
/**
*
* @property apexUri Oracle Application Express (APEX) URL.
* @property databaseTransformsUri The URL of the Database Transforms for the Autonomous Database.
* @property graphStudioUri The URL of the Graph Studio for the Autonomous Database.
* @property machineLearningNotebookUri The URL of the Oracle Machine Learning (OML) Notebook for the Autonomous
* Database.
* @property machineLearningUserManagementUri The URL of Machine Learning user management the Autonomous Database.
* @property mongoDbUri The URL of the MongoDB API for the Autonomous Database.
* @property ordsUri The Oracle REST Data Services (ORDS) URL of the Web Access for the
* Autonomous Database.
* @property sqlDevWebUri The URL of the Oracle SQL Developer Web for the Autonomous Database.
*/
public data class AutonomousDatabasePropertiesConnectionUrl(
public val apexUri: String? = null,
public val databaseTransformsUri: String? = null,
public val graphStudioUri: String? = null,
public val machineLearningNotebookUri: String? = null,
public val machineLearningUserManagementUri: String? = null,
public val mongoDbUri: String? = null,
public val ordsUri: String? = null,
public val sqlDevWebUri: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.oracledatabase.outputs.AutonomousDatabasePropertiesConnectionUrl): AutonomousDatabasePropertiesConnectionUrl = AutonomousDatabasePropertiesConnectionUrl(
apexUri = javaType.apexUri().map({ args0 -> args0 }).orElse(null),
databaseTransformsUri = javaType.databaseTransformsUri().map({ args0 -> args0 }).orElse(null),
graphStudioUri = javaType.graphStudioUri().map({ args0 -> args0 }).orElse(null),
machineLearningNotebookUri = javaType.machineLearningNotebookUri().map({ args0 ->
args0
}).orElse(null),
machineLearningUserManagementUri = javaType.machineLearningUserManagementUri().map({ args0 ->
args0
}).orElse(null),
mongoDbUri = javaType.mongoDbUri().map({ args0 -> args0 }).orElse(null),
ordsUri = javaType.ordsUri().map({ args0 -> args0 }).orElse(null),
sqlDevWebUri = javaType.sqlDevWebUri().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy