com.pulumi.digitalocean.kotlin.outputs.AppSpecWorkerGitlab.kt Maven / Gradle / Ivy
@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 AppSpecWorkerGitlab(
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.AppSpecWorkerGitlab): AppSpecWorkerGitlab = AppSpecWorkerGitlab(
branch = javaType.branch().map({ args0 -> args0 }).orElse(null),
deployOnPush = javaType.deployOnPush().map({ args0 -> args0 }).orElse(null),
repo = javaType.repo().map({ args0 -> args0 }).orElse(null),
)
}
}