![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.digitalocean.kotlin.outputs.GetAppSpecFunctionGithub.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-digitalocean-kotlin Show documentation
Show all versions of pulumi-digitalocean-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.digitalocean.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property branch The name of the branch to use.
* @property deployOnPush Whether to automatically deploy new commits made to the repo.
* @property repo The name of the repo in the format `owner/repo`.
*/
public data class GetAppSpecFunctionGithub(
public val branch: String? = null,
public val deployOnPush: Boolean? = null,
public val repo: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.GetAppSpecFunctionGithub): GetAppSpecFunctionGithub = GetAppSpecFunctionGithub(
branch = javaType.branch().map({ args0 -> args0 }).orElse(null),
deployOnPush = javaType.deployOnPush().map({ args0 -> args0 }).orElse(null),
repo = javaType.repo().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy