![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.securesourcemanager.kotlin.outputs.RepositoryUri.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.securesourcemanager.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property api (Output)
* API is the URI for API access.
* @property gitHttps (Output)
* git_https is the git HTTPS URI for git operations.
* @property html (Output)
* HTML is the URI for the user to view the repository in a browser.
*/
public data class RepositoryUri(
public val api: String? = null,
public val gitHttps: String? = null,
public val html: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.securesourcemanager.outputs.RepositoryUri): RepositoryUri = RepositoryUri(
api = javaType.api().map({ args0 -> args0 }).orElse(null),
gitHttps = javaType.gitHttps().map({ args0 -> args0 }).orElse(null),
html = javaType.html().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy