All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.cloudfunctions.kotlin.outputs.GetFunctionSourceRepository.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.20.1.0
Show newest version
@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