
com.pulumi.gcp.cloudfunctions.kotlin.outputs.GetFunctionSourceRepository.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.cloudfunctions.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property deployedUrl The URL pointing to the hosted repository where the function was defined at the time of deployment.
* @property url The URL pointing to the hosted repository where the function is defined.
*/
public data class GetFunctionSourceRepository(
public val deployedUrl: String,
public val url: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.cloudfunctions.outputs.GetFunctionSourceRepository): GetFunctionSourceRepository = GetFunctionSourceRepository(
deployedUrl = javaType.deployedUrl(),
url = javaType.url(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy